-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 899 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 899 Bytes
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
{
"name": "@thatfactory/xcode-cloud-mcp",
"version": "0.5.1",
"description": "Minimal MCP server for discovering Xcode Cloud workflows and retrieving build logs, issues, and test artifacts.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"xcode-cloud-mcp": "dist/index.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"test": "node --import tsx --test tests/**/*.test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"dotenv": "^17.3.1",
"fflate": "^0.8.2",
"jsonwebtoken": "^9.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}