-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.24 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "code-agents-webcli",
"version": "5.1.2",
"description": "Multiuser web CLI for Claude Code, Codex, and terminal sessions",
"main": "dist/server/index.js",
"bin": {
"code-agents-webcli": "bin/cc-web.js",
"cc-web": "bin/cc-web.js"
},
"scripts": {
"build": "node scripts/build.js",
"prepare": "node scripts/build.js",
"build:watch": "node scripts/build.js --watch",
"start": "npm run build && node bin/cc-web.js",
"dev": "npm run build && node bin/cc-web.js --dev",
"test": "npm run build && mocha --exit test/*.test.js",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.client.json",
"prepack": "npm run build",
"release:pr": "bash scripts/release-pr.sh",
"test:browser": "npm run build && node test/browser/run.js",
"verify:install": "bash scripts/verify-install.sh"
},
"keywords": [
"claude",
"claude-code",
"web",
"terminal",
"browser",
"remote",
"ai",
"github-oauth",
"sqlite",
"multiuser"
],
"author": "Daniele Viti",
"license": "MIT",
"dependencies": {
"@lydell/node-pty": "1.2.0-beta.14",
"@ngrok/ngrok": "^1.7.0",
"@xterm/headless": "^6.0.0",
"commander": "^14.0.3",
"cors": "^2.8.6",
"express": "^5.2.1",
"open": "^11.0.0",
"ws": "^8.21.1"
},
"engines": {
"node": ">=22.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnviti/code-agents-webcli.git"
},
"homepage": "https://github.com/dnviti/code-agents-webcli#readme",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@types/ws": "^8.18.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"esbuild": "^0.28.1",
"mermaid": "^11.16.0",
"mocha": "^11.7.5",
"monaco-editor": "^0.56.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^6.0.2"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"diff": "^8.0.3"
}
}