telegrambot/package.json
alisaza 9615f6cb1e
Some checks failed
CI / Typecheck and test (push) Successful in 8s
Deploy / Typecheck and test (push) Successful in 8s
Deploy / Deploy to VPS (push) Failing after 2s
fix CI test glob so npm scripts find *.test.ts files.
2026-09-13 14:49:42 +03:30

28 lines
685 B
JSON

{
"name": "ghabilee-telegram-relay",
"version": "0.1.0",
"private": true,
"description": "External Telegram sendMessage relay for Ghabilee ops alerts (Iran backend → foreign VPS).",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test src/*.test.ts"
},
"dependencies": {
"@hono/node-server": "^1.14.4",
"hono": "^4.7.11",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^22.15.32",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}