-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.51 KB
/
package.json
File metadata and controls
72 lines (72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "clawcontrol",
"version": "0.2.3",
"description": "CLI tool for deploying and managing OpenClaw instances on VPS providers",
"type": "module",
"main": "dist/index.js",
"bin": {
"clawcontrol": "bin/clawcontrol.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun --watch src/index.tsx",
"build": "tsup",
"start": "bun dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"keywords": [
"openclaw",
"cli",
"tui",
"vps",
"deployment",
"hetzner",
"digitalocean",
"tailscale",
"terminal",
"automation",
"cloud",
"ssh",
"devops"
],
"author": "Islem Maboud",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ipenywis/clawcontrol.git"
},
"homepage": "https://github.com/ipenywis/clawcontrol#readme",
"bugs": {
"url": "https://github.com/ipenywis/clawcontrol/issues"
},
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@opentui/core": "^0.1.77",
"@opentui/react": "^0.1.77",
"react": "^19.0.0",
"ssh2": "^1.16.0",
"open": "^10.1.0",
"chalk": "^5.4.1",
"ora": "^8.1.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/ssh2": "^1.15.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}