Skip to content

Commit b3e7c6d

Browse files
authored
Update package.json
1 parent c775daa commit b3e7c6d

File tree

1 file changed

+25
-9
lines changed

1 file changed

+25
-9
lines changed

package.json

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
11
{
22
"name": "hackeros-game-mode",
33
"version": "1.0.0",
4-
"description": "HackerOS Game Mode overlay for Linux system monitoring",
4+
"description": "HackerOS Game Mode overlay for Linux system monitoring (inspired by Asus Armoury Crate)",
55
"main": "main.js",
6-
"scripts": {
7-
"start": "electron .",
8-
"build": "electron-packager . HackerOSGameMode --platform=linux --arch=x64 --out=dist --overwrite"
9-
},
106
"author": "HackerOS Team",
117
"license": "MIT",
12-
"dependencies": {
13-
"electron": "^25.0.0"
8+
"scripts": {
9+
"start": "electron .",
10+
"dist": "electron-builder --linux AppImage"
1411
},
1512
"devDependencies": {
16-
"electron-packager": "^17.0.0"
13+
"electron": "^25.0.0",
14+
"electron-builder": "^24.13.3"
15+
},
16+
"build": {
17+
"appId": "com.hackeros.gamemode",
18+
"productName": "HackerOS Game Mode",
19+
"directories": {
20+
"output": "dist"
21+
},
22+
"files": [
23+
"**/*",
24+
"!dist/*",
25+
"!node_modules/.cache/*"
26+
],
27+
"linux": {
28+
"target": [
29+
"AppImage"
30+
],
31+
"category": "Utility",
32+
"icon": "assets/icons"
33+
}
1734
}
1835
}
19-

0 commit comments

Comments
 (0)