forked from Wechat-ggGitHub/wechat-claude-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 998 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 998 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": "wechat-opencode",
"version": "1.0.0",
"description": "Chat with OpenCode from WeChat - a bridge from personal WeChat to local OpenCode",
"type": "module",
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"start": "node dist/main.js",
"run": "node dist/main.js start",
"desktop": "npm run build && node scripts/desktop.mjs",
"dev": "tsc --watch",
"test": "node --test dist/tests/*.test.js",
"setup": "node dist/main.js setup",
"daemon": "node dist/daemon.js"
},
"dependencies": {
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"@types/qrcode-terminal": "^0.12.0",
"typescript": "^5.7.0"
},
"keywords": ["wechat", "opencode", "bridge", "chat", "skill"],
"author": "Wechat-ggGitHub",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Wechat-ggGitHub/wechat-opencode.git"
}
}