-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.63 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
{
"name": "geode",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build-asc": "npx asc src/assembly/index.ts -b raw -o out/assembly.wasm -t out/assembly.wat -O3 --noExportMemory && node src/assembly/transform.mjs out/assembly.js",
"build-all": "npm run textures && npm run build-asc && npm run build && npm run templates",
"build-js": "npm run build && npm run templates",
"build": "tscc",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"watch": "nodemon -e ts,ejs -x npm run build-js & nodemon -e aseprite -x npm run textures",
"textures": "node src/lib/textures/generate.js src/lib/textures/index.ts src/lib/textures/textures.json src/lib/textures/all.png src/lib/textures/textures.aseprite",
"clean": "rm -r out && git checkout -- out/src",
"templates": "node templates/build.js",
"release": "git checkout release && git merge master && npm run clean && npm run build-all && git add . && git commit -m 'release' && git push && git checkout master"
},
"engines": {
"node": ">=16.16.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@shoelace-style/shoelace": "^2.0.0-beta.77",
"@squoosh/lib": "^0.4.0",
"@tscc/tscc": "^0.7.4",
"@types/jasmine": "^4.0.2",
"@types/pako": "^1.0.2",
"@types/three": "^0.132.2",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"aseprite-cli": "^1.1.2",
"assemblyscript": "^0.21.3",
"ejs": "^3.1.8",
"eslint": "^8.19.0",
"jasmine": "^4.0.2",
"nodemon": "^2.0.13",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.4.3"
}
}