-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.76 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
{
"name": "openclaw-cli",
"version": "0.7.2",
"description": "AI gateway watchdog for OpenClaw — monitor, start, stop and auto-restart your AI assistant gateway from the CLI. Visit https://openclaw-cli.app",
"type": "module",
"bin": {
"openclaw-cli": "./dist/index.js",
"openclaw-doctor": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"release": "bash scripts/publish.sh",
"app:start": "electron .",
"app:package": "electron-forge package",
"app:make": "electron-forge make",
"validate:aliases": "node scripts/validate-aliases.mjs",
"smoke:aliases": "bash scripts/smoke-aliases.sh"
},
"keywords": [
"openclaw",
"openclaw-cli",
"ai-gateway",
"watchdog",
"ai-assistant",
"gateway-monitor",
"daemon",
"health-check",
"cli-tool",
"macos"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sobranier/openclaw-cli.git"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.3"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@types/node": "^25.3.3",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"author": "pdd <ywq1991@gmail.com>",
"bugs": {
"url": "https://github.com/Sobranier/openclaw-cli/issues"
},
"homepage": "https://openclaw-cli.app",
"main": "app-dist/main.js",
"productName": "OpenClaw CLI"
}