-
-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 5.8 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 5.8 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
131
132
133
134
135
136
137
{
"name": "xcodebuildmcp",
"version": "2.7.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": "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",
"build:website-manifest": "node scripts/build-website-manifest.mjs",
"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}' 'benchmarks/claude-ui/**/*.ts' scripts/warden-watchdog.mjs scripts/__tests__/warden-watchdog.test.mjs",
"lint:fix": "eslint 'src/**/*.{js,ts}' 'benchmarks/claude-ui/**/*.ts' scripts/warden-watchdog.mjs scripts/__tests__/warden-watchdog.test.mjs --fix",
"format": "prettier --write 'src/**/*.{js,ts}' 'benchmarks/claude-ui/**/*.{ts,md,yml}' scripts/warden-watchdog.mjs scripts/__tests__/warden-watchdog.test.mjs",
"format:check": "prettier --check 'src/**/*.{js,ts}' 'benchmarks/claude-ui/**/*.{ts,md,yml}' scripts/warden-watchdog.mjs scripts/__tests__/warden-watchdog.test.mjs",
"typecheck": "npx tsc --noEmit && npx tsc -p tsconfig.test.json && npx tsc -p tsconfig.benchmarks.json",
"typecheck:tests": "npx tsc -p tsconfig.test.json",
"inspect": "npx @modelcontextprotocol/inspector@latest node build/cli.js mcp",
"doctor": "node build/doctor-cli.js",
"bench:claude-ui": "npm run build && npx tsx benchmarks/claude-ui/run.ts",
"bench:claude-ui:xcodebuildmcp": "npm run build && npx tsx benchmarks/claude-ui/run-directory.ts benchmarks/claude-ui/suites XcodeBuildMCP",
"bench:claude-ui:private": "npm run build && npx tsx benchmarks/claude-ui/run-directory.ts benchmarks/claude-ui/local/suites private",
"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;BlueOak-1.0.0'",
"knip": "knip",
"test": "vitest run",
"posttest": "npm run test:warden-watchdog",
"test:warden-watchdog": "node --test scripts/__tests__/warden-watchdog.test.mjs",
"test:schema-fixtures": "vitest run src/snapshot-tests/__tests__/json-fixture-schema.test.ts",
"test:snapshot": "npm run build && vitest run --config vitest.snapshot.config.ts",
"test:snapshots": "npm run test:snapshot",
"test:snapshot:device": "npm run build && vitest run --config vitest.snapshot.config.ts src/snapshot-tests/__tests__/device.snapshot.test.ts && vitest run --config vitest.snapshot.config.ts src/snapshot-tests/__tests__/cli-json.snapshot.test.ts src/snapshot-tests/__tests__/mcp-json.snapshot.test.ts -t 'device workflow'",
"test:snapshot:update": "npm run build && UPDATE_SNAPSHOTS=1 vitest run --config vitest.snapshot.config.ts",
"test:snapshots:update": "npm run test:snapshot:update",
"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",
"schemas",
"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": "^14.0.0",
"yaml": "^2.4.5",
"yargs": "^17.7.2",
"yargs-parser": "^22.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chokidar": "^1.7.5",
"@types/node": "^22.13.6",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"ajv": "^8.18.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"knip": "^5.88.0",
"prettier": "3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10",
"wireit": "^0.14.13"
},
"wireit": {
"build": {
"command": "npm run build:tsup",
"files": [
"src/**/*.ts",
"schemas/**/*.json",
"tsup.config.ts",
"package.json"
],
"output": [
"build/**"
]
}
}
}