-
Notifications
You must be signed in to change notification settings - Fork 127
/
electron-builder.json
107 lines (107 loc) · 2.49 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"productName": "Slippi Launcher",
"appId": "com.github.projectslippi.slippidesktopapp",
"asar": true,
"asarUnpack": [
"**\\*.{node,dll}",
"./dist/main/*.js",
"./node_modules/**/*.{js,json}"
],
"files": ["dist", "node_modules", "package.json"],
"afterSign": ".erb/scripts/notarize.js",
"fileAssociations": {
"ext": "slp",
"name": "slp",
"description": "Slippi File Format",
"icon": "./assets/file.ico"
},
"artifactName": "Slippi-Launcher-${version}-${os}.${ext}",
"mac": {
"target": {
"target": "default",
"arch": "universal"
},
"fileAssociations": {
"ext": "slp",
"role": "Viewer"
},
"type": "distribution",
"mergeASARs": false,
"hardenedRuntime": true,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"category": "public.app-category.games",
"gatekeeperAssess": false,
"extendInfo": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
}
},
"minimumSystemVersion": "10.13.6"
},
"dmg": {
"artifactName": "Slippi-Launcher-${version}.${ext}",
"icon": "assets/icon.icns",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": ["nsis"],
"icon": "assets/icon.ico",
"publisherName": "Slippi LLC",
"sign": ".erb/scripts/windows-sign.js",
"signDlls": true,
"signingHashAlgorithms": ["sha256"]
},
"nsis": {
"artifactName": "Slippi-Launcher-Setup-${version}.${ext}",
"include": ".erb/scripts/installer.nsh",
"warningsAsErrors": false,
"allowElevation": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createStartMenuShortcut": true
},
"linux": {
"target": ["AppImage"],
"category": "Development"
},
"appImage": {
"artifactName": "Slippi-Launcher-${version}-x86_64.${ext}"
},
"protocols": [
{
"name": "slippi",
"role": "Viewer",
"schemes": ["slippi"]
}
],
"directories": {
"app": "release/app",
"buildResources": "assets",
"output": "release/build"
},
"extraResources": [
"./assets/include/**",
{
"from": "./release/app/dist/migrations",
"to": "./migrations",
"filter": ["**/*.js"]
}
],
"publish": {
"provider": "github",
"owner": "project-slippi",
"repo": "slippi-launcher"
}
}