-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1011 Bytes
/
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
{
"name": "animation",
"version": "1.0.0",
"description": "Metamask cube animation",
"main": "index.js",
"scripts": {
"start": "esbuild --sourcemap --bundle ./demo.tsx --outfile=www/main.js --servedir=www",
"build:release": "esbuild --minify --bundle --tree-shaking=true ./demo.tsx --outfile=www/main.js",
"build:cubes": "ts-node ./gen-cuts.ts > ./src/fox-data.ts",
"build": "npm run build:cubes && npm run build:release"
},
"author": "Mikola Lysenko",
"license": "ISC",
"dependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"cdt2d": "^1.0.0",
"esbuild": "^0.14.48",
"gl-matrix": "^3.4.3",
"open-simplex-noise": "^2.5.0",
"ray-plane-intersection": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"robust-point-in-polygon": "^1.0.3",
"simplex-noise": "^4.0.0",
"split-polygon": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"watertight-ray-triangle-intersection": "^0.0.1"
}
}