-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.11 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
66
67
68
69
70
{
"name": "simple.webplatform",
"private": true,
"version": "4.0.0",
"type": "module",
"scripts": {
"start": "concurrently \"npx tsx src/api/index.ts\" \"vite\"",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"build:frontend": "vite build",
"build:backend": "vite build -c vite.backend.config.ts",
"build:sea:win": "node scripts/build-sea-win.mjs",
"build:sea:linux": "node scripts/build-sea-unix.mjs",
"build:sea:macos": "node scripts/build-sea-unix.mjs",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check ."
},
"bin": "dist-api/index.cjs",
"dependencies": {
"@clack/prompts": "^1.6.0",
"@homebridge/ciao": "^1.1.8",
"@logtape/file": "^2.0.4",
"@logtape/logtape": "^2.0.4",
"@logtape/pretty": "^2.0.4",
"@types/node": "^22.10.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^4.3.1",
"@yume-chan/adb": "^2.5.1",
"@yume-chan/adb-scrcpy": "^2.3.2",
"@yume-chan/adb-server-node-tcp": "^2.5.2",
"@yume-chan/android-bin": "^2.1.0",
"@yume-chan/scrcpy-decoder-webcodecs": "^2.5.0",
"@yume-chan/stream-extra": "2.1.0",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"evilscan": "^1.9.1",
"express": "^4.22.2",
"geoip-lite": "^1.4.10",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.2.1",
"node-hid": "^3.3.0",
"postcss": "^8.4.40",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"react-router-dom": "^6.26.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwindcss": "^3.4.7",
"tsx": "^4.22.4",
"typescript": "^5.2.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.67.0",
"vite": "^7.3.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/express": "^5.0.6",
"jest": "^29.7.0",
"jiti": "^2.6.1",
"postject": "^1.0.0-alpha.6"
}
}