-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "wechat-codex",
"version": "1.0.0",
"description": "Use Codex from WeChat with a local Node.js daemon and no gateway",
"type": "module",
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"start": "node dist/src/main.js",
"dev": "tsc --watch",
"test": "npm run build && node --test dist/tests/*.test.js",
"setup": "node dist/src/main.js setup",
"daemon": "bash scripts/daemon.sh"
},
"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", "codex", "openai", "agent", "cli", "bridge"],
"author": "DrDavidDa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DrDavidDa/WeChatCodex.git"
},
"homepage": "https://github.com/DrDavidDa/WeChatCodex#readme",
"bugs": {
"url": "https://github.com/DrDavidDa/WeChatCodex/issues"
}
}