-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) Β· 951 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
{
"name": "polywogg",
"version": "0.0.0",
"author": {
"name": "Isaiah Odhner",
"email": "[email protected]",
"url": "https://isaiahodhner.io"
},
"license": "MIT",
"scripts": {
"build": "npm run --silent png2src && asc --target release",
"build:debug": "npm run --silent png2src && asc --target debug",
"start": "w4 watch",
"native": "w4 run-native build/cart.wasm",
"deploy": "python3 src/before-deploy.py && npm run --silent build && w4 bundle build/cart.wasm --title \"Polywogg\" --html build/html/index.html && gh-pages -d build/html",
"test": "tsc && node src/debug.cjs",
"png2src": "python3 src/png2src.py",
"png2mem": "sudo env \"PATH=$PATH\" onchange 'src/png/**/*.png' -- python3 src/png2mem.py {{file}}"
},
"devDependencies": {
"assemblyscript": "^0.20.14",
"gh-pages": "^4.0.0",
"onchange": "^7.1.0",
"parallelshell": "^3.0.2",
"typescript": "^4.8.2"
}
}