shipthis 0.0.1
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 +894 -0
- package/bin/alias.sh +10 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +7 -0
- package/bin/dev.tsc.js +15 -0
- package/bin/loader.js +20 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/bin/run.tsc.js +15 -0
- package/dist/App-DFPMSEZF.js +21 -0
- package/dist/AppleBundleIdDetails-CuhAbVEp.js +61 -0
- package/dist/NextSteps-CK9zHOCt.js +18 -0
- package/dist/RunWithSpinner-BVXNWGD3.js +27 -0
- package/dist/StatusTable-CxuX_R1D.js +38 -0
- package/dist/Table-CvM6pccN.js +101 -0
- package/dist/Title-BCQtayg6.js +6 -0
- package/dist/UserCredentialsTable-DHeRI4h6.js +76 -0
- package/dist/baseAppleCommand-BXUu-026.js +10 -0
- package/dist/baseGameCommand-xrD2WDDN.js +599 -0
- package/dist/cacheKeys-CShA-ZjE.js +9 -0
- package/dist/commands/apple/apiKey/create.js +88 -0
- package/dist/commands/apple/apiKey/export.js +66 -0
- package/dist/commands/apple/apiKey/import.js +70 -0
- package/dist/commands/apple/apiKey/status.js +108 -0
- package/dist/commands/apple/certificate/create.js +118 -0
- package/dist/commands/apple/certificate/export.js +66 -0
- package/dist/commands/apple/certificate/import.js +70 -0
- package/dist/commands/apple/certificate/status.js +116 -0
- package/dist/commands/apple/login.js +74 -0
- package/dist/commands/apple/status.js +50 -0
- package/dist/commands/dashboard.js +32 -0
- package/dist/commands/game/build/download.js +78 -0
- package/dist/commands/game/build/list.js +83 -0
- package/dist/commands/game/create.js +59 -0
- package/dist/commands/game/details.js +89 -0
- package/dist/commands/game/export.js +52 -0
- package/dist/commands/game/ios/app/addTester.js +111 -0
- package/dist/commands/game/ios/app/create.js +104 -0
- package/dist/commands/game/ios/app/status.js +52 -0
- package/dist/commands/game/ios/app/sync.js +81 -0
- package/dist/commands/game/ios/profile/create.js +110 -0
- package/dist/commands/game/ios/profile/export.js +68 -0
- package/dist/commands/game/ios/profile/import.js +77 -0
- package/dist/commands/game/ios/profile/status.js +183 -0
- package/dist/commands/game/ios/status.js +79 -0
- package/dist/commands/game/job/list.js +80 -0
- package/dist/commands/game/job/status.js +297 -0
- package/dist/commands/game/list.js +69 -0
- package/dist/commands/game/ship.js +67 -0
- package/dist/commands/game/status.js +76 -0
- package/dist/commands/game/wizard.js +124 -0
- package/dist/commands/login.js +63 -0
- package/dist/commands/status.js +80 -0
- package/dist/export-CujqsTR_.js +36 -0
- package/dist/git-DREGq-jc.js +32 -0
- package/dist/import-Q-KO61ll.js +38 -0
- package/dist/index-DKsVctbw.js +125 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/run.js +3 -0
- package/dist/upload-CUlWmNbS.js +60 -0
- package/dist/useAppleApp-BmwYu7qG.js +32 -0
- package/dist/useAppleBundleId-DCJnfNWr.js +64 -0
- package/dist/useBuilds-Dh_PWwCf.js +41 -0
- package/dist/useJob-CCkqCMvF.js +34 -0
- package/oclif.manifest.json +1510 -0
- package/package.json +167 -0
package/package.json
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shipthis",
|
|
3
|
+
"description": "Game Shipping Tool",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"author": "Hello Invent Ltd",
|
|
6
|
+
"bin": {
|
|
7
|
+
"shipthis": "./dist/bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"bugs": "https://gitlab.com/shipthis.cc/shipthis-cli/-/issues",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@expo/apple-utils": "^2.0.2",
|
|
12
|
+
"@expo/json-file": "^8.3.3",
|
|
13
|
+
"@oclif/core": "^4",
|
|
14
|
+
"@oclif/plugin-help": "^6",
|
|
15
|
+
"@tanstack/react-query": "^5.56.2",
|
|
16
|
+
"@types/uuid": "^10.0.0",
|
|
17
|
+
"axios": "^1.7.7",
|
|
18
|
+
"deepmerge": "^4.3.1",
|
|
19
|
+
"fast-glob": "^3.3.2",
|
|
20
|
+
"fs-extra": "^11.2.0",
|
|
21
|
+
"ini": "^5.0.0",
|
|
22
|
+
"ink": "^5.0.1",
|
|
23
|
+
"ink-spinner": "^5.0.0",
|
|
24
|
+
"isomorphic-git": "^1.27.1",
|
|
25
|
+
"jsonwebtoken": "^9.0.2",
|
|
26
|
+
"luxon": "^3.5.0",
|
|
27
|
+
"nativescript": "^8.8.2",
|
|
28
|
+
"node-forge": "^1.3.1",
|
|
29
|
+
"open": "^10.1.0",
|
|
30
|
+
"prompts": "^2.4.2",
|
|
31
|
+
"react": "^18.3.1",
|
|
32
|
+
"readline-sync": "^1.4.10",
|
|
33
|
+
"socket.io-client": "^4.7.5",
|
|
34
|
+
"string-length": "^6.0.0",
|
|
35
|
+
"strip-ansi": "^7.1.0",
|
|
36
|
+
"tough-cookie": "^5.0.0",
|
|
37
|
+
"tsc-alias": "^1.8.10",
|
|
38
|
+
"uuid": "^10.0.0",
|
|
39
|
+
"yazl": "^2.5.1"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@oclif/prettier-config": "^0.2.1",
|
|
43
|
+
"@oclif/test": "^4",
|
|
44
|
+
"@types/chai": "^4",
|
|
45
|
+
"@types/fs-extra": "^11.0.4",
|
|
46
|
+
"@types/ini": "^4.1.1",
|
|
47
|
+
"@types/jsonwebtoken": "^9.0.6",
|
|
48
|
+
"@types/luxon": "^3.4.2",
|
|
49
|
+
"@types/mocha": "^10",
|
|
50
|
+
"@types/node": "^18",
|
|
51
|
+
"@types/node-forge": "^1.3.11",
|
|
52
|
+
"@types/prompts": "^2.4.9",
|
|
53
|
+
"@types/react": "^18.3.5",
|
|
54
|
+
"@types/readline-sync": "^1.4.8",
|
|
55
|
+
"@types/tough-cookie": "^4.0.5",
|
|
56
|
+
"@types/yazl": "^2.4.5",
|
|
57
|
+
"chai": "^4",
|
|
58
|
+
"eslint": "^8",
|
|
59
|
+
"eslint-config-oclif": "^5",
|
|
60
|
+
"eslint-config-oclif-typescript": "^3",
|
|
61
|
+
"eslint-config-prettier": "^9",
|
|
62
|
+
"mocha": "^10",
|
|
63
|
+
"oclif": "^4",
|
|
64
|
+
"pkgroll": "^2.4.2",
|
|
65
|
+
"shx": "^0.3.3",
|
|
66
|
+
"ts-node": "^10",
|
|
67
|
+
"tsconfig-paths": "^4.2.0",
|
|
68
|
+
"tsx": "^4.19.0",
|
|
69
|
+
"typescript": "^5"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
|
+
},
|
|
74
|
+
"files": [
|
|
75
|
+
"/bin",
|
|
76
|
+
"/dist",
|
|
77
|
+
"/oclif.manifest.json"
|
|
78
|
+
],
|
|
79
|
+
"homepage": "https://gitlab.com/shipthis.cc/shipthis-cli",
|
|
80
|
+
"keywords": [
|
|
81
|
+
"oclif"
|
|
82
|
+
],
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"main": "dist/index.js",
|
|
85
|
+
"type": "module",
|
|
86
|
+
"exports": [
|
|
87
|
+
"./dist/commands/apple/apiKey/export.js",
|
|
88
|
+
"./dist/commands/apple/apiKey/status.js",
|
|
89
|
+
"./dist/commands/apple/apiKey/create.js",
|
|
90
|
+
"./dist/commands/apple/apiKey/import.js",
|
|
91
|
+
"./dist/commands/apple/status.js",
|
|
92
|
+
"./dist/commands/apple/login.js",
|
|
93
|
+
"./dist/commands/apple/certificate/export.js",
|
|
94
|
+
"./dist/commands/apple/certificate/status.js",
|
|
95
|
+
"./dist/commands/apple/certificate/create.js",
|
|
96
|
+
"./dist/commands/apple/certificate/import.js",
|
|
97
|
+
"./dist/commands/game/export.js",
|
|
98
|
+
"./dist/commands/game/ios/status.js",
|
|
99
|
+
"./dist/commands/game/ios/app/sync.js",
|
|
100
|
+
"./dist/commands/game/ios/app/addTester.js",
|
|
101
|
+
"./dist/commands/game/ios/app/status.js",
|
|
102
|
+
"./dist/commands/game/ios/app/create.js",
|
|
103
|
+
"./dist/commands/game/ios/profile/export.js",
|
|
104
|
+
"./dist/commands/game/ios/profile/status.js",
|
|
105
|
+
"./dist/commands/game/ios/profile/create.js",
|
|
106
|
+
"./dist/commands/game/ios/profile/import.js",
|
|
107
|
+
"./dist/commands/game/status.js",
|
|
108
|
+
"./dist/commands/game/wizard.js",
|
|
109
|
+
"./dist/commands/game/list.js",
|
|
110
|
+
"./dist/commands/game/details.js",
|
|
111
|
+
"./dist/commands/game/create.js",
|
|
112
|
+
"./dist/commands/game/build/list.js",
|
|
113
|
+
"./dist/commands/game/build/download.js",
|
|
114
|
+
"./dist/commands/game/job/status.js",
|
|
115
|
+
"./dist/commands/game/job/list.js",
|
|
116
|
+
"./dist/commands/game/ship.js",
|
|
117
|
+
"./dist/commands/status.js",
|
|
118
|
+
"./dist/commands/dashboard.js",
|
|
119
|
+
"./dist/commands/login.js"
|
|
120
|
+
],
|
|
121
|
+
"oclif": {
|
|
122
|
+
"bin": "shipthis",
|
|
123
|
+
"dirname": "shipthis",
|
|
124
|
+
"commands": "./dist/commands",
|
|
125
|
+
"plugins": [
|
|
126
|
+
"@oclif/plugin-help",
|
|
127
|
+
"@oclif/plugin-plugins"
|
|
128
|
+
],
|
|
129
|
+
"topicSeparator": " ",
|
|
130
|
+
"topics": {
|
|
131
|
+
"apple": {
|
|
132
|
+
"description": "Commands related to Apple Developer Portal"
|
|
133
|
+
},
|
|
134
|
+
"game": {
|
|
135
|
+
"description": "Commands related to Game Management"
|
|
136
|
+
},
|
|
137
|
+
"game:build": {
|
|
138
|
+
"description": "Commands related to builds for a specific game"
|
|
139
|
+
},
|
|
140
|
+
"game:ios": {
|
|
141
|
+
"description": "Commands related to the iOS platform for a specific game"
|
|
142
|
+
},
|
|
143
|
+
"game:ios:app": {
|
|
144
|
+
"description": "Commands related to the App Store App for a specific game"
|
|
145
|
+
},
|
|
146
|
+
"game:ios:profile": {
|
|
147
|
+
"description": "Commands related to the App Store Provisioning Profiles for this Game"
|
|
148
|
+
},
|
|
149
|
+
"game:job": {
|
|
150
|
+
"description": "Commands related to jobs for a specific game"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"repository": "oclif-cli/shipthis",
|
|
155
|
+
"scripts": {
|
|
156
|
+
"build-original": "shx rm -rf dist && tsc -b",
|
|
157
|
+
"build-tsc-alias": "shx rm -rf dist && npx tsc --build && npx tsc-alias -p tsconfig.json",
|
|
158
|
+
"build": "pkgroll --clean-dist",
|
|
159
|
+
"lint": "eslint . --ext .ts",
|
|
160
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
161
|
+
"posttest": "npm run lint",
|
|
162
|
+
"prepack": "oclif manifest && oclif readme",
|
|
163
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
164
|
+
"version": "oclif readme && git add README.md"
|
|
165
|
+
},
|
|
166
|
+
"types": "dist/index.d.ts"
|
|
167
|
+
}
|