-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.94 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
{
"name": "android-remote-lab",
"version": "0.1.1",
"description": "Secure on-demand control and physical-device testing for Android through a Windows relay",
"license": "MIT",
"author": "heelee912",
"repository": {
"type": "git",
"url": "https://github.com/heelee912/android-remote-lab.git"
},
"homepage": "https://github.com/heelee912/android-remote-lab#readme",
"bugs": "https://github.com/heelee912/android-remote-lab/issues",
"os": ["win32"],
"engines": {
"node": ">=20"
},
"bin": {
"arlab": "bin/arlab.mjs",
"agent-device-companion": "src/adapter.mjs"
},
"files": [
"bin/",
"src/",
"windows/Build-Launcher.ps1",
"windows/CompanionRelayLauncher.cs",
"windows/CompanionRelayLauncher.exe",
"windows/CompanionRelayLauncher.manifest.json",
"windows/Install-Runtime.ps1",
"windows/Verify-Launcher.ps1",
"skills/",
"README.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"build-launcher": "powershell -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass -File windows/Build-Launcher.ps1",
"check": "node --check src/relay.js && node --check src/client.js && node --check src/adapter.mjs && node --check bin/arlab.mjs",
"install": "npm run validate-launcher",
"prepare": "npm run build-launcher",
"test": "node test/relay.test.js && node test/doctor.test.mjs",
"validate-launcher": "powershell -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass -File windows/Verify-Launcher.ps1",
"validate-powershell": "powershell -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass -File test/validate-powershell.ps1",
"validate-skill": "node test/validate-skill.mjs",
"prepack": "npm run check && npm test && npm run validate-launcher && npm run validate-powershell && npm run validate-skill"
},
"keywords": [
"android",
"accessibility",
"physical-device",
"testing",
"codex",
"agent-device",
"tailscale"
]
}