-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "droidground",
"version": "1.0.13",
"type": "module",
"author": "Angelo Delicato",
"scripts": {
"dev": "tsx server.ts",
"dev:server": "tsx server.ts",
"dev:client": "npm run build:client && vite --config vite.config.ts dev",
"build:setup": "rimraf dist && tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --ssr src/client/entry-server.tsx --outDir dist/server",
"typecheck": "tsc --noEmit",
"serve": "npm run build && cross-env NODE_ENV=production node ./dist/server",
"serve:local": "vite serve",
"spawner": "tsx examples/spawner/spawner.ts",
"clean": "rimraf dist/",
"copy-files": "tsx scripts/copy-files.ts",
"format": "prettier --write src",
"protobuf": "buf generate",
"scrcpy": "tsx scripts/scrcpy.ts",
"companion": "tsx scripts/companion.ts",
"build": "tsx scripts/build.ts",
"postinstall": "npm run build"
},
"dependencies": {
"@bufbuild/protobuf": "2.4.0",
"@tailwindcss/vite": "4.1.4",
"@tanstack/react-router": "1.120.3",
"@xterm/addon-fit": "0.10.0",
"@xterm/addon-search": "0.15.0",
"@xterm/xterm": "5.5.0",
"@yume-chan/adb-scrcpy": "2.0.1",
"@yume-chan/adb-server-node-tcp": "2.0.1",
"@yume-chan/scrcpy": "2.0.1",
"@yume-chan/scrcpy-decoder-tinyh264": "2.0.1",
"@yume-chan/scrcpy-decoder-webcodecs": "2.0.1",
"ajv": "8.20.0",
"axios": "1.18.1",
"compression": "1.8.1",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "16.5.0",
"express": "5.2.1",
"follow-redirects": "1.16.0",
"frida": "17.7.3",
"frida-java-bridge": "7.0.12",
"lottie-react": "2.4.1",
"motion": "12.10.4",
"multer": "2.2.0",
"pino": "9.13.1",
"pino-http": "10.4.0",
"pino-pretty": "13.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "7.56.3",
"react-hot-toast": "2.5.2",
"react-icons": "5.5.0",
"serve-static": "2.2.0",
"tailwindcss": "4.1.4",
"tsx": "4.19.3",
"uuid": "11.1.1",
"ws": "8.21.0"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"devDependencies": {
"@bufbuild/buf": "1.54.0",
"@bufbuild/protoc-gen-es": "2.4.0",
"@eslint/js": "10.0.1",
"@tanstack/router-devtools": "1.120.3",
"@types/compression": "1.7.5",
"@types/concurrently": "6.4.0",
"@types/cors": "2.8.17",
"@types/eslint": "9.6.1",
"@types/express": "5.0.1",
"@types/follow-redirects": "1.14.4",
"@types/multer": "1.4.12",
"@types/node": "22.15.2",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"@types/serve-static": "1.15.7",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.65.0",
"@typescript-eslint/parser": "8.65.0",
"@vitejs/plugin-react": "4.4.1",
"@vitest/coverage-v8": "4.1.8",
"concurrently": "9.1.2",
"daisyui": "5.0.28",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.8.0",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"tsc-alias": "1.8.15",
"typescript": "5.8.3",
"vite": "6.4.3",
"vite-tsconfig-paths": "5.1.4",
"zx": "8.8.5"
}
}