-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hacky-game",
"version": "0.0.0",
"description": "Some kind of hacky tech demo",
"license": "UNLICENSED",
"private": true,
"keywords": [
"platformer",
"game",
"hack",
"hacky",
"game",
"weird",
"crazy",
"strange",
"nexe",
"exe",
"tech-demo",
"tech",
"demo",
"technical",
"demonstration",
"concept",
"multiplayer",
"procedural",
"world",
"door",
"doors",
"portal",
"portals",
"fun",
"play",
"yay",
"2d",
"canvas",
"idk"
],
"repository": {
"type": "git",
"url": "https://github.com/1j01/hacky-game.git"
},
"bugs": {
"url": "https://github.com/1j01/hacky-game/issues"
},
"dependencies": {
"bufferpack": "0.0.6",
"coffee-script": "^1.12.4",
"cpr": "^0.4.1",
"nexe": "^0.4.1",
"nw-builder": "^3.2.0",
"nw-dev": "^3.0.1",
"path-extra": "^1.0.3",
"zip-folder": "^1.0.0"
},
"scripts": {
"start": "nwbuild -v 0.21.3 -r game",
"start-secondary": "node_modules\\nw-builder\\cache\\0.21.3-sdk\\win64\\nw.exe --user-data-dir=\"temp/secondary-instance\" \"game\"",
"start-tertiary": "node_modules\\nw-builder\\cache\\0.21.3-sdk\\win64\\nw.exe --user-data-dir=\"temp/tertiary-instance\" \"game\"",
"build-simple": "nwbuild -v 0.21.3 game",
"prepublish": "coffee -c wrapper.coffee",
"build": "coffee -c wrapper.coffee & coffee make-wrapper.coffee",
"build-debug": "coffee -c wrapper.coffee & coffee --nodejs debug make-wrapper.coffee",
"build-inspect": "coffee -c wrapper.coffee & coffee --nodejs --inspect --nodejs --debug-brk make-wrapper.coffee"
}
}