package.jsonβ’3.35 kB
{
"name": "auto-mobile",
"version": "0.0.5",
"description": "Mobile device interaction automation via MCP",
"scripts": {
"test": "mocha --require esbuild-register test/**/*.ts",
"test:coverage": "nyc mocha --require esbuild-register test/**/*.ts",
"lint": "eslint . --fix",
"watch": "tsc --watch",
"build": "tsc && node scripts/build-ios-assets.js && chmod +x dist/src/index.js",
"clean": "rm -rf dist",
"start": "npx tsx src/index.ts --transport streamable",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts --transport streamable",
"dev:port": "ts-node-dev --respawn --transpile-only src/index.ts --transport streamable --port",
"dev:stdio": "npx tsx src/index.ts",
"dev:sse": "ts-node-dev --respawn --transpile-only src/index.ts --transport sse",
"dev:streamable": "ts-node-dev --respawn --transpile-only src/index.ts --transport streamable",
"dev:streamable:port": "ts-node-dev --respawn --transpile-only src/index.ts --transport streamable --port",
"prepublishOnly": "cp README.md README.md.backup && node scripts/npm/transform-readme.js",
"postpublish": "mv README.md.backup README.md || true"
},
"engines": {
"node": ">=24"
},
"keywords": [
"adb",
"android",
"auto-mobile",
"automation",
"bridge",
"debug",
"mcp",
"mobile",
"ui-testing"
],
"files": [
"dist"
],
"main": "dist/src/index.js",
"bin": {
"auto-mobile": "dist/src/index.js"
},
"author": "Jason Pearson",
"license": "Apache-2.0",
"contributors": [
{
"name": "Jason Pearson",
"email": "jasonpe@zillowgroup.com"
}
],
"homepage": "https://zillow.github.io/auto-mobile/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"@types/js-yaml": "^4.0.9",
"@types/uuid": "^11.0.0",
"fs-extra": "^11.3.2",
"glob": "^11.0.3",
"jimp": "^1.6.0",
"js-yaml": "^4.1.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"sharp": "^0.34.4",
"uuid": "^13.0.0",
"xml2js": "^0.6.2",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@faker-js/faker": "^10.0.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/express": "^5.0.3",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^24.3.1",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^4.0.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@typescript-eslint/utils": "^8.44.0",
"chai": "^6.0.1",
"chai-as-promised": "^8.0.2",
"esbuild": "^0.25.9",
"esbuild-register": "^3.6.0",
"eslint": "^9.35.0",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-notice": "^1.0.0",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}