-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "cloudcode",
"version": "0.1.11",
"description": "Self-hosted, mobile-first web interface for managing local CLI-based coding agents over Tailscale",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexchaomander/CloudCode.git"
},
"homepage": "https://github.com/alexchaomander/CloudCode#readme",
"engines": {
"node": ">=22.12"
},
"bugs": {
"url": "https://github.com/alexchaomander/CloudCode/issues"
},
"keywords": [
"coding-agent",
"claude-code",
"tmux",
"tailscale",
"self-hosted",
"terminal",
"mobile"
],
"private": false,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\"",
"build": "npm run build --workspace=backend && npm run build --workspace=frontend",
"migrate": "npm run migrate --workspace=backend",
"start": "npm run start --workspace=backend",
"install:cli": "npm run bundle --workspace=backend && npm install -g --force ./backend",
"restart": "lsof -ti:3000,3333 | xargs kill -9 2>/dev/null || true && npm run build && npm start"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"concurrently": "^8.2.2"
}
}