-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "@ryaker/appstore-connect-mcp",
"version": "1.0.0",
"description": "Apple Store Connect MCP Server with OAuth authentication support for Claude Desktop/iOS",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.ryaker/appstore-connect-mcp",
"author": "Ryan Aker",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryaker/appstore-connect-mcp.git"
},
"homepage": "https://github.com/ryaker/appstore-connect-mcp",
"keywords": [
"mcp",
"model-context-protocol",
"apple",
"app-store-connect",
"ios",
"oauth",
"auth0"
],
"scripts": {
"build": "tsc",
"vercel-build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"@supabase/supabase-js": "^2.57.2",
"axios": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^8.1.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.11.24",
"@types/node-fetch": "^2.6.11",
"@vercel/node": "^5.3.21",
"tsx": "^4.7.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18.0.0"
}
}