-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.66 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.66 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
109
110
111
112
113
114
{
"name": "droidground",
"version": "1.0.5",
"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": "copyfiles \"public/**/*\" dist && copyfiles -u 2 \"dist/client/**/*\" dist && copyfiles -u 2 \"dist/client/assets/**/*\" dist/public",
"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/fetch-scrcpy-server": "^1.0.0",
"@yume-chan/scrcpy": "^2.0.1",
"@yume-chan/scrcpy-decoder-tinyh264": "^2.0.1",
"@yume-chan/scrcpy-decoder-webcodecs": "^2.0.1",
"ajv": "^8.17.1",
"axios": "^1.9.0",
"compression": "^1.8.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"follow-redirects": "^1.15.9",
"frida": "^17.7.3",
"frida-java-bridge": "^7.0.12",
"lottie-react": "^2.4.1",
"motion": "^12.10.4",
"multer": "^2.0.0",
"pino": "^9.6.0",
"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.0",
"ws": "^8.18.1"
},
"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",
"@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.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.2",
"concurrently": "^9.1.2",
"copyfiles": "^2.4.1",
"daisyui": "^5.0.28",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.2",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.15",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-tsconfig-paths": "^5.1.4",
"zx": "^8.5.4"
},
"overrides": {
"file-type": "^21.3.2",
"yauzl": "^3.2.1"
}
}