-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.43 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "telegram-ai-bridge",
"version": "5.1.1",
"private": true,
"description": "Self-hosted Telegram bridge for Claude Code, Codex, Agy, and Kimi with the A2A-TG envelope protocol for safe multi-agent collaboration in group chats.",
"type": "module",
"main": "bridge.js",
"bin": {
"telegram-ai-bridge": "start.js"
},
"files": [
"start.js",
"bridge.js",
"config.js",
"sessions.js",
"tasks.js",
"progress.js",
"turn-state.js",
"streaming-preview.js",
"send-retry.js",
"file-ref-protect.js",
"flush-gate.js",
"rate-limiter.js",
"idle-monitor.js",
"dir-manager.js",
"doctor.js",
"markdown-to-tg.js",
"output-relay.js",
"discuss-mode.js",
"group-context-pipeline.js",
"telegram-command-routing.js",
"shared-context.js",
"cron.js",
"adapters/",
"commands/",
"executor/",
"agent/",
"a2a/",
"shared-context/",
"scripts/",
"launchd/",
"docs/",
"config.example.json",
"README.md",
"README_CN.md",
"AGENTS.md",
"LICENSE"
],
"packageManager": "bun@1.3.9",
"engines": {
"bun": ">=1.3.9"
},
"homepage": "https://github.com/AliceLJY/telegram-ai-bridge",
"repository": {
"type": "git",
"url": "https://github.com/AliceLJY/telegram-ai-bridge.git"
},
"bugs": {
"url": "https://github.com/AliceLJY/telegram-ai-bridge/issues"
},
"keywords": [
"telegram",
"claude",
"claude-code",
"codex",
"agy",
"antigravity",
"gemini",
"kimi",
"ai-agent",
"multi-agent",
"agent-to-agent",
"a2a",
"a2a-tg",
"war-room",
"self-hosted",
"grammy",
"cli",
"remote-control",
"bun"
],
"scripts": {
"start": "bun start.js start",
"bootstrap": "bun start.js bootstrap",
"check": "bun start.js check",
"setup": "bun start.js setup",
"config": "bun start.js config",
"bridge": "bun bridge.js",
"agent": "bun agent/server.js",
"test": "bun test",
"check-configs": "bun scripts/check-configs.js"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
"@openai/codex-sdk": "0.125.0",
"croner": "^9.1.0",
"google-auth-library": "^9.15.1",
"grammy": "^1.45.0",
"https-proxy-agent": "^7.0.6",
"ioredis": "^5.11.1"
},
"overrides": {
"@hono/node-server": "^1.19.13",
"fast-uri": "^3.1.3",
"hono": "^4.12.30",
"ip-address": "^10.2.0",
"qs": "^6.15.3"
}
}