-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 955 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 955 Bytes
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
{
"build": {
"appId": "at.wowst",
"productName": "WoW Stat",
"app-category-type": "public.app-category.utilities",
"mac": {
"identity": "Devin Smith (GS29G47H7V)",
"target": [
"dmg",
"mas"
]
},
"win": {
"target": [
"nsis"
]
}
},
"main": "app/main.js",
"scripts": {
"postinstall": "cd app && npm install",
"startwin": "electron .",
"start": "ELECTRON_DEV=1 bash -c 'cd app && electron .'",
"icon": "sips -s format icns build/icon.png build/[email protected] --out build/icon.icns",
"dist": "app/node_modules/.bin/build && open dist",
"distwin": "app\\node_modules\\.bin\\build",
"storewin": "node_modules\\.bin\\electron-windows-store --input-directory dist\\win-unpacked --output-directory dist\\win-store --flatten true --package-version 3.0.4 --package-name \"Wot Stat\""
},
"devDependencies": {
"electron-prebuilt": "^1.2.0"
}
}