-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "claude-code-remote",
"version": "0.1.9",
"description": "Mobile-first remote access to Claude Code sessions from your phone",
"type": "module",
"main": "dist/index.js",
"bin": {
"claude-remote": "dist/index.js"
},
"files": [
"dist",
"web",
"scripts"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"claude",
"claude-code",
"terminal",
"remote",
"mobile",
"pty",
"websocket"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yazinsai/claude-code-remote.git"
},
"author": "",
"license": "MIT",
"scripts": {
"postinstall": "node scripts/postinstall.cjs",
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "DEV_MODE=true tsx watch server/index.ts"
},
"dependencies": {
"cookie-parser": "^1.4.7",
"express": "^4.18.2",
"http-proxy-middleware": "^3.0.0",
"node-cron": "^4.2.1",
"node-pty": "^1.0.0",
"qrcode-terminal": "^0.12.0",
"strip-ansi": "^7.1.0",
"uuid": "^9.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/connect-livereload": "^0.6.3",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^4.17.21",
"@types/livereload": "^0.9.5",
"@types/node": "^20.10.0",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"connect-livereload": "^0.6.1",
"livereload": "^0.10.3",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
}
}