-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 747 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
{
"name": "claude-code-telegram-bot",
"version": "1.0.0",
"description": "Direct Claude Code access via Telegram bot for advanced task execution and automation",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"telegram",
"bot",
"claude-code",
"claude",
"ai",
"automation"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.0",
"node-fetch": "^2.6.7",
"node-pty": "^1.0.0",
"node-telegram-bot-api": "^0.64.0",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}