-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "android-mcp-server",
"version": "1.0.0",
"description": "Production-grade MCP server for Android device control via ADB, UIAutomator, Accessibility, and Vision",
"type": "module",
"main": "dist/mcp/server.js",
"bin": {
"android-mcp": "dist/mcp/server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/mcp/server.js",
"dev": "tsx src/mcp/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"clean": "rimraf dist"
},
"keywords": ["mcp", "android", "adb", "automation", "uiautomator"],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"execa": "^9.5.2",
"fast-xml-parser": "^4.5.1",
"sharp": "^0.33.5",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@types/uuid": "^10.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}