-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathyarn.lock
More file actions
10839 lines (9777 loc) · 383 KB
/
yarn.lock
File metadata and controls
10839 lines (9777 loc) · 383 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: 10
cacheKey: 10
"@algolia/autocomplete-core@npm:1.19.2":
version: 1.19.2
resolution: "@algolia/autocomplete-core@npm:1.19.2"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.19.2"
"@algolia/autocomplete-shared": "npm:1.19.2"
checksum: 10/afe9a1686313e8c1f26fccc88a32fce84d43ae3c42c64e02fb25661a91e2af443a1720cc24970ed66df56c742fd83cfcee2ac8690e8f77bb670edee35a99e84b
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.19.2":
version: 1.19.2
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.19.2"
dependencies:
"@algolia/autocomplete-shared": "npm:1.19.2"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10/b9135d0be51b9f9c5370c9df7567c0adb34ffe1cffa9c73d847d191b2bafee010a005edf4a7105391852151bdf8dbda010a8b6bd66cea61a0a2e29366dc1b3d2
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.19.2":
version: 1.19.2
resolution: "@algolia/autocomplete-shared@npm:1.19.2"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10/442223a1e09d75f103441469c7174e09c4c129b4005b6492771c6145b8bcc9a1df4d590acfdd8af009b802cb3be0aade9fabbaa4b21e9ec3753947ad17b988aa
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10/bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@anthropic-ai/sdk@npm:^0.98.0":
version: 0.98.0
resolution: "@anthropic-ai/sdk@npm:0.98.0"
dependencies:
json-schema-to-ts: "npm:^3.1.1"
standardwebhooks: "npm:^1.0.0"
peerDependencies:
zod: ^3.25.0 || ^4.0.0
peerDependenciesMeta:
zod:
optional: true
bin:
anthropic-ai-sdk: bin/cli
checksum: 10/c169c2678d7995ea6f2dc05114ceac14f51fc153cd97e9818cd834e34fc24dc2d47bcf214fd764154244d102ff6190fe0f37b14595efe2fb3bfcc91c9fb1bdda
languageName: node
linkType: hard
"@asamuzakjp/css-color@npm:^5.1.11":
version: 5.1.11
resolution: "@asamuzakjp/css-color@npm:5.1.11"
dependencies:
"@asamuzakjp/generational-cache": "npm:^1.0.1"
"@csstools/css-calc": "npm:^3.2.0"
"@csstools/css-color-parser": "npm:^4.1.0"
"@csstools/css-parser-algorithms": "npm:^4.0.0"
"@csstools/css-tokenizer": "npm:^4.0.0"
checksum: 10/2e337cc94b5a3f9741a27f92b4e4b7dc467a76b1dcf66c40e71808fed71695f10c8cf07c8b13313cbb637154314ca1d8626bb9a045fe94b404b242a390cf3bd3
languageName: node
linkType: hard
"@asamuzakjp/dom-selector@npm:^7.1.1":
version: 7.1.1
resolution: "@asamuzakjp/dom-selector@npm:7.1.1"
dependencies:
"@asamuzakjp/generational-cache": "npm:^1.0.1"
"@asamuzakjp/nwsapi": "npm:^2.3.9"
bidi-js: "npm:^1.0.3"
css-tree: "npm:^3.2.1"
is-potential-custom-element-name: "npm:^1.0.1"
checksum: 10/49a065a64db5f53a3008c231d09606e4b67f509fa20148a67419451c2dc91a421202ed17bfc4bc679ad2f0432d7260720d602c1d5c9c5e165931fff5199c3f12
languageName: node
linkType: hard
"@asamuzakjp/generational-cache@npm:^1.0.1":
version: 1.0.1
resolution: "@asamuzakjp/generational-cache@npm:1.0.1"
checksum: 10/e1cf3f1916a334c6153f624982f0eb3d50fa3048435ea5c5b0f441f8f1ab74a0fe992dac214b612d22c0acafad3cd1a1f6b45d99c7b6e3b63cfdf7f6ca5fc144
languageName: node
linkType: hard
"@asamuzakjp/nwsapi@npm:^2.3.9":
version: 2.3.9
resolution: "@asamuzakjp/nwsapi@npm:2.3.9"
checksum: 10/95a6d1c102e1117fe818da087fcc5b914d23e0699855991bae50b891435dd1945ad7d384198f8bcf616207fd85b7ec32e3db6b96e9309d84c6903b8dc4151e34
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1, @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.28.6, @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.12.9":
version: 7.12.9
resolution: "@babel/core@npm:7.12.9"
dependencies:
"@babel/code-frame": "npm:^7.10.4"
"@babel/generator": "npm:^7.12.5"
"@babel/helper-module-transforms": "npm:^7.12.1"
"@babel/helpers": "npm:^7.12.5"
"@babel/parser": "npm:^7.12.7"
"@babel/template": "npm:^7.12.7"
"@babel/traverse": "npm:^7.12.9"
"@babel/types": "npm:^7.12.7"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.1"
json5: "npm:^2.1.2"
lodash: "npm:^4.17.19"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 10/a2c79790c38b95de1f540d26d0434c7bf8ce64c02c407f65b6bc5d9a84ada0769d2660612c16627493024e897a9b56aa2534f7213329a3c19e5ed9d39c6a0c03
languageName: node
linkType: hard
"@babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.27.4":
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.12.5, @babel/generator@npm:^7.27.5, @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.28.6, @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-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.29.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.29.7"
regexpu-core: "npm:^6.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/bf79ffc671d824d00b43a018555cb9fb3f2bc8be8d8ed8c901131e4cd072cc83e610a2cbb580f5f84b60d70bf4c7a7a8c5a629b7b325e1a27dca86d96d2668e0
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.6.8":
version: 0.6.8
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.8"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.28.6"
"@babel/helper-plugin-utils": "npm:^7.28.6"
debug: "npm:^4.4.3"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.22.11"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 10/a6f9fbb82578464da35eec88c7f3e70bdd95237bfc1d3ebb9cf4536a86a577b7c6e587f9a6797b01ee08629599ee2bc6fdab39e99de505751a30d9b4877202ab
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.12.1, @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.10.4":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 10/639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.28.6, @babel/helper-plugin-utils@npm:^7.29.7, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.29.7
resolution: "@babel/helper-plugin-utils@npm:7.29.7"
checksum: 10/6d16929fe5c792bbc8e4d67e18d7c1be69d2f18992deaa3d94dc26541fec662e83cbeeaf7553c6867d068eb7aed4e0d5e3e137c1dd4d5bcfa286f8d772f1f457
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-remap-async-to-generator@npm:7.29.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.29.7"
"@babel/helper-wrap-function": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/98338ad6e34ebb4be2dc23f8d9199d28d6d8ac6a2ce8b90fe9efdf3595b39748321528d9f2540ec0586a6e45f7c84f5f623fbf980c5efa7fa9ba7ce837ea4b20
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/helper-wrap-function@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/helper-wrap-function@npm:7.29.7"
dependencies:
"@babel/template": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
"@babel/types": "npm:^7.29.7"
checksum: 10/fc37b53a93c0814e5443c344fcd42b343c75856d865547ca0d50ddad73e96c27f6a677330d115232644e143066758188e4eb47ce5207124c095312b9e49599ed
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.5, @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.1.0, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @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-bugfix-firefox-class-in-computed-class-key@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/c0e85e9b4bf8706f23b58c1794ad398e41b69a639416578fd4c0ef5a5472365a8d1d7a533f94137daf3660e4f710a8b7e10bc8a53a91a41773ec92bf1725af98
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/ad06de66ccfb19f0f04e6124d144f3fef72fa5191861b1d04bc32cab87ce43958810d9632eac5881ef991a78b33e68588e3d90e76a63d917bd5a7ff4c96618f8
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/2189a2a648948107c59ad3bf028e5b71a85b28c840facfead769a33c5f63ae4ec0f147e6a2e664a91a506d4405f5a8972d2ca628f3b64d03edd7620d770761fb
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/a9bd13c2600bdfcb5b35590e210bcb30f009fda9bd1556567757ea4fcb8ca247750331d6d10774d68127cae4e529bc79abd86a28fe5e2a1cc2cc00e75964ac52
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.29.7"
"@babel/plugin-transform-optional-chaining": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 10/76a494ec4f52a127b0208c4574a6da36f6ff5f30484306921762db549fa7d9d9183c837759eb68c0c9e5a56013aa247e6e02e02263384d2a103240353ae0ceb6
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/73125174671241b3eb1fa7c7f53ed0894d3853f2afb280684492a707cf3e4a9c498537acb511c014d364018117e181bb265dbbb975ea0b1a61a6de60bae8f07e
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.0"
"@babel/plugin-transform-parameters": "npm:^7.12.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/81916d94230c56e49541684fb5c2e7c930191531d4d748954dc1492c0cd10b82726d8434a4841ebdd657f6388295d6dec771d4696c80e05af2f7bbb8308e5870
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2":
version: 7.21.0-placeholder-for-preset-env.2
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/fab70f399aa869275690ec6c7cedb4ef361d4e8b6f55c3d7b04bfee61d52fb93c87cec2c65d73cddbaca89fb8ef5ec0921fce675c9169d9d51f18305ab34e78a
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948
languageName: node
linkType: hard
"@babel/plugin-syntax-import-assertions@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-syntax-import-assertions@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/a7f24858e7e833c2ee25779a355b5eff46e4bc93c98b06bda7ea0fd12faf99c4954e0f71074485512045920432790e0269aa562dd4d2085c3f8660ed1cfde8a1
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-syntax-import-attributes@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/9f47345d09aae16b7ab52ecaf541cde3e3ae1e57e3eb2d4088e062b29dfbd67db55d42d529840557583d66121e2a98788df7a455401cc6d635c8b7700a02efc9
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-jsx@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/d4b9b589c484b2e0856799770f060dff34c67b24d7f4526f66309a0e0e9cf388a5c1f2c0da329d1973cc87d1b2cede8f3dc8facfac59e785d6393a003bcdd0f9
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.27.1, @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-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:7.8.3, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.27.1, @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-syntax-unicode-sets-regex@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-arrow-functions@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/0037fd7563c7c91cddb8ce104e270bc260190d29c7a297df65e4306471010b4343366de13fab4602cf8ee6c672d3b313b34a01b62f27a333cad16908c83368d8
languageName: node
linkType: hard
"@babel/plugin-transform-async-generator-functions@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-remap-async-to-generator": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/0abb8d8bb21e7293b3eda5a743051678478ab7c0392310a4a9e0417125a2bb8536a0a5f41a8062211d995479339afa7ffab6b0141f0839af8fbba367dd6a99c5
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-async-to-generator@npm:7.29.7"
dependencies:
"@babel/helper-module-imports": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-remap-async-to-generator": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/e24db9c4c69121daab25883f9a96e6849fa664c78c6bbcfb77fe0a0c6ab29b81ba39e8497985367463d3a88deac3b5bbe15dd1c5d0e5dd492cfccf8efdd27452
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/24f9712ade98061cd22088709b86b8e3e19ea416dbe5a69ad504fc3f8f2179af5bdeb32fcb9c24fc861bef515e41ae5ef72cd909e0e42bb0cf15838c4e737149
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-block-scoping@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/9c3cbbdda288b2eff7355ab94fc7b4b18f408d8e7145c2d6bd34e70eef03f200c699f527318ac11d9cd6e99124b5e8d6aeeba4421346ee5cdc224d06175d984f
languageName: node
linkType: hard
"@babel/plugin-transform-class-properties@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-class-properties@npm:7.29.7"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/0cc5e7a882e29eead360f02ef79f6b2ec3b3813213b1513d8fdaa931d1d1361fccc92fbacc9b399e42495953d9d6fc722f283b5f3aa272fe016a0b5fe1e6a130
languageName: node
linkType: hard
"@babel/plugin-transform-class-static-block@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-class-static-block@npm:7.29.7"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.12.0
checksum: 10/9e7112dafb0e7791de3858cb721a76147e8cfc9b6ba370dd0267bdc193abdbe8a8f78db8d70e0f860d03497d861f0ac7e8cd3e8caf2639c59b57fc74eb3b95d0
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-classes@npm:7.29.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.29.7"
"@babel/helper-compilation-targets": "npm:^7.29.7"
"@babel/helper-globals": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-replace-supers": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/ac6387c6bfb9d9b9f9d0702050fa8833e76c123d607bdba1af8d991f691e01a0652130954baa53051f0e16b8a0545e3f3c5a5bc4404a19abac0af2eee748f898
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-computed-properties@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/template": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/c982355904fc113334ba108282c8a617e3159c6960de717bbe7c5fa86ff777baea04c117edc692fb4de22b01460bfedc62af3c6a9d0ecd81511f5eb8357d8bab
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-destructuring@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/e53caad0c2d523367724aefcc6b8c8df24fcb1a3f53e9899cb4bb5dc39ccf61e30df0a761d74485a895d9bcaaad49644879cbd3a9fc20c90501a5e831caaac5b
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-dotall-regex@npm:7.29.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/537df0fb915a420df715a2f4da16ab6c08ce2370521edef9a8a59af23a533314109f6abd836c5e127c8cea4a46bc4a05692670cf7ad64868c286075fa2d7848c
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/f0e7ad459dd9c78514c07a576fa509478aa9c7e90c1d7cf3b1d142579f8dadd609878c10b044dd2a3a2b08adbdb51b108fcb261d9a78443e13494a7985f9c2a7
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.29.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/fa7fcdbede10dbc06fe4f861e90286f7f599d3f3c43e69445e63c3f48422fd34db0b0dd9bbebccd1dbd04a50fca4ab22fd82d28e7bc8fe9b6d5790c9e694d380
languageName: node
linkType: hard
"@babel/plugin-transform-dynamic-import@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-dynamic-import@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/58c035e6b9103c225f3d181671d9b3dec140351c3ecf12bc3a66b8653be41161f20135ada00a703244c2bfc9dd57b62fc54f77f2f6fe43df6c598358f377e6fa
languageName: node
linkType: hard
"@babel/plugin-transform-explicit-resource-management@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-explicit-resource-management@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/plugin-transform-destructuring": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/a4ea28a18161a7e8c8f33731cb3dfc6981cb089b9a6b57abfa7ff7579a0ca76a4c19c29ebaf775b037ff31503c74c6cf3687ce86cdaa246d1c60afb5abd820df
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bf0366d77d318d4b6eae6880217e3fdfcb6e5f7913f658583de9537fd4fca1f05f9ac4083d8f946a84eaefec068cbba948be90f4a39484c85bc69082def3162d
languageName: node
linkType: hard
"@babel/plugin-transform-export-namespace-from@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-export-namespace-from@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/d157d62b144d1626b801e557dcede914db33e78f3f4230f487e5709c21efd40648f7f3a47a44a7fce694ad9cd117d2ac3ed796da0102275fd02b4fdb317d906b
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-for-of@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/af79d2859f7330c4b47fefc49a7849fb651ef062532beafdba5500fc13a46b9dfe1a853a27b73257a092d7e65a7b9956a8df9971c9908825d2f3b86b00c35c38
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-function-name@npm:7.29.7"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.29.7"
"@babel/helper-plugin-utils": "npm:^7.29.7"
"@babel/traverse": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/87a6329442ef8085fbc160e659f64562f0f5b63be65403b8bbb8e18c67dd7d03b82fb2e1371fdde734e2f05b13a72f88ed8d8cb03807150063954b9604d082cf
languageName: node
linkType: hard
"@babel/plugin-transform-json-strings@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-json-strings@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/3af97e144e0d986522f01803ffa0f90741530d1610952ac6a92511c356ecbf5616092ab1d21401d25bc7cb8ac90d73c2c7ff35e41766df2708c29d7e588cfa7f
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-literals@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/aadb2b3fe85186c274a07d5486aeef9496ce374e534fbc7b54f77985c75513422d9acec4c532f67b027e939644d93a69c00505b8909e259184c3ee5c5c62c46b
languageName: node
linkType: hard
"@babel/plugin-transform-logical-assignment-operators@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/374d83dfbb2de5e339d2966487c0f0d766cd67422addbd0172104ff2788b60317858172a7ab2cb6ee7d5bffad72ce07120fec009a2ef3b35551013fce4908686
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.29.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.29.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/698cbc9500e8caea1d36b48248112d60e023cea9d0772ac1ecf1639b38b662d9352043747dbe617fe1f6f17709bc17601534f7bf2f22c791fb86f7e2ab43e39f
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.29.7":
version: 7.29.7
resolution: "@babel/plugin-transform-modules-amd@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/a25cfc84db14a943cee1717030114e052152487af8784c015762a4fc11ee7b45127036c074044636b10c7251eb310c172904028a6f36abcae816e0cc685553b8
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"