-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json5
61 lines (61 loc) · 1.24 KB
/
electron-builder.json5
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: "rawen",
artifactName: "${productName}.${version}.${ext}",
asar: true,
asarUnpack: ["public/**"],
directories: {
output: "release/${version}",
},
extraResources: ["public/**/*"],
files: ["dist-electron", "dist"],
dmg: {
contents: [
{
x: 410,
y: 150,
type: "link",
path: "/Applications",
},
{
x: 130,
y: 150,
type: "file",
},
],
sign: false,
},
mac: {
artifactName: "${productName}_${version}.${ext}",
target: ["dmg"],
icon: "public/mainlogo.png",
hardenedRuntime: true,
gatekeeperAssess: false,
entitlements: "./entitlements.mac.plist",
entitlementsInherit: "./entitlements.mac.plist",
},
win: {
target: [
{
target: "nsis",
arch: ["x64"],
},
],
publisherName: "Dom",
artifactName: "${productName}_${version}.${ext}",
icon: "public/favicon_big.ico",
},
nsis: {
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true
},
publish: {
provider: "generic",
channel: "latest",
url: "https://github.com/domEscobar/Rawen/releases/download/latest/",
},
protocols: {
name: "rawen",
schemes: ["rawenapp"],
},
}