-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
25 lines (25 loc) · 881 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
{
"name": "bg3d",
"version": "0.1.0",
"description": "An open source THREE.js based multiplayer board game simulator",
"dependencies": {
"@zip.js/zip.js": "2.4.12",
"three": "^0.152.0",
"fflate": "0.8.2"
},
"devDependencies": {
"esbuild": "^0.17.6",
"esbuild-plugin-wasm": "^1.0.0",
"ts-loader": "^9.4.2",
"tsify": "^5.0.4",
"typescript": "^4.9.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild static/js/index.js --bundle --minify --sourcemap --target=chrome80 --outfile=static/bundle.js",
"no_minify": "esbuild static/js/index.js --bundle --sourcemap --target=chrome80 --outfile=static/bundle.js",
"watch": "esbuild static/js/index.js --watch --bundle --minify --sourcemap --target=chrome80 --outfile=static/bundle.js"
},
"author": "tesseractcat",
"license": "MIT"
}