forked from jamaljsr/polar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.electronbuildrc
More file actions
61 lines (61 loc) · 1.18 KB
/
.electronbuildrc
File metadata and controls
61 lines (61 loc) · 1.18 KB
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
{
"appId": "com.polarlightning.app",
"productName": "Polar",
"copyright": "Copyright © 2019 ${author}",
"artifactName": "polar-${os}-${arch}-v${version}.${ext}",
"files": ["build/**/*", "assets/**/*", "node_modules/**/*", "node_modules/**/*.proto"],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.utilities",
"identity": null,
"target": "dmg"
},
"dmg": {
"writeUpdateInfo": false,
"background": "assets/dmg-background.png",
"window": {
"width": 660,
"height": 400
},
"iconSize": 80,
"contents": [
{
"x": 165,
"y": 155
},
{
"x": 495,
"y": 155,
"type": "link",
"path": "/Applications",
"name": "Applications"
}
]
},
"win": {
"target": "nsis"
},
"nsis": {
"differentialPackage": false
},
"linux": {
"target": [
{
"target": "deb",
"arch": ["x64"]
},
{
"target": "rpm",
"arch": ["x64"]
},
{
"target": "AppImage",
"arch": ["x64", "arm64"]
}
],
"category": "Development"
},
"extends": null
}