-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
electron-builder.json
71 lines (71 loc) · 1.58 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
{
"appId": "com.QLens.app",
"afterSign": "notarize.js",
"publish": [
{
"provider": "github",
"owner": "oslabs-beta",
"repo": "QLens",
"token": "680c09ac62533c95f7cf3c593e0474363be3eff8"
}
],
"asar": true,
"productName": "QLens",
"directories": {
"app": ".",
"output": "dist",
"buildResources": "build-res"
},
"files": [
"package.json",
"app/package.json",
"app/**/*",
"node_modules/**/*",
"app/node_modules/**/*",
"dist/index.html",
"dist/bundle.css",
"dist/main.js",
"app/qlens.json",
"build-res/icon.png"
],
"extraFiles": [
"credentials"
],
"extraResources": ["./extraResources/**"],
"dmg": {
"sign": false,
"background": null,
"backgroundColor": "#ffffff",
"window": {
"width": "400",
"height": "300"
},
"contents": [
{
"x": 100,
"y": 100
},
{
"x": 300,
"y": 100,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"target": "dmg",
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.plist",
"entitlementsInherit": "entitlements.plist"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage",
"category": "Utility"
}
}