-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 963 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
39
40
41
42
43
44
{
"name": "ElectronMV",
"version": "1.1.4",
"description": "Wraps MV with Electron",
"main": "app/js/electronMain.js",
"author": "Quxios",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-electron": "^0.37.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"electron-builder": "^7.18.0",
"electron": "^1.4.5"
},
"scripts": {
"start": "electron . --dev",
"compile": "babel app -d compiled --copy-files",
"build-w64": "build -w --x64",
"build-w32": "build -w --ia32"
},
"build": {
"appId": "MVGame",
"files": [
"**/*",
"!**/save${/*}",
"!**/node_modules${/*}"
],
"extraResources": [
{
"from": "app/save",
"to": "save",
"filter": [
"!**/*"
]
}
],
"win": {
"target": "dir",
"icon": "app/icon/icon.ico"
}
}
}