forked from Anjos2/mcp-android-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "mcp-android-emulator",
"version": "1.4.0",
"description": "MCP Server for Android Emulator interaction via ADB - enables AI assistants to control Android devices",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-android-emulator": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"android",
"emulator",
"adb",
"automation",
"testing",
"claude",
"ai"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Anjos2/mcp-android-emulator.git"
},
"bugs": {
"url": "https://github.com/Anjos2/mcp-android-emulator/issues"
},
"homepage": "https://github.com/Anjos2/mcp-android-emulator#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}