-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 986 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 986 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
37
38
39
40
41
{
"name": "xcode-cli",
"version": "1.0.9",
"main": "index.js",
"scripts": {
"test": "node --import tsx --test \"tests/**/*.test.ts\"",
"generate": "mcporter generate-cli --command \"xcrun mcpbridge\" --name mcpbridge --description \"xcode-tools\" --output ./src/mcpbridge.ts"
},
"keywords": [
"xcode",
"mcp",
"model-context-protocol",
"cli",
"ios",
"swift"
],
"author": "Peter Gammelgaard",
"repository": {
"type": "git",
"url": "git+https://github.com/dazuiba/xcode-cli-skill.git"
},
"license": "MIT",
"description": "CLI for interacting with Xcode MCP tools from the terminal.",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"commander": "^14.0.3",
"mcporter": "^0.7.3",
"tsx": "^4.21.0"
},
"devDependencies": {},
"type": "module",
"files": [
"bin/",
"src/",
"skills/"
],
"bin": {
"xcode-cli": "./bin/xcode-cli",
"xcode-cli-ctl": "./bin/xcode-cli-ctl"
}
}