-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 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
{
"name": "clideck",
"version": "1.30.1",
"description": "One screen for all your AI coding agents — run, monitor, and manage multiple CLI agents from a single browser tab",
"main": "server.js",
"bin": {
"clideck": "bin/clideck.js"
},
"scripts": {
"start": "node server.js",
"build:css": "tailwindcss -i src/input.css -o public/tailwind.css --minify",
"prepublishOnly": "npm run build:css"
},
"keywords": [
"terminal",
"cli",
"ai",
"agent",
"claude",
"codex",
"gemini",
"opencode",
"dashboard",
"multiplexer",
"xterm"
],
"author": "Or Kuntzman",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/rustykuntz/clideck.git"
},
"homepage": "https://clideck.dev/",
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"node-pty": "^1.1.0",
"ws": "^8.19.0"
},
"devDependencies": {
"tailwindcss": "^3.4.19"
},
"engines": {
"node": ">=18"
}
}