-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.29 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.29 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
68
69
{
"name": "clawmaster",
"version": "0.3.1",
"description": "龙虾管理大师——OpenClaw 生态的六边形战士",
"bin": {
"clawmaster": "bin/clawmaster.mjs"
},
"files": [
"bin/clawmaster.mjs",
"bundled-skills/content-draft/",
"bundled-skills/clawprobe-cost-digest/",
"bundled-skills/ernie-image/",
"bundled-skills/models-dev/",
"bundled-skills/package-download-tracker/",
"bundled-skills/paddleocr-doc-parsing/",
"plugins/memory-clawmaster-powermem/",
"plugins/openclaw-ernie-image/",
"packages/backend/dist/",
"packages/backend/package.json",
"packages/web/dist/",
"package.json",
"README.md",
"README_CN.md",
"README_JP.md",
"LICENSE"
],
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=@openclaw-manager/web",
"dev:web": "npm run dev --workspace=@openclaw-manager/backend & npm run dev --workspace=@openclaw-manager/web",
"dev:backend": "npm run dev --workspace=@openclaw-manager/backend",
"build": "npm run build --workspace=@openclaw-manager/web",
"build:backend": "npm run build --workspace=@openclaw-manager/backend",
"prepare:tauri-memory-plugin": "node scripts/prepare-tauri-memory-plugin.mjs",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"prepack": "npm run build:backend && npm run build",
"test:cli": "node --test bin/*.test.mjs tests/desktop/harness.unit.test.mjs",
"test:plugins": "npx tsx --test plugins/memory-clawmaster-powermem/*.test.ts",
"test:desktop": "node --test tests/desktop/smoke.test.mjs",
"test:wizard-smoke": "node tests/install/wizard-install-smoke.mjs",
"test": "npm run test:cli && npm run test:plugins && npm run test --workspace=@openclaw-manager/backend && npm run test --workspace=@openclaw-manager/web"
},
"keywords": [
"openclaw",
"desktop",
"manager",
"tauri"
],
"author": "OpenClaw Team",
"license": "Apache-2.0",
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"js-yaml": "^4.1.1",
"selenium-webdriver": "^4.34.0"
},
"dependencies": {
"@langchain/core": "^1.1.38",
"@sinclair/typebox": "^0.34.0",
"@tauri-apps/api": "^2.10.1",
"cors": "^2.8.5",
"express": "^4.21.0",
"powermem": "^0.1.0",
"ws": "^8.18.0"
}
}