-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.52 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
{
"name": "simfarm",
"version": "0.1.2",
"private": false,
"type": "module",
"description": "Stream iOS, Android and WeChat mini program simulators over one WebSocket, and drive them from another machine",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BANG88/simfarm.git"
},
"bugs": {
"url": "https://github.com/BANG88/simfarm/issues"
},
"homepage": "https://github.com/BANG88/simfarm#readme",
"keywords": [
"ios",
"android",
"wechat",
"miniprogram",
"simulator",
"emulator",
"screen-mirroring",
"remote-control",
"scrcpy",
"websocket",
"devtools",
"macos"
],
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.4.0",
"bin": {
"simfarm": "dist/main.js"
},
"files": [
"dist/",
"web/",
"vendor/scrcpy-server.json",
"docs/"
],
"scripts": {
"start": "node src/main.ts",
"dev": "node --watch src/main.ts",
"test": "SIMFARM_LOG=error node --test 'test/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"scrcpy:download": "node src/main.ts download-scrcpy",
"build": "bun tools/build.ts",
"prepack": "bun run build && node tools/pack-manifest.ts strip",
"postpack": "node tools/pack-manifest.ts restore"
},
"dependencies": {
"jpeg-js": "^0.4.4",
"serve-sim": "^0.1.45",
"ws": "^8.21.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/ws": "^8.5.13",
"typescript": "^5.9.0"
}
}