package.json•1.81 kB
{
"name": "mcp-xcode-server",
"version": "0.6.0",
"description": "MCP server for Xcode - build, test, run, and manage Apple platform projects (iOS, macOS, tvOS, watchOS, visionOS)",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-xcode-server": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "jest && jest --config jest.e2e.config.cjs --runInBand",
"test:coverage": "jest --coverage",
"test:unit": "jest '*.unit.test.ts'",
"test:integration": "jest '*.integration.test.ts'",
"test:e2e": "jest --config jest.e2e.config.cjs --runInBand",
"postinstall": "cd XcodeProjectModifier && swift build -c release",
"build:modifier": "cd XcodeProjectModifier && swift build -c release"
},
"keywords": [
"mcp",
"apple",
"ios",
"macos",
"tvos",
"watchos",
"visionos",
"simulator",
"xcode",
"spm",
"swift"
],
"author": "Stefan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mcp-xcode-server.git"
},
"bugs": {
"url": "https://github.com/yourusername/mcp-xcode-server/issues"
},
"homepage": "https://github.com/yourusername/mcp-xcode-server#readme",
"files": [
"dist/**/*",
"XcodeProjectModifier/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"commander": "^12.0.0",
"fast-xml-parser": "^5.2.5",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.11.0",
"jest": "^30.1.1",
"regexp-tree": "^0.1.27",
"ts-jest": "^29.4.1",
"typescript": "^5.3.3"
}
}