forked from Kyusung4698/PoE-Overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
44 lines (44 loc) · 1002 Bytes
/
electron-builder.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
{
"productName": "poe-overlay",
"publish": {
"provider": "github"
},
"directories": {
"output": "release/"
},
"files": [
"*.js",
"dist/**/*",
"!node_modules/@angular/**/*",
"!node_modules/@swimlane/**/*",
"!node_modules/moment/**/*",
"!node_modules/zone.js/**/*",
"!node_modules/localforage/**/*",
"!node_modules/@ngx-translate/**/*",
"!node_modules/d3-*/**/*"
],
"win": {
"icon": "dist/favicon.ico",
"target": [
"nsis",
"portable"
],
"publisherName": [
"Nicklas Ronge"
]
},
"linux": {
"icon": "dist/favicon.png",
"target": [
"deb",
"AppImage"
],
"category": "Utility"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"perMachine": true,
"oneClick": false,
"shortcutName": "PoE Overlay"
}
}