-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
81 lines (81 loc) · 1.9 KB
/
package.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
{
"name": "spring-launcher",
"version": "1.0.0",
"description": "Electron-based SpringRTS Launcher app",
"main": "src/main.js",
"scripts": {
"test": "jest",
"lint": "eslint \"./src/**/*.js\"",
"start": "electron .",
"start-dev": "electron . --dev",
"pack": "electron-builder --dir",
"build-linux": "electron-builder -l",
"build-win": "electron-builder -w",
"build-win-portable": "electron-builder -w portable",
"build-mac": "electron-builder -m",
"build": "electron-builder -wl"
},
"author": "gajop",
"license": "ISC",
"build": {
"appId": "com.springrts.launcher",
"extraFiles": [
"files/*"
],
"files": [
"!bin/**"
],
"artifactName": "${productName}-${version}.${ext}",
"linux": {
"target": "AppImage",
"category": "Game",
"extraFiles": [
"bin/butler/linux/*",
"bin/pr-downloader",
"bin/linux/*"
]
},
"win": {
"extraFiles": [
"bin/butler/windows/*",
"bin/windows/*",
"bin/pr-downloader.exe",
"bin/*.dll"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false
},
"publish": {
"provider": "generic",
"url": "https://content.spring-launcher.com",
"channel": "latest"
},
"mac": {
"target": "zip"
}
},
"dependencies": {
"@electron/remote": "2.0.8",
"7zip-bin": "5.0.3",
"chokidar": "3.5.3",
"electron-log": "4.4.8",
"electron-settings": "4.0.2",
"electron-updater": "5.2.1",
"extract-zip": "2.0.1",
"got": "11.8.5",
"node-7z": "2.1.2",
"octonode": "0.10.2",
"sdfz-demo-parser": "4.8.0",
"spring-map-parser": "4.4.0",
"spring-nextgen-dl": "0.2.3",
"yargs": "17.5.1"
},
"devDependencies": {
"electron": "20.0.2",
"electron-builder": "23.3.3",
"eslint": "8.21.0"
}
}