-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "agentclaw",
"version": "0.1.0",
"description": "Self-hosted multi-agent gateway that brings Codex CLI into Feishu, WeCom, and WeChat with persistent workspaces, memory, and local skills.",
"main": "dist/server.js",
"scripts": {
"test": "LOG_LEVEL=error vitest run",
"dev": "node ./bin/start-gateway.mjs dev",
"start": "node ./bin/start-gateway.mjs start",
"up": "node ./bin/start-gateway.mjs dev",
"build": "tsc -p tsconfig.json",
"weixin:login": "npm run build && node ./bin/weixin-login.mjs",
"docx:append-iteration": "npm run build && node dist/scripts/append-iteration-doc.js",
"repair:users": "npm run build && node dist/scripts/repair-users.js",
"config:check": "node ./bin/config-check.mjs",
"publish:workspace": "node ./bin/publish-workspace.mjs"
},
"keywords": [
"codex",
"codex-cli",
"agent",
"multi-agent",
"feishu",
"wecom",
"weixin",
"wechat",
"self-hosted",
"automation",
"memory",
"gateway"
],
"author": "bairui",
"license": "ISC",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/baibairui/AgentClaw.git"
},
"bugs": {
"url": "https://github.com/baibairui/AgentClaw/issues"
},
"homepage": "https://github.com/baibairui/AgentClaw#readme",
"bin": {
"agentclaw": "./bin/agentclaw.mjs"
},
"type": "module",
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.59.0",
"@nut-tree-fork/nut-js": "^4.2.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pngjs": "^7.0.0",
"playwright": "^1.58.2",
"silk-wasm": "^3.7.1",
"strip-ansi": "^7.2.0",
"xml2js": "^0.6.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
"@types/xml2js": "^0.4.14",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}