package.json•1.46 kB
{
"name": "android-ui-assist-mcp",
"version": "1.0.0",
"description": "An MCP server that captures Android emulator/device screenshots for AI agent visual analysis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"android-ui-assist-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "nyc jest",
"setup": "node scripts/setup.js",
"build:dist": "node scripts/build.js",
"prepare": "husky install"
},
"keywords": [
"mcp",
"android",
"screenshot",
"adb",
"ai",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}