package.json•2.42 kB
{
"name": "@cristianoaredes/mcp-mobile-server",
"version": "2.3.0",
"description": "Native MCP Server for Mobile Development with 36 tools including Flutter/Android SDK automated setup and 10 intelligent super-tools (Android, iOS, Flutter)",
"type": "module",
"main": "dist/server.js",
"module": "src/server.ts",
"bin": {
"mcp-mobile-server": "dist/server.js"
},
"scripts": {
"build": "tsc",
"smithery:build": "npx @smithery/cli build",
"smithery:dev": "npx @smithery/cli dev",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"validate": "tsx scripts/validate-tools.ts",
"mcp:validate": "node dist/server.js validate",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests --ext .ts",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"ci": "npm run lint && npm run build && npm run test:unit && npm run test:integration",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"docs:serve": "npx serve docs/api -p 3000"
},
"keywords": ["mcp", "mobile", "android", "ios", "flutter", "development", "cli"],
"author": "MCP Mobile Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cristianoaredes/mcp-mobile-server.git"
},
"homepage": "https://github.com/cristianoaredes/mcp-mobile-server#readme",
"bugs": {
"url": "https://github.com/cristianoaredes/mcp-mobile-server/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"execa": "^8.0.1",
"zod": "^3.22.4",
"which": "^4.0.0"
},
"optionalDependencies": {
"native-run": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/which": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"mcp": {
"transport": "stdio",
"capabilities": {
"tools": true,
"resources": false,
"prompts": false
}
}
}