forked from getsentry/XcodeBuildMCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.23 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "xcodebuildmcp-ssresize",
"version": "1.15.1-ssresize.1",
"mcpName": "com.xcodebuildmcp-ssresize/XcodeBuildMCP-SSResize",
"iOSTemplateVersion": "v1.0.8",
"macOSTemplateVersion": "v1.0.5",
"main": ".smithery/index.cjs",
"type": "module",
"module": "src/smithery.ts",
"bin": {
"xcodebuildmcp-ssresize": ".smithery/index.cjs"
},
"scripts": {
"build": "npm run generate:version && npm run generate:loaders && npx smithery build",
"dev": "npm run generate:version && npm run generate:loaders && npx smithery dev",
"build:tsup": "npm run generate:version && npm run generate:loaders && tsup",
"dev:tsup": "npm run build:tsup && tsup --watch",
"generate:version": "npx tsx scripts/generate-version.ts",
"generate:loaders": "npx tsx scripts/generate-loaders.ts",
"bundle:axe": "scripts/bundle-axe.sh",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write 'src/**/*.{js,ts}'",
"format:check": "prettier --check 'src/**/*.{js,ts}'",
"typecheck": "npx tsc --noEmit",
"inspect": "npx @modelcontextprotocol/inspector node build/index.js",
"doctor": "node build/doctor-cli.js",
"tools": "npx tsx scripts/tools-cli.ts",
"tools:list": "npx tsx scripts/tools-cli.ts list",
"tools:static": "npx tsx scripts/tools-cli.ts static",
"tools:count": "npx tsx scripts/tools-cli.ts count --static",
"tools:analysis": "npx tsx scripts/analysis/tools-analysis.ts",
"docs:update": "npx tsx scripts/update-tools-docs.ts",
"docs:update:dry-run": "npx tsx scripts/update-tools-docs.ts --dry-run --verbose",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"files": [
"build",
"bundled",
"plugins"
],
"keywords": [
"xcodebuild",
"mcp",
"modelcontextprotocol",
"xcode",
"ios",
"macos",
"simulator"
],
"author": "Cameron Cooke",
"license": "MIT",
"description": "XcodeBuildMCP is a ModelContextProtocol server that provides tools for Xcode project management, simulator management, and app utilities.",
"repository": {
"type": "git",
"url": "git+https://github.com/cameroncooke/XcodeBuildMCP.git"
},
"homepage": "https://www.async-let.com/blog/xcodebuild-mcp/",
"bugs": {
"url": "https://github.com/cameroncooke/XcodeBuildMCP/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"@sentry/cli": "^2.43.1",
"@sentry/node": "^10.5.0",
"uuid": "^11.1.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@bacons/xcode": "^1.0.0-alpha.24",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@smithery/cli": "^1.4.6",
"@types/node": "^22.13.6",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"playwright": "^1.53.0",
"prettier": "3.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vitest": "^3.2.4",
"xcode": "^3.0.1"
}
}