forked from mxx1111/remote-code-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "remote-shell-mobile",
"version": "0.1.0",
"private": true,
"description": "A self-hosted mobile workspace for Shell, Claude Code, Codex, tmux, and ttyd on macOS.",
"license": "Apache-2.0",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "vite --config vite.spa.config.ts",
"build": "vite build --config vite.spa.config.ts --outDir dist-spa",
"start": "node --env-file-if-exists=.env.local server/local-terminal-server.mjs",
"lint": "eslint . --ignore-pattern dist-spa",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run build"
},
"dependencies": {
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"eslint": "9.39.4",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "16.4.0",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"typescript-eslint": "8.59.3",
"vite": "8.2.1"
},
"type": "module"
}