-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
59 lines (59 loc) · 1.34 KB
/
electron-builder.json
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
{
"appId": "uk.co.bbc.rd.audio-orchestrator",
"copyright": "Copyright © 2025 BBC R&D",
"productName": "Audio Orchestrator",
"files": [
"./electron-app/credits.html",
"./electron-app/src/**/*",
"./logging/src/**/*",
"./background-tasks/src/**/*",
"./react-frontend/dist/**/*",
"!**/node_modules/@bbc/audio-orchestration-template/src/**/*",
"**/node_modules/@bbc/audio-orchestration-template/dist/**/*"
],
"asar": {
"smartUnpack": false
},
"asarUnpack": [
"**/node_modules/@bbc/audio-orchestration-template/dist/**/*"
],
"removePackageScripts": true,
"extraFiles": [
{
"from": "./COPYING",
"to": "COPYING-Audio-Orchestrator.txt"
},
{
"from": "./LICENSE",
"to": "LICENSE-Audio-Orchestrator.txt"
},
{
"from": "./electron-app/credits2.html",
"to": "Credits-Audio-Orchestrator.html"
}
],
"dmg": {
"icon": null
},
"mac": {
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"gatekeeperAssess": false,
"target": {
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
"identity": null
},
"nsis": {
"oneClick": "false",
"allowToChangeInstallationDirectory": true
},
"win": {
"target": ["nsis"]
}
}