forked from project-slippi/slippi-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
77 lines (77 loc) · 1.7 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
{
"productName": "Slippi Launcher",
"appId": "com.github.projectslippi.slippidesktopapp",
"afterSign": "build/afterSignHook.macos.js",
"directories": {
"buildResources": "resources",
"output": "release"
},
"asarUnpack": [
"**/*.node",
"**/*.worker.js*",
"node_modules/source-map/**/*",
"node_modules/source-map-support/**/*",
"node_modules/buffer-from/**/*"
],
"artifactName": "Slippi-Launcher-${version}-${os}.${ext}",
"dmg": {
"artifactName": "Slippi-Launcher-${version}.${ext}",
"icon": "resources/icon.icns",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"fileAssociations": {
"ext": "slp",
"name": "slp",
"description": "Slippi File Format",
"icon": "./resources/file.ico"
},
"mac": {
"fileAssociations": {
"ext": "slp",
"role": "viewer"
},
"hardenedRuntime": true,
"entitlements": "./build/entitlements.macos.plist",
"category": "public.app-category.video",
"target": ["dmg", "zip"],
"extendInfo": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
}
}
},
"win": {
"target": ["nsis"],
"icon": "resources/icon.ico"
},
"nsis": {
"artifactName": "Slippi-Launcher-Setup-${version}.${ext}",
"perMachine": true,
"include": "./build/installer.nsh"
},
"linux": {
"target": ["AppImage"],
"category": "Development"
},
"appImage": {
"artifactName": "Slippi-Launcher-${version}-x86_64.${ext}"
},
"protocols": [
{
"name": "slippi",
"role": "Viewer",
"schemes": ["slippi"]
}
]
}