21 lines
571 B
JSON
21 lines
571 B
JSON
|
|
{
|
||
|
|
"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"
|
||
|
|
}
|
||
|
|
}
|