Files
qun-monitor/package.json
你的用户名 0c93f88aa3
Some checks are pending
CI Deploy / build-test-deploy (push) Waiting to run
chore: add gitea deploy workflow
2025-11-08 17:37:57 +08:00

29 lines
661 B
JSON

{
"name": "qun-monitor",
"version": "2.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"dev:inspect": "node --inspect=0 --loader tsx ./src/main.ts",
"start:inspect": "node --inspect=0 dist/main.js",
"lint": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"dotenv": "^16.4.5",
"telegram": "^2.26.22",
"undici": "^6.19.8",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}