-
-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.64 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.64 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "xcodebuildmcp",
"version": "2.3.2",
"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": "wireit",
"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",
"run": "npm run build -s >/dev/null 2>&1 && node build/cli.js",
"prepare": "node scripts/install-git-hooks.js",
"hooks:install": "node scripts/install-git-hooks.js",
"generate:version": "npx tsx scripts/generate-version.ts",
"repro:mcp-lifecycle-leak": "npm run build && npx tsx scripts/repro-mcp-lifecycle-leak.ts",
"repro:sentry-mcp-teardown": "cd repros/sentry-mcp-teardown && npm run harness",
"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",
"bench:test-sim": "npx tsx scripts/benchmark-simulator-test.ts",
"capture:xcodebuild": "npx tsx scripts/capture-xcodebuild-wrapper.ts",
"license:report": "node scripts/generate-third-party-package-licenses.mjs",
"license:check": "npx -y license-checker --production --onlyAllow 'MIT;ISC;BSD-2-Clause;BSD-3-Clause;Apache-2.0;Unlicense;FSL-1.1-MIT'",
"knip": "knip",
"test": "vitest run",
"test:schema-fixtures": "vitest run --config vitest.snapshot.config.ts src/snapshot-tests/__tests__/json-fixture-schema.test.ts",
"test:snapshot": "npm run build && node build/cli.js daemon stop 2>/dev/null; vitest run --config vitest.snapshot.config.ts",
"test:snapshot:update": "npm run build && node build/cli.js daemon stop 2>/dev/null; UPDATE_SNAPSHOTS=1 vitest run --config vitest.snapshot.config.ts",
"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.27.1",
"@sentry/node": "^10.43.0",
"bplist-parser": "^0.3.2",
"chokidar": "^5.0.0",
"glob": "^13.0.6",
"uuid": "^11.1.0",
"yaml": "^2.4.5",
"yargs": "^17.7.2",
"yargs-parser": "^22.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/chokidar": "^1.7.5",
"@types/node": "^22.13.6",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"ajv": "^8.18.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"glob": "^13.0.6",
"knip": "^5.88.0",
"prettier": "3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vitest": "^3.2.4",
"wireit": "^0.14.12"
},
"wireit": {
"build": {
"command": "npm run build:tsup",
"files": [
"src/**/*.ts",
"tsup.config.ts",
"package.json"
],
"output": [
"build/**"
]
}
}
}