-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "weclaws",
"version": "0.2.7",
"private": true,
"description": "Self-hosted 多用户微信 AI 智能体控制台,支持 Web 管理、Docker Compose、二维码分享、MCP、技能、沙盒执行和长期运行。",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/yokingma/weclaws.git"
},
"homepage": "https://github.com/yokingma/weclaws#readme",
"bugs": {
"url": "https://github.com/yokingma/weclaws/issues"
},
"keywords": [
"wechat",
"wechat-bot",
"weixin",
"ai-agent",
"self-hosted",
"docker-compose",
"mcp",
"sandbox",
"multi-user",
"bot-management"
],
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"overrides": {
"defu": "6.1.7",
"@esbuild-kit/core-utils>esbuild": "0.25.12",
"postcss": "8.5.14",
"ws": "8.20.1"
}
},
"scripts": {
"dev:web": "pnpm --filter @weclaws/web dev",
"dev:supervisor": "pnpm --filter @weclaws/supervisor dev",
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"test:fastagent-contract": "pnpm exec vitest --run tests/integration/fastagent-cli-contract.test.ts",
"lint": "pnpm run typecheck",
"version:check": "node ./scripts/product-version.mjs check",
"version:sync": "node ./scripts/product-version.mjs sync",
"db:generate": "pnpm --filter @weclaws/db db:generate",
"db:migrate": "pnpm --filter @weclaws/db db:migrate"
},
"devDependencies": {
"@types/node": "^22.13.10",
"vite": "^6.4.2",
"vitest": "^4.1.6",
"typescript": "^5.7.3"
}
}