-
Notifications
You must be signed in to change notification settings - Fork 327
/
electron-builder.json
88 lines (88 loc) · 2.37 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
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
{
"mac": {
"target": "pkg",
"category": "public.app-category.education",
"identity": "Naver Connect Foundation (DLFUSDA3L5)",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"URL Types": [
{
"URL Identifie": "org.playentry.entryhw",
"URL Schemes": [
"entryhw"
]
}
],
"CFBundleURLTypes": [
{
"CFBundleURLName": "org.playentry.entryhw",
"CFBundleURLSchemes": [
"entryhw"
]
}
]
},
"extraResources": [
{
"from": "app/server/mac/server.txt",
"to": ""
},
{
"from": "app/validator/mac/validator.txt",
"to": ""
}
]
},
"win": {
"target": "dir",
"extraResources": [
{
"from": "app/server/win/server.exe",
"to": ""
},
{
"from": "app/validator/win/validator.exe",
"to": ""
}
]
},
"files": [
"app/src/index.bundle.js",
"app/src/main/mainRouter.build.*",
"app/src/main/nativeNodeRequire.js",
"app/src/preload/lang",
"app/src/preload/preload.bundle.js",
"app/src/renderer/modal",
"app/src/renderer/react/dist",
"app/src/views",
"app/index.js",
"app/OPENSOURCE.md",
"package.json"
],
"extraResources": [
"config",
{
"from": "app/modules",
"to": "modules"
},
{
"from": "app/firmwares",
"to": "firmwares",
"filter": ["!examples/"]
},
{
"from": "app/drivers",
"to": "drivers"
}
],
"asar": true,
"compression": "maximum",
"appId": "org.playentry.entryhw",
"productName": "Entry_HW",
"afterPack": "scripts/after_pack.js",
"afterSign": "scripts/notarize_app.js",
"afterAllArtifactBuild": "scripts/notarize_installer.js"
}