forked from koii-network/koii-node
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathelectron-builder.json
More file actions
105 lines (105 loc) · 2.49 KB
/
electron-builder.json
File metadata and controls
105 lines (105 loc) · 2.49 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"productName": "Koii Node",
"appId": "com.koii.network.desktopnode",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"files": [
"dist",
"node_modules",
"package.json"
],
"directories": {
"app": "release/app",
"buildResources": "assets",
"output": "release/build"
},
"extraResources": [
"assets/**",
"branding/**"
],
"generateUpdatesFilesForAllChannels": true,
"mac": {
"mergeASARs": false,
"category": "public.app-category.productivity",
"target": [
{
"target": "default",
"arch": ["universal"]
}
],
"type": "distribution",
"artifactName": "koii-node-${version}-${os}-${arch}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"provisioningProfile": "build/comkoiinetworkdesktopnode.provisionprofile",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSBluetoothAlwaysUsageDescription": false
}
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"sign": false
},
"win": {
"target": [
{
"target": "nsis",
"arch": "x64"
}
],
"publisherName": "Koii Network",
"legalTrademarks": "",
"artifactName": "koii-node-${version}-${os}-${arch}.${ext}",
"verifyUpdateCodeSignature": false,
"signDlls": false,
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"uninstallDisplayName": "${productName} ${version}",
"deleteAppDataOnUninstall": false,
"unicode": true,
"warningsAsErrors": true,
"runAfterFinish": true,
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"menuCategory": false
},
"linux": {
"target": ["AppImage", "tar.gz", "deb", "rpm"],
"executableName": "koii-node",
"category": "GNOME;GTK;Network;",
"desktop": {
"StartupWMClass": "Koii.node",
"MimeType": "x-scheme-handler/koii-node"
},
"artifactName": "koii-node-${version}-${os}-${arch}.${ext}"
},
"rpm": {
"fpm": ["--rpm-rpmbuild-define=_build_id_links none"]
},
"afterSign": ".erb/scripts/notarize.js",
"publish": [
{
"provider": "github",
"owner": "koii-network",
"repo": "desktop-node",
"releaseType": "draft"
}
]
}