-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@trialanderror-ai/appstore-connect-mcp",
"version": "2.0.0",
"description": "Code Mode MCP server for App Store Connect — 923 endpoints through 2 tools",
"main": "dist/index.js",
"bin": {
"mcp-server-appstore-connect": "dist/index.js"
},
"files": [
"dist/api/**/*.js",
"dist/api/**/*.d.ts",
"dist/auth/**/*.js",
"dist/auth/**/*.d.ts",
"dist/executor/**/*.js",
"dist/executor/**/*.d.ts",
"dist/server/**/*.js",
"dist/server/**/*.d.ts",
"dist/spec/**/*.js",
"dist/spec/**/*.d.ts",
"dist/spec/openapi.json",
"dist/types/**/*.js",
"dist/types/**/*.d.ts",
"dist/index.js",
"dist/index.d.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && cp src/spec/openapi.json dist/spec/openapi.json && chmod +x dist/index.js",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest watch",
"test:auth": "tsx src/test-auth.ts",
"test:api": "tsx src/test-api.ts",
"test:subscription-params": "tsx src/test-subscription-params.ts",
"test:monthly-aggregate": "tsx src/test-monthly-aggregate.ts",
"test:v1.1.1": "tsx src/test-v1.1.1-fixes.ts",
"test:july-revenue": "tsx src/test-july-revenue.ts",
"test:fixed-revenue": "tsx src/test-fixed-revenue.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"app-store-connect",
"apple",
"ios",
"code-mode",
"claude"
],
"author": "Trial and Error Inc",
"license": "MIT",
"homepage": "https://github.com/TrialAndErrorAI/appstore-connect-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/TrialAndErrorAI/appstore-connect-mcp.git"
},
"bugs": {
"url": "https://github.com/TrialAndErrorAI/appstore-connect-mcp/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}