apkpub-cli 0.0.1-alpha.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/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "apkpub-cli",
3
+ "version": "0.0.1-alpha.0",
4
+ "description": "APK 多市场分发 CLI 工具 - 一键发布到华为/小米/OPPO/VIVO/荣耀及自定义渠道",
5
+ "type": "module",
6
+ "main": "dist/apkpub.js",
7
+ "bin": {
8
+ "apkpub": "dist/apkpub.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE",
14
+ "NOTICE",
15
+ "CHANGELOG.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsup",
19
+ "dev": "tsup --watch",
20
+ "start": "node dist/apkpub.js",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest",
23
+ "typecheck": "tsc --noEmit",
24
+ "prepublishOnly": "pnpm build",
25
+ "release:alpha": "pnpm version prerelease --preid alpha && pnpm publish --tag alpha",
26
+ "release:beta": "pnpm version prerelease --preid beta && pnpm publish --tag beta",
27
+ "release:rc": "pnpm version prerelease --preid rc && pnpm publish --tag rc",
28
+ "release": "pnpm publish"
29
+ },
30
+ "keywords": [
31
+ "apk",
32
+ "android",
33
+ "publish",
34
+ "cli",
35
+ "app-store",
36
+ "huawei",
37
+ "xiaomi",
38
+ "oppo",
39
+ "vivo",
40
+ "honor",
41
+ "oss",
42
+ "mcp",
43
+ "ci-cd"
44
+ ],
45
+ "author": "ChenLiheng <191129259@qq.com>",
46
+ "license": "Apache-2.0",
47
+ "homepage": "https://github.com/ChenLiheng/apkpub-cli#readme",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/ChenLiheng/apkpub-cli.git"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/ChenLiheng/apkpub-cli/issues"
54
+ },
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "packageManager": "pnpm@10.28.2",
59
+ "engines": {
60
+ "node": ">=18"
61
+ },
62
+ "dependencies": {
63
+ "@inquirer/prompts": "^7.3.2",
64
+ "@modelcontextprotocol/sdk": "^1.12.1",
65
+ "ali-oss": "^6.22.0",
66
+ "app-info-parser": "^1.1.6",
67
+ "axios": "^1.8.4",
68
+ "cli-progress": "^3.12.0",
69
+ "cli-table3": "^0.6.5",
70
+ "commander": "^13.1.0",
71
+ "form-data": "^4.0.2",
72
+ "ora": "^8.2.0",
73
+ "p-limit": "^6.2.0",
74
+ "picocolors": "^1.1.1",
75
+ "zod": "^3.24.2"
76
+ },
77
+ "optionalDependencies": {
78
+ "keytar": "^7.9.0"
79
+ },
80
+ "devDependencies": {
81
+ "@types/ali-oss": "^6.16.11",
82
+ "@types/cli-progress": "^3.11.6",
83
+ "@types/node": "^22.14.0",
84
+ "nock": "^14.0.1",
85
+ "tsup": "^8.4.0",
86
+ "typescript": "^5.8.3",
87
+ "vitest": "^3.1.1"
88
+ }
89
+ }