@onmyway133/asc-cli 1.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 +299 -0
- package/bun.lock +231 -0
- package/dist/index.js +179 -0
- package/docs/API_COVERAGE.md +355 -0
- package/docs/openapi/latest.json +230597 -0
- package/docs/openapi/paths.txt +1208 -0
- package/openapi-ts.config.ts +25 -0
- package/package.json +32 -0
- package/scripts/gen-paths-index.py +24 -0
- package/src/api/client.ts +132 -0
- package/src/api/generated/client/client.gen.ts +298 -0
- package/src/api/generated/client/index.ts +25 -0
- package/src/api/generated/client/types.gen.ts +214 -0
- package/src/api/generated/client/utils.gen.ts +316 -0
- package/src/api/generated/client.gen.ts +16 -0
- package/src/api/generated/core/auth.gen.ts +41 -0
- package/src/api/generated/core/bodySerializer.gen.ts +82 -0
- package/src/api/generated/core/params.gen.ts +169 -0
- package/src/api/generated/core/pathSerializer.gen.ts +171 -0
- package/src/api/generated/core/queryKeySerializer.gen.ts +117 -0
- package/src/api/generated/core/serverSentEvents.gen.ts +242 -0
- package/src/api/generated/core/types.gen.ts +104 -0
- package/src/api/generated/core/utils.gen.ts +140 -0
- package/src/api/generated/index.ts +4 -0
- package/src/api/generated/sdk.gen.ts +11701 -0
- package/src/api/generated/types.gen.ts +92035 -0
- package/src/api/hey-api-client.ts +20 -0
- package/src/api/types.ts +160 -0
- package/src/auth/credentials.ts +125 -0
- package/src/auth/jwt.ts +118 -0
- package/src/commands/app-info.ts +110 -0
- package/src/commands/apps.ts +44 -0
- package/src/commands/auth.ts +327 -0
- package/src/commands/availability.ts +52 -0
- package/src/commands/beta-review.ts +145 -0
- package/src/commands/builds.ts +97 -0
- package/src/commands/game-center.ts +114 -0
- package/src/commands/iap.ts +105 -0
- package/src/commands/metadata.ts +81 -0
- package/src/commands/pricing.ts +110 -0
- package/src/commands/reports.ts +116 -0
- package/src/commands/reviews.ts +93 -0
- package/src/commands/screenshots.ts +139 -0
- package/src/commands/signing.ts +214 -0
- package/src/commands/subscriptions.ts +144 -0
- package/src/commands/testflight.ts +110 -0
- package/src/commands/versions.ts +76 -0
- package/src/commands/xcode-cloud.ts +207 -0
- package/src/index.ts +1661 -0
- package/src/utils/help-spec.ts +835 -0
- package/src/utils/output.ts +79 -0
- package/tests/auth.test.ts +105 -0
- package/tests/client.test.ts +22 -0
- package/tests/output.test.ts +36 -0
- package/tsconfig.json +15 -0
package/README.md
ADDED
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
# asc — App Store Connect CLI
|
|
2
|
+
|
|
3
|
+
A fast, scriptable CLI for App Store Connect built with Bun and TypeScript.
|
|
4
|
+
Manage apps, builds, TestFlight, metadata, screenshots, signing, reports, and more from your terminal or CI pipeline.
|
|
5
|
+
|
|
6
|
+
## Features
|
|
7
|
+
|
|
8
|
+
| Area | Commands |
|
|
9
|
+
|------|---------|
|
|
10
|
+
| **Auth** | `login`, `list`, `use`, `status`, `logout`, `profile view/update/delete` |
|
|
11
|
+
| **Apps** | `list`, `get` |
|
|
12
|
+
| **Builds** | `list`, `get`, `update-beta-notes` |
|
|
13
|
+
| **Versions** | `list`, `create`, `submit` |
|
|
14
|
+
| **TestFlight** | `groups list`, `testers list/add/remove` |
|
|
15
|
+
| **Metadata** | `list`, `update` (what's new, description, keywords) |
|
|
16
|
+
| **Reviews** | `list`, `get`, `respond` |
|
|
17
|
+
| **Pricing** | `schedule get/set`, `points list`, `territories list` |
|
|
18
|
+
| **Availability** | `get`, `territories set` |
|
|
19
|
+
| **In-App Purchases** | `list`, `get`, `create`, `delete` |
|
|
20
|
+
| **Subscriptions** | `groups list/create`, `list`, `get`, `create`, `prices list` |
|
|
21
|
+
| **App Info** | `get`, `update`, `categories list`, `age-rating update` |
|
|
22
|
+
| **Screenshots** | `sets list`, `list`, `create`, `delete`, `preview-sets list` |
|
|
23
|
+
| **Code Signing** | `certificates`, `devices`, `bundle-ids`, `profiles` |
|
|
24
|
+
| **Reports** | `sales`, `finance`, `analytics list/request` |
|
|
25
|
+
| **Xcode Cloud** | `products list`, `workflows`, `builds`, `artifacts`, `test-results` |
|
|
26
|
+
| **Game Center** | `achievements list/get`, `leaderboards list`, `leaderboard-sets list` |
|
|
27
|
+
| **Beta Review** | `submit`, `status`, `detail-get/update`, `notify`, `localizations list` |
|
|
28
|
+
|
|
29
|
+
## Requirements
|
|
30
|
+
|
|
31
|
+
- macOS (Keychain integration uses the `security` CLI)
|
|
32
|
+
- [Bun](https://bun.sh) runtime
|
|
33
|
+
|
|
34
|
+
## Quick Start
|
|
35
|
+
|
|
36
|
+
### Install
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Clone and install dependencies
|
|
40
|
+
git clone https://github.com/onmyway133/asc-cli
|
|
41
|
+
cd asc-cli
|
|
42
|
+
bun install
|
|
43
|
+
|
|
44
|
+
# Run directly
|
|
45
|
+
bun run src/index.ts --help
|
|
46
|
+
|
|
47
|
+
# Or build a single executable
|
|
48
|
+
bun run build
|
|
49
|
+
./dist/asc --help
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Authenticate
|
|
53
|
+
|
|
54
|
+
You'll need an App Store Connect API key:
|
|
55
|
+
[Create one here](https://appstoreconnect.apple.com/access/integrations/api)
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
# Interactive (prompts for missing values)
|
|
59
|
+
asc auth login
|
|
60
|
+
|
|
61
|
+
# Non-interactive
|
|
62
|
+
asc auth login \
|
|
63
|
+
--key-id YOUR_KEY_ID \
|
|
64
|
+
--issuer-id YOUR_ISSUER_ID \
|
|
65
|
+
--private-key ~/Downloads/AuthKey_XXXXXX.p8 \
|
|
66
|
+
--name personal
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
The private key is stored in the macOS Keychain automatically. Use `--bypass-keychain` to store the file path in `~/.asc/credentials.json` instead.
|
|
70
|
+
|
|
71
|
+
### Multiple accounts
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# Add profiles
|
|
75
|
+
asc auth login --name work --key-id K1 --issuer-id I1 --private-key ~/.asc/work.p8
|
|
76
|
+
asc auth login --name client --key-id K2 --issuer-id I2 --private-key ~/.asc/client.p8
|
|
77
|
+
|
|
78
|
+
# List all profiles
|
|
79
|
+
asc auth list
|
|
80
|
+
|
|
81
|
+
# Switch active profile
|
|
82
|
+
asc auth use work # non-interactive
|
|
83
|
+
asc auth use # interactive selector
|
|
84
|
+
|
|
85
|
+
# Use a specific profile for one command
|
|
86
|
+
asc apps list --profile client
|
|
87
|
+
|
|
88
|
+
# Show current profile
|
|
89
|
+
asc auth status --validate
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Manage profiles
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
asc auth profile view # view active profile
|
|
96
|
+
asc auth profile view work # view specific profile
|
|
97
|
+
asc auth profile update --rename koa # rename active profile
|
|
98
|
+
asc auth profile update work --rename koa
|
|
99
|
+
asc auth profile update --vendor-number 12345678
|
|
100
|
+
asc auth profile delete work
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Credential resolution order:** env vars → `ASC_PROFILE` → active profile in `~/.asc/credentials.json`
|
|
104
|
+
|
|
105
|
+
## Environment Variables
|
|
106
|
+
|
|
107
|
+
| Variable | Description |
|
|
108
|
+
|----------|-------------|
|
|
109
|
+
| `ASC_KEY_ID` | API Key ID (overrides active profile) |
|
|
110
|
+
| `ASC_ISSUER_ID` | Issuer ID UUID (overrides active profile) |
|
|
111
|
+
| `ASC_PRIVATE_KEY_PATH` | Path to `.p8` file (overrides active profile) |
|
|
112
|
+
| `ASC_PRIVATE_KEY` | Inline PEM content (overrides active profile) |
|
|
113
|
+
| `ASC_PROFILE` | Profile name to use (equivalent to `--profile`) |
|
|
114
|
+
| `ASC_BYPASS_KEYCHAIN` | Set to `1` to skip Keychain storage |
|
|
115
|
+
|
|
116
|
+
## Command Reference
|
|
117
|
+
|
|
118
|
+
### Apps
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
asc apps list [--output table|json]
|
|
122
|
+
asc apps get <app-id>
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Builds
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
asc builds list [--app-id <id>] [--version <v>] [--platform ios|macos|tvos|visionos]
|
|
129
|
+
asc builds get <build-id>
|
|
130
|
+
asc builds update-beta-notes --build-id <id> --locale en-US --notes "What's new"
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### Versions
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
asc versions list --app-id <id> [--platform ios]
|
|
137
|
+
asc versions create --app-id <id> --version 2.0.0 [--platform ios]
|
|
138
|
+
asc versions submit <version-id>
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### TestFlight
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
asc testflight groups list [--app-id <id>]
|
|
145
|
+
asc testflight testers list --group-id <id>
|
|
146
|
+
asc testflight testers add --group-id <id> --email user@example.com
|
|
147
|
+
asc testflight testers remove --group-id <id> --tester-id <id>
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### Metadata
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
asc metadata list --version-id <id>
|
|
154
|
+
asc metadata update --version-id <id> --locale en-US --whats-new "Bug fixes"
|
|
155
|
+
asc metadata update --version-id <id> --locale en-US --description "New description" --keywords "photo,edit"
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### Reviews
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
asc reviews list --app-id <id>
|
|
162
|
+
asc reviews get <review-id>
|
|
163
|
+
asc reviews respond --review-id <id> --message "Thank you for your feedback!"
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
### Pricing
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
asc pricing schedule get --app-id <id>
|
|
170
|
+
asc pricing schedule set --app-id <id> --base-territory USA --price-point-id <id>
|
|
171
|
+
asc pricing points list --app-id <id>
|
|
172
|
+
asc pricing territories list
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### In-App Purchases
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
asc iap list --app-id <id>
|
|
179
|
+
asc iap get <iap-id>
|
|
180
|
+
asc iap create --app-id <id> --name "Premium" --product-id "com.example.premium" --type CONSUMABLE
|
|
181
|
+
asc iap delete <iap-id>
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### Subscriptions
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
asc subscriptions groups list --app-id <id>
|
|
188
|
+
asc subscriptions groups create --app-id <id> --name "Pro"
|
|
189
|
+
asc subscriptions list --group-id <id>
|
|
190
|
+
asc subscriptions get <subscription-id>
|
|
191
|
+
asc subscriptions create --group-id <id> --name "Monthly" --product-id "com.example.monthly"
|
|
192
|
+
asc subscriptions prices list --subscription-id <id>
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
### Code Signing
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
asc signing certificates list
|
|
199
|
+
asc signing certificates get <certificate-id>
|
|
200
|
+
asc signing certificates revoke <certificate-id>
|
|
201
|
+
asc signing devices list
|
|
202
|
+
asc signing devices register --name "My iPhone" --udid <udid> --platform IOS
|
|
203
|
+
asc signing bundle-ids list
|
|
204
|
+
asc signing bundle-ids register --identifier "com.example.app" --name "My App" --platform IOS
|
|
205
|
+
asc signing profiles list
|
|
206
|
+
asc signing profiles delete <profile-id>
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
### Reports
|
|
210
|
+
|
|
211
|
+
```bash
|
|
212
|
+
asc reports sales --vendor-number 12345678 --frequency DAILY --date 2024-03-01
|
|
213
|
+
asc reports finance --vendor-number 12345678 --region US --date 2024-03
|
|
214
|
+
asc reports analytics list --app-id <id>
|
|
215
|
+
asc reports analytics request --app-id <id>
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### Xcode Cloud
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
asc xcode-cloud products list --app-id <id>
|
|
222
|
+
asc xcode-cloud workflows list --product-id <id>
|
|
223
|
+
asc xcode-cloud workflows get <workflow-id>
|
|
224
|
+
asc xcode-cloud builds list --product-id <id>
|
|
225
|
+
asc xcode-cloud builds run --workflow-id <id>
|
|
226
|
+
asc xcode-cloud artifacts list --build-id <id>
|
|
227
|
+
asc xcode-cloud test-results list --build-id <id>
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
### Game Center
|
|
231
|
+
|
|
232
|
+
```bash
|
|
233
|
+
asc game-center achievements list --app-id <id>
|
|
234
|
+
asc game-center achievements get <achievement-id>
|
|
235
|
+
asc game-center leaderboards list --app-id <id>
|
|
236
|
+
asc game-center leaderboard-sets list --app-id <id>
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
### Beta Review
|
|
240
|
+
|
|
241
|
+
```bash
|
|
242
|
+
asc beta-review submit --build-id <id>
|
|
243
|
+
asc beta-review status <submission-id>
|
|
244
|
+
asc beta-review detail-get --build-id <id>
|
|
245
|
+
asc beta-review detail-update --build-id <id> --contact-email test@example.com
|
|
246
|
+
asc beta-review notify --build-id <id>
|
|
247
|
+
asc beta-review localizations list --build-id <id>
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
### Output formats
|
|
251
|
+
|
|
252
|
+
All list commands support `--output table` (default in TTY) or `--output json` (default in pipes/CI):
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
asc apps list --output json | jq '.[].bundleId'
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
### AI agent usage
|
|
259
|
+
|
|
260
|
+
```bash
|
|
261
|
+
# Get full command tree as structured JSON
|
|
262
|
+
asc --help --json
|
|
263
|
+
|
|
264
|
+
# Browse raw API endpoints
|
|
265
|
+
grep "apps" docs/openapi/paths.txt
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
## Development
|
|
269
|
+
|
|
270
|
+
```bash
|
|
271
|
+
# Install dependencies
|
|
272
|
+
bun install
|
|
273
|
+
|
|
274
|
+
# Run directly
|
|
275
|
+
bun run src/index.ts <command>
|
|
276
|
+
|
|
277
|
+
# Type check
|
|
278
|
+
bun run typecheck
|
|
279
|
+
|
|
280
|
+
# Run tests
|
|
281
|
+
bun test
|
|
282
|
+
|
|
283
|
+
# Build single binary
|
|
284
|
+
bun run build
|
|
285
|
+
|
|
286
|
+
# Regenerate API client (when Apple updates their OpenAPI spec)
|
|
287
|
+
bun run generate
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
## Security
|
|
291
|
+
|
|
292
|
+
- Credentials stored in `~/.asc/credentials.json` (permissions `0600`)
|
|
293
|
+
- Private keys stored in macOS Keychain via the `security` CLI (no extra dependencies)
|
|
294
|
+
- Use `--bypass-keychain` or `ASC_BYPASS_KEYCHAIN=1` to store the key file path in JSON instead
|
|
295
|
+
- For CI: use `ASC_KEY_ID`, `ASC_ISSUER_ID`, `ASC_PRIVATE_KEY_PATH` env vars
|
|
296
|
+
|
|
297
|
+
## License
|
|
298
|
+
|
|
299
|
+
MIT
|
package/bun.lock
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 1,
|
|
3
|
+
"configVersion": 1,
|
|
4
|
+
"workspaces": {
|
|
5
|
+
"": {
|
|
6
|
+
"name": "asc-cli",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@clack/prompts": "^1.2.0",
|
|
9
|
+
"@hey-api/client-fetch": "^0.13.1",
|
|
10
|
+
"@hey-api/openapi-ts": "^0.96.0",
|
|
11
|
+
"chalk": "^5.3.0",
|
|
12
|
+
"citty": "^0.1.6",
|
|
13
|
+
"cli-table3": "^0.6.5",
|
|
14
|
+
"jose": "^5.9.6",
|
|
15
|
+
"openapi-fetch": "^0.17.0",
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"bun-types": "latest",
|
|
19
|
+
"openapi-typescript": "^7.13.0",
|
|
20
|
+
"typescript": "^5.5.4",
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
"packages": {
|
|
25
|
+
"@babel/code-frame": ["@babel/code-frame@7.29.0", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.28.5", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw=="],
|
|
26
|
+
|
|
27
|
+
"@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="],
|
|
28
|
+
|
|
29
|
+
"@clack/core": ["@clack/core@1.2.0", "", { "dependencies": { "fast-wrap-ansi": "^0.1.3", "sisteransi": "^1.0.5" } }, "sha512-qfxof/3T3t9DPU/Rj3OmcFyZInceqj/NVtO9rwIuJqCUgh32gwPjpFQQp/ben07qKlhpwq7GzfWpST4qdJ5Drg=="],
|
|
30
|
+
|
|
31
|
+
"@clack/prompts": ["@clack/prompts@1.2.0", "", { "dependencies": { "@clack/core": "1.2.0", "fast-string-width": "^1.1.0", "fast-wrap-ansi": "^0.1.3", "sisteransi": "^1.0.5" } }, "sha512-4jmztR9fMqPMjz6H/UZXj0zEmE43ha1euENwkckKKel4XpSfokExPo5AiVStdHSAlHekz4d0CA/r45Ok1E4D3w=="],
|
|
32
|
+
|
|
33
|
+
"@colors/colors": ["@colors/colors@1.5.0", "", {}, "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="],
|
|
34
|
+
|
|
35
|
+
"@hey-api/client-fetch": ["@hey-api/client-fetch@0.13.1", "", { "peerDependencies": { "@hey-api/openapi-ts": "< 2" } }, "sha512-29jBRYNdxVGlx5oewFgOrkulZckpIpBIRHth3uHFn1PrL2ucMy52FvWOY3U3dVx2go1Z3kUmMi6lr07iOpUqqA=="],
|
|
36
|
+
|
|
37
|
+
"@hey-api/codegen-core": ["@hey-api/codegen-core@0.8.0", "", { "dependencies": { "@hey-api/types": "0.1.4", "ansi-colors": "4.1.3", "c12": "3.3.4", "color-support": "1.1.3" } }, "sha512-OuF/jenX9wz7AWHRBfb37v+jLkrfCt0FJXQuALNH2UsW6+bdZBmoibHl0K778SiHwneotJbAaEvX2S05wEqUQw=="],
|
|
38
|
+
|
|
39
|
+
"@hey-api/json-schema-ref-parser": ["@hey-api/json-schema-ref-parser@1.4.0", "", { "dependencies": { "@jsdevtools/ono": "7.1.3", "@types/json-schema": "7.0.15", "yaml": "2.8.3" } }, "sha512-o7X03OSoQgSqMB9DkI8cx/8MizGzeFYhIUnWuASdBOFWTgJhkStdazi1P7Vd5GXFkOx8d2yX/eErEzrQddi2GA=="],
|
|
40
|
+
|
|
41
|
+
"@hey-api/openapi-ts": ["@hey-api/openapi-ts@0.96.0", "", { "dependencies": { "@hey-api/codegen-core": "0.8.0", "@hey-api/json-schema-ref-parser": "1.4.0", "@hey-api/shared": "0.4.0", "@hey-api/spec-types": "0.2.0", "@hey-api/types": "0.1.4", "ansi-colors": "4.1.3", "color-support": "1.1.3", "commander": "14.0.3", "get-tsconfig": "4.13.7" }, "peerDependencies": { "typescript": ">=5.5.3 || >=6.0.0 || 6.0.1-rc" }, "bin": { "openapi-ts": "bin/run.js" } }, "sha512-KVEHhw02+wDokvMCmHn4PA230PEd8+gF8NGdUeX0Ucxdex9ws18GBP3JqxrDyxhqO2q0o7XJA0E1T7zsJVguKg=="],
|
|
42
|
+
|
|
43
|
+
"@hey-api/shared": ["@hey-api/shared@0.4.0", "", { "dependencies": { "@hey-api/codegen-core": "0.8.0", "@hey-api/json-schema-ref-parser": "1.4.0", "@hey-api/spec-types": "0.2.0", "@hey-api/types": "0.1.4", "ansi-colors": "4.1.3", "cross-spawn": "7.0.6", "open": "11.0.0", "semver": "7.7.4" } }, "sha512-kTAH703vFnS/W/U0DqdEh+2hXTNbq3JSrKG3jb1Es7kcV/N5vej2xMstHWHTYazn5q+UGkDa/BLJxBzS6bda8A=="],
|
|
44
|
+
|
|
45
|
+
"@hey-api/spec-types": ["@hey-api/spec-types@0.2.0", "", { "dependencies": { "@hey-api/types": "0.1.4" } }, "sha512-ibQ8Is7evMavzr8GNyJCcTg975d8DpaMUyLmOrQ85UBdy1l6t1KuRAwgChAbesJsIlNV6gjmlXruWyegDX18Fg=="],
|
|
46
|
+
|
|
47
|
+
"@hey-api/types": ["@hey-api/types@0.1.4", "", {}, "sha512-thWfawrDIP7wSI9ioT13I5soaaqB5vAPIiZmgD8PbeEVKNrkonc0N/Sjj97ezl7oQgusZmaNphGdMKipPO6IBg=="],
|
|
48
|
+
|
|
49
|
+
"@jsdevtools/ono": ["@jsdevtools/ono@7.1.3", "", {}, "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="],
|
|
50
|
+
|
|
51
|
+
"@redocly/ajv": ["@redocly/ajv@8.11.2", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js-replace": "^1.0.1" } }, "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg=="],
|
|
52
|
+
|
|
53
|
+
"@redocly/config": ["@redocly/config@0.22.0", "", {}, "sha512-gAy93Ddo01Z3bHuVdPWfCwzgfaYgMdaZPcfL7JZ7hWJoK9V0lXDbigTWkhiPFAaLWzbOJ+kbUQG1+XwIm0KRGQ=="],
|
|
54
|
+
|
|
55
|
+
"@redocly/openapi-core": ["@redocly/openapi-core@1.34.11", "", { "dependencies": { "@redocly/ajv": "8.11.2", "@redocly/config": "0.22.0", "colorette": "1.4.0", "https-proxy-agent": "7.0.6", "js-levenshtein": "1.1.6", "js-yaml": "4.1.1", "minimatch": "5.1.9", "pluralize": "8.0.0", "yaml-ast-parser": "0.0.43" } }, "sha512-V09ayfnb5GyysmvARbt+voFZAjGcf7hSYxOYxSkCc4fbH/DTfq5YWoec8cflvmHHqyIFbqvmGKmYFzqhr9zxDg=="],
|
|
56
|
+
|
|
57
|
+
"@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="],
|
|
58
|
+
|
|
59
|
+
"@types/node": ["@types/node@25.6.0", "", { "dependencies": { "undici-types": "~7.19.0" } }, "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ=="],
|
|
60
|
+
|
|
61
|
+
"agent-base": ["agent-base@7.1.4", "", {}, "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="],
|
|
62
|
+
|
|
63
|
+
"ansi-colors": ["ansi-colors@4.1.3", "", {}, "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw=="],
|
|
64
|
+
|
|
65
|
+
"ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
|
|
66
|
+
|
|
67
|
+
"argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="],
|
|
68
|
+
|
|
69
|
+
"balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
|
|
70
|
+
|
|
71
|
+
"brace-expansion": ["brace-expansion@2.1.0", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w=="],
|
|
72
|
+
|
|
73
|
+
"bun-types": ["bun-types@1.3.12", "", { "dependencies": { "@types/node": "*" } }, "sha512-HqOLj5PoFajAQciOMRiIZGNoKxDJSr6qigAttOX40vJuSp6DN/CxWp9s3C1Xwm4oH7ybueITwiaOcWXoYVoRkA=="],
|
|
74
|
+
|
|
75
|
+
"bundle-name": ["bundle-name@4.1.0", "", { "dependencies": { "run-applescript": "^7.0.0" } }, "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q=="],
|
|
76
|
+
|
|
77
|
+
"c12": ["c12@3.3.4", "", { "dependencies": { "chokidar": "^5.0.0", "confbox": "^0.2.4", "defu": "^6.1.6", "dotenv": "^17.3.1", "exsolve": "^1.0.8", "giget": "^3.2.0", "jiti": "^2.6.1", "ohash": "^2.0.11", "pathe": "^2.0.3", "perfect-debounce": "^2.1.0", "pkg-types": "^2.3.0", "rc9": "^3.0.1" }, "peerDependencies": { "magicast": "*" }, "optionalPeers": ["magicast"] }, "sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA=="],
|
|
78
|
+
|
|
79
|
+
"chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
|
|
80
|
+
|
|
81
|
+
"change-case": ["change-case@5.4.4", "", {}, "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w=="],
|
|
82
|
+
|
|
83
|
+
"chokidar": ["chokidar@5.0.0", "", { "dependencies": { "readdirp": "^5.0.0" } }, "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw=="],
|
|
84
|
+
|
|
85
|
+
"citty": ["citty@0.1.6", "", { "dependencies": { "consola": "^3.2.3" } }, "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ=="],
|
|
86
|
+
|
|
87
|
+
"cli-table3": ["cli-table3@0.6.5", "", { "dependencies": { "string-width": "^4.2.0" }, "optionalDependencies": { "@colors/colors": "1.5.0" } }, "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ=="],
|
|
88
|
+
|
|
89
|
+
"color-support": ["color-support@1.1.3", "", { "bin": { "color-support": "bin.js" } }, "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="],
|
|
90
|
+
|
|
91
|
+
"colorette": ["colorette@1.4.0", "", {}, "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="],
|
|
92
|
+
|
|
93
|
+
"commander": ["commander@14.0.3", "", {}, "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw=="],
|
|
94
|
+
|
|
95
|
+
"confbox": ["confbox@0.2.4", "", {}, "sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ=="],
|
|
96
|
+
|
|
97
|
+
"consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="],
|
|
98
|
+
|
|
99
|
+
"cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="],
|
|
100
|
+
|
|
101
|
+
"debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
|
|
102
|
+
|
|
103
|
+
"default-browser": ["default-browser@5.5.0", "", { "dependencies": { "bundle-name": "^4.1.0", "default-browser-id": "^5.0.0" } }, "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw=="],
|
|
104
|
+
|
|
105
|
+
"default-browser-id": ["default-browser-id@5.0.1", "", {}, "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q=="],
|
|
106
|
+
|
|
107
|
+
"define-lazy-prop": ["define-lazy-prop@3.0.0", "", {}, "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg=="],
|
|
108
|
+
|
|
109
|
+
"defu": ["defu@6.1.7", "", {}, "sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ=="],
|
|
110
|
+
|
|
111
|
+
"destr": ["destr@2.0.5", "", {}, "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA=="],
|
|
112
|
+
|
|
113
|
+
"dotenv": ["dotenv@17.4.2", "", {}, "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw=="],
|
|
114
|
+
|
|
115
|
+
"emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
|
|
116
|
+
|
|
117
|
+
"exsolve": ["exsolve@1.0.8", "", {}, "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA=="],
|
|
118
|
+
|
|
119
|
+
"fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
|
|
120
|
+
|
|
121
|
+
"fast-string-truncated-width": ["fast-string-truncated-width@1.2.1", "", {}, "sha512-Q9acT/+Uu3GwGj+5w/zsGuQjh9O1TyywhIwAxHudtWrgF09nHOPrvTLhQevPbttcxjr/SNN7mJmfOw/B1bXgow=="],
|
|
122
|
+
|
|
123
|
+
"fast-string-width": ["fast-string-width@1.1.0", "", { "dependencies": { "fast-string-truncated-width": "^1.2.0" } }, "sha512-O3fwIVIH5gKB38QNbdg+3760ZmGz0SZMgvwJbA1b2TGXceKE6A2cOlfogh1iw8lr049zPyd7YADHy+B7U4W9bQ=="],
|
|
124
|
+
|
|
125
|
+
"fast-wrap-ansi": ["fast-wrap-ansi@0.1.6", "", { "dependencies": { "fast-string-width": "^1.1.0" } }, "sha512-HlUwET7a5gqjURj70D5jl7aC3Zmy4weA1SHUfM0JFI0Ptq987NH2TwbBFLoERhfwk+E+eaq4EK3jXoT+R3yp3w=="],
|
|
126
|
+
|
|
127
|
+
"get-tsconfig": ["get-tsconfig@4.13.7", "", { "dependencies": { "resolve-pkg-maps": "^1.0.0" } }, "sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q=="],
|
|
128
|
+
|
|
129
|
+
"giget": ["giget@3.2.0", "", { "bin": { "giget": "dist/cli.mjs" } }, "sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A=="],
|
|
130
|
+
|
|
131
|
+
"https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="],
|
|
132
|
+
|
|
133
|
+
"index-to-position": ["index-to-position@1.2.0", "", {}, "sha512-Yg7+ztRkqslMAS2iFaU+Oa4KTSidr63OsFGlOrJoW981kIYO3CGCS3wA95P1mUi/IVSJkn0D479KTJpVpvFNuw=="],
|
|
134
|
+
|
|
135
|
+
"is-docker": ["is-docker@3.0.0", "", { "bin": { "is-docker": "cli.js" } }, "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ=="],
|
|
136
|
+
|
|
137
|
+
"is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="],
|
|
138
|
+
|
|
139
|
+
"is-in-ssh": ["is-in-ssh@1.0.0", "", {}, "sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw=="],
|
|
140
|
+
|
|
141
|
+
"is-inside-container": ["is-inside-container@1.0.0", "", { "dependencies": { "is-docker": "^3.0.0" }, "bin": { "is-inside-container": "cli.js" } }, "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA=="],
|
|
142
|
+
|
|
143
|
+
"is-wsl": ["is-wsl@3.1.1", "", { "dependencies": { "is-inside-container": "^1.0.0" } }, "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw=="],
|
|
144
|
+
|
|
145
|
+
"isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="],
|
|
146
|
+
|
|
147
|
+
"jiti": ["jiti@2.6.1", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ=="],
|
|
148
|
+
|
|
149
|
+
"jose": ["jose@5.10.0", "", {}, "sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg=="],
|
|
150
|
+
|
|
151
|
+
"js-levenshtein": ["js-levenshtein@1.1.6", "", {}, "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g=="],
|
|
152
|
+
|
|
153
|
+
"js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="],
|
|
154
|
+
|
|
155
|
+
"js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="],
|
|
156
|
+
|
|
157
|
+
"json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
|
|
158
|
+
|
|
159
|
+
"minimatch": ["minimatch@5.1.9", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw=="],
|
|
160
|
+
|
|
161
|
+
"ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
|
|
162
|
+
|
|
163
|
+
"ohash": ["ohash@2.0.11", "", {}, "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ=="],
|
|
164
|
+
|
|
165
|
+
"open": ["open@11.0.0", "", { "dependencies": { "default-browser": "^5.4.0", "define-lazy-prop": "^3.0.0", "is-in-ssh": "^1.0.0", "is-inside-container": "^1.0.0", "powershell-utils": "^0.1.0", "wsl-utils": "^0.3.0" } }, "sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw=="],
|
|
166
|
+
|
|
167
|
+
"openapi-fetch": ["openapi-fetch@0.17.0", "", { "dependencies": { "openapi-typescript-helpers": "^0.1.0" } }, "sha512-PsbZR1wAPcG91eEthKhN+Zn92FMHxv+/faECIwjXdxfTODGSGegYv0sc1Olz+HYPvKOuoXfp+0pA2XVt2cI0Ig=="],
|
|
168
|
+
|
|
169
|
+
"openapi-typescript": ["openapi-typescript@7.13.0", "", { "dependencies": { "@redocly/openapi-core": "^1.34.6", "ansi-colors": "^4.1.3", "change-case": "^5.4.4", "parse-json": "^8.3.0", "supports-color": "^10.2.2", "yargs-parser": "^21.1.1" }, "peerDependencies": { "typescript": "^5.x" }, "bin": { "openapi-typescript": "bin/cli.js" } }, "sha512-EFP392gcqXS7ntPvbhBzbF8TyBA+baIYEm791Hy5YkjDYKTnk/Tn5OQeKm5BIZvJihpp8Zzr4hzx0Irde1LNGQ=="],
|
|
170
|
+
|
|
171
|
+
"openapi-typescript-helpers": ["openapi-typescript-helpers@0.1.0", "", {}, "sha512-OKTGPthhivLw/fHz6c3OPtg72vi86qaMlqbJuVJ23qOvQ+53uw1n7HdmkJFibloF7QEjDrDkzJiOJuockM/ljw=="],
|
|
172
|
+
|
|
173
|
+
"parse-json": ["parse-json@8.3.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "index-to-position": "^1.1.0", "type-fest": "^4.39.1" } }, "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ=="],
|
|
174
|
+
|
|
175
|
+
"path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="],
|
|
176
|
+
|
|
177
|
+
"pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="],
|
|
178
|
+
|
|
179
|
+
"perfect-debounce": ["perfect-debounce@2.1.0", "", {}, "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g=="],
|
|
180
|
+
|
|
181
|
+
"picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
|
|
182
|
+
|
|
183
|
+
"pkg-types": ["pkg-types@2.3.0", "", { "dependencies": { "confbox": "^0.2.2", "exsolve": "^1.0.7", "pathe": "^2.0.3" } }, "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig=="],
|
|
184
|
+
|
|
185
|
+
"pluralize": ["pluralize@8.0.0", "", {}, "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA=="],
|
|
186
|
+
|
|
187
|
+
"powershell-utils": ["powershell-utils@0.1.0", "", {}, "sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A=="],
|
|
188
|
+
|
|
189
|
+
"rc9": ["rc9@3.0.1", "", { "dependencies": { "defu": "^6.1.6", "destr": "^2.0.5" } }, "sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ=="],
|
|
190
|
+
|
|
191
|
+
"readdirp": ["readdirp@5.0.0", "", {}, "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ=="],
|
|
192
|
+
|
|
193
|
+
"require-from-string": ["require-from-string@2.0.2", "", {}, "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="],
|
|
194
|
+
|
|
195
|
+
"resolve-pkg-maps": ["resolve-pkg-maps@1.0.0", "", {}, "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="],
|
|
196
|
+
|
|
197
|
+
"run-applescript": ["run-applescript@7.1.0", "", {}, "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q=="],
|
|
198
|
+
|
|
199
|
+
"semver": ["semver@7.7.4", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA=="],
|
|
200
|
+
|
|
201
|
+
"shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
|
|
202
|
+
|
|
203
|
+
"shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="],
|
|
204
|
+
|
|
205
|
+
"sisteransi": ["sisteransi@1.0.5", "", {}, "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="],
|
|
206
|
+
|
|
207
|
+
"string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
|
|
208
|
+
|
|
209
|
+
"strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
|
|
210
|
+
|
|
211
|
+
"supports-color": ["supports-color@10.2.2", "", {}, "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g=="],
|
|
212
|
+
|
|
213
|
+
"type-fest": ["type-fest@4.41.0", "", {}, "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA=="],
|
|
214
|
+
|
|
215
|
+
"typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
|
|
216
|
+
|
|
217
|
+
"undici-types": ["undici-types@7.19.2", "", {}, "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg=="],
|
|
218
|
+
|
|
219
|
+
"uri-js-replace": ["uri-js-replace@1.0.1", "", {}, "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g=="],
|
|
220
|
+
|
|
221
|
+
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
|
|
222
|
+
|
|
223
|
+
"wsl-utils": ["wsl-utils@0.3.1", "", { "dependencies": { "is-wsl": "^3.1.0", "powershell-utils": "^0.1.0" } }, "sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg=="],
|
|
224
|
+
|
|
225
|
+
"yaml": ["yaml@2.8.3", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg=="],
|
|
226
|
+
|
|
227
|
+
"yaml-ast-parser": ["yaml-ast-parser@0.0.43", "", {}, "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A=="],
|
|
228
|
+
|
|
229
|
+
"yargs-parser": ["yargs-parser@21.1.1", "", {}, "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="],
|
|
230
|
+
}
|
|
231
|
+
}
|