package.json•1.92 kB
{
"name": "xc-mcp",
"version": "1.0.5",
"description": "MCP server that wraps Xcode command-line tools for iOS/macOS development workflows",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rm -rf dist",
"precommit": "lint-staged",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build && npm test && npm run lint",
"postbuild": "chmod +x dist/index.js"
},
"keywords": [
"mcp",
"xcode",
"ios",
"macos",
"cli",
"development",
"model-context-protocol",
"progressive-disclosure",
"build-tools"
],
"author": "XC-MCP Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/conorluddy/xc-mcp.git"
},
"homepage": "https://github.com/conorluddy/xc-mcp#readme",
"bugs": {
"url": "https://github.com/conorluddy/xc-mcp/issues"
},
"files": [
"dist/**/*",
"README.md",
"CLAUDE.md",
"package.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"@types/node": "^24.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"ts-jest": "^29.2.0",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix --max-warnings 50"
]
},
"bin": {
"xc-mcp": "./dist/index.js"
}
}