forked from remvst/squad13
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 1.03 KB
/
package.json
File metadata and controls
30 lines (29 loc) · 1.03 KB
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
{
"name": "@remvst/squad13",
"private": true,
"scripts": {
"build:debug": "tsx build-game.ts --debug --html=build/debug.html",
"build:debug:mangled": "tsx build-game.ts --debug --mangle --html=build/debug_mangled.html",
"build:preprod": "tsx build-game.ts --mangle --minify --roadroll-level=1 --html=build/preprod.html",
"build:prod": "tsx build-game.ts --mangle --minify --roadroll-level=2 --html=build/index.html",
"zip:preprod": "tsx build-zip.ts --html=build/preprod.html --zip=build/preprod.zip",
"zip:prod": "tsx build-zip.ts --html=build/index.html --zip=build/game.zip --optimize"
},
"type": "module",
"author": "Rémi Vansteelandt",
"dependencies": {
"@remvst/js13k-tools": "^1.0.0",
"clean-css": "^5.3.3",
"html-minifier": "^4.0.0",
"roadroller": "^2.1.0",
"terser": "^5.31.6",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"yargs": "^17.7.2",
"zip-lib": "^1.0.4"
},
"devDependencies": {
"@types/clean-css": "^4.2.11",
"@types/html-minifier": "^4.0.5"
}
}