-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 931 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 931 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": "@blitzdev/iphone-mcp",
"version": "0.1.17",
"description": "MCP server for controlling iOS simulators and physical iPhones",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blitzdotdev/iPhone-mcp.git"
},
"bin": {
"iphone-mcp": "dist/cli.js"
},
"files": [
"dist",
"src/idb/ax-scan/ax-scan.m",
"src/idb/ax-scan/Makefile"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@blitzdev/iphone-mcp": "^0.1.15",
"@inquirer/checkbox": "^5.1.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"express": "^5.1.0",
"ws": "^8.18.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
"typescript": "^5.7.0"
}
}