-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.12 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
{
"name": "armory-electron-runtime",
"version": "0.0.1",
"license": "MIT",
"description": "",
"productName": "armory-electron-runtime",
"repository": "https://github.com/tong/armory_electron_runtime",
"main": "main.js",
"scripts": {
"clean": "rm -rf armory-electron-runtime-*/ && rm -f app/main.js*",
"build": "haxe build.hxml",
"start": "electron app",
"pack:linux": "electron-packager app --platform=linux --arch=x64 --out ./ --overwrite --icon=icon.png --protocol=armory-electron",
"pack:darwin": "electron-packager app --platform=darwin --arch=x64 --out ./ --overwrite --icon=icon.png --protocol=armory-electron",
"pack:win32": "electron-packager app --platform=win32 --arch=x64 --out ./ --overwrite --icon=app/icon.ico --protocol=armory-electron",
"pack": "electron-packager app armory-electron-runtime --all --out ./ --overwrite --icon=app/icon.png --protocol=armory-electron"
},
"devDependencies": {
"electron": "22.0.0",
"electron-packager": "^17.1.1"
},
"ignore": [
"/node_modules/*",
".gitignore"
]
}