-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "wxcode-bridge",
"version": "0.1.1",
"description": "Bridge WeChat to OpenCode — control your AI coding agent from WeChat",
"type": "module",
"bin": {
"wxcode-bridge": "dist/cli.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"start": "tsx cli.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeavyBunny19C/wxcode-bridge.git"
},
"homepage": "https://github.com/HeavyBunny19C/wxcode-bridge#readme",
"bugs": {
"url": "https://github.com/HeavyBunny19C/wxcode-bridge/issues"
},
"dependencies": {
"@opencode-ai/sdk": "latest",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"msw": "^2.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"keywords": ["wechat", "opencode", "ai", "coding-agent", "clawbot", "ilink", "bridge", "wxcode"]
}