-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "protector-for-palserver",
"version": "1.0.1",
"description": "",
"main": "dist/main.js",
"scripts": {
"start": "tsc && copyfiles -u 1 src/index.html dist && electron .",
"build": "tsc && copyfiles -u 1 src/index.html dist"
},
"author": "Kiros",
"license": "ISC",
"dependencies": {
"archiver": "^6.0.1",
"fs-extra": "^11.2.0",
"moment": "^2.30.1",
"ps-node": "^0.1.6",
"rcon-client": "^4.2.4",
"systeminformation": "^5.21.24"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/moment": "^2.13.0",
"@types/node": "^20.11.5",
"@types/ps-node": "^0.1.3",
"@types/systeminformation": "^3.54.1",
"copyfiles": "^2.4.1",
"electron": "^28.1.4",
"electron-builder": "^24.9.1",
"typescript": "^5.3.3"
},
"build": {
"directories": {
"output": "build"
},
"files": [
"dist/**/*",
"index.html",
"main.js",
"icon.ico"
],
"appId": "com.onbeta.PalServerProtector",
"win": {
"target": "dir",
"icon": "src/icon.ico"
}
}
}