-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
electron-builder.json
76 lines (76 loc) · 1.35 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"directories": {
"output": "release/${version}"
},
"files": [
"dist-electron",
"dist"
],
"productName": "WeakAuras Companion",
"appId": "wtf.weakauras.companion",
"asarUnpack": [
"**/node_modules/sharp/**/*",
"**/node_modules/@img/**/*"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "public/icon.icns",
"category": "public.app-category.utilities",
"extendInfo": {
"LSUIElement": 1
},
"target": {
"target": "default",
"arch": "universal"
},
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
},
"win": {
"icon": "public/icon.ico",
"publish": {
"provider": "github"
},
"extraResources": [
"node_modules/regedit/vbs/*"
]
},
"nsis": {
"deleteAppDataOnUninstall": true
},
"linux": {
"target": [
"AppImage",
"snap",
"deb",
"rpm"
],
"icon": "public/bigicon.png",
"category": "Utility",
"asarUnpack": [
"**/node_modules/sharp/**"
]
},
"protocols": [
{
"name": "weakauras-companion",
"role": "Viewer",
"schemes": [
"weakauras-companion"
]
}
]
}