-
Notifications
You must be signed in to change notification settings - Fork 22
/
yarn.lock
14622 lines (13196 loc) · 498 KB
/
yarn.lock
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: 6
cacheKey: 8
"@adobe/css-tools@npm:^4.0.1":
version: 4.3.3
resolution: "@adobe/css-tools@npm:4.3.3"
checksum: d21f3786b84911fee59c995a146644a85c98692979097b26484ffa9e442fb1a92ccd68ce984e3e7cf8d5933c3560fbc0ad3e3cd1de50b9a723d1c012e793bbcb
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:1.10.0":
version: 1.10.0
resolution: "@adraffy/ens-normalize@npm:1.10.0"
checksum: af0540f963a2632da2bbc37e36ea6593dcfc607b937857133791781e246d47f870d5e3d21fa70d5cfe94e772c284588c81ea3f5b7f4ea8fbb824369444e4dbcb
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.24
checksum: d3ad7b89d973df059c4e8e6d7c972cbeb1bb2f18f002a3bd04ae0707da214cb06cc06929b65aa2313b9347463df2914772298bae8b1d7973f246bb3f2ab3e8f0
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/code-frame@npm:7.24.6"
dependencies:
"@babel/highlight": ^7.24.6
picocolors: ^1.0.0
checksum: 0904514ea7079a9590c1c546cd20b9c1beab9649873f2a0703429860775c1713a8dfb2daacd781a0210bb3930c656c1c436013fb20eaa3644880fb3a2b34541d
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/compat-data@npm:7.24.6"
checksum: 92233c708f7c349923c1f9a2b3c9354875a951ac3afaca0a2c159de1c808f6799ad4433652b90870015281aa466ec6e9aa8922e755cd7ac1413a3a5782cd685d
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.0, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.5":
version: 7.24.6
resolution: "@babel/core@npm:7.24.6"
dependencies:
"@ampproject/remapping": ^2.2.0
"@babel/code-frame": ^7.24.6
"@babel/generator": ^7.24.6
"@babel/helper-compilation-targets": ^7.24.6
"@babel/helper-module-transforms": ^7.24.6
"@babel/helpers": ^7.24.6
"@babel/parser": ^7.24.6
"@babel/template": ^7.24.6
"@babel/traverse": ^7.24.6
"@babel/types": ^7.24.6
convert-source-map: ^2.0.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.3
semver: ^6.3.1
checksum: f8af23de19865818c27c2fbe0d87b0834b118386da5ee09b20ae0cf7a5540065054ef2b70f377d025d9feee765db18df39900e4c18e905988b94b54a104c738e
languageName: node
linkType: hard
"@babel/generator@npm:^7.24.6, @babel/generator@npm:^7.7.2":
version: 7.24.6
resolution: "@babel/generator@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
jsesc: ^2.5.1
checksum: a477e03129106908f464b195c4f138052d732cfca47506b127edbed6a496371bae821662a8a4e51e6d144ac236a5d05dc2da0e145e29bb8e19d3e7c480ac00fe
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-annotate-as-pure@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: 9ddcc2ddfa64213311d71bead56ecccdadca5455dc54528c545a2efc1d8010fb7327aef2d90ac7e71b0d0becfed0ffb00553b1e192ff00596efe4161511891cf
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: aec1792a92331f0d915eaab562ecf7a160d84958e4606425e26795dd848ddab0421190d6e15dbb58cb105caa5b4f53af7179449bc53ca2381866b064e8f8fcc6
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-compilation-targets@npm:7.24.6"
dependencies:
"@babel/compat-data": ^7.24.6
"@babel/helper-validator-option": ^7.24.6
browserslist: ^4.22.2
lru-cache: ^5.1.1
semver: ^6.3.1
checksum: c66bf86387fbeefc617db9510de553880ed33dc91308421ee36a7b489d0e8c8eb615e0f467a9ec886eada7c05b03e421e55b2a724ff302402fdd4e0c0b2b0443
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.24.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.24.6
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-function-name": ^7.24.6
"@babel/helper-member-expression-to-functions": ^7.24.6
"@babel/helper-optimise-call-expression": ^7.24.6
"@babel/helper-replace-supers": ^7.24.6
"@babel/helper-skip-transparent-expression-wrappers": ^7.24.6
"@babel/helper-split-export-declaration": ^7.24.6
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 82feb93690cd543fdd9da54d71b950ca4323a99a022e73753dd4c0cd93eed44b25301182a14c626ffbef40afb00c5a4e46f646c1d1f4b501d4badaff0cab3892
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.24.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.24.6
regexpu-core: ^5.3.1
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 606c43600b5c02014f871dc313f06b250b98e0e63fb7d14f1bea56cd8af5737cb7a9c7c28a16dd7712539a19bdac0a877614c9f7427c1fc005181c6a04eda978
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.6.1, @babel/helper-define-polyfill-provider@npm:^0.6.2":
version: 0.6.2
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.2"
dependencies:
"@babel/helper-compilation-targets": ^7.22.6
"@babel/helper-plugin-utils": ^7.22.5
debug: ^4.1.1
lodash.debounce: ^4.0.8
resolve: ^1.14.2
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 2bba965ea9a4887ddf9c11d51d740ab473bd7597b787d042c325f6a45912dfe908c2d6bb1d837bf82f7e9fa51e6ad5150563c58131d2bb85515e63d971414a9c
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-environment-visitor@npm:7.24.6"
checksum: 9c2b3f1ee7ba46b61b0482efab6d37f5c76f0ea4e9d9775df44a89644729c3a50101040a0233543ec6c3f416d8e548d337f310ff3e164f847945507428ee39e5
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-function-name@npm:7.24.6"
dependencies:
"@babel/template": ^7.24.6
"@babel/types": ^7.24.6
checksum: d7a2198b6bf2cae9767d5b0d6cb5d3cbd9a07640ad4b6798abb7d7242e8f32765a94fd98ab1a039d7607f0ddbeaf9ddc822dd536b856e499f7082899c6f455f0
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-hoist-variables@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: 4819b574393a5214aff6ae02a6e5250ace2564f8bcdb28d580ffec57bbb2092425e8f39563d75cfa268940a01fd425bad503c0b92717c12426f15cf6847855d3
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-member-expression-to-functions@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: 9b027842d50fd4b80213903a97e1addcab7051de76090c3e908377fab31f73371beacefa9dfaf95416e57d3bda0fae83633ea4d206669262dde6267d802ece7b
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-module-imports@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: 3484420c45529aac34cb14111a03c78edab84e5c4419634affe61176d832af82963395ea319f67c7235fd4106d9052a9f3ce012d2d57d56644572d3f7d495231
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-module-transforms@npm:7.24.6"
dependencies:
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-module-imports": ^7.24.6
"@babel/helper-simple-access": ^7.24.6
"@babel/helper-split-export-declaration": ^7.24.6
"@babel/helper-validator-identifier": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: 904e2a0701eb1eeb84b0d0df5dacdc40291307025b7e3a9a3c6f3eee912c893524f9dc7f5624225a5783a258dec2eb2489a9638bf5f3de26ebfcbcac1b5cc2fc
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-optimise-call-expression@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: 2f1d37b2491843a60e8d1736d435aee793feb726292367df1dc25e938b93458aeeb384a329f7438b51e50fd420a71149992c1ef09249eba7041229f230c64db7
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.22.5, @babel/helper-plugin-utils@npm:^7.24.6, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.24.6
resolution: "@babel/helper-plugin-utils@npm:7.24.6"
checksum: d22bb82c75afed0d8c37784876fd6deb9db06ef21526db909ef7986a6050b50beb60a7823c08a1bb7c57c668af2e086d8086e88b6f9140b0d9ade07472f7c748
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-remap-async-to-generator@npm:7.24.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.24.6
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-wrap-function": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: d34142cdfecb94655730a3903039fd7459f36696a8eeca80be58ebe46d2ca517d46907c389020735d1c4325d44f7cc7581d3f9b995337d8c32c9b0552bc58759
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-replace-supers@npm:7.24.6"
dependencies:
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-member-expression-to-functions": ^7.24.6
"@babel/helper-optimise-call-expression": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: f9e32592860733d63cf554e4ade277917af162efb30e75c45fbd35bb4c05f7f0f37042857eb66cec0b5e1aedf199e06e55af6c322bcb17533a20782ec2aaa3a1
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-simple-access@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: 929162e887efc1bcadd4e141ed7782b45fccc6873d5023a744fee9c94d16d3a13dbfb66eb259181613a36c2d35f7d2088ee37e76014223d3b9b6c9ef1094e4b6
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: dd93d95a7ee815a3784de324d7fd6c495660576ec49ff5e9c608d6409441ebc7764fc0e7b198062784511301f4dc8fdc59263d5c3efcb65fe66b08b008b602f7
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-split-export-declaration@npm:7.24.6"
dependencies:
"@babel/types": ^7.24.6
checksum: b546fd7e186b4aa69f96e041b6c4c9154115a2579a297b86773719dbed53b938cfc3f6b4996ae410296bb8aa30ea031f9ff31f1255aa25c3af75026c5b7c4059
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-string-parser@npm:7.24.6"
checksum: c8c614a663928b67c5c65cfea958ed20c858fa2af8c957d301bd852c0ab98adae0861f081fd8f5add16539d9393bd4b10b8c86a97a9d7304f70a6a67b2c2ff07
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-validator-identifier@npm:7.24.6"
checksum: a265a6fba570332dca63ad7e749b867d29b52da2573dc62bf19b5b8c5387d4f4296af33da9da7c71ffe3d3abecd743418278f56d38b057ad4b53f09b937fe113
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-validator-option@npm:7.24.6"
checksum: 5defb2da74e1cac9497016f4e41698aeed75ec7a5e9dc07e777cdb67ef73cd2e27bd2bf8a3ab8d37e0b93a6a45524a9728f03e263afdef452436cf74794bde87
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-wrap-function@npm:7.24.6"
dependencies:
"@babel/helper-function-name": ^7.24.6
"@babel/template": ^7.24.6
"@babel/types": ^7.24.6
checksum: 0cf28533392b994e25590e9060d05bebc882e2a8e22ab77672799d53859f71dc87debd6d5429eeed0eb0de0038708c50576e322e6042cd4e358940939fd9b721
languageName: node
linkType: hard
"@babel/helpers@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helpers@npm:7.24.6"
dependencies:
"@babel/template": ^7.24.6
"@babel/types": ^7.24.6
checksum: c936058fd5caf7173e157f790fdbe9535237a7b8bc2c3d084bdf16467a034f73bd5d731deb514aa84e356c72de1cc93500a376f9d481f5c1e335f5a563426e58
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/highlight@npm:7.24.6"
dependencies:
"@babel/helper-validator-identifier": ^7.24.6
chalk: ^2.4.2
js-tokens: ^4.0.0
picocolors: ^1.0.0
checksum: 2f8f7f060eeccc3ddf03ba12c263995de0e6c0dd31ad224bed58d983b3bb08fe34dfc01440396266456a4cad83226c38ad6814805bc5d0c774a056cac9182eca
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.4, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/parser@npm:7.24.6"
bin:
parser: ./bin/babel-parser.js
checksum: ca3773f5b2a4a065b827990ca0c867e670f01d7a7d7278838bd64d583e68ed52356b5a613303c5aa736d20f024728fec80fc5845fed1eb751ab5f1bfbdc1dd3c
languageName: node
linkType: hard
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.24.6"
dependencies:
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: fe18f25b8507fec9ccf32f5961cd2f17d09f5695f542271b15a49ae00b8f02bfcb43fe707cd4791217ebe16de4f96898e49a5edced0e54da481f502f9a745388
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7530579cd6794ae4d3a53bf388de87fc94a090829eeff15cf01e345bb71db4aff57c28dbe595cef8d185edb1baed6a0107d772a71e919d398346876da4fe1f2c
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-skip-transparent-expression-wrappers": ^7.24.6
"@babel/plugin-transform-optional-chaining": ^7.24.6
peerDependencies:
"@babel/core": ^7.13.0
checksum: 69d5a725ad755572c9f677d07cc0c48c74cbe538869fd14e91436c4313adf4eab9838bf9ca26caa30998d89a17e86a335c36050d3b93493824788667a6508f21
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.24.6"
dependencies:
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6bbd91b0038e54119ae4df594e4c1b2dc0299d2ff9533f20b8fc6870252ba7cfe480151c6dde59d0310ab23348e8556b8ae42267dbdb35b67857649161bca8d0
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: d97745d098b835d55033ff3a7fb2b895b9c5295b08a5759e4f20df325aa385a3e0bc9bd5ad8f2ec554a44d4e6525acfc257b8c5848a1345cb40f26a30e277e91
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
languageName: node
linkType: hard
"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a
languageName: node
linkType: hard
"@babel/plugin-syntax-import-assertions@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-syntax-import-assertions@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: abd640f9e2cd9b17d8f88a4431229429d57369d4fa5cbdab62b7a329812b3e7733e3f9f316dd393addb6db8d9b9b58dbd8ac39685a0c1e07bbb89b6c82445ae9
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 81d83ad26dddfe0da86a34722ced7f938741fa18afe5b02fbabfa99ae4e14d97be185dbedc746eab2f1c3e6dc5560054c3cb780cb946be4533f648dca593c92b
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.24.6, @babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.24.6
resolution: "@babel/plugin-syntax-jsx@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e288681cab57d059b0b2e132040eb5e21a158c40229c600e77cb0289ba5d32a2102af94e43390d270e0ddd968685e9de8d10dab0291c53b84e2219a7bc4cdb54
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
languageName: node
linkType: hard
"@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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.24.6, @babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.24.6
resolution: "@babel/plugin-syntax-typescript@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2fb15b246f7a2334ae5ebbc4c263dc2a66464e65074cbe82204acb42c097601c5ae5933d4c4716cad0a64b41aa999080eeabddbabadd163232d9e2631749f596
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": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: be99f3208d1e828d923ad8d437644e3e62f6cb1b68acb7ec1b1e5cf169d3df8441aa8eaa1ea22fdf2e7d1a37a2d422ce04121829e625d5c56403bb3923226719
languageName: node
linkType: hard
"@babel/plugin-transform-async-generator-functions@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.24.6"
dependencies:
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-remap-async-to-generator": ^7.24.6
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c9a49c7350c330964420dfc1263ed2e7accf53ce9bf4bec556500b99b9a81701497618d755c78924270ee263aad61564dc6ec3d13c634b2be91f8cdbaeea874
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.6"
dependencies:
"@babel/helper-module-imports": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-remap-async-to-generator": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3ac6dc52328b81361cce2c77f81f9e3e6deb48086cbb1410282ba27d4eb9aae28386cd33480a607072ce1c17c4b61300520fa1671599a3a21facc7ba2b69cd32
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 77b5dba0b46de2b2e5a62968418bdc76e4245603866e8d53c1f413cdfb2b4a0352893ce1e039a383d8e50617c73f4622dfab1d9d56081e8926672de655361683
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-block-scoping@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a8113f1bf2e8fb83de1b608daf3c924f08b54b98e0fb5076379f35ff1b8310e5f2eba510356a425f0c3f027a777777851066acb92d3e72624c37293465b93c5a
languageName: node
linkType: hard
"@babel/plugin-transform-class-properties@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-class-properties@npm:7.24.6"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 79228c7eade70fed3459426233f6e507ab0c238b91cd53a527005c4e175ad2a20c918f1de09ca869a7bcd920b5452e80a1cfe7c51e4f80602c412865f049153a
languageName: node
linkType: hard
"@babel/plugin-transform-class-static-block@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-class-static-block@npm:7.24.6"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: a574d565b6416ae98ce3d918bbbdfdf215440dee5a028f1076a963c90b8d7c64e5f1aae54afe605d3e607b93732a6f87b5fb62177680f895de47e2b4c7d92b78
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-classes@npm:7.24.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.24.6
"@babel/helper-compilation-targets": ^7.24.6
"@babel/helper-environment-visitor": ^7.24.6
"@babel/helper-function-name": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-replace-supers": ^7.24.6
"@babel/helper-split-export-declaration": ^7.24.6
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2891dfcb1d905df55437f7a29a67b9373f6ca79bb14fadff132e56be1618e02cfd959780f3d49aa2aed9d6daa0b6ea879f5de25118c5c2210b5bb798be291eb8
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-computed-properties@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/template": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: be2d0d193b07a1c7efae2fd67d33f6b71d1a8f7cb1f3f07667717c072aaa4e7164d71b6cdd654a9352a7ddd104bdb7a5c69cb4c10d105128326cb08c792a0658
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-destructuring@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b81f74939a949bf366f18efabf560c5aa03aacd5cd561313918dbefbc779fb26a63fc903156deebf859ecf40df8ca23a6bcbfa0c003b64e9082d75dc5a11e79b
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.6"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bd5cae74e3c5642416bae04985cfe3478315ad48a0f934169253b1eecc1365c6880d350b4077fdee72172602f8dbec32766dfe8f17776d5b2d3b53dd01382713
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5a1f54aa7731816d722a0627176af0c810061275c22c981e09c0da2648372ca39cf331b6e7a8dad380db09100c1a655dc13307758df9a9bf88f605a99eba4e02
languageName: node
linkType: hard
"@babel/plugin-transform-dynamic-import@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 20360f1147af18c9669742c2ee1a832c4130dce3e73c453692edb16ea920cc4cb8e06e79cbc87ecc39c5db1ccc126bc28994cf6c4ffff59366301cc52cc2cef9
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.6"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d377fe651677a6dfb2dbfb3ade2e80ece6704b225b463a42cc72330a688a6d85a6c28062d0f0cc2eb6d265e2d9294a14be8f0e144a782996d0acdd86a58e139e
languageName: node
linkType: hard
"@babel/plugin-transform-export-namespace-from@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3e42cac016ce10aaaa66a905e4a1112beafe90c9d1919ba91653758c9f576f2c8f3211e191885e227e2d1dd77c111bb4d31b832876883a115047f6dae9ce1dce
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-for-of@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-skip-transparent-expression-wrappers": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7094f775acc7c7ccb7b5141ced7312f3cd7b1be3a1afda72548a21b8234d70693a6fc26b0c7ef02719f9b3ee7a0702057c3eed6d3caeee2c3631db7f414baaca
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-function-name@npm:7.24.6"
dependencies:
"@babel/helper-compilation-targets": ^7.24.6
"@babel/helper-function-name": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d9f51a89522f988d45c5b3ef09a1f9efde2122b94f5c1231bc381023738a46808b45645e0708d1ae86be86a9670f29c1b0a24be633c3a2729bcc2b0511521051
languageName: node
linkType: hard
"@babel/plugin-transform-json-strings@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-json-strings@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fd67fab338687250cb49ac9cd67514a38884013bfc172b834c2862509c40e5b436e716e6cea0ebbfd9d1fad4cae0132da187548c6af6f67717876744c17f5ce4
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-literals@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 128da0047b66bce51b94bf50c2a73727e51c7ac661b641b0e0fc1e700dae11697412fa739cc01183919c427e7f970f384186f246fbab575195217d6a8df97381
languageName: node
linkType: hard
"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f2b97be1ff770be1467f172492f5c1fbc074ea60de1f8c515684b49c248bd87ae44626368fc577e5239522cb640f351531ef32a45b2e88a049279f2f28246777
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b30bd3df2932af85116a8ea38e040987ea5caf268c634902195e5b9eb0d4c76ee34b01309c2fb28e362f3c2636d4927c19783f3f8eea33ac451885ec29b61a56
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-modules-amd@npm:7.24.6"
dependencies:
"@babel/helper-module-transforms": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47d85aefb44b85168792266220e184722f96031a40a0d09a2ac026b6997927ea553cfc83bd0a77363873467120140b899fefa8e4c49475d1d21e15c651553086
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.6"
dependencies:
"@babel/helper-module-transforms": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-simple-access": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8fc772df64d58a431351984f7f34896f61ba8911fde547cd041b6234117e8b84a37f62a4f12c1153df7002d356b8e81944923cc9b37e96face76436cf57ac800
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.24.6"
dependencies:
"@babel/helper-hoist-variables": ^7.24.6
"@babel/helper-module-transforms": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
"@babel/helper-validator-identifier": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cc65e757290924c7a37a9e606801b14f8bc3dc7c4281448ce27d8cf63e17ff5ac0c02a4d864bbe0aa950ae84cef9590347d1231a260a3cf0c3ec1cb6b89d939a
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-modules-umd@npm:7.24.6"
dependencies:
"@babel/helper-module-transforms": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e12f64e4b197b833f2a2923002db810a3e3071be2fc62b201c0b048142a32bbc4709633d346aaa301534c9c447b9e68800f24dcbbd3e1c1f3de04c737379fc24
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.24.6"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.24.6
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: a86048c47178af3d752a458b49c8483ceccbb0cff1775a6d0929415734280f42f14d48bf62d327f6fb0f8c0dff496258b59705debdd4ea68a3b247649f945f2f
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-new-target@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9d5de07a334eb9d2521cf7d319b23f8cdf234e4fe003d034de448a506ae3f4756227ce34aafa037c6541ec4d993eb15075bcb3c064d3eaae64eba4f405d6f232
languageName: node
linkType: hard
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 828b815276153ffa8b53e74a1ff9dd2cd51c2e76f6fbcd8c71c3c21953dcbd14e2fe2e317989c3a93f4896e21205d978773932e414a2ea4b89609a74130a2623
languageName: node
linkType: hard
"@babel/plugin-transform-numeric-separator@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.6"
dependencies:
"@babel/helper-plugin-utils": ^7.24.6
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e3d608693d9329704145fb6b8e001dd4e671ddfdbb6770ecebdffae350b16a83b4d01f69ba849d73e4a58cbe802d42be2f883b52b98f9d372020e5d1b1f4f8ed
languageName: node
linkType: hard
"@babel/plugin-transform-object-rest-spread@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.6"
dependencies:
"@babel/helper-compilation-targets": ^7.24.6