-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "shoji-terminal",
"version": "0.1.0",
"description": "tmux Web UI for mobile - view and control tmux panes from your browser",
"bin": {
"shoji": "./bin/shoji.mjs"
},
"files": [
"bin/",
"dist/"
],
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"dev:server": "SHOJI_DEV=1 bun --watch src/server/index.ts",
"dev:client": "vite",
"build": "vite build && bun build src/server/index.ts --outdir dist/server --target bun",
"prepublishOnly": "bun run build"
},
"dependencies": {
"hono": "^4.7.4",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@hono/node-server": "^1.13.8",
"@tailwindcss/vite": "^4.1.18",
"@types/bun": "^1.2.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"concurrently": "^9.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.5",
"tailwindcss": "^4.0.6",
"typescript": "^5.7.3",
"vite": "^6.1.0"
},
"license": "MIT"
}