-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "telegram-bot-template",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "Telegram bot starter template",
"imports": {
"#root/*": "./build/src/*"
},
"author": "deptyped <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./src/main.ts\"",
"start": "tsc && tsx ./src/main.ts",
"start:force": "tsx ./src/main.ts",
"prepare": "husky || true"
},
"dependencies": {
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/hydrate": "1.4.1",
"@grammyjs/i18n": "1.0.2",
"@grammyjs/parse-mode": "1.10.0",
"@grammyjs/types": "3.8.0",
"@hono/node-server": "1.11.2",
"callback-data": "1.1.1",
"grammy": "1.24.1",
"grammy-guard": "0.5.0",
"hono": "4.4.3",
"iso-639-1": "3.1.2",
"pino": "9.1.0",
"pino-pretty": "11.1.0",
"tsx": "4.15.1",
"znv": "0.4.0",
"zod": "3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "2.20.0",
"@types/node": "20.14.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"tsc-watch": "6.2.0",
"typescript": "5.4.5"
},
"lint-staged": {
"*.ts": "eslint"
}
}