-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.02 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@ww-ai-lab/openclaw-office",
"version": "2026.4.10-2",
"description": "Visual monitoring & management frontend for OpenClaw Multi-Agent system",
"keywords": [
"ai-agents",
"dashboard",
"monitoring",
"multi-agent",
"office",
"openclaw",
"react",
"visualization",
"vite"
],
"homepage": "https://github.com/WW-AI-Lab/openclaw-office",
"bugs": {
"url": "https://github.com/WW-AI-Lab/openclaw-office/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/WW-AI-Lab/openclaw-office.git"
},
"bin": {
"openclaw-office": "bin/openclaw-office.js"
},
"files": [
"dist/",
"bin/",
"LICENSE",
"README.md"
],
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"check": "pnpm lint && pnpm format:check",
"dev": "vite",
"platform": "node bin/platform.js",
"format": "oxfmt --write src/",
"format:check": "oxfmt --check src/",
"lint": "oxlint src/",
"preview": "vite preview",
"start": "node ./bin/openclaw-office.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.2.1",
"immer": "^10.1.1",
"lucide-react": "^0.575.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.4",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"react-textarea-autosize": "^8.5.9",
"recharts": "^2.15.0",
"remark-gfm": "^4.0.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.5.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^26.1.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=22"
}
}