-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
80 lines (69 loc) · 1.49 KB
/
electron-builder.yml
File metadata and controls
80 lines (69 loc) · 1.49 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
appId: com.eq-rts-map
productName: eq-rts-map
copyright: Copyright © 2025 ExpTech Studio
protocols:
- name: "eq-rts-map"
schemes:
- eq-rts-map
directories:
output: dist
extraMetadata:
main: ./build/main.cjs
files:
- build/**/*
- out/**/*
- package.json
- "!dist"
extraResources:
- from: ./public/icons/
to: icons/
- from: ./public/audios/
to: audios/
compression: maximum
asar: true
artifactName: ${productName}-${version}-${os}-${arch}.${ext}
afterPack: .erb/scripts/afterPack.js
win:
target:
- target: nsis
arch:
- x64
- ia32
icon: ./public/icons/app.ico
verifyUpdateCodeSignature: false
nsis:
perMachine: false
allowToChangeInstallationDirectory: false
deleteAppDataOnUninstall: false
include: ./assets/installer.nsh
mac:
category: public.app-category.productivity
icon: ./public/icons/app.png
hardenedRuntime: true
extendInfo:
CFBundleURLTypes:
- CFBundleURLName: "eq-rts-map OAuth callback"
CFBundleURLSchemes: ["eq-rts-map"]
CFBundleURLRole: "Editor"
target:
- target: dmg
arch:
- arm64
- x64
- target: zip
arch:
- arm64
- x64
gatekeeperAssess: false
entitlements: ./assets/entitlements.mac.plist
entitlementsInherit: ./assets/entitlements.mac.plist
linux:
category: Development
icon: ./public/icons/app.png
mimeTypes:
- x-scheme-handler/eq-rts-map
target:
- target: AppImage
arch:
- x64
- arm64