appship-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 +93 -0
- package/data/rules/app-store.yml +47 -0
- package/data/rules/google-play.yml +51 -0
- package/data/sdk-signatures/signatures.yml +376 -0
- package/dist/chunk-7GCQ6I27.js +177 -0
- package/dist/chunk-CVYD5FVI.js +8 -0
- package/dist/chunk-ICHGACSP.js +98 -0
- package/dist/chunk-TLOV7VBN.js +105 -0
- package/dist/flutter-ITOL6J4H.js +12 -0
- package/dist/index.js +3697 -0
- package/dist/native-RCWBM6UF.js +14 -0
- package/dist/upload-FMEKKZSD.js +21 -0
- package/package.json +69 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
analyzeNativeAndroidProject,
|
|
4
|
+
analyzeNativeIosProject,
|
|
5
|
+
findRootPbxproj,
|
|
6
|
+
hasNativeAndroidLayout
|
|
7
|
+
} from "./chunk-TLOV7VBN.js";
|
|
8
|
+
import "./chunk-CVYD5FVI.js";
|
|
9
|
+
export {
|
|
10
|
+
analyzeNativeAndroidProject,
|
|
11
|
+
analyzeNativeIosProject,
|
|
12
|
+
findRootPbxproj,
|
|
13
|
+
hasNativeAndroidLayout
|
|
14
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
UPLOAD_LANES,
|
|
4
|
+
UploadError,
|
|
5
|
+
assertUploadLane,
|
|
6
|
+
buildUploadPlan,
|
|
7
|
+
findArtifact,
|
|
8
|
+
resolveFastlaneCommand,
|
|
9
|
+
runUpload,
|
|
10
|
+
spawnRunner
|
|
11
|
+
} from "./chunk-ICHGACSP.js";
|
|
12
|
+
export {
|
|
13
|
+
UPLOAD_LANES,
|
|
14
|
+
UploadError,
|
|
15
|
+
assertUploadLane,
|
|
16
|
+
buildUploadPlan,
|
|
17
|
+
findArtifact,
|
|
18
|
+
resolveFastlaneCommand,
|
|
19
|
+
runUpload,
|
|
20
|
+
spawnRunner
|
|
21
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "appship-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Open-source AI release assistant that analyzes your mobile app and prepares everything required for App Store and Google Play submission",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/gunwooko/appship.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/gunwooko/appship#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/gunwooko/appship/issues"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"bin": {
|
|
15
|
+
"appship": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"data"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=20"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "tsx src/index.ts",
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"lint": "eslint src",
|
|
31
|
+
"prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"app-store",
|
|
35
|
+
"google-play",
|
|
36
|
+
"release",
|
|
37
|
+
"cli",
|
|
38
|
+
"ai",
|
|
39
|
+
"react-native",
|
|
40
|
+
"fastlane",
|
|
41
|
+
"metadata"
|
|
42
|
+
],
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@anthropic-ai/sdk": "^0.112.3",
|
|
46
|
+
"@clack/prompts": "^1.7.0",
|
|
47
|
+
"commander": "^12.1.0",
|
|
48
|
+
"fast-glob": "^3.3.3",
|
|
49
|
+
"fast-xml-parser": "^5.10.1",
|
|
50
|
+
"picocolors": "^1.1.1",
|
|
51
|
+
"plist": "^5.0.0",
|
|
52
|
+
"yaml": "^2.6.0",
|
|
53
|
+
"zod": "^3.24.1"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@eslint/js": "^10.0.1",
|
|
57
|
+
"@types/node": "^20.17.0",
|
|
58
|
+
"@types/plist": "^3.0.5",
|
|
59
|
+
"eslint": "^10.7.0",
|
|
60
|
+
"tsup": "^8.3.5",
|
|
61
|
+
"tsx": "^4.19.2",
|
|
62
|
+
"typescript": "^5.7.2",
|
|
63
|
+
"typescript-eslint": "^8.64.0",
|
|
64
|
+
"vitest": "^4.1.10"
|
|
65
|
+
},
|
|
66
|
+
"overrides": {
|
|
67
|
+
"esbuild": "^0.28.1"
|
|
68
|
+
}
|
|
69
|
+
}
|