-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "xcode-cloud-mcp",
"author": "Christian Howe <cj@cjhowe.us>",
"version": "0.1.3",
"description": "MCP server for developing macOS/iOS apps using Xcode Cloud",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"xcode-cloud-mcp": "dist/index.js"
},
"scripts": {
"prepare": "bun build --target node src/index.ts --outdir dist",
"start": "bun run src/index.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "bun test",
"test:watch": "bun test --watch",
"ci": "bun lint && bun format && bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"dotenv": "^17.2.3",
"jsonwebtoken": "^9.0.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}