This repository was archived by the owner on Jan 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 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
{
"name": "sll-launcher",
"description": "Sonic: Lock & Load Launcher",
"author": "Arsalan 'Aeria' Kazmi",
"version": "1.1.0",
"main": "dist/main.js",
"keywords": [
"game",
"doom",
"sonic",
"fan game",
"electron"
],
"license": "GPL-3.0-or-later",
"scripts": {
"clean": "rimraf out dist || true",
"compile": "tsc",
"copy": "ncp src dist",
"start": "electron dist/main.js",
"build": "electron-builder"
},
"dependencies": {
"axios": "^1.7.4",
"simple-git": "^3.25.0",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/node": "^22.4.0",
"electron": "^31.4.0",
"electron-builder": "^24.13.3",
"ncp": "^2.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"build": {
"appId": "io.aeriavelocity.sll-launcher",
"productName": "Sonic Lock & Load Launcher",
"copyright": "Copyright © 2024 Arsalan 'Aeria' Kazmi",
"files": [
"dist/**/*",
"node_modules/"
],
"directories": {
"output": "out"
},
"win": {
"target": "portable"
},
"linux": {
"target": "AppImage",
"category": "Game"
},
"mac": {
"target": {
"target": "dmg",
"arch": "universal"
}
}
}
}