package.json•1.76 kB
{
"name": "xcodemcp",
"version": "2.1.4",
"description": "Model Context Protocol server for Xcode build automation and log parsing",
"mcpName": "io.github.lapfelix/xcodemcp",
"main": "dist/index.js",
"type": "module",
"bin": {
"xcodecontrol": "dist/cli.js",
"xcodemcp": "dist/index.js"
},
"files": [
"dist/**/*",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"start": "node dist/index.js",
"dev": "npm run build:watch & node --watch dist/index.js",
"dev:ts": "tsx --watch src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"commander": "^12.1.0",
"eventsource": "^4.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.2.3",
"@vitest/ui": "^3.2.3",
"execa": "^9.6.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^3.2.3"
},
"engines": {
"node": ">=18"
},
"os": [
"darwin"
],
"keywords": [
"mcp",
"xcode",
"build",
"automation",
"ios",
"macos",
"swift",
"xclogparser",
"model-context-protocol"
],
"author": "Felix Lapalme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lapfelix/XcodeMCP.git"
},
"homepage": "https://github.com/lapfelix/XcodeMCP#readme",
"bugs": {
"url": "https://github.com/lapfelix/XcodeMCP/issues"
}
}