-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.43 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
{
"name": "xcodebazelmcp",
"version": "0.1.34",
"description": "A Model Context Protocol server and CLI for Bazel-based iOS build and test workflows.",
"type": "module",
"bin": {
"xcodebazelmcp": "dist/cli.js",
"xcodebazelmcp-doctor": "dist/doctor-cli.js"
},
"files": [
"dist",
"manifests",
"schemas",
"skills",
"README.md",
"server.json",
"config.example.yaml"
],
"scripts": {
"build": "tsup",
"dev:mcp": "tsx src/cli.ts mcp",
"doctor": "tsx src/doctor-cli.ts",
"tools": "tsx src/cli.ts tools",
"smoke": "node scripts/smoke.mjs",
"test": "vitest --run",
"typecheck": "tsc --noEmit",
"lint": "eslint src"
},
"engines": {
"node": ">=18"
},
"keywords": [
"bazel",
"ios",
"mcp",
"mcp-server",
"model-context-protocol",
"xcode",
"sourcekit-bazel-bsp"
],
"author": "Matheus Gois",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DebugSwift/XcodeBazelMCP.git"
},
"homepage": "https://github.com/DebugSwift/XcodeBazelMCP#readme",
"bugs": {
"url": "https://github.com/DebugSwift/XcodeBazelMCP/issues"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/node": "^20.19.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.25.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vitest": "^3.1.2"
}
}