-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.66 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
71
72
73
74
{
"name": "claude-telegram-stream-bot",
"version": "2.0.0",
"description": "Claude Code Telegram Bot with Stream-JSON Architecture",
"main": "bot.js",
"scripts": {
"setup": "node scripts/setup-bot.js",
"start": "node scripts/start-bot.js bot1",
"bot1": "node scripts/start-bot.js bot1",
"bot2": "node scripts/start-bot.js bot2",
"bot3": "node scripts/start-bot.js bot3",
"dev": "nodemon scripts/start-bot.js bot1",
"test": "jest",
"test:real-bot:watch": "jest --config jest.real-bot.config.js --watch",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:real-bot": "jest --config jest.real-bot.config.js --detectOpenHandles",
"test:real-bot:start": "jest tests/real-bot/start-command.test.js --detectOpenHandles",
"test:real-bot:buttons": "jest tests/real-bot/button-interactions.test.js --detectOpenHandles",
"test:real-bot:voice": "jest tests/real-bot/voice-message.test.js --detectOpenHandles",
"test:real-bot:errors": "jest tests/real-bot/error-scenarios.test.js --detectOpenHandles",
"test:real-bot:configs": "jest tests/real-bot/multi-config.test.js --detectOpenHandles",
"test:real-bot:suite": "jest tests/real-bot/real-bot-test-suite.test.js --detectOpenHandles",
"test:failures": "jest --verbose=false --silent",
"test:failures-report": "./scripts/test-failures-report.sh",
"test:watch-failures": "jest --watch --verbose=false",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"lint:test": "eslint tests/",
"list-bots": "ls -la configs/*.json 2>/dev/null | grep -v example || echo 'No bot configurations found. Run: npm run setup'"
},
"keywords": [
"claude",
"telegram",
"bot",
"stream-json",
"cli",
"ai"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.108",
"@modelcontextprotocol/sdk": "^1.17.5",
"@ngrok/ngrok": "^1.5.2",
"axios": "^1.11.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"form-data": "^4.0.4",
"node-telegram-bot-api": "^0.61.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/jest": "^30.0.0",
"eslint": "^9.32.0",
"eslint-plugin-jest": "^29.0.1",
"globals": "^16.3.0",
"jest": "^30.0.5",
"nodemon": "^3.0.1",
"sinon": "^21.0.0",
"supertest": "^7.1.4",
"telegram-test-api": "^4.2.1"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/claude-telegram-stream-bot.git"
}
}