-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.2 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
{
"name": "celestialcombat",
"version": "1.1",
"description": "Top-down 2D space shooter -- galactic conquest and colonization",
"author": {
"name": "jsyang.ca@gmail.com",
"url": "http://jsyang.ca/"
},
"repository": {
"type": "git",
"url": "git://github.com/jsyang/celestial.git"
},
"main": "celestialcombat.js",
"scripts": {
"ts-watch": "tsc --noEmit -w -p .",
"regen-env": "node scripts/generateDotEnv.js",
"watch": "yarn regen-sounds; yarn regen-env ; parcel _dev.html --port 3000 --no-hmr",
"regen-js": "rm -rf .cache ; yarn regen-sounds; yarn regen-env ; parcel build _dev.html --out-dir . ; yarn cleanup",
"cleanup": "git checkout _dev.html ; mv client.*.js celestialcombat.js ; rm *.map *.ogg",
"regen-sounds": "node scripts/generateSoundsList.js",
"regen-html": "node scripts/generateHowToPlay.js ",
"build": "yarn regen-js ; yarn regen-html"
},
"devDependencies": {
"@types/pixi.js": "^5.0.0",
"@types/sat": "^0.0.30",
"fast-memoize": "^2.5.1",
"fscreen": "^1.0.2",
"lz-string": "^1.4.4",
"parcel-bundler": "^1.10.3",
"pixi.js": "^5.3.3",
"sat": "^0.6.0",
"snarkdown": "^1.2.2",
"typescript": "^4.0.3"
}
}