-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathyarn.lock
More file actions
5416 lines (4847 loc) · 182 KB
/
Copy pathyarn.lock
File metadata and controls
5416 lines (4847 loc) · 182 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/code-frame@npm:7.29.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.29.7"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10/84da552e51a55795a50b3589116edb2f9e368a647d266380683775f18effd9acd4521b0246bebd0b049a7f32af1f87b1e8475d3bcb665f876bd04ade8da99697
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/compat-data@npm:7.29.7"
checksum: 10/ad2272714087f68970977f6e2b53597a8503fc9c3028c4a91686474bd77a707dd00903cdde4b73788972016d1bad4dc3fa4e5ff38e1ed8f1c3bde1095352973a
languageName: node
linkType: hard
"@babel/core@npm:^7.28.0":
version: 7.29.7
resolution: "@babel/core@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/generator": "npm:^7.29.7"
"@babel/helper-compilation-targets": "npm:^7.29.7"
"@babel/helper-module-transforms": "npm:^7.29.7"
"@babel/helpers": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/template": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/38e71cf81db790b0bb2a3a0c8140c2b1c87576b61dc6be676de4fab8c3be871af590a739e8c489fe8e8f9a8e5899fa11e35e59e9e09d40b259c6a675f2f98928
languageName: node
linkType: hard
"@babel/generator@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/generator@npm:7.29.7"
dependencies:
"@babel/parser": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10/60fb0432ebeab791b2d68e5fc49da6f8e8b68bcc4751211ccf08ac0101e9dcaddefd0cbbbd488afb1c1517515c7c3e76f63d9b05d06deaeb008afd499488db9c
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-annotate-as-pure@npm:7.29.7"
dependencies:
"@babel/types": "npm:^7.29.7"
checksum: 10/acd9e128de634a5144b5d622357d018fa616de45f64c74e42007c048dd15d0a0be213f4d5a2bf02307bdaddf053791b87900a99d183de828c08dc3b556329009
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-compilation-targets@npm:7.29.7"
dependencies:
"@babel/compat-data": "npm:^7.29.7"
"@babel/helper-validator-option": "npm:^7.29.7"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/af9ed4299ad5cfbe48432a964f37cbbfc200bbeb0f8ba9cbc86448503fa929382d5161d32096274752230c9feb919c9ef595559498833da656fc6a8e24a62383
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-create-class-features-plugin@npm:7.29.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.29.7"
"@babel/helper-member-expression-to-functions": "npm:^7.29.7"
"@babel/helper-optimise-call-expression": "npm:^7.29.7"
"@babel/helper-replace-supers": "npm:^7.29.7"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/74f871e5389beca9fb52670f2bd83abdd6dc7b7a10f34679ffab5eabf91077dccaabf55438b9f3c897258fb81fbb80bfbf469b836a404abb7e64b4d7c141a8da
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-globals@npm:7.29.7"
checksum: 10/e53203e87ae24a45f59639edea0c429bc3c63c6d74f1862fe60a35032d89478e7511d2f34855da0fcb65782668d72e59e93d1de5bc00121ba9bc1aa38f1f0ad3
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.29.7"
dependencies:
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10/bb8dc59a65b4404260e0b7ff70f491de5a1607876f61736d26605ab3cba5b368827b0551acd3458212f5cfa99cbcd48bb66a96497b0fe00af09a6a2cbea4276b
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-module-imports@npm:7.29.7"
dependencies:
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10/28ec6f7efd99588d6eebfb25c9f1ccc34cb0cdb0839c4c0f08b3ec0105ccaefbe7e8b4f651f3f55a4f5c4fcb1d979bd32a9b8ee23e3e62163ea22aaa7ee0dfa1
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-module-transforms@npm:7.29.7"
dependencies:
"@babel/helper-module-imports": "npm:^7.29.7"
"@babel/helper-validator-identifier": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/33251b1fb44d726194a974a0078b1269511d130a2609357ff829b479e9e4dca96ecd5384c534a477095f665ffb01503d3e680699c2002e5b62e6ca1a272f1892
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-optimise-call-expression@npm:7.29.7"
dependencies:
"@babel/types": "npm:^7.29.7"
checksum: 10/6b477e01b403fd48349336cb1d94722bff4fa54af2841b5fa950c557b796f4ecc14724052252ed1362ccfc23d1c09c54dc03e182fea59d3dc5bd69f8c626ba25
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-plugin-utils@npm:7.29.7"
checksum: 10/6d16929fe5c792bbc8e4d67e18d7c1be69d2f18992deaa3d94dc26541fec662e83cbeeaf7553c6867d068eb7aed4e0d5e3e137c1dd4d5bcfa286f8d772f1f457
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-replace-supers@npm:7.29.7"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.29.7"
"@babel/helper-optimise-call-expression": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/4aa7b48a6078db99bba24b67f63f97cd08ad9b3c476dcca196c6421dc2080f3566d683fba64c772e2f9597603d42ad4ac2ce9ccf0559643823c540f08cf0efa7
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.29.7"
dependencies:
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10/a5800bfcdca6cef7f6fe33ac02a0f05ff33da9746f97806553f249733f7ba8400290a17f3831d7faa5d91656f254ab749931f53c8a29f301d958d7dd00499637
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-string-parser@npm:7.29.7"
checksum: 10/4d8ef0ef7105f3d9fe4361137c8f42e5b4c7a52b5380b962762f2a528a1ba89064e2c6236090716ce34b63707b886ae0ebf36b2c2fcc2851f27e652febfc3648
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-identifier@npm:7.29.7"
checksum: 10/2efa42701eb05babf26dff3332109c9e5e1a3400a71fb9e68ee27af28235036a2a72c2494c04bdab3f909075f42a58b2e8271074372bc7f8e79ec02bd364d7a7
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-validator-option@npm:7.29.7"
checksum: 10/aeb6aa966f59300d3cc2fea7c68e1dfd7ad011fc10e535c8e2b2de3094b27c859428dc7220f16420350f8b1cde99da120b673be04bcb0c2f37b56258c96bed58
languageName: node
linkType: hard
"@babel/helpers@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helpers@npm:7.29.7"
dependencies:
"@babel/template": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10/b4d1ef12c19e896585c009ba29677839097ff04f8b11a2430d335c3fb6bd667b4f9e96a3b185a083fdde6b1137eabbbf2600c32425cb69cefc81d81d5cfe425d
languageName: node
linkType: hard
"@babel/parser@npm:^7.28.0, @babel/parser@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/parser@npm:7.29.7"
dependencies:
"@babel/types": "npm:^7.29.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10/da40c5928c95997b01aabe84fc3440881b8f20b866714fefa142961d37e82ffc03fbb9afed706f15f8a688278f95286ca0cea0d87ad6c77600f8c6c45d9824ee
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-syntax-jsx@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/84150d27c553a1d3d921354437f6725ca1d63b49514c25591bfcaaafa6ea4d6c10715b66fe7245e4ad7ab7c6cf4b6e1de7373defd3df00877ab12638170d7772
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-syntax-typescript@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/ef454d2a7a6209dd4255361c072c94ab1293e7ad4b06e7e744d08bb308065d4d6544964eae9b2357c3b33d8d939f9e32d4aa95905bc464407cd8f7101dee4443
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.29.7"
dependencies:
"@babel/helper-module-transforms": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/7d816febde2d65bde5607ef355d751ba6c5a2d68ffe47c37b809e3ed2f829603751d4b5a5506f4299936d95fc73909243f9074f98dd32201277ec4131fc3ff33
languageName: node
linkType: hard
"@babel/plugin-transform-typescript@npm:^7.28.0, @babel/plugin-transform-typescript@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-typescript@npm:7.29.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.29.7"
"@babel/helper-create-class-features-plugin": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.29.7"
"@babel/plugin-syntax-typescript": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/88d39bcdfee418795ad65097fff88f491e87793b958fe334273a20f74693b64369456a6d666eb0f1e98c9ecb633c99bcccf90562593e64eb92cc9dd040f25c1c
languageName: node
linkType: hard
"@babel/preset-typescript@npm:^7.27.1":
version: 7.29.7
resolution: "@babel/preset-typescript@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-validator-option": "npm:^7.29.7"
"@babel/plugin-syntax-jsx": "npm:^7.29.7"
"@babel/plugin-transform-modules-commonjs": "npm:^7.29.7"
"@babel/plugin-transform-typescript": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/487c5b5ee80afd656a8e6254c0638559fa4cd8d11b8d9ef9328cd5c403b8dfd1003690246910681de0f12e879d38fdf91aa2592f51ab9761e5197a3b36508919
languageName: node
linkType: hard
"@babel/runtime@npm:^7.29.2":
version: 7.29.7
resolution: "@babel/runtime@npm:7.29.7"
checksum: 10/9883b4951787779fd382b121f22f92966d85f19434841f65fb00b2dfec232107e139683f47c6f252891826ad8ee18317b46c3a0e4819116a9885f47b46d7126a
languageName: node
linkType: hard
"@babel/template@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/template@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10/da92f7a5b61e05d2fb3934a44f18cec6006ee3c595116c17a3b44cb9756ecd43205c7360dbfa326fa8f4d00aaeb9e777342a881070d11c2305e9c694bc3ca6ff
languageName: node
linkType: hard
"@babel/traverse@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/traverse@npm:7.29.7"
dependencies:
"@babel/code-frame": "npm:^7.29.7"
"@babel/generator": "npm:^7.29.7"
"@babel/helper-globals": "npm:^7.29.7"
"@babel/parser": "npm:^7.29.7"
"@babel/template": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
debug: "npm:^4.3.1"
checksum: 10/ce24086a7dd8c408cbdb159437d3c8e02464a6d32b320d884fa742e2c5a3344b9342a923c7a371fc1789b4d82a59972a7008b5d8bbc1bc0c5ae42a39b28dc7f6
languageName: node
linkType: hard
"@babel/types@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/types@npm:7.29.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.29.7"
"@babel/helper-validator-identifier": "npm:^7.29.7"
checksum: 10/bd4f5635db1057bd0abeebf93eb3ae38399e152271cea8dce8288350f0afa13ed3e2db2e16e22bd3303068890eec18965a83420539afbe0dde31432b4cf9636d
languageName: node
linkType: hard
"@base-ui/react@npm:^1.6.0":
version: 1.6.0
resolution: "@base-ui/react@npm:1.6.0"
dependencies:
"@babel/runtime": "npm:^7.29.2"
"@base-ui/utils": "npm:0.3.1"
"@floating-ui/react-dom": "npm:^2.1.8"
"@floating-ui/utils": "npm:^0.2.11"
use-sync-external-store: "npm:^1.6.0"
peerDependencies:
"@date-fns/tz": ^1.2.0
"@types/react": ^17 || ^18 || ^19
date-fns: ^4.0.0
react: ^17 || ^18 || ^19
react-dom: ^17 || ^18 || ^19
peerDependenciesMeta:
"@date-fns/tz":
optional: true
"@types/react":
optional: true
date-fns:
optional: true
checksum: 10/7fed3b731e6224a473e68a901ac75014f65712e897ace01ee7cbcecd2e985c60ff0e1239a92f21cdc5db822a3b664d3f32aed27fe6f00428b2c58669771056d2
languageName: node
linkType: hard
"@base-ui/utils@npm:0.3.1":
version: 0.3.1
resolution: "@base-ui/utils@npm:0.3.1"
dependencies:
"@babel/runtime": "npm:^7.29.2"
"@floating-ui/utils": "npm:^0.2.11"
reselect: "npm:^5.2.0"
use-sync-external-store: "npm:^1.6.0"
peerDependencies:
"@types/react": ^17 || ^18 || ^19
react: ^17 || ^18 || ^19
react-dom: ^17 || ^18 || ^19
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10/48fe7f0b1acf8c76457ac502f75e702f0c5d266311e58f96a192a73d1d3ce3e1f2f2fe9e612cb11631dbe3ecd4acc87664341e9973946ec0472163d6195a72bf
languageName: node
linkType: hard
"@dotenvx/dotenvx@npm:^1.48.4":
version: 1.73.1
resolution: "@dotenvx/dotenvx@npm:1.73.1"
dependencies:
commander: "npm:^11.1.0"
conf: "npm:^10.2.0"
dotenv: "npm:^17.2.1"
eciesjs: "npm:^0.4.10"
enquirer: "npm:^2.4.1"
env-paths: "npm:^2.2.1"
execa: "npm:^5.1.1"
fdir: "npm:^6.2.0"
ignore: "npm:^5.3.0"
object-treeify: "npm:1.1.33"
open: "npm:^8.4.2"
picomatch: "npm:^4.0.4"
systeminformation: "npm:^5.22.11"
undici: "npm:^7.11.0"
which: "npm:^4.0.0"
yocto-spinner: "npm:^1.1.0"
bin:
dotenvx: src/cli/dotenvx.js
checksum: 10/fa1c2adc3adedb124ca93bc774f98dae1cb71703119df10a372d39ae96ad0a9a2179ade21a4021454ba983e097749b52dbafd67501f2e1e351fef2f00d958dde
languageName: node
linkType: hard
"@ecies/ciphers@npm:^0.2.5":
version: 0.2.6
resolution: "@ecies/ciphers@npm:0.2.6"
peerDependencies:
"@noble/ciphers": ^1.0.0
checksum: 10/48e98971161497b7b4a49f70e20e2b807096d477262cd86bff7b6aa7e065f7ca10e6199529f41207ab65f4486ad6689c158798cd3a0ba20b875df3c68bec6281
languageName: node
linkType: hard
"@emnapi/core@npm:^1.10.0":
version: 1.11.1
resolution: "@emnapi/core@npm:1.11.1"
dependencies:
"@emnapi/wasi-threads": "npm:1.2.2"
tslib: "npm:^2.4.0"
checksum: 10/9aba37e0c11a75ef8372fd0a9c6e5396f4e8c1ebdd6fee737414787610a9dc1cd9bf188f525153561ca9363896e1135dd240f1ce28f3470dba3ad7e683e6db1a
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.10.0":
version: 1.11.1
resolution: "@emnapi/runtime@npm:1.11.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/8f7c622a49314df4d07952110e108e83b0fe129a8ddb9ef1e0ae372d754616169d5b0dd47a0d354a0fea2612abe42cedb582d15916936d1320c6c468acc804cc
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.2.2, @emnapi/wasi-threads@npm:^1.2.1":
version: 1.2.2
resolution: "@emnapi/wasi-threads@npm:1.2.2"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/297fb6b1d89744bd0b41d5fec32bade05dc8dcf1f70eba86527226609fb3f6ad3fa96b3b2377b7449709715b3bd1569654c9def1dbbc85fb6b9cb0cff5bc5ebf
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/aix-ppc64@npm:0.25.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/android-arm64@npm:0.25.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/android-arm@npm:0.25.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/android-x64@npm:0.25.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/darwin-arm64@npm:0.25.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/darwin-x64@npm:0.25.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/freebsd-arm64@npm:0.25.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/freebsd-x64@npm:0.25.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-arm64@npm:0.25.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-arm@npm:0.25.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-ia32@npm:0.25.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-loong64@npm:0.25.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-mips64el@npm:0.25.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-ppc64@npm:0.25.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-riscv64@npm:0.25.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-s390x@npm:0.25.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/linux-x64@npm:0.25.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/netbsd-arm64@npm:0.25.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/netbsd-x64@npm:0.25.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/openbsd-arm64@npm:0.25.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/openbsd-x64@npm:0.25.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/sunos-x64@npm:0.25.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/win32-arm64@npm:0.25.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/win32-ia32@npm:0.25.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.2":
version: 0.25.2
resolution: "@esbuild/win32-x64@npm:0.25.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@floating-ui/core@npm:^1.7.5":
version: 1.7.5
resolution: "@floating-ui/core@npm:1.7.5"
dependencies:
"@floating-ui/utils": "npm:^0.2.11"
checksum: 10/fecdc9b3ce93f02bf78a6114b93730a4cb9fa8234c62f9a949016186297a039c9f9cd3c5c81ff74b93ebddf0b32048c4af7a528afe7904b75423ed2e7491b888
languageName: node
linkType: hard
"@floating-ui/dom@npm:^1.7.6":
version: 1.7.6
resolution: "@floating-ui/dom@npm:1.7.6"
dependencies:
"@floating-ui/core": "npm:^1.7.5"
"@floating-ui/utils": "npm:^0.2.11"
checksum: 10/84dff2ffdf85c8b92d7edafc543c55869abbeaeb3007fa983159467e050153b507a0f5fe8e84f88c3f28c35a82de9df9c20a6eef5560cbba3afae19141444ff2
languageName: node
linkType: hard
"@floating-ui/react-dom@npm:^2.1.8":
version: 2.1.8
resolution: "@floating-ui/react-dom@npm:2.1.8"
dependencies:
"@floating-ui/dom": "npm:^1.7.6"
peerDependencies:
react: ">=16.8.0"
react-dom: ">=16.8.0"
checksum: 10/39c3e3e5538a111a3eadf1b9ca486d7dc17c7eb24b83a0ea9b4c189fa7dbe5abe01357388d8cf6a4badb2d3fec2b1090e10529537bde91acbcfe19b0a8d10f90
languageName: node
linkType: hard
"@floating-ui/utils@npm:^0.2.11":
version: 0.2.11
resolution: "@floating-ui/utils@npm:0.2.11"
checksum: 10/72150138ba1c274d757a1da85233202fa9fdfd2272ec1fb0883eb0ffdf138863af81573049ed2c20b98adb4b7ae2236065541ce14037fe328955089831a678d5
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 10/052dd232140fa60e81588000cbe729a40146579b361f1070bce63e2a761388a22a16d00beeffc504bd3601cb8e055c57b21a185448b3ed550cf50716f4fd442e
languageName: node
linkType: hard
"@hono/node-server@npm:^1.19.9":
version: 1.19.14
resolution: "@hono/node-server@npm:1.19.14"
peerDependencies:
hono: ^4
checksum: 10/618dd95feeb3fd11ec8502e088879cd86529523788de19602edebd16892dd61899e73564d6e3d00875cc5a49488a908ddb2aa425d28f9cdeb7f22cfecabf022c
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/902f8261dcf450b4af7b93f9656918e02eec80a2169e155000cb2059f90113dd98f3ccf6efc6072cee1dd84cac48cade51da236972d942babc40e4c23da4d62a
languageName: node
linkType: hard
"@jridgewell/remapping@npm:^2.3.5":
version: 2.3.5
resolution: "@jridgewell/remapping@npm:2.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/c2bb01856e65b506d439455f28aceacf130d6c023d1d4e3b48705e88def3571753e1a887daa04b078b562316c92d26ce36408a60534bceca3f830aec88a339ad
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10/5d9d207b462c11e322d71911e55e21a4e2772f71ffe8d6f1221b8eb5ae6774458c1d242f897fb0814e8714ca9a6b498abfa74dfe4f434493342902b1a48b33a5
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.28":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10/da0283270e691bdb5543806077548532791608e52386cfbbf3b9e8fb00457859d1bd01d512851161c886eb3a2f3ce6fd9bcf25db8edf3bddedd275bd4a88d606
languageName: node
linkType: hard
"@modelcontextprotocol/sdk@npm:^1.26.0":
version: 1.29.0
resolution: "@modelcontextprotocol/sdk@npm:1.29.0"
dependencies:
"@hono/node-server": "npm:^1.19.9"
ajv: "npm:^8.17.1"
ajv-formats: "npm:^3.0.1"
content-type: "npm:^1.0.5"
cors: "npm:^2.8.5"
cross-spawn: "npm:^7.0.5"
eventsource: "npm:^3.0.2"
eventsource-parser: "npm:^3.0.0"
express: "npm:^5.2.1"
express-rate-limit: "npm:^8.2.1"
hono: "npm:^4.11.4"
jose: "npm:^6.1.3"
json-schema-typed: "npm:^8.0.2"
pkce-challenge: "npm:^5.0.0"
raw-body: "npm:^3.0.0"
zod: "npm:^3.25 || ^4.0"
zod-to-json-schema: "npm:^3.25.1"
peerDependencies:
"@cfworker/json-schema": ^4.1.1
zod: ^3.25 || ^4.0
peerDependenciesMeta:
"@cfworker/json-schema":
optional: true
zod:
optional: false
checksum: 10/ff551b97e06b661f95fec8fd34e112c446e69894a84a9979cdac369fb5de27f0a1a5c1f4e2a1f270cc60f93e54c28a8059a94ca51c3d528d2670ade874b244f9
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^1.1.4":
version: 1.1.5
resolution: "@napi-rs/wasm-runtime@npm:1.1.5"
dependencies:
"@tybys/wasm-util": "npm:^0.10.2"
peerDependencies:
"@emnapi/core": ^1.7.1
"@emnapi/runtime": ^1.7.1
checksum: 10/57a4b68f05f15b79bf45240ac173d3eaf72620d1b73261e7db407aa7ba8eb68e670fb1612d2ceef6b8cc500970a5ed6995c71c77661027971012ed2459ce307f
languageName: node
linkType: hard
"@noble/ciphers@npm:^1.3.0":
version: 1.3.0
resolution: "@noble/ciphers@npm:1.3.0"
checksum: 10/051660051e3e9e2ca5fb9dece2885532b56b7e62946f89afa7284a0fb8bc02e2bd1c06554dba68162ff42d295b54026456084198610f63c296873b2f1cd7a586
languageName: node
linkType: hard
"@noble/curves@npm:^1.9.7":
version: 1.9.7
resolution: "@noble/curves@npm:1.9.7"
dependencies:
"@noble/hashes": "npm:1.8.0"
checksum: 10/3cfe2735ea94972988ca9e217e0ebb2044372a7160b2079bf885da789492a6291fc8bf76ca3d8bf8dee477847ee2d6fac267d1e6c4f555054059f5e8c4865d44
languageName: node
linkType: hard
"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1.8.0":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: 10/474b7f56bc6fb2d5b3a42132561e221b0ea4f91e590f4655312ca13667840896b34195e2b53b7f097ec080a1fdd3b58d902c2a8d0fbdf51d2e238b53808a177e
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10/6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10/40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
languageName: node
linkType: hard
"@npmcli/fs@npm:^2.1.0":
version: 2.1.0
resolution: "@npmcli/fs@npm:2.1.0"
dependencies:
"@gar/promisify": "npm:^1.1.3"
semver: "npm:^7.3.5"
checksum: 10/1fe97efb5c1250c5986b46b6c8256b1eab8159a6d50fc8ace9f90937b3195541272faf77f18bdbf5eeb89bab68332c7846ac5ab9337e6099e63c6007388ebe84
languageName: node
linkType: hard
"@npmcli/move-file@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/move-file@npm:2.0.0"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 10/1388777b507b0c592d53f41b9d182e1a8de7763bc625fc07999b8edbc22325f074e5b3ec90af79c89d6987fdb2325bc66d59f483258543c14a43661621f841b0
languageName: node
linkType: hard
"@parcel/watcher-android-arm64@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-android-arm64@npm:2.5.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-darwin-arm64@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-darwin-arm64@npm:2.5.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-darwin-x64@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-darwin-x64@npm:2.5.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher-freebsd-x64@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-freebsd-x64@npm:2.5.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher-linux-arm-glibc@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.1"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-arm-musl@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.1"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-linux-arm64-glibc@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-arm64-musl@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-linux-x64-glibc@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@parcel/watcher-linux-x64-musl@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@parcel/watcher-win32-arm64@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-win32-arm64@npm:2.5.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@parcel/watcher-win32-ia32@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-win32-ia32@npm:2.5.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@parcel/watcher-win32-x64@npm:2.5.1":
version: 2.5.1
resolution: "@parcel/watcher-win32-x64@npm:2.5.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@parcel/watcher@npm:^2.4.1":
version: 2.5.1
resolution: "@parcel/watcher@npm:2.5.1"
dependencies:
"@parcel/watcher-android-arm64": "npm:2.5.1"
"@parcel/watcher-darwin-arm64": "npm:2.5.1"
"@parcel/watcher-darwin-x64": "npm:2.5.1"
"@parcel/watcher-freebsd-x64": "npm:2.5.1"
"@parcel/watcher-linux-arm-glibc": "npm:2.5.1"
"@parcel/watcher-linux-arm-musl": "npm:2.5.1"
"@parcel/watcher-linux-arm64-glibc": "npm:2.5.1"
"@parcel/watcher-linux-arm64-musl": "npm:2.5.1"
"@parcel/watcher-linux-x64-glibc": "npm:2.5.1"
"@parcel/watcher-linux-x64-musl": "npm:2.5.1"
"@parcel/watcher-win32-arm64": "npm:2.5.1"
"@parcel/watcher-win32-ia32": "npm:2.5.1"
"@parcel/watcher-win32-x64": "npm:2.5.1"
detect-libc: "npm:^1.0.3"
is-glob: "npm:^4.0.3"
micromatch: "npm:^4.0.5"
node-addon-api: "npm:^7.0.0"
node-gyp: "npm:latest"
dependenciesMeta:
"@parcel/watcher-android-arm64":
optional: true
"@parcel/watcher-darwin-arm64":
optional: true
"@parcel/watcher-darwin-x64":
optional: true
"@parcel/watcher-freebsd-x64":
optional: true
"@parcel/watcher-linux-arm-glibc":
optional: true
"@parcel/watcher-linux-arm-musl":
optional: true
"@parcel/watcher-linux-arm64-glibc":
optional: true
"@parcel/watcher-linux-arm64-musl":
optional: true
"@parcel/watcher-linux-x64-glibc":
optional: true
"@parcel/watcher-linux-x64-musl":
optional: true
"@parcel/watcher-win32-arm64":
optional: true
"@parcel/watcher-win32-ia32":
optional: true
"@parcel/watcher-win32-x64":
optional: true
checksum: 10/2cc1405166fb3016b34508661902ab08b6dec59513708165c633c84a4696fff64f9b99ea116e747c121215e09619f1decab6f0350d1cb26c9210b98eb28a6a56
languageName: node
linkType: hard
"@rollup/rollup-android-arm-eabi@npm:4.38.0":
version: 4.38.0
resolution: "@rollup/rollup-android-arm-eabi@npm:4.38.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@rollup/rollup-android-arm64@npm:4.38.0":
version: 4.38.0
resolution: "@rollup/rollup-android-arm64@npm:4.38.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-arm64@npm:4.38.0":
version: 4.38.0
resolution: "@rollup/rollup-darwin-arm64@npm:4.38.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-x64@npm:4.38.0":
version: 4.38.0
resolution: "@rollup/rollup-darwin-x64@npm:4.38.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rollup/rollup-freebsd-arm64@npm:4.38.0":
version: 4.38.0
resolution: "@rollup/rollup-freebsd-arm64@npm:4.38.0"
conditions: os=freebsd & cpu=arm64