-
-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.53 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.53 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "xcodebuildmcp",
"version": "2.1.0",
"mcpName": "com.xcodebuildmcp/XcodeBuildMCP",
"iOSTemplateVersion": "v1.0.8",
"macOSTemplateVersion": "v1.0.5",
"type": "module",
"exports": {
".": "./build/cli.js",
"./package.json": "./package.json"
},
"bin": {
"xcodebuildmcp": "build/cli.js",
"xcodebuildmcp-doctor": "build/doctor-cli.js"
},
"scripts": {
"build": "npm run build:tsup",
"dev": "npm run build:tsup && node build/cli.js mcp",
"build:tsup": "npm run generate:version && tsup",
"dev:tsup": "npm run build:tsup && tsup --watch",
"prepare": "node scripts/install-git-hooks.js",
"hooks:install": "node scripts/install-git-hooks.js",
"generate:version": "npx tsx scripts/generate-version.ts",
"bundle:axe": "scripts/bundle-axe.sh",
"package:macos": "scripts/package-macos-portable.sh",
"package:macos:universal": "scripts/package-macos-portable.sh --universal",
"verify:portable": "scripts/verify-portable-install.sh",
"homebrew:formula": "scripts/create-homebrew-formula.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 && npx tsc -p tsconfig.test.json",
"typecheck:tests": "npx tsc -p tsconfig.test.json",
"inspect": "npx @modelcontextprotocol/inspector node build/cli.js mcp",
"doctor": "node build/doctor-cli.js",
"docs:update": "npx tsx scripts/update-tools-docs.ts",
"docs:update:dry-run": "npx tsx scripts/update-tools-docs.ts --dry-run --verbose",
"docs:check": "node scripts/check-docs-cli-commands.js",
"test": "vitest run",
"test:smoke": "npm run build && vitest run --config vitest.smoke.config.ts",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"files": [
"build",
"bundled",
"plugins",
"manifests",
"skills"
],
"keywords": [
"xcodebuild",
"mcp",
"modelcontextprotocol",
"xcode",
"ios",
"macos",
"simulator"
],
"license": "MIT",
"description": "XcodeBuildMCP is a Model Context Protocol server that provides tools for Xcode project management, simulator management, and app utilities.",
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/XcodeBuildMCP.git"
},
"homepage": "https://www.xcodebuildmcp.com",
"bugs": {
"url": "https://github.com/getsentry/XcodeBuildMCP/issues"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.25.1",
"@sentry/cli": "^3.1.0",
"@sentry/node": "^10.38.0",
"bplist-parser": "^0.3.2",
"chokidar": "^5.0.0",
"uuid": "^11.1.0",
"yaml": "^2.4.5",
"yargs": "^17.7.2",
"zod": "^4.0.0"
},
"devDependencies": {
"@bacons/xcode": "^1.0.0-alpha.24",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@types/chokidar": "^1.7.5",
"@types/node": "^22.13.6",
"@types/yargs": "^17.0.33",
"@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"
}
}