-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 832 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "telegram-typescript-bot-template",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "tsc && node --enable-source-maps dist/telegram-typescript-bot-template.js",
"test": "tsc && xo && node --enable-source-maps --test"
},
"type": "module",
"engines": {
"node": ">=22"
},
"dependencies": {
"@grammyjs/i18n": "^1.1.2",
"@grammyjs/storage-file": "^2.0.0",
"dotenv": "^16.0.2",
"grammy": "^1.32.0",
"grammy-inline-menu": "^9.2.0",
"telegraf-middleware-console-time": "^2.0.0",
"telegram-format": "^3.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^22.10.1",
"typescript": "^5.7.2",
"xo": "^0.60.0"
},
"xo": {
"rules": {
"@typescript-eslint/naming-convention": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}