-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "deepadb",
"version": "1.1.3",
"description": "DeepADB — full-featured Android Debug Bridge MCP server. 204 tools across 45 modules for device inspection from UI to baseband.",
"mcpName": "io.github.fullread/deepadb",
"type": "module",
"bin": {
"deepadb": "build/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node build/index.js",
"pretest": "npm run build",
"test": "node tests/run-all.mjs",
"coverage": "npm run build && c8 node tests/run-all.mjs",
"test:ci": "npm run build && node tests/run-all.mjs --ci",
"lint": "eslint src",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build"
},
"files": [
"build",
"NOTICE"
],
"keywords": [
"mcp",
"adb",
"android",
"claude"
],
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"c8": "^11.0.0",
"eslint": "^10.4.0",
"fast-check": "^4.8.0",
"graphql": "^16.14.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.60.0",
"ws": "^8.21.0"
}
}