@carrierllc/mcp 0.3.2 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carrierllc/mcp",
3
- "version": "0.3.2",
3
+ "version": "0.4.1",
4
4
  "description": "Carrier MCP \u2014 natural-language control of MVNO/eSIM fleets via eSIMVault OCS. Stdio mode for direct integration with Claude Desktop, Cursor, Windsurf, and MCP-compatible clients. Ships the `carrier` CLI (plugin install + white-label eSIM storefront scaffold).",
5
5
  "license": "MIT",
6
6
  "author": "Carrier (Lifecycle Innovations Limited)",
@@ -14,15 +14,24 @@
14
14
  "files": [
15
15
  "dist",
16
16
  "plugin",
17
+ "README.md",
17
18
  "templates",
18
- "README.md"
19
+ "!templates/**/node_modules",
20
+ "!templates/**/.open-next",
21
+ "!templates/**/.next",
22
+ "!templates/**/.turbo",
23
+ "!templates/**/.vercel",
24
+ "!templates/**/.wrangler",
25
+ "!templates/**/*.tsbuildinfo",
26
+ "!templates/**/.env.local"
19
27
  ],
20
28
  "scripts": {
21
29
  "build": "tsup",
22
30
  "type-check": "tsc --noEmit",
23
31
  "lint": "eslint src",
24
32
  "prepublishOnly": "pnpm run build",
25
- "test": "pnpm run build && node --test test/*.test.js"
33
+ "test": "pnpm run build && node --test test/*.test.js",
34
+ "check:pack": "node scripts/check-pack-size.mjs"
26
35
  },
27
36
  "dependencies": {
28
37
  "@clack/prompts": "^0.7.0",
@@ -45,7 +54,8 @@
45
54
  "tsup": "^8.5.1",
46
55
  "typescript": "^5.9.3",
47
56
  "@carrier/ocs-client": "workspace:*",
48
- "@carrier/ocs-spec": "workspace:*"
57
+ "@carrier/ocs-spec": "workspace:*",
58
+ "@carrier/screens": "workspace:*"
49
59
  },
50
60
  "keywords": [
51
61
  "mcp",
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Scaffold, white-label, logo, and deploy your eSIM storefront
3
- argument-hint: "[create|logo|deploy|rebrand] [dir]"
3
+ argument-hint: "[create|logo|deploy|targets|clerk|rebrand] [dir]"
4
4
  ---
5
5
 
6
6
  # Storefront
@@ -14,7 +14,26 @@ Works for **any developer** with Carrier MCP (`https://mcp.carrier.llc/mcp`) or
14
14
  - **logo** → `carrier site logo <dir>` or MCP tool `generate_storefront_logo`
15
15
  Regenerates the mark. SVG always. PNG is added only when Carrier (or this box) has an OpenAI image key — optional, never required.
16
16
  - **rebrand** → edit `src/brand.config.ts`, then `carrier site logo <dir>` and rebuild.
17
- - **deploy** → `carrier site deploy <dir>` (Cloudflare Workers). Requires `wrangler login`.
17
+ - **targets** → `carrier site targets <dir>`
18
+ Shows which hosts are installed, logged in, and ready: Cloudflare, Vercel, Netlify, Fly. Names the one a deploy would pick.
19
+ - **deploy** → `carrier site deploy <dir>`
20
+ Picks a host automatically: one the project is already configured for, else Cloudflare (what the template is built for). Force with `--target cloudflare|vercel|netlify|fly`. Builds with the right script per host (`cf:build` for Cloudflare, `build` elsewhere), **stages runtime secrets before the code**, deploys, then **verifies the site actually serves** and repairs it once if it does not.
21
+ Flags: `--no-secrets`, `--no-verify`, `--clerk`, `--domain`, `--autofix-agent`.
22
+ - **clerk** → `carrier site clerk <dir>`
23
+ Four tiers, best first: create via Platform API (`CLERK_PLATFORM_API_KEY`) → mint a **keyless** app with the Clerk CLI, no account needed → reuse keys already on the machine → print the dashboard steps. Writes keys to `.env.local` and sets allowed origins + redirect URLs. `--no-create` reuses only; `--production` pulls prod keys.
24
+
25
+ Secrets are staged **before** the deploy, not after. On Cloudflare they ride along in the same version via `--secrets-file`, so there is never a moment where the new code is live without them — that gap is what made a green deploy serve 500s.
26
+
27
+ After deploying, `/`, `/shop` and `/help` are probed. A failure is classified, not guessed at:
28
+
29
+ | Symptom | Cause | What happens |
30
+ |---|---|---|
31
+ | `/` + `/shop` 500, `/help` 200 | `CARRIER_API_KEY` absent | re-stage, redeploy |
32
+ | public pages fine, auth routes 5xx | Clerk keys absent | provision, rebuild, redeploy |
33
+ | `/shop` 200 but no plans | catalog empty upstream | reported, not retried |
34
+ | nothing reachable | deploy did not land | reported |
35
+
36
+ One repair attempt, then re-probe. Still broken on Cloudflare → rolled back to the previous version and a non-zero exit. Never loops.
18
37
 
19
38
  MCP (any authenticated Carrier user):
20
39
 
@@ -27,7 +46,37 @@ generate_storefront_logo
27
46
 
28
47
  Write the returned `svg` to `public/brand/logo.svg`. Nav and icons read that path.
29
48
 
30
- Wire-up:
31
- - `NEXT_PUBLIC_CARRIER_API_URL` in `.env.local`
32
- - Plans from `list_package_templates` / `pricing_plans`
33
- - Confirm `credential_status` before going live
49
+ MCP over stdio (these drive host CLIs on your machine, so they are local-only):
50
+
51
+ ```
52
+ list_deploy_targets dir: ./storefront
53
+ deploy_storefront dir: ./storefront [target, name, skip_build, push_secrets, verify, domain]
54
+ provision_storefront_clerk dir: ./storefront [name, production, no_create, url]
55
+ ```
56
+
57
+ `deploy_storefront` returns `verified`, `diagnosis`, `probes` and `repair_hint`, so a caller can tell a working deployment from one that merely finished.
58
+
59
+ Wire-up. Every key the template reads is declared in `TEMPLATE_ENV_KEYS`
60
+ (`src/cli/lib/storefront-secrets.ts`) and a test fails the build if the template
61
+ gains one that is not:
62
+
63
+ | Key | Delivery | Missing means |
64
+ |---|---|---|
65
+ | `NEXT_PUBLIC_CARRIER_API_URL` | build-time | falls back to mock plans |
66
+ | `NEXT_PUBLIC_APP_URL` | build-time | guest checkout builds broken URLs |
67
+ | `NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY` | build-time | auth routes fail |
68
+ | `CARRIER_API_KEY` | runtime secret | **`/` and `/shop` return 500** |
69
+ | `CLERK_SECRET_KEY` | runtime secret | auth routes fail |
70
+ | `STRIPE_SECRET_KEY` | runtime secret | guest checkout fails at request time |
71
+
72
+ `NEXT_PUBLIC_*` values are inlined by Next at build time, so they must be in
73
+ `.env.local` *before* the build — pushing one as a runtime secret looks like it
74
+ worked and changes nothing.
75
+
76
+ Also: plans come from `list_package_templates` / `pricing_plans`, and
77
+ `credential_status` is worth confirming before going live.
78
+
79
+ Creating a Clerk application through the Platform API needs a partner token and
80
+ is not self-serve. The CLI's keyless mode covers that gap — it mints a claimable
81
+ app with no account. Claim it at dashboard.clerk.com to keep it, and use
82
+ `--production` for real production keys.
@@ -0,0 +1,7 @@
1
+ /// <reference types="next" />
2
+ /// <reference types="next/image-types/global" />
3
+ import "./.next/types/routes.d.ts";
4
+ import "./.next/types/root-params.d.ts";
5
+
6
+ // NOTE: This file should not be edited
7
+ // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
@@ -107,9 +107,6 @@
107
107
  "arm64"
108
108
  ],
109
109
  "dev": true,
110
- "libc": [
111
- "glibc"
112
- ],
113
110
  "license": "MIT",
114
111
  "optional": true,
115
112
  "os": [
@@ -127,9 +124,6 @@
127
124
  "arm64"
128
125
  ],
129
126
  "dev": true,
130
- "libc": [
131
- "musl"
132
- ],
133
127
  "license": "MIT",
134
128
  "optional": true,
135
129
  "os": [
@@ -147,9 +141,6 @@
147
141
  "x64"
148
142
  ],
149
143
  "dev": true,
150
- "libc": [
151
- "glibc"
152
- ],
153
144
  "license": "MIT",
154
145
  "optional": true,
155
146
  "os": [
@@ -167,9 +158,6 @@
167
158
  "x64"
168
159
  ],
169
160
  "dev": true,
170
- "libc": [
171
- "musl"
172
- ],
173
161
  "license": "MIT",
174
162
  "optional": true,
175
163
  "os": [
@@ -2550,9 +2538,6 @@
2550
2538
  "cpu": [
2551
2539
  "arm"
2552
2540
  ],
2553
- "libc": [
2554
- "glibc"
2555
- ],
2556
2541
  "license": "LGPL-3.0-or-later",
2557
2542
  "optional": true,
2558
2543
  "os": [
@@ -2569,9 +2554,6 @@
2569
2554
  "cpu": [
2570
2555
  "arm64"
2571
2556
  ],
2572
- "libc": [
2573
- "glibc"
2574
- ],
2575
2557
  "license": "LGPL-3.0-or-later",
2576
2558
  "optional": true,
2577
2559
  "os": [
@@ -2588,9 +2570,6 @@
2588
2570
  "cpu": [
2589
2571
  "ppc64"
2590
2572
  ],
2591
- "libc": [
2592
- "glibc"
2593
- ],
2594
2573
  "license": "LGPL-3.0-or-later",
2595
2574
  "optional": true,
2596
2575
  "os": [
@@ -2607,9 +2586,6 @@
2607
2586
  "cpu": [
2608
2587
  "riscv64"
2609
2588
  ],
2610
- "libc": [
2611
- "glibc"
2612
- ],
2613
2589
  "license": "LGPL-3.0-or-later",
2614
2590
  "optional": true,
2615
2591
  "os": [
@@ -2626,9 +2602,6 @@
2626
2602
  "cpu": [
2627
2603
  "s390x"
2628
2604
  ],
2629
- "libc": [
2630
- "glibc"
2631
- ],
2632
2605
  "license": "LGPL-3.0-or-later",
2633
2606
  "optional": true,
2634
2607
  "os": [
@@ -2645,9 +2618,6 @@
2645
2618
  "cpu": [
2646
2619
  "x64"
2647
2620
  ],
2648
- "libc": [
2649
- "glibc"
2650
- ],
2651
2621
  "license": "LGPL-3.0-or-later",
2652
2622
  "optional": true,
2653
2623
  "os": [
@@ -2664,9 +2634,6 @@
2664
2634
  "cpu": [
2665
2635
  "arm64"
2666
2636
  ],
2667
- "libc": [
2668
- "musl"
2669
- ],
2670
2637
  "license": "LGPL-3.0-or-later",
2671
2638
  "optional": true,
2672
2639
  "os": [
@@ -2683,9 +2650,6 @@
2683
2650
  "cpu": [
2684
2651
  "x64"
2685
2652
  ],
2686
- "libc": [
2687
- "musl"
2688
- ],
2689
2653
  "license": "LGPL-3.0-or-later",
2690
2654
  "optional": true,
2691
2655
  "os": [
@@ -2702,9 +2666,6 @@
2702
2666
  "cpu": [
2703
2667
  "arm"
2704
2668
  ],
2705
- "libc": [
2706
- "glibc"
2707
- ],
2708
2669
  "license": "Apache-2.0",
2709
2670
  "optional": true,
2710
2671
  "os": [
@@ -2727,9 +2688,6 @@
2727
2688
  "cpu": [
2728
2689
  "arm64"
2729
2690
  ],
2730
- "libc": [
2731
- "glibc"
2732
- ],
2733
2691
  "license": "Apache-2.0",
2734
2692
  "optional": true,
2735
2693
  "os": [
@@ -2752,9 +2710,6 @@
2752
2710
  "cpu": [
2753
2711
  "ppc64"
2754
2712
  ],
2755
- "libc": [
2756
- "glibc"
2757
- ],
2758
2713
  "license": "Apache-2.0",
2759
2714
  "optional": true,
2760
2715
  "os": [
@@ -2777,9 +2732,6 @@
2777
2732
  "cpu": [
2778
2733
  "riscv64"
2779
2734
  ],
2780
- "libc": [
2781
- "glibc"
2782
- ],
2783
2735
  "license": "Apache-2.0",
2784
2736
  "optional": true,
2785
2737
  "os": [
@@ -2802,9 +2754,6 @@
2802
2754
  "cpu": [
2803
2755
  "s390x"
2804
2756
  ],
2805
- "libc": [
2806
- "glibc"
2807
- ],
2808
2757
  "license": "Apache-2.0",
2809
2758
  "optional": true,
2810
2759
  "os": [
@@ -2827,9 +2776,6 @@
2827
2776
  "cpu": [
2828
2777
  "x64"
2829
2778
  ],
2830
- "libc": [
2831
- "glibc"
2832
- ],
2833
2779
  "license": "Apache-2.0",
2834
2780
  "optional": true,
2835
2781
  "os": [
@@ -2852,9 +2798,6 @@
2852
2798
  "cpu": [
2853
2799
  "arm64"
2854
2800
  ],
2855
- "libc": [
2856
- "musl"
2857
- ],
2858
2801
  "license": "Apache-2.0",
2859
2802
  "optional": true,
2860
2803
  "os": [
@@ -2877,9 +2820,6 @@
2877
2820
  "cpu": [
2878
2821
  "x64"
2879
2822
  ],
2880
- "libc": [
2881
- "musl"
2882
- ],
2883
2823
  "license": "Apache-2.0",
2884
2824
  "optional": true,
2885
2825
  "os": [
@@ -3186,9 +3126,6 @@
3186
3126
  "cpu": [
3187
3127
  "arm64"
3188
3128
  ],
3189
- "libc": [
3190
- "glibc"
3191
- ],
3192
3129
  "license": "MIT",
3193
3130
  "optional": true,
3194
3131
  "os": [
@@ -3205,9 +3142,6 @@
3205
3142
  "cpu": [
3206
3143
  "arm64"
3207
3144
  ],
3208
- "libc": [
3209
- "musl"
3210
- ],
3211
3145
  "license": "MIT",
3212
3146
  "optional": true,
3213
3147
  "os": [
@@ -3224,9 +3158,6 @@
3224
3158
  "cpu": [
3225
3159
  "x64"
3226
3160
  ],
3227
- "libc": [
3228
- "glibc"
3229
- ],
3230
3161
  "license": "MIT",
3231
3162
  "optional": true,
3232
3163
  "os": [
@@ -3243,9 +3174,6 @@
3243
3174
  "cpu": [
3244
3175
  "x64"
3245
3176
  ],
3246
- "libc": [
3247
- "musl"
3248
- ],
3249
3177
  "license": "MIT",
3250
3178
  "optional": true,
3251
3179
  "os": [
@@ -4298,9 +4226,6 @@
4298
4226
  "arm64"
4299
4227
  ],
4300
4228
  "dev": true,
4301
- "libc": [
4302
- "glibc"
4303
- ],
4304
4229
  "license": "MIT",
4305
4230
  "optional": true,
4306
4231
  "os": [
@@ -4318,9 +4243,6 @@
4318
4243
  "arm64"
4319
4244
  ],
4320
4245
  "dev": true,
4321
- "libc": [
4322
- "musl"
4323
- ],
4324
4246
  "license": "MIT",
4325
4247
  "optional": true,
4326
4248
  "os": [
@@ -4338,9 +4260,6 @@
4338
4260
  "x64"
4339
4261
  ],
4340
4262
  "dev": true,
4341
- "libc": [
4342
- "glibc"
4343
- ],
4344
4263
  "license": "MIT",
4345
4264
  "optional": true,
4346
4265
  "os": [
@@ -4358,9 +4277,6 @@
4358
4277
  "x64"
4359
4278
  ],
4360
4279
  "dev": true,
4361
- "libc": [
4362
- "musl"
4363
- ],
4364
4280
  "license": "MIT",
4365
4281
  "optional": true,
4366
4282
  "os": [
@@ -4944,9 +4860,6 @@
4944
4860
  "arm64"
4945
4861
  ],
4946
4862
  "dev": true,
4947
- "libc": [
4948
- "glibc"
4949
- ],
4950
4863
  "license": "MIT",
4951
4864
  "optional": true,
4952
4865
  "os": [
@@ -4961,9 +4874,6 @@
4961
4874
  "arm64"
4962
4875
  ],
4963
4876
  "dev": true,
4964
- "libc": [
4965
- "musl"
4966
- ],
4967
4877
  "license": "MIT",
4968
4878
  "optional": true,
4969
4879
  "os": [
@@ -4978,9 +4888,6 @@
4978
4888
  "loong64"
4979
4889
  ],
4980
4890
  "dev": true,
4981
- "libc": [
4982
- "glibc"
4983
- ],
4984
4891
  "license": "MIT",
4985
4892
  "optional": true,
4986
4893
  "os": [
@@ -4995,9 +4902,6 @@
4995
4902
  "loong64"
4996
4903
  ],
4997
4904
  "dev": true,
4998
- "libc": [
4999
- "musl"
5000
- ],
5001
4905
  "license": "MIT",
5002
4906
  "optional": true,
5003
4907
  "os": [
@@ -5012,9 +4916,6 @@
5012
4916
  "ppc64"
5013
4917
  ],
5014
4918
  "dev": true,
5015
- "libc": [
5016
- "glibc"
5017
- ],
5018
4919
  "license": "MIT",
5019
4920
  "optional": true,
5020
4921
  "os": [
@@ -5029,9 +4930,6 @@
5029
4930
  "riscv64"
5030
4931
  ],
5031
4932
  "dev": true,
5032
- "libc": [
5033
- "glibc"
5034
- ],
5035
4933
  "license": "MIT",
5036
4934
  "optional": true,
5037
4935
  "os": [
@@ -5046,9 +4944,6 @@
5046
4944
  "riscv64"
5047
4945
  ],
5048
4946
  "dev": true,
5049
- "libc": [
5050
- "musl"
5051
- ],
5052
4947
  "license": "MIT",
5053
4948
  "optional": true,
5054
4949
  "os": [
@@ -5063,9 +4958,6 @@
5063
4958
  "s390x"
5064
4959
  ],
5065
4960
  "dev": true,
5066
- "libc": [
5067
- "glibc"
5068
- ],
5069
4961
  "license": "MIT",
5070
4962
  "optional": true,
5071
4963
  "os": [
@@ -5080,9 +4972,6 @@
5080
4972
  "x64"
5081
4973
  ],
5082
4974
  "dev": true,
5083
- "libc": [
5084
- "glibc"
5085
- ],
5086
4975
  "license": "MIT",
5087
4976
  "optional": true,
5088
4977
  "os": [
@@ -5097,9 +4986,6 @@
5097
4986
  "x64"
5098
4987
  ],
5099
4988
  "dev": true,
5100
- "libc": [
5101
- "musl"
5102
- ],
5103
4989
  "license": "MIT",
5104
4990
  "optional": true,
5105
4991
  "os": [
@@ -8794,9 +8680,6 @@
8794
8680
  "arm64"
8795
8681
  ],
8796
8682
  "dev": true,
8797
- "libc": [
8798
- "glibc"
8799
- ],
8800
8683
  "license": "MPL-2.0",
8801
8684
  "optional": true,
8802
8685
  "os": [
@@ -8818,9 +8701,6 @@
8818
8701
  "arm64"
8819
8702
  ],
8820
8703
  "dev": true,
8821
- "libc": [
8822
- "musl"
8823
- ],
8824
8704
  "license": "MPL-2.0",
8825
8705
  "optional": true,
8826
8706
  "os": [
@@ -8842,9 +8722,6 @@
8842
8722
  "x64"
8843
8723
  ],
8844
8724
  "dev": true,
8845
- "libc": [
8846
- "glibc"
8847
- ],
8848
8725
  "license": "MPL-2.0",
8849
8726
  "optional": true,
8850
8727
  "os": [
@@ -8866,9 +8743,6 @@
8866
8743
  "x64"
8867
8744
  ],
8868
8745
  "dev": true,
8869
- "libc": [
8870
- "musl"
8871
- ],
8872
8746
  "license": "MPL-2.0",
8873
8747
  "optional": true,
8874
8748
  "os": [
@@ -9197,9 +9071,6 @@
9197
9071
  "arm"
9198
9072
  ],
9199
9073
  "dev": true,
9200
- "libc": [
9201
- "glibc"
9202
- ],
9203
9074
  "license": "LGPL-3.0-or-later",
9204
9075
  "optional": true,
9205
9076
  "os": [
@@ -9217,9 +9088,6 @@
9217
9088
  "arm64"
9218
9089
  ],
9219
9090
  "dev": true,
9220
- "libc": [
9221
- "glibc"
9222
- ],
9223
9091
  "license": "LGPL-3.0-or-later",
9224
9092
  "optional": true,
9225
9093
  "os": [
@@ -9237,9 +9105,6 @@
9237
9105
  "ppc64"
9238
9106
  ],
9239
9107
  "dev": true,
9240
- "libc": [
9241
- "glibc"
9242
- ],
9243
9108
  "license": "LGPL-3.0-or-later",
9244
9109
  "optional": true,
9245
9110
  "os": [
@@ -9257,9 +9122,6 @@
9257
9122
  "riscv64"
9258
9123
  ],
9259
9124
  "dev": true,
9260
- "libc": [
9261
- "glibc"
9262
- ],
9263
9125
  "license": "LGPL-3.0-or-later",
9264
9126
  "optional": true,
9265
9127
  "os": [
@@ -9277,9 +9139,6 @@
9277
9139
  "s390x"
9278
9140
  ],
9279
9141
  "dev": true,
9280
- "libc": [
9281
- "glibc"
9282
- ],
9283
9142
  "license": "LGPL-3.0-or-later",
9284
9143
  "optional": true,
9285
9144
  "os": [
@@ -9297,9 +9156,6 @@
9297
9156
  "x64"
9298
9157
  ],
9299
9158
  "dev": true,
9300
- "libc": [
9301
- "glibc"
9302
- ],
9303
9159
  "license": "LGPL-3.0-or-later",
9304
9160
  "optional": true,
9305
9161
  "os": [
@@ -9317,9 +9173,6 @@
9317
9173
  "arm64"
9318
9174
  ],
9319
9175
  "dev": true,
9320
- "libc": [
9321
- "musl"
9322
- ],
9323
9176
  "license": "LGPL-3.0-or-later",
9324
9177
  "optional": true,
9325
9178
  "os": [
@@ -9337,9 +9190,6 @@
9337
9190
  "x64"
9338
9191
  ],
9339
9192
  "dev": true,
9340
- "libc": [
9341
- "musl"
9342
- ],
9343
9193
  "license": "LGPL-3.0-or-later",
9344
9194
  "optional": true,
9345
9195
  "os": [
@@ -9357,9 +9207,6 @@
9357
9207
  "arm"
9358
9208
  ],
9359
9209
  "dev": true,
9360
- "libc": [
9361
- "glibc"
9362
- ],
9363
9210
  "license": "Apache-2.0",
9364
9211
  "optional": true,
9365
9212
  "os": [
@@ -9383,9 +9230,6 @@
9383
9230
  "arm64"
9384
9231
  ],
9385
9232
  "dev": true,
9386
- "libc": [
9387
- "glibc"
9388
- ],
9389
9233
  "license": "Apache-2.0",
9390
9234
  "optional": true,
9391
9235
  "os": [
@@ -9409,9 +9253,6 @@
9409
9253
  "ppc64"
9410
9254
  ],
9411
9255
  "dev": true,
9412
- "libc": [
9413
- "glibc"
9414
- ],
9415
9256
  "license": "Apache-2.0",
9416
9257
  "optional": true,
9417
9258
  "os": [
@@ -9435,9 +9276,6 @@
9435
9276
  "riscv64"
9436
9277
  ],
9437
9278
  "dev": true,
9438
- "libc": [
9439
- "glibc"
9440
- ],
9441
9279
  "license": "Apache-2.0",
9442
9280
  "optional": true,
9443
9281
  "os": [
@@ -9461,9 +9299,6 @@
9461
9299
  "s390x"
9462
9300
  ],
9463
9301
  "dev": true,
9464
- "libc": [
9465
- "glibc"
9466
- ],
9467
9302
  "license": "Apache-2.0",
9468
9303
  "optional": true,
9469
9304
  "os": [
@@ -9487,9 +9322,6 @@
9487
9322
  "x64"
9488
9323
  ],
9489
9324
  "dev": true,
9490
- "libc": [
9491
- "glibc"
9492
- ],
9493
9325
  "license": "Apache-2.0",
9494
9326
  "optional": true,
9495
9327
  "os": [
@@ -9513,9 +9345,6 @@
9513
9345
  "arm64"
9514
9346
  ],
9515
9347
  "dev": true,
9516
- "libc": [
9517
- "musl"
9518
- ],
9519
9348
  "license": "Apache-2.0",
9520
9349
  "optional": true,
9521
9350
  "os": [
@@ -9539,9 +9368,6 @@
9539
9368
  "x64"
9540
9369
  ],
9541
9370
  "dev": true,
9542
- "libc": [
9543
- "musl"
9544
- ],
9545
9371
  "license": "Apache-2.0",
9546
9372
  "optional": true,
9547
9373
  "os": [