-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 942 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
35
{
"name": "wechat-ai-bridge",
"version": "1.2.0",
"description": "Self-hosted WeChat bridge for Claude Code and Codex, with an experimental Gemini text backend",
"type": "module",
"scripts": {
"start": "bun start.js start",
"bootstrap": "bun start.js bootstrap",
"setup": "bun start.js setup",
"check": "bun start.js check",
"config": "bun start.js config",
"test": "node --test",
"check:syntax": "node scripts/check-syntax.mjs"
},
"engines": {
"bun": ">=1.3.9"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AliceLJY/wechat-ai-bridge.git"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
"@openai/codex-sdk": "^0.107.0",
"google-auth-library": "^10.9.0",
"qrcode-terminal": "^0.12.0"
},
"overrides": {
"fast-uri": "^3.1.3",
"hono": "^4.12.30",
"ip-address": "^10.2.0",
"qs": "^6.15.3"
}
}