-
-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathyarn.lock
More file actions
4221 lines (3799 loc) · 154 KB
/
Copy pathyarn.lock
File metadata and controls
4221 lines (3799 loc) · 154 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 10
cacheKey: 10
"@babel/cli@npm:^8.0.0":
version: 8.0.1
resolution: "@babel/cli@npm:8.0.1"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.28"
chokidar: "npm:^3.6.0"
commander: "npm:^14.0.2"
convert-source-map: "npm:^2.0.0"
glob: "npm:^13.0.0"
slash: "npm:^5.1.0"
peerDependencies:
"@babel/core": ^8.0.0
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.js
checksum: 10/455d6e2507b46286a7482afed35d5cb36e7cd79e8bcf5204ac9804df149196500e9a2afb0a00ea9c4fd9e633be194554eabf864b764806babdb7633d070484ad
languageName: node
linkType: hard
"@babel/code-frame@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/code-frame@npm:8.0.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^8.0.0"
js-tokens: "npm:^10.0.0"
checksum: 10/735b64f3ae476ec1841be118f79639d2ec99e2cc391a196b0160c53e4ed52253ee5c2170da510c00ea0f23faa26636364052ed507bfa4cd8caea87c5b1e8adad
languageName: node
linkType: hard
"@babel/compat-data@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/compat-data@npm:8.0.0"
checksum: 10/83b1776ecfdaf02559a4b4fb2f4a2c5e6ba8a2b41bf898807caaf863379ee9c8e91c163de71e79d73eb68659b58bcb18cbcff9a39aae6f88c106af680619326c
languageName: node
linkType: hard
"@babel/core@npm:^8.0.0":
version: 8.0.1
resolution: "@babel/core@npm:8.0.1"
dependencies:
"@babel/code-frame": "npm:^8.0.0"
"@babel/generator": "npm:^8.0.0"
"@babel/helper-compilation-targets": "npm:^8.0.0"
"@babel/helpers": "npm:^8.0.0"
"@babel/parser": "npm:^8.0.0"
"@babel/template": "npm:^8.0.0"
"@babel/traverse": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
"@types/gensync": "npm:^1.0.5"
convert-source-map: "npm:^2.0.0"
empathic: "npm:^2.0.1"
gensync: "npm:^1.0.0-beta.2"
import-meta-resolve: "npm:^4.2.0"
json5: "npm:^2.2.3"
obug: "npm:^2.1.1"
semver: "npm:^7.7.3"
checksum: 10/def06f2ddcb0cf6872ccbd72742d21b16c4af1eee01b5aae800b4456e03ef50a3f8e976c09158b1a684d0c3f09b6c9a1c1bed65cc15390f0d8abbbe3c9516a28
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^8.0.0":
version: 8.0.1
resolution: "@babel/eslint-parser@npm:8.0.1"
dependencies:
eslint-scope: "npm:^9.1.0"
eslint-visitor-keys: "npm:^5.0.0"
semver: "npm:^7.7.3"
peerDependencies:
"@babel/core": ^8.0.0
eslint: ^9.0.0 || ^10.0.0
checksum: 10/f12cd202a41ea8a671a85a6ff7e96b6291033085af7cb5e60979429d3d845bda6f4bcfdc3449f5204fff5429772e72c9458b548b5698bac46b50b28700b85fa2
languageName: node
linkType: hard
"@babel/generator@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/generator@npm:8.0.0"
dependencies:
"@babel/parser": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
"@types/jsesc": "npm:^2.5.0"
jsesc: "npm:^3.0.2"
checksum: 10/8d9b801886b4bbe46b101768abae0ffa1c9435601a8788358331c115b1a38a7c5acdd0e8b85b4d0c00806b0b74a0cc0e75ef50647f7322ffa3646a238e1b5420
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-annotate-as-pure@npm:8.0.0"
dependencies:
"@babel/types": "npm:^8.0.0"
checksum: 10/686ed7f002e0810e675dcd449a1e158f93967a2a89997a96e9275a17fc85f55cfc986d8b44995c915dcbfd3742afe6317bac2dd1037f58aa3997345e77abcb7b
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-compilation-targets@npm:8.0.0"
dependencies:
"@babel/compat-data": "npm:^8.0.0"
"@babel/helper-validator-option": "npm:^8.0.0"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^11.0.0"
semver: "npm:^7.7.3"
checksum: 10/2814f178f119887abe5221fb6178f62f1adfec9561a915aa67ca65f5ece8d6f1ee83ed731a3e335065d579c1f3c73fc4fdbf83a70fa4ea0113b8932f173b2262
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/helper-create-class-features-plugin@npm:8.0.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0"
"@babel/helper-member-expression-to-functions": "npm:^8.0.0"
"@babel/helper-optimise-call-expression": "npm:^8.0.0"
"@babel/helper-replace-supers": "npm:^8.0.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0"
"@babel/traverse": "npm:^8.0.0"
semver: "npm:^7.7.3"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/97d111c4b06da821d4cbd4c8439b7ba9614faaf6a7e565df14660b9a2f8f39aae6b903c07c3f34288ff44ca1c8f95b782430f4ab7afce8a5a0fdd72af914d553
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/helper-create-regexp-features-plugin@npm:8.0.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0"
regexpu-core: "npm:^6.3.1"
semver: "npm:^7.7.3"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/b076eb86a3eebd24f122042636feba579efe523d92706b5771ee60b143174e9c5197f620343bebdf11f97503abbda524bd048772eadb0bf9fb1280f238b12c5b
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^1.0.0":
version: 1.0.0
resolution: "@babel/helper-define-polyfill-provider@npm:1.0.0"
dependencies:
"@babel/helper-compilation-targets": "npm:^8.0.0"
"@babel/helper-plugin-utils": "npm:^8.0.0"
lodash.debounce: "npm:^4.0.8"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0
checksum: 10/130633d25ec412c6fd7765e74e3d376d606e12a67d8e2c80ea23042ba554d63bf02ddd4af1531da64fb108be71dda7121bc057311b8824ef8b1775ac9ed4ccd8
languageName: node
linkType: hard
"@babel/helper-globals@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-globals@npm:8.0.0"
checksum: 10/dbb78c61e46c391d72dabd7fffc87a192350ec4e97314befa928cda14f32c77d30d70560122aec1b15bc287cfb59f03bbb59f061c856b7594abe00c9aa719855
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-member-expression-to-functions@npm:8.0.0"
dependencies:
"@babel/traverse": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
checksum: 10/ec4ab0494f3500a69b4b85034eb03e82941e2e0140f5608b51cdccb5586426d573939e06489714d7d7c0b6cb6585cb71fde7a8d51e1c0bb82dabf917acb094ad
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-module-imports@npm:8.0.0"
dependencies:
"@babel/traverse": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
checksum: 10/61978e727e2c26144aab354b18e532c28ef864fd2dd57088a45122a0e6ab13f3b5463a5777d0f8f4407b5de2963b1d2cac662d59875382baa9f69e57d747e1e6
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/helper-module-transforms@npm:8.0.1"
dependencies:
"@babel/helper-module-imports": "npm:^8.0.0"
"@babel/helper-validator-identifier": "npm:^8.0.0"
"@babel/traverse": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/cccf680dacfd8d961ee67a5519247a60bac9be814459894fd99aacbc51217ac6869b75844a48a2fb20d1ca0184a7e00f2998c74e87506f154d51f50b43b5e4f3
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-optimise-call-expression@npm:8.0.0"
dependencies:
"@babel/types": "npm:^8.0.0"
checksum: 10/8e2a8b469ad074143bc9478e642e16eca8eaf2ede042ae579c58308939e4feca2f56e341de2e7b6ad26fa0f0f7afd2ea6c7f2a8d42fcfc6f54fd057d790e8b6e
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^8.0.0, @babel/helper-plugin-utils@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/helper-plugin-utils@npm:8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/d9c8b9dc626640233a52d4fec0e31766a5dbcd5c9b799bd6e3c9efa6e73f0f8e389395fea33f00bce395482c2a4b99fa73d74c59720f3c8cbd019ba9ea82ad6a
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/helper-remap-async-to-generator@npm:8.0.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0"
"@babel/helper-wrap-function": "npm:^8.0.0"
"@babel/traverse": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/d5aa11701b7be55bb6327bbcec52e8c3c35c164d0f508f0c12648b235006a96456767ae5eed079d2b2bf57cb6ba73bcf7e33906048e5bf14d2055c49eaae6b72
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/helper-replace-supers@npm:8.0.1"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^8.0.0"
"@babel/helper-optimise-call-expression": "npm:^8.0.0"
"@babel/traverse": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/515a993ac7bbe831520e6683dc07a639aef1b228e1e504a80255211362f46aca2469ccbfc6e8b58a00ca811ff00ca4996c2dddb4496614e7a79b309a44a59950
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:8.0.0"
dependencies:
"@babel/traverse": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
checksum: 10/198db8c4b3edad40ff9712c537229ff8db8095b6a693ace916a50b9c94fdf7c61e795f848034ef47ef03c2c8a92c2e9dbce929511d5a5d2c69e61557f399ed84
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-string-parser@npm:8.0.0"
checksum: 10/3c38887284b8bd76d2c5865b4a4a37f75a0dd2740d34169e3f140f1c35c5efff5682e50cbd38c47b0f143a38c145b93864a7a156a203a234317824083ec742cc
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^8.0.0":
version: 8.0.2
resolution: "@babel/helper-validator-identifier@npm:8.0.2"
checksum: 10/175f09f4c370668d163123ad154a753df0642a9d6dff799af637bf882c788cfacfbd0b1656ff8f81bd99ad1028e6c1516c5aa5a810c28f41fe28d9c90f57dba4
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-validator-option@npm:8.0.0"
checksum: 10/12c2bf5457fbe1ff0701321b4e471420d46a94a2b10858042c7a96134894212ba04224021345c8572ed3eb7b536890deb842ccd7e5f655aa56de594529ec64d0
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helper-wrap-function@npm:8.0.0"
dependencies:
"@babel/template": "npm:^8.0.0"
"@babel/traverse": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
checksum: 10/9acdf24689823b687b898b510f69515d8ee917a8e870170e87c2a9675989c72faf2a3296fe96c9814815db71168925cd32125886272693675214d742c76d6944
languageName: node
linkType: hard
"@babel/helpers@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/helpers@npm:8.0.0"
dependencies:
"@babel/template": "npm:^8.0.0"
"@babel/types": "npm:^8.0.0"
checksum: 10/129fca6e339022059028b7189c9cb6907ed813233ef335d8636a82b927282fea022970fc4da33bc575d6dbb8900ca550c5dcaaae84f7265c4808e8514ec81339
languageName: node
linkType: hard
"@babel/parser@npm:^8.0.0":
version: 8.0.0
resolution: "@babel/parser@npm:8.0.0"
dependencies:
"@babel/types": "npm:^8.0.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10/c4b12bfba9129b6630ff83b7c5f8d4a139f3f11f0f973599eaca0b98a4574d1ca458b6e037b9f148d4964073db25e34f6a951d795f2f68dd730ee15ed7068ec1
languageName: node
linkType: hard
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/366b5d623674b414a789dc562e6669169d3ad046e00ad1959010b2dfbfd1f1a3e68856628e20829ccf8eefd787b3a1837eb2beb3b7cd2960d6d0bb52ba563e1b
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/04982ab2c30dc1877bd980d315019b853a4025022d2abb8ca02816e1994d27d1dd31b9f40fe1c9f1775f4785dd01568871905f07a6c9915042eb5dee5da63095
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/f5cf6aaf22605e66a1997a5bab44745909e3c8838a812e3e4825be9989889fde11d80a06fa5dc73430ba49b29f188ac04b100ae855de4b5b26e4283c52fd5a51
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/795b63579f39b7699655c3fc90d8f855181a365db174a475c4e69fdd6ad2059ed9a9c34975c1300e52faddd2a70b332f6171936960eb7501452237a19968be31
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0"
"@babel/plugin-transform-optional-chaining": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/37209a6bcdef1b3d65a68d206257a9435092b168796802fbbcb30fcffb283f252fdc86768de28c268369f0a962368bfa724e0f8436ed0fecc9a933f27e6ae848
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/e9c183af59d756cf55a4265a6d0051c3ee73b6fd47e3e3e55e596a0310b836f440b00a99402dc3d2e3a413ba5f5ea494b18bd616cba0344999cbd60f48c701bd
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-arrow-functions@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/6cb855320d7d57a431a154b4df2af2f36cacf803bc507f7db64d5442a59c35ac66444e2ca99682109475852e7aaa9ee40697ceac494ca862857d2d1a6554c8b3
languageName: node
linkType: hard
"@babel/plugin-transform-async-generator-functions@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-async-generator-functions@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-remap-async-to-generator": "npm:^8.0.1"
"@babel/traverse": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/d2810c5dbb02e8a0114667ae59d7d64f47119387891d29aff930e5a47e9b48c8a024aea0bdbced5df5d1daa49b0254e96c054eab5e84b32d3d5ce274dcdfacd1
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-async-to-generator@npm:8.0.1"
dependencies:
"@babel/helper-module-imports": "npm:^8.0.0"
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-remap-async-to-generator": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/bfa8b266b13335052ed951fce098e64e3e2b63c5012c04145a3ad41a34d9c70d496533d44572de484ff5f3a609e286f37b6fb7d087a5bdedb42551480bbfbff1
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-block-scoped-functions@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/ca33859464cf24de1c24874183865ce7ba80556e43222cf16bc18b63dc92b3961c94acc29fd6f9a3a2dcd7dc307e7b8e73a57bfbd2f30a41c8a2ffa9f35398cc
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-block-scoping@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/9f922f531974f8a8484a50705bc43baf69bf231afc663e6a7100a4e7c3b7c8242901a2f760dc7714dd13b986760679d33d04733c0c3c411ce2e8113b2ef4ad41
languageName: node
linkType: hard
"@babel/plugin-transform-class-properties@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-class-properties@npm:8.0.1"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/f07e48c2fe0765f156cd37e51985851fe2ec4fd9445c4b96cd3c3654b4711aecc1afd072cf5f1169ec9728304a9e95c749673ebe464876867ded81252fa81563
languageName: node
linkType: hard
"@babel/plugin-transform-class-static-block@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-class-static-block@npm:8.0.1"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/b927af27b34b3d3e54ce51af1af5ea47ddb2a2a1537341153556452996cf58f67e04cd27734947b197224e05c8b1b673247ad2b729b19927c911870b15f0a478
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-classes@npm:8.0.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0"
"@babel/helper-compilation-targets": "npm:^8.0.0"
"@babel/helper-globals": "npm:^8.0.0"
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-replace-supers": "npm:^8.0.1"
"@babel/traverse": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/605b6d19ce75b6c40484b4ad6de49fc6ab2efaf71e56982c6b712c5d7d3598e6fd334a40c389418416425b295684763f4912af5f75a8005011200372ec23f3c1
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-computed-properties@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/bad1d36bc3e3ccff44a4e501c2c92ecd247c509fc5ee273729ae1eb361d9d6970651eb6d27a0e889326b1e6f9ca8424e136bfb57f3d28b476d54d10afcc2e765
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-destructuring@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/0943cf0b04d532576b865f75dc96dc24474550f554bdf43d2f9d6406eae99b76c6a70cdfdeac2f206d1e42cce26a4378679e2828c5d4c5e0155fef064152612e
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-dotall-regex@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/829e2625ee037db5031938209580bb8c9911635d72415f47ed69172485972a676c559c002f3ca41e5d24c9887200981353da3e238f4ed57558541d904e5215fc
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-duplicate-keys@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/04079398f87bc3fccc13601fe77e8065d19a0dce6395d26584a949efe3dfe45a9048666d84255c3dd0252ae04ef4977faf0c5ec05cd0e246b1c91330afd37d6f
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/c9507aa9ce726fba834f9cf0130ae226880cfee30a1c335315b5ec66408fc215770255da818cd9f06ca0559e099be798c3618ab2c0f5dea58c6e09984a53fbdf
languageName: node
linkType: hard
"@babel/plugin-transform-dynamic-import@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-dynamic-import@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/286666342f3f2fddf4ef2d71ff39c3cf9a7fb35a34fb395bd766f1da0a70ce34673db2f656a3f9595799317f3910718a86606cd93dae897bab35b1005c2bf87a
languageName: node
linkType: hard
"@babel/plugin-transform-explicit-resource-management@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-explicit-resource-management@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/plugin-transform-destructuring": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/45f849f44927ffc0e57fb2723173a0717f1458584d51f3b94f8bd6cab73d7e73e60613bf704c2358ceb4eeee9c54bb93a7bd8ca4ce064469be58f90c88d7b3d8
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-exponentiation-operator@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/d3ceb27e84c4b86765a8c91a962b2d4bc874ab65087bec138d19c7a5309ea47b5fd2e6d2879d4d3ea0e6e4dea9839a49a938d045ce65428165f8daf7b6fe5c0c
languageName: node
linkType: hard
"@babel/plugin-transform-export-namespace-from@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-export-namespace-from@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/c52622671bb6f4fb6cdfaacac483a41d9118125dd2f3bdbb408cd0e6773ef6dd68449818727f9aad574f27f3d006b4ea2bf76a5462f7480ef02f022bacb9698d
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-for-of@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/aefd28eb8eb1e43dde32e4e92282d83b7f341a3c8abc18d310822e54f782cbfad953915d7b9b13b62dffd497025e567bb8f42fb25a0f59c11e2935562c8a8f31
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-function-name@npm:8.0.1"
dependencies:
"@babel/helper-compilation-targets": "npm:^8.0.0"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/70a82b291cd615d93ef0e9ddac83ef05cf13ccd611aa249967ff19b17eaf09ad1bde891a02bcc36b0813663c80b028ebddca76575eedad9bee1afdeb6f510d13
languageName: node
linkType: hard
"@babel/plugin-transform-json-strings@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-json-strings@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/2a590877802e6391550cee0f62d82716382d529b485e4c6b17c83174f88d6c9758623b9777aa7f517cc6f417e948c3c4a632a814073a1ee5b0efc1fce09f0a77
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-literals@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/5041947f673cfe8591247eedd123b1290408abf8903a67554dd59f9c50e1c6174a89dfd84fab5be0b076464c63f6c91a623e9de6540bb012deff08c4809e79dc
languageName: node
linkType: hard
"@babel/plugin-transform-logical-assignment-operators@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-logical-assignment-operators@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/fa80567a65546dbe5d0c497ff935f23d7da72e72899b4eb98afc71eb975c95c0a924da8e2e015e416f4abdf17c1f3b272a272abc9ab6a56cc7a661dc9efeb154
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-member-expression-literals@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/95b9416a6e8f71c921ad9142379b1ad61c4eeee4312662f4702a36ef902c9dc580249f2abc9623d1882c2511908ded213c26a4b9f0693627c792502bb0dd3270
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-modules-amd@npm:8.0.1"
dependencies:
"@babel/helper-module-transforms": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/adad757137720870e119f0479239f09b4dbccda44ff07ae4e14fa610e434a1920129d66c69898db2740861b80db11e0f6bdbf0e733314ba6c899bfeacdee1f7b
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-modules-commonjs@npm:8.0.1"
dependencies:
"@babel/helper-module-transforms": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/245e3f6488f1c138a9783ebf32f74660cd7e013652b107ce4452864370c2f27b0bed27ba69179708fcb92878d6842dd18f53dbe2fe6feb38fc82c0d6a38e0546
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-modules-systemjs@npm:8.0.1"
dependencies:
"@babel/helper-module-transforms": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-validator-identifier": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/99e47669a9a3e5f797e2086874568fbcce3c3c1858db6aada52a2c4d259c647c5c694db1b3b0b57e346a8354750dc9bb3802bbb567befdfd9a1cbb691d5c5308
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-modules-umd@npm:8.0.1"
dependencies:
"@babel/helper-module-transforms": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/42de395e4ed7bf7b2982d54013f93af0c5924c68c0f00b0b47451f5ef981d04d06d110e1ceb60117037ae64e86bcb006caa6406404363db62d13752e42d5d598
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/f24b5453fa33acd9bfe7f7aac47fe8ca287b1125518741b190b4fbb2d26fd8d9a831cbed8dafc0aeae81d0c4cb9e57d146fc928ed0f57122df92435ba468c9cf
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-new-target@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/469a43a6abd921251e3a1416590b061438dbbf155efed03bd4223787637498712a6cd824812ed922ec81d57e3793467fc442e9ec2dbe62fe43104cdf707f3393
languageName: node
linkType: hard
"@babel/plugin-transform-nullish-coalescing-operator@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/bb44916286744124ce505509dd0550743c162a69ac01612450e9e11b9f521c6b4cacffe31a405f54f826aa9308f271d2139fecd207c3c03e78ade2b2e8d6c17a
languageName: node
linkType: hard
"@babel/plugin-transform-numeric-separator@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-numeric-separator@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/a73d9b114ebe9ca5d1bbf32a32e8bdbc5f824b27776395d2431b3b90e701e7f773ca1a2dab61764346cd61e700fcba34f5a1ce6ead43be3aad093f678f280b0a
languageName: node
linkType: hard
"@babel/plugin-transform-object-rest-spread@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-object-rest-spread@npm:8.0.1"
dependencies:
"@babel/helper-compilation-targets": "npm:^8.0.0"
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/plugin-transform-destructuring": "npm:^8.0.1"
"@babel/plugin-transform-parameters": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/ac8a801b61cf5e06cf71a9f88d2ae161892f0dd7cf23fb6110a05b66f5275ef7d5d517bc38465799b7876568845e625dd59128f2c4dfb7d58852cd155ae2436a
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-object-super@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-replace-supers": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/179580672dd2360b7ac053e9b42a6892ed4c2cfe41b9256681c1c2103f5b5ee516756ce6bbaca420cb7039acf9caa8f1d9380f402fd85c66122e3f29fd70464b
languageName: node
linkType: hard
"@babel/plugin-transform-optional-catch-binding@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-optional-catch-binding@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/4e381a55148553c886267d84d2c867d0f3fe484ef13b239d77ca2e5cba6e9abcd3dce5a212500b92c05880ed9a70b094d01d639d820e1248500d0a97a2c7e3a3
languageName: node
linkType: hard
"@babel/plugin-transform-optional-chaining@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-optional-chaining@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/0098572efbf897678ba2e58cdf53fabb699bffe7c90c6be83879e1b799e167306e406ae03721656e51d333cca037b60e643ad2fbba82c4738af09d709973cc64
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-parameters@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/0ad77e2a72b9f2882983a38367b149c0abe7867cc3503ac4eec96b6f192e51e23f9e37f60daf3caf54d81d3767b85609f51a509554ed4de2982cc17bd6eb5115
languageName: node
linkType: hard
"@babel/plugin-transform-private-methods@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-private-methods@npm:8.0.1"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/25195785cb26c0ea69493ed59a65f88e116ebc3e0d6fdbfd131c601fc4e88189e45850c1988e0d3226d88168ba0148ddc02fff586bb7fb5f97075b180623e307
languageName: node
linkType: hard
"@babel/plugin-transform-private-property-in-object@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-private-property-in-object@npm:8.0.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^8.0.0"
"@babel/helper-create-class-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/70d921b70726cb68770d1dfc0b72b58c3bbeacd9b9ff06cd9b81618430cf2e312410c489c506001c78e35a069c15fff7e6bcee5531120e3d69cd6c2074eaa315
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-property-literals@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/a65b46acddc42fe4dbc206727cbd0e3ef8992c87ffe56f122d9ebdba4165ed2fd1ca0c8efdae37754ffa10850a239bae6e746e98830ea8a5033c9e854aa6c5ee
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^8.0.2":
version: 8.0.2
resolution: "@babel/plugin-transform-regenerator@npm:8.0.2"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/81b865156ef174acad44fb589f4cc01f912148a907dfa9a30a6669504e9218c40ad7bee98b33149d3a9a1dc2b5659405765bc07598ae41084b9f5258322ac153
languageName: node
linkType: hard
"@babel/plugin-transform-regexp-modifiers@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-regexp-modifiers@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/291e7ebe6e36df713c4d51c50e8a58959fca2dc275d372b6d4fbd2a552e75ad6f4eb2f281c24b62f24ecf69ad759c3abd96a681a4b4e5bf8e51e93dd6112f315
languageName: node
linkType: hard
"@babel/plugin-transform-reserved-words@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-reserved-words@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/c8c77f6682c534836a8d99f41e613cf57925b0fbe3622a8264a1bd2d58358d967ec975a9d95c6ef88cee9116821a18392f3765cd9d7160028d5f65930595573b
languageName: node
linkType: hard
"@babel/plugin-transform-shorthand-properties@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-shorthand-properties@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/0b552875e98cbd1f2a93799c45526e390788343755874bb365f53ad7e5f0c44e5c4a5b497a609f10157e969221ae7379b1dec3326a0aabf825a3566b136e0812
languageName: node
linkType: hard
"@babel/plugin-transform-spread@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-spread@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^8.0.0"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/3487febd0eda7988f0538dd0fc683574b5c4a6551ad3625e453adec0f58617bb0b4cd93223a9659850d23d2da30d7a3ab14a94eae01771c0bcde672953595e4a
languageName: node
linkType: hard
"@babel/plugin-transform-sticky-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-sticky-regex@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/aa82dc12069af0efe4d18831478cb322e561dfd1d9d82a94b0ec59aaec6125366afa23013d4c663e32af1c214ca7c05b2e2ab74797aa4d7e3058400ebbe4897b
languageName: node
linkType: hard
"@babel/plugin-transform-template-literals@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-template-literals@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/0be4f44414677dc040b4caa8fb471b01a6439bc20cff94535f37c189825e3dd948d2d193c355fd27b5796a7db5021ef0c21a4092f0fe7a69ec4acb734cbfe67f
languageName: node
linkType: hard
"@babel/plugin-transform-typeof-symbol@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-typeof-symbol@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/5bd8b1a82dc25a4e8f8229df7891c5b1cb01554303d4a3f0a29f0c83545ea401633b719fcbc05c3f2f084912ddf84398b76ffb3c1f5e8af423e7cd0c570fe6f9
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-escapes@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-unicode-escapes@npm:8.0.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/f29f25fe3af5b3448b3d7cea02556f5278d00b8a94a0a788e27034cb1fbe0a8c6d92ddb73c915e8f8a285ebd9c86c6f52518c2f1b251d87bbc79e8c8027f7554
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-property-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-unicode-property-regex@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/f396a6b1511d1f6f4e787f05cc6985f137e278a9b2c0f2a6b837e60a13a94484d38ec38d61304d06ea947bc8894e4a5c025dd2adec0d1f45598eed2b04703537
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-unicode-regex@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/2dc8a78efb36ebc2b79fbef64b2e6cba300f439bf4dd45a13feb52bfc8df5c03a96d527130d74f2694c20de8f9747de58cbc2f95c77d8f12c79dc8706705b8f3
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-sets-regex@npm:^8.0.1":
version: 8.0.1
resolution: "@babel/plugin-transform-unicode-sets-regex@npm:8.0.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^8.0.1"
"@babel/helper-plugin-utils": "npm:^8.0.1"
peerDependencies:
"@babel/core": ^8.0.0
checksum: 10/be1c7a5c2df78de5a971577325cfdfc87dd6a51eb4dc6686207581d1b2eba802732e60de1d1f77acec3f0309343e09cc592d5b74a2f9efcd7901b0f97a2b6e8d
languageName: node
linkType: hard
"@babel/preset-env@npm:^8.0.0":
version: 8.0.2
resolution: "@babel/preset-env@npm:8.0.2"
dependencies:
"@babel/compat-data": "npm:^8.0.0"
"@babel/helper-compilation-targets": "npm:^8.0.0"
"@babel/helper-plugin-utils": "npm:^8.0.1"
"@babel/helper-validator-option": "npm:^8.0.0"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^8.0.1"
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^8.0.1"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^8.0.1"
"@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": "npm:^8.0.1"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^8.0.1"
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^8.0.1"
"@babel/plugin-transform-arrow-functions": "npm:^8.0.1"
"@babel/plugin-transform-async-generator-functions": "npm:^8.0.1"
"@babel/plugin-transform-async-to-generator": "npm:^8.0.1"
"@babel/plugin-transform-block-scoped-functions": "npm:^8.0.1"
"@babel/plugin-transform-block-scoping": "npm:^8.0.1"
"@babel/plugin-transform-class-properties": "npm:^8.0.1"
"@babel/plugin-transform-class-static-block": "npm:^8.0.1"
"@babel/plugin-transform-classes": "npm:^8.0.1"
"@babel/plugin-transform-computed-properties": "npm:^8.0.1"
"@babel/plugin-transform-destructuring": "npm:^8.0.1"
"@babel/plugin-transform-dotall-regex": "npm:^8.0.1"
"@babel/plugin-transform-duplicate-keys": "npm:^8.0.1"