-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "pixi-sorting-visualization",
"version": "0.0.1",
"description": "Pixi visualization of different sorting algorithms",
"scripts": {
"dev": "esbuild src/app.ts --servedir=www --outdir=www --bundle",
"build": "esbuild src/app.ts --outdir=build --bundle && cp ./www/index.html ./build/index.html",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4llower/pixi-sorting-visualization.git"
},
"keywords": [
"WebGL",
"Algorithms",
"Sort",
"Execution Time",
"Quick Sort",
"Merge Sort"
],
"author": "4llower",
"license": "MIT",
"bugs": {
"url": "https://github.com/4llower/pixi-sorting-visualization/issues"
},
"homepage": "https://github.com/4llower/pixi-sorting-visualization#readme",
"devDependencies": {
"@types/jquery": "^3.5.14",
"esbuild": "^0.14.34",
"gh-pages": "^4.0.0"
},
"browser": {
"path": "path-browserify"
},
"dependencies": {
"jquery": "^3.6.1",
"pixi.js": "^6.3.0",
"tinygradient": "^1.1.5"
}
}