-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 950 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "tonttu-peli",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"dev": "parcel ./src/index.html -d build/",
"start-dev": "ELECTRON_START_URL=http://localhost:1234 electron .",
"start": "electron .",
"build": "parcel build ./src/index.html -d build/ --public-url ./",
"pack": "electron-builder --dir",
"dist": "electron-builder -w",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "tonttu-peli",
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
]
},
"files": ["main.js", "build/*"]
},
"keywords": ["parcel"],
"contributors": [],
"license": "UNLICENSED",
"dependencies": {},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"electron": "~1.7.8",
"electron-builder": "^19.50.0",
"electron-reload": "^1.2.2",
"parcel-bundler": "^1.3.1"
}
}