-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.51 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.51 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@a5c-ai/claude-code-telegram-bot",
"version": "1.0.5",
"description": "A Telegram bot to remotely operate Claude Code CLI from anywhere",
"main": "dist/index.js",
"bin": {
"claude-code-telegram-bot": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"telegram",
"telegram-bot",
"claude",
"claude-code",
"anthropic",
"cli",
"bot",
"automation",
"remote",
"mobile",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/a5c-ai/claude-code-telegram-bot.git"
},
"homepage": "https://github.com/a5c-ai/claude-code-telegram-bot#readme",
"bugs": {
"url": "https://github.com/a5c-ai/claude-code-telegram-bot/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
".env.example"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"telegraf": "^4.16.3",
"ulid": "^2.3.0"
},
"devDependencies": {
"@a5c-ai/babysitter-sdk": "^0.0.146",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}