Files
tg-bot-template/apps/bot/package.json
Yuu Ottosoka 0ceba57012 feat(bot): implement conversation flow for start command
add conversation handler for start command with name input and welcome message
update locales for new conversation flow
add @grammyjs/conversations dependency
2025-07-12 17:15:32 +03:00

33 lines
721 B
JSON

{
"name": "bot",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsup",
"check-types": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@grammyjs/conversations": "^2.1.0",
"@grammyjs/i18n": "^1.1.2",
"@hono/node-server": "^1.15.0",
"@repo/config": "*",
"@repo/db": "*",
"@repo/logger": "*",
"@repo/typescript-config": "*",
"dotenv": "^17.1.0",
"grammy": "^1.37.0",
"hono": "^4.8.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.8.3"
}
}