-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.33 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.33 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "clawkernel",
"version": "2026.2.26",
"description": "ClawKernel — Mission Control & Automation Dashboard for OpenClaw. Manage AI agents, schedule cron jobs, monitor live sessions, and stream real-time chat from a single interface.",
"keywords": [
"clawkernel",
"openclaw",
"openclaw-gateway",
"mission-control",
"dashboard",
"automation",
"ai-agents",
"self-hosted",
"cron",
"real-time",
"websocket",
"react",
"vite",
"AI代理",
"智能体",
"任务控制",
"自动化仪表板",
"定时任务",
"实时聊天",
"自托管"
],
"homepage": "https://github.com/Saleh7/clawkernel",
"bugs": {
"url": "https://github.com/Saleh7/clawkernel/issues"
},
"license": "MIT",
"author": {
"name": "Saleh",
"url": "https://github.com/Saleh7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Saleh7/clawkernel.git"
},
"type": "module",
"bin": {
"clawkernel": "bin/clawkernel.mjs"
},
"files": [
"dist/",
"bin/",
"README.md",
"public/cover.png",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently -n server,client -c magenta,cyan \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "CK_PORT=4174 tsx watch server/index.ts",
"dev:client": "vite",
"build:server": "esbuild server/index.ts --bundle --packages=external --platform=node --format=esm --outfile=bin/server.mjs",
"build": "tsc -b && vite build && npm run build:server",
"check": "npx @biomejs/biome check --write src/ server/",
"check:ci": "npx @biomejs/biome check src/ server/",
"format": "npx @biomejs/biome format --write src/ server/",
"typecheck": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
"knip": "knip",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hono/node-server": "^1.19.9",
"@noble/ed25519": "^3.0.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-virtual": "^3.13.19",
"@types/dagre": "^0.7.54",
"@xyflow/react": "^12.10.1",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dompurify": "^3.1.2",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.3",
"lucide-react": "^0.564.0",
"marked": "^17.0.2",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.13.0",
"shiki": "^3.22.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.3",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.18.1",
"esbuild": "^0.27.3",
"happy-dom": "^20.8.3",
"knip": "^5.85.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}