-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathelectron-builder.json
More file actions
87 lines (77 loc) · 1.76 KB
/
electron-builder.json
File metadata and controls
87 lines (77 loc) · 1.76 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
{
"appId": "com.allow2.automate",
"productName": "Allow2Automate",
"copyright": "Allow2 Pty Ltd",
"directories": {
"app": ".",
"output": "dist/",
"buildResources": "dist-assets/"
},
"files": [
"package.json",
"init.js",
"build",
"node_modules"
],
"asar": true,
"asarUnpack": [
"**/*.node",
"**/better-sqlite3/**"
],
"dmg": {
"contents": [{
"type": "file",
"x": 130,
"y": 150
}, {
"type": "link",
"path": "/Applications",
"x": 410,
"y": 150
}]
},
"mac": {
"target": [
{
"target": "mas",
"arch": ["universal"]
}
],
"provisioningProfile": "./Allow2Automate_Distribution.provisionprofile",
"category": "public.app-category.lifestyle",
"icon": "./app/assets/icons/mac/icon.icns",
"entitlements": "./parent.plist",
"entitlementsInherit": "./child.plist",
"bundleVersion": 46,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"x64ArchFiles": "**/darwin-x64-*/**",
"extendInfo": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
}
}
},
"mas": {
"hardenedRuntime": false,
"entitlements": "./parent.plist",
"entitlementsInherit": "./child.plist",
"provisioningProfile": "./Allow2Automate_Distribution.provisionprofile"
},
"appx": {
"identityName": "Allow2PtyLtd.Allow2Automate",
"publisher": "CN=CE323DB8-E397-42A8-8ADD-A819C832F5A4",
"publisherDisplayName": "Allow2 Pty Ltd",
"applicationId": "dyq4j96jg1sgw1"
},
"win": {
"target": "AppX",
"icon": "app/assets/icons/win/icon.ico"
},
"linux": {
"target": ["snap", "AppImage"],
"category": "Utility"
},
"nativeRebuilder": "sequential",
"npmRebuild": true
}