-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.25 KB
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "remote-agent",
"version": "1.0.0",
"description": "Mobile-friendly web control panel for Claude Code and GitHub Copilot CLI",
"main": "dist/server/index.js",
"type": "module",
"scripts": {
"build": "tsc && npm run build:client",
"build:client": "cd src/client && npm run build",
"install:client": "cd src/client && npm install",
"install:all": "npm install && npm run install:client",
"clean": "rm -rf dist",
"dev": "tsx watch src/server/index.ts",
"dev:client": "cd src/client && npm run dev",
"watch": "concurrently -n server,client -c blue,magenta \"npm run dev\" \"npm run dev:client\"",
"start": "node dist/server/index.js",
"tunnel": "./scripts/tunnel.sh",
"tunnel:win": "powershell -ExecutionPolicy Bypass -File .\\scripts\\tunnel.ps1"
},
"dependencies": {
"@fastify/static": "^8.0.0",
"@fastify/websocket": "^11.0.0",
"chokidar": "^4.0.0",
"fastify": "^5.0.0",
"node-pty": "^1.1.0",
"uuid": "^10.0.0",
"web-push": "^3.6.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.0",
"@types/ws": "^8.5.0",
"concurrently": "^9.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}