first commit

This commit is contained in:
2026-08-09 16:53:38 +03:00
commit e92e0df644
28 changed files with 1143 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "telegrambusiness",
"version": "1.0.0",
"description": "Telegram bot: modular commands + Business Mode support",
"type": "module",
"main": "src/index.js",
"engines": {
"node": ">=22.9.0"
},
"scripts": {
"start": "node --env-file-if-exists=.env src/index.js",
"dev": "node --watch --env-file-if-exists=.env src/index.js",
"check": "node scripts/check.js",
"test": "node --test \"test/**/*.test.js\"",
"sync": "node --env-file-if-exists=.env scripts/sync-commands.js"
},
"dependencies": {
"grammy": "^1.45.1"
}
}