-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.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
{
"name": "baremobile",
"version": "0.10.0",
"type": "module",
"description": "ADB-direct Android control for autonomous agents. Accessibility tree in, pruned snapshot out.",
"main": "src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./ios": {
"types": "./types/ios.d.ts",
"default": "./src/ios.js"
}
},
"bin": {
"baremobile": "cli.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build:types": "tsc",
"prepublishOnly": "npm run build:types",
"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": "Apache-2.0",
"files": [
"src/",
"types/",
"cli.js",
"mcp-server.js",
"baremobile.context.md",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^6.0.3"
}
}