-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "telegram-ai-manager",
"version": "0.1.0",
"type": "module",
"description": "Telegram Bot UI for managing Codex and Claude Code CLI sessions",
"scripts": {
"dev": "bash scripts/dev.sh",
"dev:watch": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.build.json",
"start": "bash scripts/start.sh",
"start:dist": "node dist/index.js",
"stop": "bash scripts/stop.sh",
"status": "bash scripts/status.sh",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prepare": "cp hooks/pre-commit.sh .git/hooks/pre-commit 2>/dev/null || true"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.0",
"dependencies": {
"better-sqlite3": "^11.8.1",
"bullmq": "^5.58.0",
"dotenv": "^16.4.7",
"eventemitter3": "^5.0.1",
"grammy": "^1.35.1",
"ioredis": "5.9.3",
"node-pty": "^1.0.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"proper-lockfile": "^4.1.2",
"strip-ansi": "^7.1.0",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.10",
"@types/proper-lockfile": "^4.1.4",
"@types/uuid": "^10.0.0",
"eslint": "^9.22.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"tsx": "^4.19.3",
"vitest": "^3.0.8"
}
}