-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
111 lines (111 loc) · 2.47 KB
/
Copy pathelectron-builder.json
File metadata and controls
111 lines (111 loc) · 2.47 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
{
"appId": "com.corelive.app",
"productName": "CoreLive",
"copyright": "Copyright © 2026 Laststance",
"directories": {
"output": "dist",
"buildResources": "build"
},
"icon": "build/icons/icon.icns",
"nodeGypRebuild": false,
"npmRebuild": false,
"buildDependenciesFromSource": false,
"files": [
"dist-electron/**/*",
"!electron/**/*.ts",
"!electron/**/*.tsx",
"!electron/**/tsconfig*.json",
"!electron/**/vite*.ts",
"node_modules/**/*",
"package.json",
"public/**/*",
"!src/**/*",
"!**/*.test.*",
"!**/*.spec.*",
"!**/__tests__/**/*",
"!**/test/**/*",
"!**/.DS_Store",
"!**/node_modules/.cache/**/*",
"!**/node_modules/**/test/**/*",
"!**/node_modules/**/tests/**/*",
"!**/node_modules/**/*.test.js",
"!**/node_modules/**/*.spec.js",
"!**/node_modules/**/README.md",
"!**/node_modules/**/CHANGELOG.md",
"!**/node_modules/**/LICENSE*",
"!**/node_modules/**/*.d.ts",
"!**/node_modules/**/*.map"
],
"extraResources": [
{
"from": "public",
"to": "public",
"filter": ["**/*"]
},
{
"from": "build/icons/tray",
"to": "tray-icons",
"filter": ["**/*.png"]
}
],
"asarUnpack": [
"node_modules/@img/**",
"node_modules/uiohook-napi/**",
"node_modules/node-gyp-build/**"
],
"publish": {
"provider": "github",
"owner": "laststance",
"repo": "corelive",
"releaseType": "release"
},
"protocols": [
{
"name": "CoreLive Protocol",
"schemes": ["corelive"]
}
],
"mac": {
"category": "public.app-category.productivity",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": true,
"type": "distribution",
"minimumSystemVersion": "13.0.0",
"icon": "build/icons/icon.icns"
},
"dmg": {
"sign": true,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"title": "${productName} ${version}",
"backgroundColor": "#ffffff",
"window": {
"width": 540,
"height": 380
}
},
"afterAllArtifactBuild": "scripts/after-build.js"
}