-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.04 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
{
"name": "openclaw-project-dashboard",
"version": "2.2.0",
"description": "Operations-first project dashboard for OpenClaw with hierarchical boards, agent-aware task routing, OpenClaw model selection, and audit-friendly task execution.",
"main": "task-server.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"files": [
"agents.html",
"dashboard.html",
"docs",
"lib",
"schema",
"scripts",
"src",
"storage",
"CHANGELOG.md",
"LICENSE",
"README.md",
"RELEASE.md",
"sw.js",
"task-server.js",
".env.example"
],
"scripts": {
"start": "node task-server.js",
"validate": "node scripts/dashboard-validation.js && node scripts/docs-drift-check.js",
"test:filters": "node tests/test-filter-behavior.js",
"test:routes": "node tests/test-route-modules.js",
"dag:telemetry": "node scripts/dag-telemetry-counter.js",
"mcp:telemetry": "node scripts/mcp-adoption-counter.js",
"perf": "node scripts/perf-benchmark.mjs",
"db:drift-check": "node scripts/schema-drift-check.js",
"test": "npx playwright test",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"package:release": "npm pack --pack-destination dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgedeon/openclaw-project-dashboard.git"
},
"keywords": [
"openclaw",
"dashboard",
"tasks",
"agents",
"project-management"
],
"author": "pgedeon",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgedeon/openclaw-project-dashboard/issues"
},
"homepage": "https://github.com/pgedeon/openclaw-project-dashboard#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"busboy": "^1.6.0",
"pg": "^8.23.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"puppeteer": "^25.10.0",
"puppeteer-core": "^25.10.0"
},
"overrides": {
"basic-ftp": "5.3.1",
"js-yaml": "4.3.1",
"ip-address": "10.3.1"
}
}