-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "aso-mcp",
"version": "1.1.0",
"description": "App Store Optimization MCP Server for AI Assistants",
"type": "module",
"bin": {
"aso-mcp": "./build/server.js"
},
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc && chmod 755 build/server.js",
"start": "node build/server.js",
"inspect": "npx @modelcontextprotocol/inspector tsx src/server.ts",
"prepare": "npm run build"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/kenanatmaca/aso-mcp"
},
"homepage": "https://github.com/kenanatmaca/aso-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"app-store-scraper": "^0.18.0",
"aso": "^1.1.1",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.4.0",
"jsonwebtoken": "^9.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"aso",
"app-store-optimization",
"app-store",
"ios",
"keyword-research",
"competitor-analysis",
"seo",
"claude",
"ai-tools"
],
"license": "MIT",
"author": "Kenan Atmaca"
}