package.json•989 B
{
"name": "adb-mcp-tool",
"version": "0.0.2",
"description": "MCP server for Android Debug Bridge (ADB) operations",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"bin": {
"adb-mcp": "dist/index.js"
},
"keywords": [
"mcp",
"adb",
"android",
"automation"
],
"author": "Richard Zhao",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/richard0913/adb-mcp.git"
},
"bugs": {
"url": "https://github.com/richard0913/adb-mcp/issues"
},
"homepage": "https://github.com/richard0913/adb-mcp#readme"
}