package.json•1.73 kB
{
"name": "@charlesmuchene/pref-editor-mcp-server",
"version": "0.7.0",
"description": "MCP server for editing Android preferences",
"type": "module",
"license": "Apache-2.0",
"bin": {
"@charlesmuchene/pref-editor-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"clean": "rimraf dist",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepare": "npm run build",
"watch": "tsc --watch",
"lint": "eslint src/ --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"verify": "npm run clean && npm run lint && npm run build && npm run test && npm run test:coverage"
},
"author": "Charles Muchene <muchene.kazi@gmail.com> (https://charlesmuchene.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/charlesmuchene/pref-editor-mcp-server.git"
},
"bugs": "https://github.com/charlesmuchene/pref-editor-mcp-server/issues",
"keywords": [
"mcp",
"android preferences",
"android development",
"preferences-datastore",
"shared-preferences"
],
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vitest": "^3.2.4",
"zod": "^3.25.76"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@charlesmuchene/pref-editor": "^0.6.4",
"@modelcontextprotocol/sdk": "^1.17.4"
}
}