-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 946 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 946 Bytes
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
{
"name": "tracker",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build --compile --target bun --outfile tracker src/index.ts",
"prettier": "prettier --write .",
"cli": "bun ./cli/index.ts"
},
"dependencies": {
"@t3-oss/env-core": "^0.13.10",
"@types/node": "^25.3.3",
"commander": "^14.0.3",
"dns": "^0.2.2",
"dotenv": "^17.3.1",
"mcpe-ping-fixed": "^0.0.3",
"mcping-js": "^1.5.0",
"mcutils-js-api": "^2.0.45",
"prom-client": "^15.1.3",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/mcping-js": "^1.5.4",
"@types/tar-stream": "^3.1.4"
},
"peerDependencies": {
"typescript": "^5"
}
}