forked from jontsai/openclaw-command-center
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "openclaw-command-center",
"version": "1.4.0",
"description": "🦞 AI agent command and control dashboard — Spawn more Overlords!",
"main": "lib/server.js",
"type": "commonjs",
"scripts": {
"start": "node lib/server.js",
"dev": "node --watch lib/server.js",
"dev:src": "esbuild src/index.js --bundle --platform=node --outfile=lib/server.js --watch",
"build": "esbuild src/index.js --bundle --platform=node --outfile=lib/server.js --banner:js='#!/usr/bin/env node' && prettier --write lib/server.js",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint src/ tests/",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint src/ tests/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "echo 'Ready to spawn Overlords 🦞'"
},
"keywords": [
"ai",
"agent",
"dashboard",
"monitoring",
"claude",
"chatgpt",
"llm",
"command-center",
"openclaw"
],
"author": "OpenClaw Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jontsai/openclaw-command-center.git"
},
"bugs": {
"url": "https://github.com/jontsai/openclaw-command-center/issues"
},
"homepage": "https://github.com/jontsai/openclaw-command-center#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"esbuild": "^0.27.3",
"eslint": "^8.56.0",
"prettier": "^3.2.4"
}
}