-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
6517 lines (5522 loc) · 244 KB
/
yarn.lock
File metadata and controls
6517 lines (5522 loc) · 244 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.2.0":
version "2.3.0"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.24"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.6.tgz#ab88da19344445c3d8889af2216606d3329f3ef2"
dependencies:
"@babel/highlight" "^7.24.6"
picocolors "^1.0.0"
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.6.tgz#b3600217688cabb26e25f8e467019e66d71b7ae2"
"@babel/core@^7.24.4":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.6.tgz#8650e0e4b03589ebe886c4e4a60398db0a7ec787"
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"
"@babel/generator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.6.tgz#dfac82a228582a9d30c959fe50ad28951d4737a7"
dependencies:
"@babel/types" "^7.24.6"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
jsesc "^2.5.1"
"@babel/helper-annotate-as-pure@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz#517af93abc77924f9b2514c407bbef527fb8938d"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-builder-binary-assignment-operator-visitor@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.6.tgz#19e9089ee87b0d0928012c83961a8deef4b0223f"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.6.tgz#4a51d681f7680043d38e212715e2a7b1ad29cb51"
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"
"@babel/helper-create-class-features-plugin@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.6.tgz#c50b86fa1c4ca9b7a890dc21884f097b6c4b5286"
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"
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.6.tgz#47d382dec0d49e74ca1b6f7f3b81f5968022a3c8"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
regexpu-core "^5.3.1"
semver "^6.3.1"
"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2":
version "0.6.2"
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d"
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"
"@babel/helper-environment-visitor@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz#ac7ad5517821641550f6698dd5468f8cef78620d"
"@babel/helper-function-name@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.6.tgz#cebdd063386fdb95d511d84b117e51fc68fec0c8"
dependencies:
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/helper-hoist-variables@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.6.tgz#8a7ece8c26756826b6ffcdd0e3cf65de275af7f9"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-member-expression-to-functions@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.6.tgz#86084f3e0e4e2169a134754df3870bc7784db71e"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-module-imports@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz#65e54ffceed6a268dc4ce11f0433b82cfff57852"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-module-transforms@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz#22346ed9df44ce84dee850d7433c5b73fab1fe4e"
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"
"@babel/helper-optimise-call-expression@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.6.tgz#f7836e3ccca3dfa02f15d2bc8b794efe75a5256e"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.6", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.6.tgz#fa02a32410a15a6e8f8185bcbf608f10528d2a24"
"@babel/helper-remap-async-to-generator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.6.tgz#c96ceb9846e877d806ce82a1521230ea7e0fc354"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-wrap-function" "^7.24.6"
"@babel/helper-replace-supers@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.6.tgz#3ea87405a2986a49ab052d10e540fe036d747c71"
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"
"@babel/helper-simple-access@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz#1d6e04d468bba4fc963b4906f6dac6286cfedff1"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.6.tgz#c47e9b33b7ea50d1073e125ebc26661717cb7040"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-split-export-declaration@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz#e830068f7ba8861c53b7421c284da30ae656d7a3"
dependencies:
"@babel/types" "^7.24.6"
"@babel/helper-string-parser@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz#28583c28b15f2a3339cfafafeaad42f9a0e828df"
"@babel/helper-validator-identifier@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz#08bb6612b11bdec78f3feed3db196da682454a5e"
"@babel/helper-validator-option@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.6.tgz#59d8e81c40b7d9109ab7e74457393442177f460a"
"@babel/helper-wrap-function@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.24.6.tgz#c27af1006e310683fdc76b668a0a1f6003e36217"
dependencies:
"@babel/helper-function-name" "^7.24.6"
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/helpers@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.6.tgz#cd124245299e494bd4e00edda0e4ea3545c2c176"
dependencies:
"@babel/template" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/highlight@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.6.tgz#6d610c1ebd2c6e061cade0153bf69b0590b7b3df"
dependencies:
"@babel/helper-validator-identifier" "^7.24.6"
chalk "^2.4.2"
js-tokens "^4.0.0"
picocolors "^1.0.0"
"@babel/parser@^7.24.6", "@babel/parser@^7.7.0":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.6.tgz#5e030f440c3c6c78d195528c3b688b101a365328"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.6.tgz#283a74ef365b1e954cda6b2724c678a978215e88"
dependencies:
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.6.tgz#f9f5ae4d6fb72f5950262cb6f0b2482c3bc684ef"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.6.tgz#ab9be6edfffa127bd5ec4317c76c5af0f8fc7e6c"
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"
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.6.tgz#0faf879249ec622d7f1c42eaebf7d11197401b2c"
dependencies:
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
version "7.21.0-placeholder-for-preset-env.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-class-static-block@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-dynamic-import@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-export-namespace-from@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
dependencies:
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-syntax-import-assertions@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.6.tgz#52521c1c1698fc2dd9cf88f7a4dd86d4d041b9e1"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-import-attributes@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.6.tgz#12aba325534129584672920274fefa4dc2d5f68e"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-import-meta@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-private-property-in-object@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-top-level-await@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-arrow-functions@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.6.tgz#93607d1ef5b81c70af174aff3532d57216367492"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-async-generator-functions@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.6.tgz#fa4a9e5c3a7f60f697ba36587b6c41b04f507d84"
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"
"@babel/plugin-transform-async-to-generator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.6.tgz#eb11434b11d73d8c0cf9f71a6f4f1e6ba441df35"
dependencies:
"@babel/helper-module-imports" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-remap-async-to-generator" "^7.24.6"
"@babel/plugin-transform-block-scoped-functions@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.6.tgz#975555b5bfa9870b1218da536d1528735f1f8c56"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-block-scoping@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.6.tgz#a03ec8a4591c2b43cf7798bc633e698293fda179"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-class-properties@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.6.tgz#d9f394e97e88ef905d5a1e5e7a16238621b7982e"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-class-static-block@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.6.tgz#f43f29286f6f0dca33d18fd5033b817d6c3fa816"
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"
"@babel/plugin-transform-classes@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.6.tgz#0cc198c02720d4eeb091004843477659c6b37977"
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"
"@babel/plugin-transform-computed-properties@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.6.tgz#7a1765c01cdfe59c320d2d0f37a4dc4aecd14df1"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/template" "^7.24.6"
"@babel/plugin-transform-destructuring@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.6.tgz#bdd1a6c90ffb2bfd13b6007b13316eeafc97cb53"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-dotall-regex@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.6.tgz#5a6b3148ec5f4f274ff48cebea90565087cad126"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-duplicate-keys@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.6.tgz#2716301227cf7cd4fdadcbe4353ce191f8b3dc8a"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-dynamic-import@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.6.tgz#b477177761d56b15a4ba42a83be31cf72d757acf"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-transform-exponentiation-operator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.6.tgz#011e9e1a429f91b024af572530873ca571f9ef06"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-export-namespace-from@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.6.tgz#b64ded74d9afb3db5d47d93996c4df69f15ac97c"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-transform-for-of@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.6.tgz#7f31780bd0c582b546372c0c0da9d9d56731e0a2"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.6"
"@babel/plugin-transform-function-name@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.6.tgz#60d1de3f6fd816a3e3bf9538578a64527e1b9c97"
dependencies:
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-json-strings@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.6.tgz#a84639180ea1f9001bb5e6dc01921235ab05ad8b"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-transform-literals@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.6.tgz#7f44f2871d7a4456030b0540858046f0b7bc6b18"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-logical-assignment-operators@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.6.tgz#9cc7baa5629866566562c159dc1eae7569810f33"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-transform-member-expression-literals@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.6.tgz#5d3681ca201ac6909419cc51ac082a6ba4c5c756"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-modules-amd@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.6.tgz#09aeac7acb7913496aaaafdc64f40683e0db7e41"
dependencies:
"@babel/helper-module-transforms" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-modules-commonjs@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.6.tgz#1b8269902f25bd91ca6427230d4735ddd1e1283e"
dependencies:
"@babel/helper-module-transforms" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-simple-access" "^7.24.6"
"@babel/plugin-transform-modules-systemjs@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.6.tgz#c54eb53fe16f9b82d320abd76762d0320e3f9393"
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"
"@babel/plugin-transform-modules-umd@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.6.tgz#c4ef8b6d4da230b8dc87e81cd66986728952f89b"
dependencies:
"@babel/helper-module-transforms" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-named-capturing-groups-regex@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.6.tgz#352ee2861ab8705320029f80238cf26a92ba65d5"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-new-target@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.6.tgz#fc024294714705113720d5e3dc0f9ad7abdbc289"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-nullish-coalescing-operator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.6.tgz#12b83b3cdfd1cd2066350e36e4fb912ab194545e"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
"@babel/plugin-transform-numeric-separator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.6.tgz#d9115669cc85aa91fbfb15f88f2226332cf4946a"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-transform-object-rest-spread@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.6.tgz#68d763f69955f9e599c405c6c876f5be46b47d8a"
dependencies:
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.24.6"
"@babel/plugin-transform-object-super@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.6.tgz#9cbe6f995bed343a7ab8daf0416dac057a9c3e27"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-replace-supers" "^7.24.6"
"@babel/plugin-transform-optional-catch-binding@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.6.tgz#c81e90a971aad898e56f2b75a358e6c4855aeba3"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-transform-optional-chaining@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.6.tgz#3d636b3ed8b5a506f93e4d4675fc95754d7594f5"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.6"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-transform-parameters@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.6.tgz#7aee86dfedd2fc0136fecbe6f7649fc02d86ab22"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-private-methods@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.6.tgz#258e1f859a52ff7b30ad556598224c192defcda7"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-private-property-in-object@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.6.tgz#59ff09a099f62213112cf348e96b6b11957d1f28"
dependencies:
"@babel/helper-annotate-as-pure" "^7.24.6"
"@babel/helper-create-class-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-transform-property-literals@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.6.tgz#243c4faabe811c405e9443059a58e834bf95dfd1"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-regenerator@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.6.tgz#ed10cf0c13619365e15459f88d1b915ac57ffc24"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
regenerator-transform "^0.15.2"
"@babel/plugin-transform-reserved-words@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.6.tgz#9eb16cbf339fcea0a46677716c775afb5ef14245"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-shorthand-properties@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.6.tgz#ef734ebccc428d2174c7bb36015d0800faf5381e"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-spread@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.6.tgz#a56cecbd8617675531d1b79f5b755b7613aa0822"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.24.6"
"@babel/plugin-transform-sticky-regex@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.6.tgz#1a78127731fea87d954bed193840986a38f04327"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-template-literals@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.6.tgz#aaf2ae157acd0e5c9265dba8ac0a439f8d2a6303"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-typeof-symbol@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.6.tgz#3d02da23ebcc8f1982ddcd1f2581cf3ee4e58762"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-unicode-escapes@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.6.tgz#c8ddca8fd5bacece837a4e27bd3b7ed64580d1a8"
dependencies:
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-unicode-property-regex@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.6.tgz#e66297d5d452db0b0be56515e3d0e10b7d33fb32"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-unicode-regex@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.6.tgz#2001e7d87ed709eea145e0b65fb5f93c3c0e225b"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/plugin-transform-unicode-sets-regex@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.6.tgz#f18b7292222aee85c155258ceb345a146a070a46"
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/preset-env@^7.24.4":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.6.tgz#a5a55bc70e5ff1ed7f872067e2a9d65ff917ad6f"
dependencies:
"@babel/compat-data" "^7.24.6"
"@babel/helper-compilation-targets" "^7.24.6"
"@babel/helper-plugin-utils" "^7.24.6"
"@babel/helper-validator-option" "^7.24.6"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.6"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.6"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.6"
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.6"
"@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-syntax-import-assertions" "^7.24.6"
"@babel/plugin-syntax-import-attributes" "^7.24.6"
"@babel/plugin-syntax-import-meta" "^7.10.4"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-syntax-top-level-await" "^7.14.5"
"@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
"@babel/plugin-transform-arrow-functions" "^7.24.6"
"@babel/plugin-transform-async-generator-functions" "^7.24.6"
"@babel/plugin-transform-async-to-generator" "^7.24.6"
"@babel/plugin-transform-block-scoped-functions" "^7.24.6"
"@babel/plugin-transform-block-scoping" "^7.24.6"
"@babel/plugin-transform-class-properties" "^7.24.6"
"@babel/plugin-transform-class-static-block" "^7.24.6"
"@babel/plugin-transform-classes" "^7.24.6"
"@babel/plugin-transform-computed-properties" "^7.24.6"
"@babel/plugin-transform-destructuring" "^7.24.6"
"@babel/plugin-transform-dotall-regex" "^7.24.6"
"@babel/plugin-transform-duplicate-keys" "^7.24.6"
"@babel/plugin-transform-dynamic-import" "^7.24.6"
"@babel/plugin-transform-exponentiation-operator" "^7.24.6"
"@babel/plugin-transform-export-namespace-from" "^7.24.6"
"@babel/plugin-transform-for-of" "^7.24.6"
"@babel/plugin-transform-function-name" "^7.24.6"
"@babel/plugin-transform-json-strings" "^7.24.6"
"@babel/plugin-transform-literals" "^7.24.6"
"@babel/plugin-transform-logical-assignment-operators" "^7.24.6"
"@babel/plugin-transform-member-expression-literals" "^7.24.6"
"@babel/plugin-transform-modules-amd" "^7.24.6"
"@babel/plugin-transform-modules-commonjs" "^7.24.6"
"@babel/plugin-transform-modules-systemjs" "^7.24.6"
"@babel/plugin-transform-modules-umd" "^7.24.6"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.24.6"
"@babel/plugin-transform-new-target" "^7.24.6"
"@babel/plugin-transform-nullish-coalescing-operator" "^7.24.6"
"@babel/plugin-transform-numeric-separator" "^7.24.6"
"@babel/plugin-transform-object-rest-spread" "^7.24.6"
"@babel/plugin-transform-object-super" "^7.24.6"
"@babel/plugin-transform-optional-catch-binding" "^7.24.6"
"@babel/plugin-transform-optional-chaining" "^7.24.6"
"@babel/plugin-transform-parameters" "^7.24.6"
"@babel/plugin-transform-private-methods" "^7.24.6"
"@babel/plugin-transform-private-property-in-object" "^7.24.6"
"@babel/plugin-transform-property-literals" "^7.24.6"
"@babel/plugin-transform-regenerator" "^7.24.6"
"@babel/plugin-transform-reserved-words" "^7.24.6"
"@babel/plugin-transform-shorthand-properties" "^7.24.6"
"@babel/plugin-transform-spread" "^7.24.6"
"@babel/plugin-transform-sticky-regex" "^7.24.6"
"@babel/plugin-transform-template-literals" "^7.24.6"
"@babel/plugin-transform-typeof-symbol" "^7.24.6"
"@babel/plugin-transform-unicode-escapes" "^7.24.6"
"@babel/plugin-transform-unicode-property-regex" "^7.24.6"
"@babel/plugin-transform-unicode-regex" "^7.24.6"
"@babel/plugin-transform-unicode-sets-regex" "^7.24.6"
"@babel/preset-modules" "0.1.6-no-external-plugins"
babel-plugin-polyfill-corejs2 "^0.4.10"
babel-plugin-polyfill-corejs3 "^0.10.4"
babel-plugin-polyfill-regenerator "^0.6.1"
core-js-compat "^3.31.0"
semver "^6.3.1"
"@babel/preset-modules@0.1.6-no-external-plugins":
version "0.1.6-no-external-plugins"
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a"
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/types" "^7.4.4"
esutils "^2.0.2"
"@babel/regjsgen@^0.8.0":
version "0.8.0"
resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
"@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.6.tgz#5b76eb89ad45e2e4a0a8db54c456251469a3358e"
dependencies:
regenerator-runtime "^0.14.0"
"@babel/template@^7.24.6":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.6.tgz#048c347b2787a6072b24c723664c8d02b67a44f9"
dependencies:
"@babel/code-frame" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/types" "^7.24.6"
"@babel/traverse@^7.24.6", "@babel/traverse@^7.7.0":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.6.tgz#0941ec50cdeaeacad0911eb67ae227a4f8424edc"
dependencies:
"@babel/code-frame" "^7.24.6"
"@babel/generator" "^7.24.6"
"@babel/helper-environment-visitor" "^7.24.6"
"@babel/helper-function-name" "^7.24.6"
"@babel/helper-hoist-variables" "^7.24.6"
"@babel/helper-split-export-declaration" "^7.24.6"
"@babel/parser" "^7.24.6"
"@babel/types" "^7.24.6"
debug "^4.3.1"
globals "^11.1.0"
"@babel/types@^7.24.6", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
version "7.24.6"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.6.tgz#ba4e1f59870c10dc2fa95a274ac4feec23b21912"
dependencies:
"@babel/helper-string-parser" "^7.24.6"
"@babel/helper-validator-identifier" "^7.24.6"
to-fast-properties "^2.0.0"
"@csstools/cascade-layer-name-parser@^1.0.11":
version "1.0.11"
resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.11.tgz#c9b85dc38240c0269385f557149f714e7875fda0"
"@csstools/color-helpers@^4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-4.2.0.tgz#e8629ca9dce03a3a309506e7892b7f862673cf85"
"@csstools/css-calc@^1.2.2":
version "1.2.2"
resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.2.2.tgz#bcb856e63ecc16a7508f43e77ea43ac5daaf2833"
"@csstools/css-color-parser@^2.0.2":
version "2.0.2"
resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-2.0.2.tgz#bf60de403889a2726f964a1c9b1ea5593e889f5b"
dependencies:
"@csstools/color-helpers" "^4.2.0"
"@csstools/css-calc" "^1.2.2"
"@csstools/css-parser-algorithms@^2.3.1", "@csstools/css-parser-algorithms@^2.6.3":
version "2.6.3"
resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.6.3.tgz#b5e7eb2bd2a42e968ef61484f1490a8a4148a8eb"
"@csstools/css-tokenizer@^2.2.0", "@csstools/css-tokenizer@^2.3.1":
version "2.3.1"
resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.3.1.tgz#3d47e101ad48d815a4bdce8159fb5764f087f17a"
"@csstools/media-query-list-parser@^2.1.11", "@csstools/media-query-list-parser@^2.1.4":
version "2.1.11"
resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.11.tgz#465aa42f268599729350e305e1ae14a30c1daf51"
"@csstools/postcss-cascade-layers@^4.0.6":
version "4.0.6"
resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.6.tgz#5a421cd2d5792d1eb8c28e682dc5f2c3b85cb045"
dependencies:
"@csstools/selector-specificity" "^3.1.1"
postcss-selector-parser "^6.0.13"
"@csstools/postcss-color-function@^3.0.16":
version "3.0.16"
resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.16.tgz#d4f0b45a7425d437f267d99dcb94d3961a151b52"
dependencies:
"@csstools/css-color-parser" "^2.0.2"
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-progressive-custom-properties" "^3.2.0"
"@csstools/utilities" "^1.0.0"
"@csstools/postcss-color-mix-function@^2.0.16":
version "2.0.16"
resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.16.tgz#40b95ade50f5b19320bb342db4557bb61a8eefd6"
dependencies:
"@csstools/css-color-parser" "^2.0.2"
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-progressive-custom-properties" "^3.2.0"
"@csstools/utilities" "^1.0.0"
"@csstools/postcss-exponential-functions@^1.0.7":
version "1.0.7"
resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.7.tgz#1ce6402fb40c97448cd465e3682844c401942700"
dependencies:
"@csstools/css-calc" "^1.2.2"
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-font-format-keywords@^3.0.2":
version "3.0.2"
resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.2.tgz#b504cfc60588ac39fa5d1c67ef3da802b1bd7701"
dependencies:
"@csstools/utilities" "^1.0.0"
postcss-value-parser "^4.2.0"
"@csstools/postcss-gamut-mapping@^1.0.9":
version "1.0.9"
resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.9.tgz#40358dff1e9be784a99a0925c3062c841fc1b001"
dependencies:
"@csstools/css-color-parser" "^2.0.2"
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-gradients-interpolation-method@^4.0.17":
version "4.0.17"
resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.17.tgz#905bc1c8ae2b5fca1f38f191d67c56c102eba208"
dependencies:
"@csstools/css-color-parser" "^2.0.2"
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-progressive-custom-properties" "^3.2.0"
"@csstools/utilities" "^1.0.0"
"@csstools/postcss-hwb-function@^3.0.15":
version "3.0.15"
resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.15.tgz#c7ad67e697dc41eddd30551edcb92c45fa1ef289"
dependencies:
"@csstools/css-color-parser" "^2.0.2"
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-progressive-custom-properties" "^3.2.0"
"@csstools/utilities" "^1.0.0"
"@csstools/postcss-ic-unit@^3.0.6":
version "3.0.6"
resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.6.tgz#441f18a9064884e1e6ab77169413e0e6184f5c1d"
dependencies:
"@csstools/postcss-progressive-custom-properties" "^3.2.0"
"@csstools/utilities" "^1.0.0"
postcss-value-parser "^4.2.0"
"@csstools/postcss-initial@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-1.0.1.tgz#5aa378de9bfd0e6e377433f8986bdecf579e1268"
"@csstools/postcss-is-pseudo-class@^4.0.8":
version "4.0.8"
resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.8.tgz#d2bcc6c2d86d9653c333926a9ea488c2fc221a7f"
dependencies:
"@csstools/selector-specificity" "^3.1.1"
postcss-selector-parser "^6.0.13"
"@csstools/postcss-light-dark-function@^1.0.5":
version "1.0.5"
resolved "https://registry.yarnpkg.com/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-1.0.5.tgz#5a9a15b1b7e79b3d7c8020a6a133f796ce4dfda7"
dependencies:
"@csstools/css-parser-algorithms" "^2.6.3"
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/postcss-progressive-custom-properties" "^3.2.0"
"@csstools/utilities" "^1.0.0"
"@csstools/postcss-logical-float-and-clear@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.1.tgz#c70ed8293cc376b1572bf56794219f54dc58c54d"
"@csstools/postcss-logical-overflow@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.1.tgz#d14631369f43ef989c7e32f051ddb6952a8ce35c"
"@csstools/postcss-logical-overscroll-behavior@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.1.tgz#9305a6f0d08bb7b5f1a228272951f72d3bf9d44f"
"@csstools/postcss-logical-resize@^2.0.1":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.1.tgz#a46c1b51055db96fb63af3bfe58909c773aea377"
dependencies:
postcss-value-parser "^4.2.0"
"@csstools/postcss-logical-viewport-units@^2.0.9":
version "2.0.9"
resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.9.tgz#8575b832faac9c9118b2228eb65ab622c91fdddf"
dependencies:
"@csstools/css-tokenizer" "^2.3.1"
"@csstools/utilities" "^1.0.0"
"@csstools/postcss-media-minmax@^1.1.6":
version "1.1.6"
resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.6.tgz#300581d39cfade44fd9ac2b777c5abb1d088aaa8"