-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 981 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 981 Bytes
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
{
"name": "telegram-code-analyzer",
"version": "1.0.0",
"description": "Minimalist Telegram bot for codebase analysis using Claude Code CLI. 4 dependencies only.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"keywords": [
"telegram-bot",
"code-analyzer",
"claude",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "17.2.1",
"grammy": "1.37.0",
"zod": "4.3.5"
},
"devDependencies": {
"@types/node": "24.2.0",
"@vitest/coverage-v8": "4.0.16",
"prettier": "3.6.2",
"tsx": "4.20.3",
"typescript": "5.9.2",
"vitest": "4.0.16"
},
"engines": {
"node": ">=18.0.0"
}
}