-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "tiamblia",
"description": "A surreal exploration adventure game",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "http://github.com/1j01/tiamblia-game.git"
},
"bugs": {
"url": "http://github.com/1j01/tiamblia-game/issues"
},
"license": "UNLICENSED",
"private": true,
"keywords": [
"game",
"adventure",
"exploration",
"explore",
"surreal",
"surrealism",
"surrealist",
"browser-game",
"canvas-game",
"level-editor",
"game-engine",
"tiamblia",
"skele2d"
],
"scripts": {
"build": "webpack --mode production && node src/make-app-build.js",
"start": "webpack-dev-server --mode development",
"predeploy": "node src/predeploy-check.js",
"deploy": "npm run build && gh-pages -d app-build",
"start-nw": "npm run build && nw"
},
"main": "index.html",
"window": {
"title": "Tiamblia",
"id": "Tiamblia"
},
"devDependencies": {
"coffee-loader": "^4.0.0",
"coffeescript": "^2.7.0",
"css-loader": "^6.7.3",
"gh-pages": "5.0.0",
"idb-keyval": "^6.2.0",
"lil-gui": "^0.18.1",
"nw-dev": "^3.0.1",
"skele2d": "0.0.11",
"stats.js": "^0.17.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"nw": "^0.73.0-sdk"
}
}