forked from chrysb/alphaclaw
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "@chrysb/alphaclaw",
"version": "0.8.5",
"publishConfig": {
"access": "public"
},
"description": "Setup UI, gateway manager, and onboarding wrapper for OpenClaw",
"repository": {
"type": "git",
"url": "https://github.com/chrysb/alphaclaw.git"
},
"bugs": {
"url": "https://github.com/chrysb/alphaclaw/issues"
},
"homepage": "https://github.com/chrysb/alphaclaw#readme",
"license": "MIT",
"bin": {
"alphaclaw": "bin/alphaclaw.js"
},
"files": [
"bin/",
"lib/",
"patches/",
"scripts/apply-openclaw-patches.js"
],
"scripts": {
"start": "node bin/alphaclaw.js start",
"build:ui": "node scripts/build-ui.mjs",
"postinstall": "node ./scripts/apply-openclaw-patches.js",
"test": "vitest run",
"test:watch": "vitest",
"test:watchdog": "vitest run tests/server/watchdog.test.js tests/server/watchdog-db.test.js tests/server/routes-watchdog.test.js",
"test:coverage": "vitest run --coverage",
"prepack": "npm run build:ui"
},
"dependencies": {
"express": "^4.21.0",
"http-proxy": "^1.18.1",
"openclaw": "2026.4.1",
"patch-package": "^8.0.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"chart.js": "^4.5.1",
"esbuild": "^0.25.9",
"htm": "^3.1.1",
"marked": "^16.4.1",
"preact": "^10.27.2",
"supertest": "^7.2.2",
"tailwindcss": "^3.4.17",
"vitest": "^4.0.18",
"wouter-preact": "^3.7.1"
},
"engines": {
"node": ">=22.14.0"
}
}