{
  "name": "xc-mcp",
  "version": "4.0.1",
  "description": "MCP server that wraps Xcode command-line tools for iOS/macOS development workflows",
  "author": "Conor Luddy",
  "license": "MIT",
  "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"
  ],
  "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.29.0",
    "pixelmatch": "^7.2.0",
    "pngjs": "^7.0.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^25.9.3",
    "@types/pngjs": "^6.0.5",
    "@typescript-eslint/eslint-plugin": "^8.61.1",
    "@typescript-eslint/parser": "^8.61.1",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.6",
    "husky": "^9.1.7",
    "jest": "^30.4.2",
    "lint-staged": "^17.0.7",
    "prettier": "^3.8.4",
    "ts-jest": "^29.4.11",
    "typescript": "^5.9.3"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "eslint --fix --max-warnings 50"
    ]
  },
  "bin": {
    "xc-mcp": "./dist/index.js"
  }
}
