-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8535 lines (7690 loc) · 306 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: 7
cacheKey: 9
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.1.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 468104da656991a578ac6c9e074fe9e6a810c37e90106a738464c971a9cea37ae29c3752c8946f884a82da458597fdff57da70c4fca3fb560d29038132d2d524
languageName: node
linkType: hard
"@babel/cli@npm:^7.17.10":
version: 7.17.10
resolution: "@babel/cli@npm:7.17.10"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.8"
"@nicolo-ribaudo/chokidar-2": "npm:2.1.8-no-fsevents.3"
chokidar: "npm:^3.4.0"
commander: "npm:^4.0.1"
convert-source-map: "npm:^1.1.0"
fs-readdir-recursive: "npm:^1.1.0"
glob: "npm:^7.0.0"
make-dir: "npm:^2.1.0"
slash: "npm:^2.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 734d70a2ef8dffd2854ab1196c0fe8481ef0cc70227982179ccd908b57d31d50e03f1253d373650a2459ae5f3368449c694a2f18d3b810e4a27f5f7bb8741426
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": "npm:^7.16.7"
checksum: 605f3530f232ac4906c19c768570739770679b73568dfc2421a70e4fcd2fb6e0e44cf8b72db058b96a4511c4dca8c3ca5c191e6329a56be6dd175d32abe3aeff
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.17.10":
version: 7.17.10
resolution: "@babel/compat-data@npm:7.17.10"
checksum: 7235408332aca4b5bf64f378a504852934334e2d01f6d28b33fb59ac732fb966153da5831c85f491ee2c57460a3ebe35a01a103abb618b4972d71de4a1af7b04
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/core@npm:7.18.2"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.16.7"
"@babel/generator": "npm:^7.18.2"
"@babel/helper-compilation-targets": "npm:^7.18.2"
"@babel/helper-module-transforms": "npm:^7.18.0"
"@babel/helpers": "npm:^7.18.2"
"@babel/parser": "npm:^7.18.0"
"@babel/template": "npm:^7.16.7"
"@babel/traverse": "npm:^7.18.2"
"@babel/types": "npm:^7.18.2"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: aeaaeb77dc2f1a590b17703584b64eca7496a67a5b53d79276f2ae9643ae6b11dd2b1b198eb17449af20a65c2ad35738f85d378be4563a59358b5450ae57b003
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.2, @babel/generator@npm:^7.7.2":
version: 7.18.2
resolution: "@babel/generator@npm:7.18.2"
dependencies:
"@babel/types": "npm:^7.18.2"
"@jridgewell/gen-mapping": "npm:^0.3.0"
jsesc: "npm:^2.5.1"
checksum: 2396f87eb0db79779379d00eb5ab6baac8d39be580fab456aa13d8ab76caff71ead1e073497fd1700a260f0165924fb73e66def98a27648124b2b857fd484648
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-annotate-as-pure@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: b23bafa3f7bd9aeebdd0a4acfd6e2fb942eaa0ea1beb1ef000c92b0baab4209a5b95b2286a1c15f56feb9a5a41e5ca9dc3eed970b4861f5b0e4d8b0a8a930690
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.16.7"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.16.7"
"@babel/types": "npm:^7.16.7"
checksum: 0d4403b326464792927ff23d60859ba22bf54d523e724e1794d2a664b77673717405466af5169f355266138d333a38297378b44622459e8eff149c39bfe3905c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.16.7, @babel/helper-compilation-targets@npm:^7.17.10, @babel/helper-compilation-targets@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-compilation-targets@npm:7.18.2"
dependencies:
"@babel/compat-data": "npm:^7.17.10"
"@babel/helper-validator-option": "npm:^7.16.7"
browserslist: "npm:^4.20.2"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2d45d8955357c1c9891dc16763c366fb684b9d385fa7e9a5caad9c0f481667836a9b922359950529984e70523efe0a720a88ea9800f07ac889d8db1fcb319560
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.17.12, @babel/helper-create-class-features-plugin@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.18.0"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.16.7"
"@babel/helper-environment-visitor": "npm:^7.16.7"
"@babel/helper-function-name": "npm:^7.17.9"
"@babel/helper-member-expression-to-functions": "npm:^7.17.7"
"@babel/helper-optimise-call-expression": "npm:^7.16.7"
"@babel/helper-replace-supers": "npm:^7.16.7"
"@babel/helper-split-export-declaration": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 48b552935931578a4dec88257c895d4658f32fa41fe8ce87d20d3b270fd704e9f04924155db789d31b74a43cce53e1153494b4b1c11a30b7de5333698614ce48
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.16.7, @babel/helper-create-regexp-features-plugin@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.17.12"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.16.7"
regexpu-core: "npm:^5.0.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: caca72ad7056c1a7317b2779f565849b9bff6f8bca2bb1a67ca110d5c41397c446de385a50b344f5436b791b567c7a6d5080019dc795c96c5619ef981628a732
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.3.1":
version: 0.3.1
resolution: "@babel/helper-define-polyfill-provider@npm:0.3.1"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.13.0"
"@babel/helper-module-imports": "npm:^7.12.13"
"@babel/helper-plugin-utils": "npm:^7.13.0"
"@babel/traverse": "npm:^7.13.0"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
semver: "npm:^6.1.2"
peerDependencies:
"@babel/core": ^7.4.0-0
checksum: dc1c76590613514009f9bae1e0c9fa8f0e8c46694b616763e3afc329dc2084db8c88e2e99e1a06b10029426e51c5b3596778debeb637932b4bc9f5be1d9a195e
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.16.7, @babel/helper-environment-visitor@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-environment-visitor@npm:7.18.2"
checksum: 316a685c99af00a8a61f37dcb4c58a7aa0a20a68facc82ab5444edd0f43c208fdf8a0719855925764ef742e9e52382e761d9c7ff8e2574260ea317a5684f4573
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-explode-assignable-expression@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: 487bd65a06b29b3c4ef3bd2e57c641639b8ae2726e842a6780910e5faed1cc20dbd4cc5cf6fd6796c8b21595af25fbe2d9c6df50be3396c22a8faf80819f48f8
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.16.7, @babel/helper-function-name@npm:^7.17.9":
version: 7.17.9
resolution: "@babel/helper-function-name@npm:7.17.9"
dependencies:
"@babel/template": "npm:^7.16.7"
"@babel/types": "npm:^7.17.0"
checksum: b5db19701d8ac43cd2dbae0aabe7ed31fe7e255db96201778731bb311daf2f42e20b3bed18e6c24ba7227d35c3e3f59852211b96c7782b3baf7c518c959eca1b
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-hoist-variables@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: 1e03d064d199d761fab4b4f7337adb0d4a6dfa863f7732d852d8fa2f0969b1c0e91fe2882bbd04e6cb5ad69690ac8fa20afeaa15702946133b9d7e90354094e9
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.17.7":
version: 7.17.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.17.7"
dependencies:
"@babel/types": "npm:^7.17.0"
checksum: e770b74425b042ed7570b64a2a479c55f0889038372723970b82aea19991c7b20ad5dbd03e66dc57ea667e3dcb18a653c69dcd99e11cff1f114fad64435aec5e
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-imports@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: 1f16f73f6c221fa401b9342884c331f560946a75b8ed66d45a1e25411a73cf91d79fa8ed337a3dcfb1ab9ba4178fb59c1543ab509ba5396295c5e5a08c373046
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/helper-module-transforms@npm:7.18.0"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.16.7"
"@babel/helper-module-imports": "npm:^7.16.7"
"@babel/helper-simple-access": "npm:^7.17.7"
"@babel/helper-split-export-declaration": "npm:^7.16.7"
"@babel/helper-validator-identifier": "npm:^7.16.7"
"@babel/template": "npm:^7.16.7"
"@babel/traverse": "npm:^7.18.0"
"@babel/types": "npm:^7.18.0"
checksum: 2c2ddfb4aa92253cfbfde6dfdda766deb3455ba124427c0fef01c531ee09705fca531ac3097974ac2b929fb3fb52a6df2948f049078430fd15d17a627f209605
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-optimise-call-expression@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: e16f786d95ab32726b7bc50bcb70632fbc41369acbfafa63880dab1a8b3533ee43aa3b0abca482ce91d7cd8be1f665e0f0d900823693c77a41731db5159dbcbd
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.13.0, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.16.7, @babel/helper-plugin-utils@npm:^7.17.12, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.17.12
resolution: "@babel/helper-plugin-utils@npm:7.17.12"
checksum: 3d1622d91467dc2e370ca91272235c9ec873c8d53fe3419cec6f064acfd2e9588ddf267b05452d181912196b3cbaa93020b7ea5302cdfa48652a07034682f2b8
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/helper-remap-async-to-generator@npm:7.16.8"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.16.7"
"@babel/helper-wrap-function": "npm:^7.16.8"
"@babel/types": "npm:^7.16.8"
checksum: cee8c12161c5683b6db076cdc88c2bedffdb512f5f0fb13199820a0b4731bd359e6e45432ec74fea17093b85d0476d110d080d1d0f1d8fde2b9fafe488e7eaa8
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.16.7, @babel/helper-replace-supers@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-replace-supers@npm:7.18.2"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.2"
"@babel/helper-member-expression-to-functions": "npm:^7.17.7"
"@babel/helper-optimise-call-expression": "npm:^7.16.7"
"@babel/traverse": "npm:^7.18.2"
"@babel/types": "npm:^7.18.2"
checksum: 0d0b40b712f74efd86894180edeaff00288bbc19177a97d6f7bf73a13e9fa21ede655b84ba4d300119d2c639e2fa8dcf0c7ce946c2b5ffe09562b4491303f834
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.17.7, @babel/helper-simple-access@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-simple-access@npm:7.18.2"
dependencies:
"@babel/types": "npm:^7.18.2"
checksum: 37c8acc03f9e84bd8d9d6b56509862f132416259500a48eb4530e6af40eecd9ee0b20246078784881294b1cf03679a8519f76a4b654769be636b9dbafa9c42b4
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.16.0"
dependencies:
"@babel/types": "npm:^7.16.0"
checksum: a017d68f9687ae82f71f48c913c7a6255071390c24b1f9b008e61afe5f5c4e1c537ffac0e6ad873424d2103334065f7529eb76c5e3e1fbfdeb2568929bca933e
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-split-export-declaration@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: 56bddffdda8782a7c2e8d21314775a288b98d7d5aec39b217c9a636723e6feb13b945fb3c7b5c0002c8aca3c6639afa1c06afd96ab30830c71a42bf6e67aa35f
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-identifier@npm:7.16.7"
checksum: c4327f7ed94b02f8498cc27e192161be20c3bbd7e584932adeabe00e033ef58dc7de8fb1aab65ba552cb7d52623de216a2871982421e7aa9790a1c30631d38d4
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-option@npm:7.16.7"
checksum: 1306b173616ba96033947e6f108d96f334c26b6c7b0312781934f47fdb64717f220bf2c471ab1408aa92d6b6723d50baa697594993f2665962a6096613aa22dc
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/helper-wrap-function@npm:7.16.8"
dependencies:
"@babel/helper-function-name": "npm:^7.16.7"
"@babel/template": "npm:^7.16.7"
"@babel/traverse": "npm:^7.16.8"
"@babel/types": "npm:^7.16.8"
checksum: b41a136e6fba3aa2f40f77b334980f43e31ef6d7072b281bf0f1ba96ba1c59a3d37062af5fa7d2f6c3a9092fa6cb3514ca25cb4a4f0e558cf334e1752a81d856
languageName: node
linkType: hard
"@babel/helpers@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helpers@npm:7.18.2"
dependencies:
"@babel/template": "npm:^7.16.7"
"@babel/traverse": "npm:^7.18.2"
"@babel/types": "npm:^7.18.2"
checksum: 36063cff50cd14f7e6abde6d290efcc832bb6c0ca88cd50b72c3c62c04d70b146c118a3f26a52c3707c87a07b9dca152298019d0d6d96d3501d6446a3bbcab18
languageName: node
linkType: hard
"@babel/highlight@npm:^7.16.7":
version: 7.17.12
resolution: "@babel/highlight@npm:7.17.12"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.16.7"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 2e073b7de7943e3e66af4bfaec32287aad50b767b3cc933761ea647ae7f4797b203f8e37a1f52f2910f15dadbbff80ae081e995c2ac47962dca827450c6d530b
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.7, @babel/parser@npm:^7.18.0":
version: 7.18.4
resolution: "@babel/parser@npm:7.18.4"
bin:
parser: ./bin/babel-parser.js
checksum: 63c47537c55bf18dd8fee74738d27b9143cc83763e39b450cad41eefe71b668bbc61b8d822b4d8e45f9449124845a2d48176cd40e3e963fae91d2361c9b85ca0
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 62624003e8839c7f784e2cda457a7c95c2a48152533425b121d5d0115c19d1343d7498ab6574227cdfb60cea2363af6ff0c8d49f394e2a44dc22ed3005b5f5a5
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.16.0"
"@babel/plugin-proposal-optional-chaining": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 0f0689c53eddb77962a950dc55cb40ba2be32e1f05c6bb55e4c26fee751a181b668c5fad9350df3d99a9a5e2306544b02942923045c942242fc84652531dc2b7
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-remap-async-to-generator": "npm:^7.16.8"
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 872178c07a8ded495bb6597dbaf062140418e20ded95622c0414e9d461d3ded1c6e09a77cce4b35ee6511fb448beee4c0c0eb6e188d9f40a28e35b4ba93a2d7c
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-class-properties@npm:7.17.12"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.17.12"
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d4c8cd6093378e0a3140fc0394729c08d1c8167302ac1685d660c5756f4e341ecdb5e50bb3404d43c083f9e22072cc12220a8167038405ae047acfed16905d31
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/plugin-proposal-class-static-block@npm:7.18.0"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.0"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-class-static-block": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.12.0
checksum: ae79b51f069b4f0cea2e1d01b1ba0798a7a3ae0617f67303bd907f7ee8cc09bec6f48d8bdc4ba64b12eb286ea6ec79f8483b5fa5bb5c5ba4da1ccb9fd29dd6d3
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.16.7"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c76a8e1d105360b07e09caf93714cd72f928b89bfa144e0fc0037d25a6801625457910832ef8371a348dbc657fc13036b331e5feb4cb24c76ac74e59228b37bc
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 87dc10eaacf1a15596607027b300e946fc2a9dcc44beca66c21dc12fb39db9ae6e3697b2441c726470a927b75811fc3c895ee2f62d9d33681ca02c329323ab69
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-json-strings@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-json-strings": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 72272c35adc1549117b949de3ec9efb757daa826569fd5537860ba1c827cb8cae713977c1669e6e5e6fbe01f24d009376b7157c999962cc1f0b4732662bbee10
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 23f944904955deb63ff34547aaf7af937502612d15b1e84838a55bd71828616983979bda170c92aeb077b76b772e1b834526be1cc2828df2a05ca0e71fed7243
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a5f45fbc4d0a256ca834528e5ae5f410c89c60f5892ba1ca8686f65ca418784bdc3fe1667e9dc360f48cf8bf2698861432b187fa8647f4b39f3ba9dbb6322ca1
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.16.7"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5757346fcc7566321cf8016aee9becfca51975343f5298f530749478025784e15d87f9aefaea931b681506c0c68084c0ed70c86a8723d42856bbf48e4cf16a27
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.18.0"
dependencies:
"@babel/compat-data": "npm:^7.17.10"
"@babel/helper-compilation-targets": "npm:^7.17.10"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3"
"@babel/plugin-transform-parameters": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 25f39e42215d94ebaf3ddcc414dde6b8a33be5c56d1c3b07c28f0757b50de8a4e8a3c073d7b4cf0bb91ee6f515398917a606f1c049a85cdc60a99294993ef58c
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.16.7"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7160a8f0906ca17bf6686fd92d923dd8a7c30cf7f34457c5a2b4eef08f3ef2e6d3efc811266247c2bbb8e50a77258daa18660c83aeaae8b96e54b02555924ada
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.16.0"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c1f8f4079eb7aa9f9ace4a03039ea350e1874cd7fd491d59666acd36e9c26812ab9d2b6be15c56466619de2e93c6a5fd4335bfb9cccc9e09dd036404f360fec
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-private-methods@npm:7.17.12"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.17.12"
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0c1140acbb3f5bbfa61f2ba733a364815fb596e18033b354e55764d73336c247f731b90c0576c887ef681243c24bcbce708ed448e649d728e7d071e859b69087
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.17.12"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.16.7"
"@babel/helper-create-class-features-plugin": "npm:^7.17.12"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 349326e1b0a3c7c6bb7bbfd443ca52ed6272b637affe2e84f510e3458b2a9b0bec28e476d127693fa617a102d1597c7f61be314f8974b3c48e3c246709cb56d2
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.17.12, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.17.12
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.17.12"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.17.12"
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f1cc935ab6a03b4605364393f8785674b5f12e0f7a38535a9bcb7b6097c6b48f9f11f2ae702e1d2700ab5b822a21b8ac55c299326e5ff7d87aa65033d6a8f5f5
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 518ee81097d43f6a439cfe91c708cca9bf67a32f0ec6f65df3c34d8b1ce51b473f77040345684792c60ac89e1c78c0a6eacbc31592bc1d912f06e9e0c3f80716
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7c7ac943e411834cd015f0200f9edb17735fea43b9f58edaa108a05548b8eb3508458c5e98604ccad441b7d06a0e9b68cbd6d6c7e35065cba15f75e519504a01
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7a9d076a55d11a53bee2b2c5b05a827f0bc5e13b805d7cd801e3e39b4068b88ca6ed5c7ae7ed2df5259e02515cc0f095468bd8ad4f0609f32adf3abfa3d077cf
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a9f8be55e4182dedb4204d16c60cfeeda7ab8a1e01943799fca7ef9bbfad1a84a65b4f768649300203d8035cc1ff0c373d0c56a635305e44df90778b1c4424c3
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5552799d34dc934c8b7ccd796bd47f3d6e6413e5f863effdc1f3575bc14865e1737d6c48bf2ac80489c27d0e1240a7a19e38876853b67ab976f6c3554e2675b4
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": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 100efed7687c752a9cc37d32fa64e537838f2cbc128393b078b1d1894b4bd3a9055365a6249f0716710ee427377a0b00e9d7e9573f59842b797b727e3c90b402
languageName: node
linkType: hard
"@babel/plugin-syntax-import-assertions@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-syntax-import-assertions@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2cfa92a274da842382450017a33612857a18ba53b9a06294c0dceb9cc9e277d5a77ed46dd11647e40e6b13588c235a219814864a510728664901cb6488dcc50c
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8513fb2d4035e9149f2faab57908aca2a354fb05deecaa681e659178c749e01c81f703b4c5fe6f4ce816e57f31ca2e9b625a5b43d29327ffce3d310722d958bd
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d21aa96f15268f923f70e49155059ca220a7f7da3cec5072121fb8342527fc9e5753455cd61318054a170b1ecba13fd1891eb2c67f28a1c335af5bbaf52b93d0
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a01f61a5b0f429dadbfb58d979c550c496ead9121282319406398cc76f7a6dfb58c20c9782b6b1b1b74f938add3edd962a3f699bf407deda003f84708b94c7e
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cc19c595a643531cdfa41eb9d5941ae1734049d9fdad127ed262225a657d3c2dce95aeb3e40019e6f1b0403e1656fc6170b43c2fbafceab0d6fa2502a62c91d8
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 32689c162862617fad6bfd12efed7523bf9985d396cb3eec12ef1fc96ba225600d3ea30c22051bb21dd8c8fd156fdef366e44150c3c19ef7eb7a85903a9445b4
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 868f8cd0c2e10511056a089dab2e88f329b432b81766702de1d8970a785fdae32bd022a69359a7ca6fc58d4767418b871e88fe99ab4209afbaea5e62ebd82ada
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c6277360d55c4b4dbaca9fbaf279fe2783e1c0cc1f8edb41feb6f14d5b7ce1f25ca1ab4cf3d0e78411a16d3ee36d4ffd3ee30d07dbf47b67880cd707492c3158
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fd81239a2b6c02b3f8cc2abc94db405afb8292133602a9d649985f40ca92153fdfca812dae6ac273a5bd7752c1a46cd4835e5a8bcf3541388d4ece480657fe7f
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 944728155d4fc2f5dda9e81cac64a773f2b800cb19d2c9361d111a6fccb354dae8517a83bfc5abf5d557b10db2e759d1b48cc002f2330c46cff09339b76a987b
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d62a60c7ade2ee033c6037d1fbabb9802c8e03a79e19d33e2fb597f85b2a1a90f6718cdb532252d69ae005e3ac3b1fd29860c1858f8463c3700a81d681967473
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.17.12
resolution: "@babel/plugin-syntax-typescript@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fadf311aca198b92b173eadbe465a5e476aa13db97e7b4518348b20c2d04fb2e3c4cd824cc0aa3c95cca8e1411eeb17214c2e33fa07fe042da90ad73de5cda24
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-transform-arrow-functions@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2106f2535b05940ae09cad9b077f53b6f46f1df1d40b8f719ca416fbaad508760e7af68a864a84b4a0234958beabb3cb235fc03cf54abd894b296bdcd9968492
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-transform-async-to-generator@npm:7.17.12"
dependencies:
"@babel/helper-module-imports": "npm:^7.16.7"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-remap-async-to-generator": "npm:^7.16.8"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6f45e79db4e92cf219f91490f68939d04375c1c23eea4e82a79fb0d179ae5631b52a39fa541bfeda0080b220531450a45e9daa03189eab4c7c17e148cc46c21d
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 043977fec49f5b4e81426a4b883d4ab57dbce53ea5edce3c07b0fbd90ac1094f26ad52da234e3e7455ba4255c6203b46e51aad5765f542232f9773db5c1c7283
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.17.12":
version: 7.18.4
resolution: "@babel/plugin-transform-block-scoping@npm:7.18.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 05e89755e415986dea7cd58170fa2ac059d809731037f1af45fb9e107119b98ed7b4fb83694626da77a2421b32bf62d39aaa9b8938f1a7ed3463152a93843f98
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.17.12":
version: 7.18.4
resolution: "@babel/plugin-transform-classes@npm:7.18.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.16.7"
"@babel/helper-environment-visitor": "npm:^7.18.2"
"@babel/helper-function-name": "npm:^7.17.9"
"@babel/helper-optimise-call-expression": "npm:^7.16.7"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-replace-supers": "npm:^7.18.2"
"@babel/helper-split-export-declaration": "npm:^7.16.7"
globals: "npm:^11.1.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 246e7ee2241fa9add73921fbc3d1f5df4be0c58680fc76a16697a7c24f71f09787452e5a94a1e57fdcdfdf77a37a0091ce7dc648176cd2ad1eb5fd983c43ead5
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-transform-computed-properties@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b6d25a9fcff7625dfbc82cce80f684e6649b6eb8463df49f8b799c377d5f13ec18fa6ec122e6d2adaedb4e9825bfeb048aaec3e02e0e053412b4bafd735e87cc
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/plugin-transform-destructuring@npm:7.18.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 481f45361ac433dbc526ea4dabb533cbd8415fba8d5fd4182aeabd11954fe66084b3b364a238e1710467d4ec1138b269042490e12ec0997503755999702239da
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.16.7, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.16.7
resolution: "@babel/plugin-transform-dotall-regex@npm:7.16.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.16.7"
"@babel/helper-plugin-utils": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c56bfda44554bbec78d2a8904623bbd850998d3f38b8683a98178031e6630f8f334262ec7992dd0c9173b4cd5632db9c28b32a0d4fb7d312b2e8298623f9cbb9
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 17d5296eca3fe554c892d144d7322f8e0044e9d3bcbe3d4adf953854307f0115595aebf1917be4c11dfa78aebf851dbad87c6a9b86aff360870887ea5e534869
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.16.7"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.16.7"
"@babel/helper-plugin-utils": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9e53e60d5654d8eecad12d45eb6acef821d90ae3e9ed670e1d693f54d81aa1a3e8874a9d2d3b5853d7a6c0db3f80f1d6fb08cb2277c733805f77e8651b64b20f
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.18.1":
version: 7.18.1
resolution: "@babel/plugin-transform-for-of@npm:7.18.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bfa86a699611db295f64c5ce1034c9b26f8a67a10da3f3260852a287f3070d11b09356c71fec768af7c430b1d9bd19c3c1bc6f39699d8077e65a0037f049af7a
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-function-name@npm:7.16.7"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.16.7"
"@babel/helper-function-name": "npm:^7.16.7"
"@babel/helper-plugin-utils": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c26986a071494a6686547e016adace2849f9b81cee4a8460ce04d09c37b8ea49ac7c2cd51e72a55ab0f0795e8a88bfdd133253fcd7fa20c9b2519b95f33d0006
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-transform-literals@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ffff3432e59c36279d352c9b3de16cc63b6641b4843b80c71cc6efcff0d7debb386c70a6460e5d9aae533648b3a8461b677a4df5c197f7683041e2edbc6fa267
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 738810535d923f1dffa2c4664724a840b6801bbc930e256956a97d5e4a0a17c8eadc0a93654b5c7fb48cca99c6c4568b8b53acfbc28a888b8b31268abe0f32e9
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/plugin-transform-modules-amd@npm:7.18.0"
dependencies:
"@babel/helper-module-transforms": "npm:^7.18.0"
"@babel/helper-plugin-utils": "npm:^7.17.12"
babel-plugin-dynamic-import-node: "npm:^2.3.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1e1677e83ac93f0fb9ad8c33ccf5256df7c18f4ac6d23f0e549b3716c89472bb13664cb7dec109026c76bc91158f7a9e41db220b78c97749db4a819d283c7d8e
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.18.2"
dependencies:
"@babel/helper-module-transforms": "npm:^7.18.0"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-simple-access": "npm:^7.18.2"
babel-plugin-dynamic-import-node: "npm:^2.3.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ff017f16800ce16c5d5d0c9a1821d2b2f654758f5f1f1282f6b3807cc2e74e1895583310df50241b3c24949a44160688fde4a087105ec927e81067614cf95a0b
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.18.0":
version: 7.18.4
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.18.4"
dependencies:
"@babel/helper-hoist-variables": "npm:^7.16.7"
"@babel/helper-module-transforms": "npm:^7.18.0"
"@babel/helper-plugin-utils": "npm:^7.17.12"
"@babel/helper-validator-identifier": "npm:^7.16.7"
babel-plugin-dynamic-import-node: "npm:^2.3.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b665dca9700f3675fc53a6cc4e451da24b2a1f8a443d59f3df207288e6074b09a6a8d97c833d3db9c392395897080f80d79ee78425763ad982642bdf8cb417d4
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.18.0":
version: 7.18.0
resolution: "@babel/plugin-transform-modules-umd@npm:7.18.0"
dependencies:
"@babel/helper-module-transforms": "npm:^7.18.0"
"@babel/helper-plugin-utils": "npm:^7.17.12"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4f12e9735318ac5620e484f7b03a03be9ca8a261731c66330def87914114ae37cda3f9e46a58b3157c25b85f3b265e093dfa7e5cd5edebf171f8eadc15b7ef95
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.17.12":
version: 7.17.12