-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 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
{
"name": "@marukohe/gate",
"version": "1.1.0",
"description": "Chat with Claude Code CLI on remote servers via SSH + tmux, from any device",
"type": "module",
"bin": {
"gate": "bin/gate.js"
},
"files": [
"bin/",
"server/dist/",
"client/dist/"
],
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev --workspace=server",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build --workspace=client && npm run build --workspace=server",
"start": "npm run start --workspace=server",
"prepare": "npm run build"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"express": "^5.2.1",
"ssh2": "^1.17.0",
"uuid": "^13.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Marukohe/gate.git"
},
"license": "MIT",
"engines": {
"node": ">=20"
}
}