-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 KB
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 <deptyped@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20.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/commands": "1.0.8",
"@grammyjs/hydrate": "1.4.1",
"@grammyjs/i18n": "1.1.2",
"@grammyjs/parse-mode": "2.2.0",
"@grammyjs/runner": "2.0.3",
"@grammyjs/types": "3.20.0",
"@hono/node-server": "1.14.2",
"callback-data": "1.1.1",
"grammy": "1.36.1",
"hono": "4.7.9",
"iso-639-1": "3.1.5",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"tsx": "4.19.4",
"valibot": "0.42.1"
},
"devDependencies": {
"@antfu/eslint-config": "4.12.0",
"@types/node": "^22.15.21",
"eslint": "^9.27.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"tsc-watch": "^6.3.1",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.ts": "eslint"
}
}