-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
9986 lines (8986 loc) · 342 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: 4
cacheKey: 7
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": ^0.3.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: b2aa233e797e392943aa6b622553cb0379f9767bfab0dc74b05ed640e5f3461fe53815287aeafa4f87d57aa87b7b4a729200e03fd20d12ae35d24ab61108601d
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": ^7.22.5
checksum: 5f615a0d7abd8ee7cbec78f737c611ec1872bf1b6b5da2bb9c2d1aeb27c59ec5ceff7a95894532c35556398f2274af6ad144175722f1f468800608243c0477b2
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.17.7, @babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/compat-data@npm:7.22.5"
checksum: b6e4c75026cd6e108e00782d4e5255c1c6c303d413c5f56ebc5dd20b978c739561636a973a22d012465f7176db1403d942303f95f64d478cdeba0bbec0ff892c
languageName: node
linkType: hard
"@babel/core@npm:7.22.5, @babel/core@npm:^7.0, @babel/core@npm:^7.15.8":
version: 7.22.5
resolution: "@babel/core@npm:7.22.5"
dependencies:
"@ampproject/remapping": ^2.2.0
"@babel/code-frame": ^7.22.5
"@babel/generator": ^7.22.5
"@babel/helper-compilation-targets": ^7.22.5
"@babel/helper-module-transforms": ^7.22.5
"@babel/helpers": ^7.22.5
"@babel/parser": ^7.22.5
"@babel/template": ^7.22.5
"@babel/traverse": ^7.22.5
"@babel/types": ^7.22.5
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.2
semver: ^6.3.0
checksum: 069c27f4d29567988fac8d58f583dc5da998003eb9f1159b4ee737b0b994b3d8d89f0ed069cb89aff601df8a2ed62dd93b4adc8f08f793711f4c2178c23828fe
languageName: node
linkType: hard
"@babel/generator@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/generator@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
"@jridgewell/gen-mapping": ^0.3.2
"@jridgewell/trace-mapping": ^0.3.17
jsesc: ^2.5.1
checksum: 48b4466ce342e82e993f6eee2d8a182e581a32e8e2ac27135752c9c2b8f062a0a08f0f592f08a1cf2212c12cb6f7112a82589fcb98a60a8b39f9c004b342e73d
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: 3a4f4b0079a2a725d6d020e3946bccc1ec51fd1c3098415160c6bbb1aaf701994803ad02edcf448128048adbeb18b57fa4c1ab91a03ddb555f86895514669668
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: 30510b22562606cd76ee54a0f96343b37ddb8098368a4bf750972e5c76d2a8020f283ad66bddf5b75c6a8333095f4262341449e9cc5f91e91e1b34520b105a1f
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.17.7, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-compilation-targets@npm:7.22.5"
dependencies:
"@babel/compat-data": ^7.22.5
"@babel/helper-validator-option": ^7.22.5
browserslist: ^4.21.3
lru-cache: ^5.1.1
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: d8d8a9138e560ab22634e81b3d16628aaeddaa3f584dd6f2fc96c68abcf79c2f29272278f0763898a30e05462d578cbf53fa3d1e753347189e235a1b81287b44
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.22.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.22.5
"@babel/helper-environment-visitor": ^7.22.5
"@babel/helper-function-name": ^7.22.5
"@babel/helper-member-expression-to-functions": ^7.22.5
"@babel/helper-optimise-call-expression": ^7.22.5
"@babel/helper-replace-supers": ^7.22.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
"@babel/helper-split-export-declaration": ^7.22.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2c4b3e814fbd7b32ea15112679d3c1e1dbbbfa28ddd7bf61fd187ee3e58b05b1ddbefd71ca01aaba29d6ee7fd36f72850fe7006fdae040ba3db5acd662b84619
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.22.5
regexpu-core: ^5.3.1
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: d993100851feac5725ac2b95332912578bb8ce94958d0b0441231373f6e2cbf9a85dd381aa15c1ab929c7c8d05c62dad06f75bb70b818e0f60449f82652ecfbc
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.4.0":
version: 0.4.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.4.0"
dependencies:
"@babel/helper-compilation-targets": ^7.17.7
"@babel/helper-plugin-utils": ^7.16.7
debug: ^4.1.1
lodash.debounce: ^4.0.8
resolve: ^1.14.2
semver: ^6.1.2
peerDependencies:
"@babel/core": ^7.4.0-0
checksum: e35bacd8035aa87fc0213bffde77c1dcb66f4392eb2eb89ac3ab30de053f671581b9fcfd81d87890a7630880447041c39a2c6747591126a65efea3edf2e3b041
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-environment-visitor@npm:7.22.5"
checksum: 47516c0b52def66099a2de47844d3d08844c0404ab6ea8cbe396001467bae859f9ec651705415b9b5e89f0116f4805d55b6029f8c051382bc0db5b122ce47a8e
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-function-name@npm:7.22.5"
dependencies:
"@babel/template": ^7.22.5
"@babel/types": ^7.22.5
checksum: 4cf12a5f874ef030627a839120ba0a1123ae58422394bd45e57c66602cb21845086af65548d657e854dbbecd2ebbfff9f90f75b78cc3744c25dc13212826eaa0
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: 4ccb0dda1a6b78cf10fdb639f423354756e3d80b8e23747ad7000cfe6c0d82591d46ac6d8cfccf1ea24bfe7d6bd9cacf0a13e321381c8fe349d90dffe68cf5d7
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-member-expression-to-functions@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: d514227f0edec93bca51455177f13e1c7ef0e9fa74abdfc73634e33bc130deeb881e55c6de90b59580169ed6bff741d103211ccafa0d6676bdf19b562388b381
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-module-imports@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: ec6fbdc30a4904d588a304d5825bb4b20ca550507c6a93b48cb0b0a737a2048474be11fbe765ebcc5b892790c19a3562c004c7710d5039a7950a7f1111a1fc8b
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-module-transforms@npm:7.22.5"
dependencies:
"@babel/helper-environment-visitor": ^7.22.5
"@babel/helper-module-imports": ^7.22.5
"@babel/helper-simple-access": ^7.22.5
"@babel/helper-split-export-declaration": ^7.22.5
"@babel/helper-validator-identifier": ^7.22.5
"@babel/template": ^7.22.5
"@babel/traverse": ^7.22.5
"@babel/types": ^7.22.5
checksum: df52c518020306b55cb787a2805dbe55ce42486dc8a229d6a25e34abe663713c25e50196ffd287709d01f390e970d0950a3b10d599d5e947075bcfca98bd304a
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: 153716bbab8d0689c72cb6be77887a2e5fb88c594df6bf27ef0210fbffc08a4e7a5df1155af8f408c4f621067417f6a14462502ee3f4ad518392623584541281
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.16.7, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.22.5
resolution: "@babel/helper-plugin-utils@npm:7.22.5"
checksum: 8f1763795608b2ae4887cd41243e8a7616424af5548a2be76664d86c5c952cebf0c02a154ceccc062c0c6e81c0763810daef08fb6882b7b1a19516613b070a50
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-remap-async-to-generator@npm:7.22.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.22.5
"@babel/helper-environment-visitor": ^7.22.5
"@babel/helper-wrap-function": ^7.22.5
"@babel/types": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0
checksum: 84343691f696600263a2ade67228dce8014ed3d6c536bb3ca128b9468c3423a1d312e09cf6683a9fbd9554e40703c1488def04845e3aed69107263f8870862cf
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-replace-supers@npm:7.22.5"
dependencies:
"@babel/helper-environment-visitor": ^7.22.5
"@babel/helper-member-expression-to-functions": ^7.22.5
"@babel/helper-optimise-call-expression": ^7.22.5
"@babel/template": ^7.22.5
"@babel/traverse": ^7.22.5
"@babel/types": ^7.22.5
checksum: 5c7838ef3808287fff9de307a702409e4813d85c011df4910b7976f6f614bfc0ac973e0045fd8098ca6eceaa5636c248df2596b5876843d5000da772330c3cbd
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: 3c6587ab4218a3d7ad39eb5d41fd138c4cf767042892d11ad45cedd4beb82e7db4878f9edbc4eb351cde329f460c943e56df76cbf48ee137582171da24ac02bb
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: e956925d0f74b4a849447137d8e5448f614a339870e92dae540894c21da0a7a27b387c93f8ae3a02b6ca7ee70dce21e45c273a4f29c8bd30518d4db2b4efc89c
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-split-export-declaration@npm:7.22.5"
dependencies:
"@babel/types": ^7.22.5
checksum: 363ea648cf99d8e9098187d6ea0e0fea7343770215c0f54e7817dedf4347d79542e7c1c2a0bd14b74e85708e1795e6e6e0bcdb01cb383afc1dbf603f37979be8
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 43622b7f87fda6b5f4a4e6eabef0562d3ce96089673654767c9a8ca6a0c02a2b95a83918bc5c9a640fac301aa4b19e342caa2e0fd53d6303783b19c91f103a2a
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 755f8906ba38072ad22965440e5d2d9c8bc31fce97b1924e456372913a65fc38a97fcb2a11b37eb95ed20b12d8ec7a66d888bd96cdd2c6f9d93b7f329cd6cb3b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-option@npm:7.22.5"
checksum: 8f5f2ba8bf66327a6ad4e44081563b45b3a6e1618013eb0932a4fdd5fe31102b5b31914030f38cefbfa197c48593b67a30e51acd1aabe06b2d2d7b7c7a54ced5
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-wrap-function@npm:7.22.5"
dependencies:
"@babel/helper-function-name": ^7.22.5
"@babel/template": ^7.22.5
"@babel/traverse": ^7.22.5
"@babel/types": ^7.22.5
checksum: bc9ee02542058fdc57359957437b53341b2333ed8be21e58760da33ee4e8c9851a2c20d2069a36dbcfc07dda245a64b929f9c732e25c997c8b5f519f95984f58
languageName: node
linkType: hard
"@babel/helpers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helpers@npm:7.22.5"
dependencies:
"@babel/template": ^7.22.5
"@babel/traverse": ^7.22.5
"@babel/types": ^7.22.5
checksum: 9b9701b50bc06f9bda8f39793a1f2cc9bc9179cfaf1bfdf7805940727c37f97a712e1130f8026415939d0745d78295770e9ef7c4b8d3e43b348d7053d6bb49f5
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": ^7.22.5
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 8cace59a919f7b2052a106a944c0142af720ba3d46feec2851a539e9ad9fbac872129a6c02f12f649ef1ba12c638a882ff2b8ba9e3c487c8cf8a7441171d71b6
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.18.4, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/parser@npm:7.22.5"
bin:
parser: ./bin/babel-parser.js
checksum: 718ab32b3076e5f9d3d4d1fa353b7c5744696b095eac3668c8d143bcabc3a9b4201d38c64a5921365405084ced0586b59b0541d2f28ca3dbfc36020fc737d579
languageName: node
linkType: hard
"@babel/parser@npm:^7.23.5":
version: 7.24.4
resolution: "@babel/parser@npm:7.24.4"
bin:
parser: ./bin/babel-parser.js
checksum: 5fbe1c5e0611de9d01150c437483e1612b822947dad66e1b4833386351b3fb7ceebe0287e78f38901be9017486b411bcd89ae32f55603690a9a9265f6dac4769
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0
checksum: f3bc38dc93921d7ee405cef3ab176a53307fc29cbf1133bf5e58cb4177389c6ca318076e42559f01f3687fae7e3f3420b5964a700aeb20d72bc05a178a2ca31c
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
"@babel/plugin-transform-optional-chaining": ^7.22.5
peerDependencies:
"@babel/core": ^7.13.0
checksum: bd9bb86610840f37e958aedc0bc3273feacb358b866eea4ea6677085a26e418f0b89128edf2fe39a49232d88380fc14cc3d94e4ab0d8151747ebf6122051ee17
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.15.6":
version: 7.20.7
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7"
dependencies:
"@babel/compat-data": ^7.20.5
"@babel/helper-compilation-targets": ^7.20.7
"@babel/helper-plugin-utils": ^7.20.2
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.20.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dd8d212b47dfe11b246db1bf68ce77372d9fbc8e9945a2f42341af6b1c9ab2a986c561dc4f338ab3130620f6f934a3e2e832ec3596df308ba31c702179735e7f
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: 57a1e11de60292dcb533828e6768c983bd483e2a90aac4afd4339e5164b4e54862c9adb7437a2ea6375c63ee23a10b8e20607a78a81b3c4c9334f2abccf84d54
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.18.6
resolution: "@babel/plugin-proposal-unicode-property-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-0
checksum: 6c21a7c4194d13d6ac85618ad47b1ef66b1cd247d46dd7b48ae3868497a90ca939742f85926114af6f325f99e523c48f85346bc0efba4126840b26696ef6bdab
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: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3023dec8acd42e0b691d9cdf21bc6931fe3e3d53c2231bdfe3eca3afeab168723f7315991550a163748bc49dbcd3c95632b77ec56f5e1d89bc5029cfeb7f0f7b
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: 43bef611dd3912e3adcea1bcb587eaba1b8c8f24dfb134f191488e3521453d4f0a36408e6a3e27b512bee6e1b569c889db31a270d5576e9c34a80326bbc6bd7d
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: 134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
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: 832e007319bc5040818012d51eb91c3ad4c38a1ea696e9a9805df4d601d8c4f061032cb61494946e7bdaa5db0422a6bb6f39577cd0e5c8323b6bb2c364406dcb
languageName: node
linkType: hard
"@babel/plugin-syntax-import-assertions@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b74cc3fceae2d480d3a768cfdc114c179b65c0f14cd3c3fb294154bfaa5fc6a1b7b99cb415f93040d9a1a5222cd01dd05033ecb5724cfd62e2b7b5fe60a7bf32
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c7af258da6b2408c14a08ad6109ab4638e22b12999fd80e40cb4e05dde20ff5e7426ffbfade1999af9ff10e4f2988c7d61c85a383b79126be1803fd22ec6e9cf
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 685ee8f0b5b675952e02e1cabcde4d92638918a66ed515b2663e2e0b2246210a0768325423d5642f8687653a449357826675ccfcb712676be260a0ae13313828
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: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b82f717707d278e58d12649932bf3327923361f051cd4517a5b63d7ebfe39cb6cdfb37aa199b5a441db305301a3c8de01c946d25d1f4c4ecb94322a23ac9e73
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: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
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: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
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: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
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: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
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: 1f987725a8e705c255bd3f47d4154445ccc8706c021e4abd0e3ac28bd2ea15f2dd9f44a4db04ca476909c86a366c737a9fcd808a38cfd84ee670c817ef05207f
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 642baff7c2150f146aa2ae94f8fa93f8aa81f5d82731241c60054037938cbde8031898194a216ec567af9b35bc4f394be3cd87d76aea39c8e32d68927ea67601
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: 6011106025036ece54b0f092631b01c3b6df505819ef2ec1b8df5cde2e8333140ad396e47fcbb598ba6d812e40282465a8552be5d44fda772dfe3c060865fe10
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f40f1a9962959eaa1245a236e5af5e8b7f23635f12c56a23bd636730736b562d6483713ceea1f1c83d9ba8649ed9a1dbd0cf0bb2439f94c2d542cf5916dbb965
languageName: node
linkType: hard
"@babel/plugin-transform-async-generator-functions@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.22.5"
dependencies:
"@babel/helper-environment-visitor": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-remap-async-to-generator": ^7.22.5
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f2803ee7c7743ec85134a2a5cd608f4701c7470e88987ff0cc26d18e4e3b3f043bf165148445b8514a4e4d2b55b7c8daaffaed24bfd6c19f0dcbcfbde93f0ddb
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5"
dependencies:
"@babel/helper-module-imports": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-remap-async-to-generator": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8853e0603ce7119648b280136ef8e6f62e26cd890845f9107cdbe094a854e952d5f43e083715f30c33d750ec36b4d949018385aaa285ce9d14d653443e9e2093
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c848890cb50ce23b9471f6a43b985321c6ee87371fd8d7aafdae94ab491ea90c7d576d72661c2b20a5040feca7486e99c02482b54c392862b04d03982d118602
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-block-scoping@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 503956819110ae9208e37b5f9cdecdc3386d94a629a2bcbc8f89c9cfb2140968ef2091253d47162410fc659b9f46c2bb2c14b34153fe02c3323fc50bf8620823
languageName: node
linkType: hard
"@babel/plugin-transform-class-properties@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-class-properties@npm:7.22.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 30e7df3bb5508823bd1e4bd9024b8577b0477ce3d36a48747185c9b65094ce1d987a60ad3d223febd4bf645374546d3427613c3693d1e50e5d9b237644dd88ff
languageName: node
linkType: hard
"@babel/plugin-transform-class-static-block@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-class-static-block@npm:7.22.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: bc4c87700e6cee75fbdcf0f10630b7f35df60dcdcefdfe5ee79c00e41ab7ead57215d6b10323757a3408657cc951ce49516b0fd208d55f02d4f0e952afb30a14
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-classes@npm:7.22.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.22.5
"@babel/helper-compilation-targets": ^7.22.5
"@babel/helper-environment-visitor": ^7.22.5
"@babel/helper-function-name": ^7.22.5
"@babel/helper-optimise-call-expression": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-replace-supers": ^7.22.5
"@babel/helper-split-export-declaration": ^7.22.5
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ecb7b76a23c2d3a167409a269c83b0757b4964abe3947f987c97fc8f97f69be2fdc22a779fe4d9fc0cefcf22f28ab94337ee8c147689aa3be1772dae7c2674b5
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/template": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e680cfde7715f8eced2d0639f7bd2c77990308fc3022483efdc7751222fd3a4dc03f013b27e3e7321f4fe74eb64eb8d2c0b49a0a0a71177b03712fe4457b67e2
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-destructuring@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 51a7c763ccd678c63487be8e978be4e5eab4abd2c3c9e4ba6714b0248c9753aa8121b6484214ba914ff512cc237b6ed67397d65be147e20a5ae9368cb948b695
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.22.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.22.5
resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 659501ebaf92efd42aa8e322ed94ac7b84e23adca8847db65583e0dc391bf7aebd03155114d0664a39b30d5fedcde1728f651dbdb19417d7ce9d473bbc4122c8
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 52ed01539c55a97324497ef0a54014d6e3d4ff35894ee814faaad9881f70856a6db94b7ceee3ebbf3b92b6bb11d3b42fb67dda515e187c53d569772bbbd4636e
languageName: node
linkType: hard
"@babel/plugin-transform-dynamic-import@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01c80bd9d4ad4707833a51198a70db4aaa79203cc8db465859c395c57013ebf1fbfce9a25823f5fb978716b11d074fae749a3ac7c75690c35b2925528c44da02
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a10dd214f63b9a89f0b5731096fcfca6fb01221fbdc83084e8de25ca5c24fa9afb967aebf55aa79678ea4916fc560c877885fe3b397ce9291349816eb9ec72c2
languageName: node
linkType: hard
"@babel/plugin-transform-export-namespace-from@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2c013b2343dd421a49b9874977bc1025b542104be4fb7e3bbbd70bf8387b4e05542faa4a317218327fb5c54fe2216cfe1b7df5fda18202da22792cbe3df97b89
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-for-of@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 02aac37c15a9409d9b1f82d04c2d1370116867157614eab8eb723f771aeecfc5381ff3085fa29bfdef47c71afa471d478fd1b58b94b661111b25b57ccb7031e8
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-function-name@npm:7.22.5"
dependencies:
"@babel/helper-compilation-targets": ^7.22.5
"@babel/helper-function-name": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c830968381a5cde1f6a8d2946e0e7f84ebd3c872577a15dc9d749fb640e61f3478fa584097e8f44b8de2ccc453475b2c57490820e03b77685373c688c0f36cef
languageName: node
linkType: hard
"@babel/plugin-transform-json-strings@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-json-strings@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7afb451c187789a7c7a5fea53be72aa3b29bf499829e7cfc1796e03dc3e3f81e861c480193d3cbce2ab92d29839b31ce2be3d4a1b3b8d05f93945c33c47be547
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-literals@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: be37731dc2738b5f29e0f9ce639521c0c6f210cba3bfc33e9cad794139b8a03429bfa6104dea7caa6e16b18410fb17e0c47ac7a096c0115865a9df430fb30c48
languageName: node
linkType: hard
"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3eba6648532524b6c7bed2f8ace555f4cd23033da1831c98f7be6637eaaa5bdd26b33dc6573324b6bceb30d3bb1ae7d0627edbff0af5583cd34fcaf63ec326bc
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 728cbc3b343dc7ee0f72708586a69ca275b1dab039490dcb0cc5b1440504db7cf1a0a9562cfb7c9fafa4787abf31c3ba0b5f46227be323e2432b22450766bd0a
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-modules-amd@npm:7.22.5"
dependencies:
"@babel/helper-module-transforms": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dd22bb4428e1c01944fff2a4e2175069be4d5a446ff7d355bd8f4113cbf694f9f665afa1cd223162880a80971aba0f422146e1366904788d415cd47e94fc0242
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.22.5"
dependencies:
"@babel/helper-module-transforms": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-simple-access": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 81ca83ace66b6b41f92db4cc4090d37c7f66a67fef4d93450764d71dc49c19b7bf3d3b1cf6b77118124849095d610d72bba061c58a6626adf7a9b3914787a85f
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.22.5"
dependencies:
"@babel/helper-hoist-variables": ^7.22.5
"@babel/helper-module-transforms": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-validator-identifier": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fd5482b0c47db028d846ed6e1542471f196fe443546facd7b62bfb97dfbb7060d7752279a32d9da4d9184759646627e5e43e9d9bc6c485e7df7d77998c0b7766
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5"
dependencies:
"@babel/helper-module-transforms": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f2030775419df34f8d469b92ac676e8e0e4d40d113483b73fe5c24f69bb33ee79da3a177ca2c55af7ce65021594507f48bbab16a315738453372a2182059ec6b
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0
checksum: 39804c7e523716f29a4021e4cf16c62f25c9219fbdbad7bae57c40f4903091f5e6d5eee0825a9e807b8b09d0e01a1ae6c32a85a60de8c1b98e720523ab1efe45
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-new-target@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fa99dcc608c71595a21aa315add3c049165fda60edc55aa54f0519856966c69f3625adef528da26da460ac6fc8111d34b1305a42efcf0d7db0bbec7e6791f8d0
languageName: node
linkType: hard
"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5a68b6a6680cbc1c20bb080f2b0d988a72db7fa6986101f8fc32989133de2ebcdf279643d85286776f2991120beafc06ae789f95316b1872538401776e28c54c
languageName: node
linkType: hard
"@babel/plugin-transform-numeric-separator@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d80c21b47c2643706824a27fe39b995de508e8191b8d34a4806a20bfd1151ae14bea3941da81aa53d62d1b1f7f2617f2637478d38b6969e603a865156bd7f93a
languageName: node
linkType: hard
"@babel/plugin-transform-object-rest-spread@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.5"
dependencies:
"@babel/compat-data": ^7.22.5
"@babel/helper-compilation-targets": ^7.22.5
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c12e9f35bf1af06aa654d0f071b1e8fdac7102549ed74426f96c8574f8d833db6d94b54d3dc06a00b15d320294e8fde83e013e034fe7cecae7a0d8f418a429bf
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-object-super@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/helper-replace-supers": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a76a2356c623d331dbf4a7010eb560fc7a71ab6e8dac8576f49d4f64c55a6992b93e42b364224df73c292428a8dff0918d9f8f6b6215b80ea3ca28fd53b8310d
languageName: node
linkType: hard
"@babel/plugin-transform-optional-catch-binding@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies: