-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 938 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": "mdc",
"version": "1.3.2",
"description": "RPG gameplay distilled to its purest essence. [Play the game](https://centaurreader.com/rpg).",
"scripts": {
"build:game": "esbuild ./src/mdc.js --bundle --outfile=dist/mdc.js --minify",
"build:cheat": "esbuild ./src/cheat.js --bundle --outfile=dist/cheat.js --minify",
"build:clean": "shx rm -rf ./dist",
"build:static": "shx mkdir -p ./dist && shx cp -r ./src/* ./dist/",
"build": "npm run build:clean && npm run build:static && npm run build:game && npm run build:cheat",
"start": "node ./test-server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/centaurreader/rpg.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/centaurreader/rpg/issues"
},
"homepage": "https://centaurreader.com/rpg",
"devDependencies": {
"esbuild": "^0.11.16",
"shx": "^0.3.3"
}
}