forked from requestly/requestly-desktop-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder-setapp.json
More file actions
118 lines (118 loc) · 2.61 KB
/
electron-builder-setapp.json
File metadata and controls
118 lines (118 loc) · 2.61 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"productName": "Requestly",
"appId": "io.requestly.beta-setapp",
"electronVersion": "23.0.0",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"files": [
"dist",
"node_modules",
"package.json",
"static"
],
"protocols": {
"name": "setapp-requestly-internal-protocol",
"schemes": [
"requestly-setapp"
]
},
"fileAssociations": [
{
"ext": "har",
"name": "Network Captures",
"role": "Default",
"icon": "assets/icon.icns"
},
{
"ext": "rqly",
"name": "Requestly session",
"role": "Owner",
"icon": "assets/icon.icns"
}
],
"mac": {
"type": "distribution",
"hardenedRuntime": true,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"gatekeeperAssess": false,
"requirements": "assets/requirement.rqset",
"identity": "Browserstack Inc (YQ5FZQ855D)",
"notarize": {
"teamId": "YQ5FZQ855D"
},
"minimumSystemVersion": "12.0",
"x64ArchFiles": "**/static/nss/darwin/**",
"icon": "assets/AppIcon.png",
"target": [
{
"target": "zip",
"arch": ["universal"]
}
],
"extraResources": [
{
"from": "assets/setappPublicKey.pem",
"to": "setappPublicKey.pem"
},
{
"from": "assets/AppIcon.png",
"to": "AppIcon.png"
}
],
"extendInfo": {
"CFBundleIconFile": "AppIcon.png",
"NSUpdateSecurityPolicy": {
"AllowProcesses": {
"MEHY5QF425": [
"com.setapp.DesktopClient.SetappAgent"
]
}
},
"NSCameraUsageDescription": null,
"NSMicrophoneUsageDescription": null,
"NSBluetoothAlwaysUsageDescription": null,
"NSBluetoothPeripheralUsageDescription": null
},
"files": [
"!**/.git/*",
"!**/.gitignore",
"!**/.gitmodules",
"!**/node_modules/@setapp/framework-wrapper/build/{Debug,Release}",
"!**/node_modules/@setapp/framework-wrapper/{src,test}"
]
},
"dmg": {
"sign": true,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"directories": {
"app": "release/app",
"buildResources": "assets",
"output": "release/build-setapp"
},
"extraResources": [
"./assets/**",
{
"from": "./release/app",
"filter": "static/**"
}
],
"publish": {
"provider": "github",
"releaseType": "release",
"owner": "requestly",
"repo": "requestly-desktop-app-release"
}
}