-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 802 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 802 Bytes
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
{
"name": "claude-code-web-interface",
"version": "1.0.0",
"description": "A web interface for Claude Code CLI",
"main": "index.js",
"scripts": {
"start": "cd server && npm start",
"start:frontend": "cd frontend && npm run dev",
"start:backend": "cd server && npm start",
"start:cloudflare": "./start-with-cloudflare.sh",
"extract:tunnels": "./extract-tunnel-urls.sh",
"tunnel:quick": "./quick-tunnel.sh",
"tunnel:frontend": "./quick-tunnel.sh 3001",
"tunnel:backend": "./quick-tunnel.sh 3000",
"install-deps": "cd server && npm install && cd ../frontend && npm install && cd ..",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"claude",
"ai",
"cli",
"web-interface"
],
"author": "",
"license": "MIT"
}