-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "ronin-server-manager",
"version": "1.0.0",
"description": "High-performance dedicated server manager for game servers.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --windows"
},
"author": "PhonicSpider",
"license": "MIT",
"dependencies": {
"systeminformation": "^5.21.0"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.ronin.servermanager",
"publish": [
{
"provider": "github",
"owner": "PhonicSpider",
"repo": "ronin-server-manager"
}
],
"productName": "Ronin-Server-Manager",
"directories": {
"output": "dist",
"buildResources": "build"
},
"win": {
"target": "nsis",
"icon": "icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"shortcutName": "Ronin Server Manager"
},
"files": [
"main.js",
"public/**/*",
"node_modules/**/*"
]
}
}