aso-cli 0.1.0 → 0.3.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/README.md +87 -48
- package/cli/dist/cli.js +213 -159
- package/cli/dist/cli.js.map +4 -4
- package/cli/dist/dashboard-public/aso-sidebar-icon.png +0 -0
- package/cli/dist/dashboard-public/assets/index-C9Cq1ZYb.css +1 -0
- package/cli/dist/dashboard-public/assets/index-EguovmUL.js +23 -0
- package/cli/dist/dashboard-public/dashboard.jpg +0 -0
- package/cli/dist/dashboard-public/favicon.png +0 -0
- package/cli/dist/dashboard-public/index.html +3 -3
- package/cli/dist/dashboard-public/mcp.jpg +0 -0
- package/cli/dist/mcp.js +54 -35
- package/cli/dist/mcp.js.map +4 -4
- package/package.json +12 -6
- package/cli/dist/dashboard-public/assets/index-BtzyVl7h.js +0 -23
- package/cli/dist/dashboard-public/assets/index-CcqTg85O.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aso-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Local App Store Optimization CLI",
|
|
5
5
|
"main": "cli/dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -8,10 +8,13 @@
|
|
|
8
8
|
"aso-mcp": "cli/dist/mcp.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
11
|
+
"check:node": "node scripts/check-node-version.js",
|
|
12
|
+
"prebuild": "npm run check:node && npm run generate-mcp-content",
|
|
13
|
+
"predev": "npm run check:node && npm run generate-mcp-content",
|
|
14
|
+
"pretest": "npm run check:node",
|
|
15
|
+
"pretypecheck": "npm run check:node && npm run generate-mcp-content",
|
|
14
16
|
"generate-mcp-content": "node cli/mcp/generate-mcp-content.js",
|
|
17
|
+
"generate:app-icon": "node scripts/render-app-icon.js",
|
|
15
18
|
"build": "node esbuild.config.js",
|
|
16
19
|
"build:watch": "node esbuild.config.js --watch",
|
|
17
20
|
"watch": "npm run build:watch",
|
|
@@ -29,7 +32,9 @@
|
|
|
29
32
|
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p cli/dashboard-ui/tsconfig.json --noEmit",
|
|
30
33
|
"ci": "npm run typecheck && npm run test -- --watchman=false && npm run build",
|
|
31
34
|
"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"
|
|
35
|
+
"prepublishOnly": "npm run build",
|
|
36
|
+
"link:cli": "npm run build && npm link",
|
|
37
|
+
"unlink:cli": "npm unlink -g aso"
|
|
33
38
|
},
|
|
34
39
|
"keywords": [
|
|
35
40
|
"aso",
|
|
@@ -51,7 +56,7 @@
|
|
|
51
56
|
],
|
|
52
57
|
"license": "MIT",
|
|
53
58
|
"engines": {
|
|
54
|
-
"node": ">=18.
|
|
59
|
+
"node": ">=20.18.1",
|
|
55
60
|
"npm": ">=8.0.0"
|
|
56
61
|
},
|
|
57
62
|
"homepage": "https://github.com/semihcihan/App-Store-Optimization-CLI",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"react": "^19.1.1",
|
|
98
103
|
"react-dom": "^19.1.1",
|
|
99
104
|
"ts-jest": "^29.4.0",
|
|
105
|
+
"playwright": "^1.54.2",
|
|
100
106
|
"typescript": "^5.8.3",
|
|
101
107
|
"vite": "^7.1.4",
|
|
102
108
|
"yaml": "^2.8.2"
|