-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "star-resonance-damage-counter",
"version": "3.3.6",
"description": "Damage Counter for Star Resonance",
"main": "server.js",
"bin": {
"star-resonance-damage-counter": "server.js"
},
"engines": {
"node": "^22.15.0"
},
"scripts": {
"build": "pkg .",
"start": "node server.js",
"lint:pritter": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Dimole <dmlgzs@qq.com>",
"license": "AGPL-3.0",
"packageManager": "pnpm@10.13.1",
"dependencies": {
"cap": "^0.2.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"google-protobuf": "^3.21.4",
"long": "^5.3.2",
"protobufjs": "^7.5.3",
"socket.io": "^4.8.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.6.0",
"prettier": "^3.6.2",
"protobufjs-cli": "^1.1.3"
},
"pkg": {
"scripts": "server.js",
"assets": [
"public/**/*",
"node_modules/cap/**/*"
],
"targets": [
"node22-win-x64"
],
"outputPath": "dist"
}
}