Files
tg-bot-template/package.json
Yuu Ottosoka 71365836d3 feat: add bot and api services with config, logger and database packages
- Add bot service with telegram integration and webhook/polling modes
- Add api service with hono, swagger and zod-openapi
- Create config package for environment variable management
- Create logger package for colored console logging
- Create database package with prisma integration
- Remove next.js web and docs apps
- Update turbo.json for new services
- Add dockerfiles and gitea workflows for deployment
2025-07-08 19:46:08 +03:00

25 lines
492 B
JSON

{
"name": "ai_tg_bot_template",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.5.4",
"typescript": "5.8.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.3",
"workspaces": [
"apps/*",
"packages/*"
]
}