aso-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +122 -0
- package/THIRD_PARTY_LICENSES.md +49 -0
- package/cli/dist/cli.js +496 -0
- package/cli/dist/cli.js.map +7 -0
- package/cli/dist/dashboard-public/assets/index-BtzyVl7h.js +23 -0
- package/cli/dist/dashboard-public/assets/index-CcqTg85O.css +1 -0
- package/cli/dist/dashboard-public/index.html +14 -0
- package/cli/dist/mcp.js +133 -0
- package/cli/dist/mcp.js.map +7 -0
- package/package.json +104 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aso-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Local App Store Optimization CLI",
|
|
5
|
+
"main": "cli/dist/cli.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aso": "cli/dist/cli.js",
|
|
8
|
+
"aso-mcp": "cli/dist/mcp.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prebuild": "npm run generate-mcp-content",
|
|
12
|
+
"predev": "npm run generate-mcp-content",
|
|
13
|
+
"pretypecheck": "npm run generate-mcp-content",
|
|
14
|
+
"generate-mcp-content": "node cli/mcp/generate-mcp-content.js",
|
|
15
|
+
"build": "node esbuild.config.js",
|
|
16
|
+
"build:watch": "node esbuild.config.js --watch",
|
|
17
|
+
"watch": "npm run build:watch",
|
|
18
|
+
"dashboard:build": "vite build --config cli/dashboard-ui/vite.config.ts",
|
|
19
|
+
"dashboard:watch": "vite build --watch --config cli/dashboard-ui/vite.config.ts",
|
|
20
|
+
"dev": "concurrently -k -n watch,app \"npm:watch\" \"npm:start:dev\"",
|
|
21
|
+
"clean": "rm -rf cli/dist",
|
|
22
|
+
"nuke": "rm -rf node_modules cli/dist package-lock.json",
|
|
23
|
+
"start": "node cli/dist/cli.js",
|
|
24
|
+
"start:dev": "NODE_ENV=development node cli/dist/cli.js",
|
|
25
|
+
"mcp": "node cli/dist/mcp.js",
|
|
26
|
+
"mcp:test": "npx @modelcontextprotocol/inspector node cli/dist/mcp.js",
|
|
27
|
+
"test": "jest --config jest.config.js",
|
|
28
|
+
"test:coverage": "jest --config jest.config.js --coverage",
|
|
29
|
+
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p cli/dashboard-ui/tsconfig.json --noEmit",
|
|
30
|
+
"ci": "npm run typecheck && npm run test -- --watchman=false && npm run build",
|
|
31
|
+
"upload-sourcemap": "npx bugsnag-source-maps upload-node --api-key ed1a4165d4f8fd836bf16f3ca1915a67 --overwrite --detect-app-version --bundle cli/dist/cli.js --source-map cli/dist/cli.js.map",
|
|
32
|
+
"prepublishOnly": "npm run build"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"aso",
|
|
36
|
+
"cli",
|
|
37
|
+
"app-store",
|
|
38
|
+
"keyword-research",
|
|
39
|
+
"app-store-optimization",
|
|
40
|
+
"mcp"
|
|
41
|
+
],
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/semihcihan/App-Store-Optimization-CLI.git"
|
|
45
|
+
},
|
|
46
|
+
"contributors": [
|
|
47
|
+
{
|
|
48
|
+
"name": "Semih Cihan",
|
|
49
|
+
"url": "https://github.com/semihcihan"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=18.0.0",
|
|
55
|
+
"npm": ">=8.0.0"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/semihcihan/App-Store-Optimization-CLI",
|
|
58
|
+
"files": [
|
|
59
|
+
"cli/dist/",
|
|
60
|
+
"README.md",
|
|
61
|
+
"THIRD_PARTY_LICENSES.md"
|
|
62
|
+
],
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@bugsnag/js": "^8.6.0",
|
|
65
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
66
|
+
"axios": "^1.10.0",
|
|
67
|
+
"axios-retry": "^4.5.0",
|
|
68
|
+
"better-sqlite3": "^11.10.0",
|
|
69
|
+
"cheerio": "^1.2.0",
|
|
70
|
+
"dotenv": "^16.6.1",
|
|
71
|
+
"inquirer": "^8.2.5",
|
|
72
|
+
"ora": "^8.2.0",
|
|
73
|
+
"winston": "^3.17.0",
|
|
74
|
+
"yargs": "^17.7.2",
|
|
75
|
+
"zod": "4.1.9",
|
|
76
|
+
"zod-validation-error": "^4.0.2"
|
|
77
|
+
},
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"@bugsnag/cli": "^3.4.1",
|
|
80
|
+
"@bugsnag/source-maps": "^2.3.3",
|
|
81
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
82
|
+
"@testing-library/react": "^16.3.2",
|
|
83
|
+
"@types/better-sqlite3": "^7.6.12",
|
|
84
|
+
"@types/inquirer": "^9.0.9",
|
|
85
|
+
"@types/jest": "^30.0.0",
|
|
86
|
+
"@types/node": "^24.0.10",
|
|
87
|
+
"@types/react": "^19.1.12",
|
|
88
|
+
"@types/react-dom": "^19.1.9",
|
|
89
|
+
"@types/yargs": "^17.0.33",
|
|
90
|
+
"@vitejs/plugin-react": "^5.1.0",
|
|
91
|
+
"axios-mock-adapter": "^2.1.0",
|
|
92
|
+
"concurrently": "^9.2.1",
|
|
93
|
+
"esbuild": "^0.27.3",
|
|
94
|
+
"jest": "^30.0.4",
|
|
95
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
96
|
+
"prettier": "^3.0.0",
|
|
97
|
+
"react": "^19.1.1",
|
|
98
|
+
"react-dom": "^19.1.1",
|
|
99
|
+
"ts-jest": "^29.4.0",
|
|
100
|
+
"typescript": "^5.8.3",
|
|
101
|
+
"vite": "^7.1.4",
|
|
102
|
+
"yaml": "^2.8.2"
|
|
103
|
+
}
|
|
104
|
+
}
|