-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 969 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 969 Bytes
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
{
"name": "baremobile",
"version": "0.7.11",
"type": "module",
"description": "ADB-direct Android control for autonomous agents. Accessibility tree in, pruned snapshot out.",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./ios": "./src/ios.js"
},
"bin": {
"baremobile": "cli.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"test": "node --test test/unit/*.test.js test/integration/*.test.js",
"test:ios": "node --test test/ios/*.test.js",
"ios:check": "node test/ios/check-prerequisites.js"
},
"keywords": [
"android",
"adb",
"automation",
"accessibility",
"agent",
"ai",
"llm",
"mobile",
"uiautomator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hamr0/baremobile.git"
},
"author": "hamr0",
"license": "MIT",
"files": [
"src/",
"cli.js",
"mcp-server.js",
"baremobile.context.md",
"README.md"
]
}