-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.71 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.71 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
{
"name": "rustlabs-cli",
"version": "1.1.3",
"description": "RustLabs CLI - Multi-agent AI orchestration terminal powered by OpenClaw",
"main": "dist/index.js",
"bin": {
"rustlabs": "dist/index.js",
"rl": "dist/index.js"
},
"type": "module",
"license": "MIT",
"author": "RustLabs",
"homepage": "https://rustlabs.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/Beandon13/RustLabsCli.git"
},
"keywords": [
"cli",
"ai",
"agent",
"openclaw",
"terminal",
"tui",
"multi-agent",
"coding-agent",
"rustlabs"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"watch": "tsx watch src/index.ts",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build",
"pack:local": "npm run build && npm pack"
},
"files": [
"dist",
"scripts/postinstall.js",
"scripts/install.sh"
],
"dependencies": {
"@clack/prompts": "^0.8.2",
"axios": "^1.7.9",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"conf": "^13.0.1",
"diff": "^5.2.0",
"fullscreen-ink": "^0.1.0",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"nanoid": "^5.0.9",
"ora": "^8.1.0",
"react": "^18.2.0",
"table": "^6.8.2",
"terminal-link": "^3.0.0",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/diff": "^5.2.2",
"@types/node": "^22.10.2",
"@types/react": "^18.2.48",
"@types/ws": "^8.5.13",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}