-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
7664 lines (6902 loc) · 268 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": ^0.1.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: d74d170d06468913921d72430259424b7e4c826b5a7d39ff839a29d547efb97dc577caa8ba3fb5cf023624e9af9d09651afc3d4112a45e2050328abc9b3a2292
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": ^0.3.8
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents.3
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
make-dir: ^2.1.0
slash: ^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: 66b50a7d60e9366c82301c45346a1639b2a7351d2049ff9c47812093060802711fbb1690243826e09823cf06be5306d608327fa8c8ea2827fd6340923ac827a0
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": ^7.16.7
checksum: db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b
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: e85051087cd4690de5061909a2dd2d7f8b6434a3c2e30be6c119758db2027ae1845bcd75a81127423dd568b706ac6994a1a3d7d701069a23bf5cfe900728290b
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.17.10":
version: 7.17.10
resolution: "@babel/core@npm:7.17.10"
dependencies:
"@ampproject/remapping": ^2.1.0
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.17.10
"@babel/helper-compilation-targets": ^7.17.10
"@babel/helper-module-transforms": ^7.17.7
"@babel/helpers": ^7.17.9
"@babel/parser": ^7.17.10
"@babel/template": ^7.16.7
"@babel/traverse": ^7.17.10
"@babel/types": ^7.17.10
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.1
semver: ^6.3.0
checksum: 2545fb24b4090c1e9ead0daad4713ae6fe779df0843e6e286509146f4dd09958bd067d80995f2cc09fdb01fd0dc936f42cdd6f70b3d058de48e124cd9a3cc93e
languageName: node
linkType: hard
"@babel/core@npm:^7.18.5":
version: 7.18.5
resolution: "@babel/core@npm:7.18.5"
dependencies:
"@ampproject/remapping": ^2.1.0
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.18.2
"@babel/helper-compilation-targets": ^7.18.2
"@babel/helper-module-transforms": ^7.18.0
"@babel/helpers": ^7.18.2
"@babel/parser": ^7.18.5
"@babel/template": ^7.16.7
"@babel/traverse": ^7.18.5
"@babel/types": ^7.18.4
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.1
semver: ^6.3.0
checksum: e20c3d69a07eb564408d611b827c2f5db56f05f1ca7cb3046f3823a1cf6b13c032f02d4b8ffe1e4593699e86e0f25ca1aee6228486c1ebea48d21aaeb28e6718
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.17.0":
version: 7.17.0
resolution: "@babel/eslint-parser@npm:7.17.0"
dependencies:
eslint-scope: ^5.1.1
eslint-visitor-keys: ^2.1.0
semver: ^6.3.0
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ^7.5.0 || ^8.0.0
checksum: 1cedd9998dd89f779bbc5496531e3ef1b43d6f4fb7209ed5088938292b81287302cb47c0923ce074e84e83aa41b236b09bfecacdf20770f4cbfade2de9519c10
languageName: node
linkType: hard
"@babel/generator@npm:^7.17.10, @babel/generator@npm:^7.7.2":
version: 7.17.10
resolution: "@babel/generator@npm:7.17.10"
dependencies:
"@babel/types": ^7.17.10
"@jridgewell/gen-mapping": ^0.1.0
jsesc: ^2.5.1
checksum: 9ec596a6ffec7bec239133a4ba79d4f834e6c894019accb1c70a7a5affbec9d0912d3baef200edd9d48e553d4ef72abcbffbc73cfb7d75f327c24186e887f79c
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/generator@npm:7.18.2"
dependencies:
"@babel/types": ^7.18.2
"@jridgewell/gen-mapping": ^0.3.0
jsesc: ^2.5.1
checksum: d0661e95532ddd97566d41fec26355a7b28d1cbc4df95fe80cc084c413342935911b48db20910708db39714844ddd614f61c2ec4cca3fb10181418bdcaa2e7a3
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": ^7.16.7
checksum: d235be963fed5d48a8a4cfabc41c3f03fad6a947810dbcab9cebed7f819811457e10d99b4b2e942ad71baa7ee8e3cd3f5f38a4e4685639ddfddb7528d9a07179
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": ^7.16.7
"@babel/types": ^7.16.7
checksum: 1784f19a57ecfafca8e5c2e0f3eac53451cb13a857cbe0ca0cd9670922228d099ef8c3dd8cd318e2d7bce316fdb2ece3e527c30f3ecd83706e37ab6beb0c60eb
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":
version: 7.17.10
resolution: "@babel/helper-compilation-targets@npm:7.17.10"
dependencies:
"@babel/compat-data": ^7.17.10
"@babel/helper-validator-option": ^7.16.7
browserslist: ^4.20.2
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 5f547c7ebd372e90fa72c2aaea867e7193166e9f469dec5acde4f0e18a78b80bdca8e02a0f641f3e998be984fb5b802c729a9034faaee8b1a9ef6670cb76f120
languageName: node
linkType: hard
"@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": ^7.17.10
"@babel/helper-validator-option": ^7.16.7
browserslist: ^4.20.2
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 4f02e79f20c0b3f8db5049ba8c35027c41ccb3fc7884835d04e49886538e0f55702959db1bb75213c94a5708fec2dc81a443047559a4f184abb884c72c0059b4
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": ^7.16.7
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-function-name": ^7.17.9
"@babel/helper-member-expression-to-functions": ^7.17.7
"@babel/helper-optimise-call-expression": ^7.16.7
"@babel/helper-replace-supers": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0
checksum: 9a6ef175350f1cf87abe7a738e8c9b603da7fcdb153c74e49af509183f8705278020baddb62a12c7f9ca059487fef97d75a4adea6a1446598ad9901d010e4296
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.16.7":
version: 7.17.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.17.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
regexpu-core: ^5.0.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: eb66d9241544c705e9ce96d2d122b595ef52d926e6e031653e09af8a01050bd9d7e7fee168bf33a863342774d7d6a8cc7e8e9e5a45b955e9c01121c7a2d51708
languageName: node
linkType: hard
"@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": ^7.16.7
regexpu-core: ^5.0.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: fe49d26b0f6c58d4c1748a4d0e98b343882b428e6db43c4ba5e0aa7ff2296b3a557f0a88de9f000599bb95640a6c47c0b0c9a952b58c11f61aabb06bcc304329
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": ^7.13.0
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.13.0
"@babel/traverse": ^7.13.0
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: e3e93cb22febfc0449a210cdafb278e5e1a038af2ca2b02f5dee71c7a49e8ba26e469d631ee11a4243885961a62bb2e5b0a4deb3ec1d7918a33c953d05c3e584
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-environment-visitor@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: c03a10105d9ebd1fe632a77356b2e6e2f3c44edba9a93b0dc3591b6a66bd7a2e323dd9502f9ce96fc6401234abff1907aa877b6674f7826b61c953f7c8204bbe
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-environment-visitor@npm:7.18.2"
checksum: 1a9c8726fad454a082d077952a90f17188e92eabb3de236cb4782c49b39e3f69c327e272b965e9a20ff8abf37d30d03ffa6fd7974625a6c23946f70f7527f5e9
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": ^7.16.7
checksum: ea2135ba36da6a2be059ebc8f10fbbb291eb0e312da54c55c6f50f9cbd8601e2406ec497c5e985f7c07a97f31b3bef9b2be8df53f1d53b974043eaf74fe54bbc
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": ^7.16.7
"@babel/types": ^7.17.0
checksum: a59b2e5af56d8f43b9b0019939a43774754beb7cb01a211809ca8031c71890999d07739e955343135ec566c4d8ff725435f1f60fb0af3bb546837c1f9f84f496
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": ^7.16.7
checksum: 6ae1641f4a751cd9045346e3f61c3d9ec1312fd779ab6d6fecfe2a96e59a481ad5d7e40d2a840894c13b3fd6114345b157f9e3062fc5f1580f284636e722de60
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.16.7, @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": ^7.17.0
checksum: 70f361bab627396c714c3938e94a569cb0da522179328477cdbc4318e4003c2666387ad4931d6bd5de103338c667c9e4bbe3e917fc8c527b3f3eb6175b888b7d
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": ^7.16.7
checksum: ddd2c4a600a2e9a4fee192ab92bf35a627c5461dbab4af31b903d9ba4d6b6e59e0ff3499fde4e2e9a0eebe24906f00b636f8b4d9bd72ff24d50e6618215c3212
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.17.7":
version: 7.17.7
resolution: "@babel/helper-module-transforms@npm:7.17.7"
dependencies:
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-module-imports": ^7.16.7
"@babel/helper-simple-access": ^7.17.7
"@babel/helper-split-export-declaration": ^7.16.7
"@babel/helper-validator-identifier": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.17.3
"@babel/types": ^7.17.0
checksum: 0b8f023aa7ff82dc4864349d54c4557865ad8ba54d78f6d78a86b05ca40f65c2d60acb4a54c5c309e7a4356beb9a89b876e54af4b3c4801ad25f62ec3721f0ae
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": ^7.16.7
"@babel/helper-module-imports": ^7.16.7
"@babel/helper-simple-access": ^7.17.7
"@babel/helper-split-export-declaration": ^7.16.7
"@babel/helper-validator-identifier": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.18.0
"@babel/types": ^7.18.0
checksum: 824c3967c08d75bb36adc18c31dcafebcd495b75b723e2e17c6185e88daf5c6db62a6a75d9f791b5f38618a349e7cb32503e715a1b9a4e8bad4d0f43e3e6b523
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": ^7.16.7
checksum: 925feb877d5a30a71db56e2be498b3abbd513831311c0188850896c4c1ada865eea795dce5251a1539b0f883ef82493f057f84286dd01abccc4736acfafe15ea
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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.16.7
resolution: "@babel/helper-plugin-utils@npm:7.16.7"
checksum: d08dd86554a186c2538547cd537552e4029f704994a9201d41d82015c10ed7f58f9036e8d1527c3760f042409163269d308b0b3706589039c5f1884619c6d4ce
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/helper-plugin-utils@npm:7.17.12"
checksum: 4813cf0ddb0f143de032cb88d4207024a2334951db330f8216d6fa253ea320c02c9b2667429ef1a34b5e95d4cfbd085f6cb72d418999751c31d0baf2422cc61d
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": ^7.16.7
"@babel/helper-wrap-function": ^7.16.8
"@babel/types": ^7.16.8
checksum: 29282ee36872130085ca111539725abbf20210c2a1d674bee77f338a57c093c3154108d03a275f602e471f583bd2c7ae10d05534f87cbc22b95524fe2b569488
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-replace-supers@npm:7.16.7"
dependencies:
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-member-expression-to-functions": ^7.16.7
"@babel/helper-optimise-call-expression": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: e5c0b6eb3dad8410a6255f93b580dde9b3c1564646c6ef751de59d5b2a65b5caa80cc9e568155f04bbae895ad0f54305c2e833dbd971a4f641f970c90b3d892b
languageName: node
linkType: hard
"@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": ^7.18.2
"@babel/helper-member-expression-to-functions": ^7.17.7
"@babel/helper-optimise-call-expression": ^7.16.7
"@babel/traverse": ^7.18.2
"@babel/types": ^7.18.2
checksum: c0083b7933672dd2aed50b79021c46401c83f41bc2132def19c5414cf8f944251f6d91dd959b2bedada9a7436a80fab629adb486e008566290c82293e89fec05
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.17.7":
version: 7.17.7
resolution: "@babel/helper-simple-access@npm:7.17.7"
dependencies:
"@babel/types": ^7.17.0
checksum: 58a9bfd054720024f6ff47fbb113c96061dc2bd31a5e5285756bd3c2e83918c6926900e00150d0fb175d899494fe7d69bf2a8b278c32ef6f6bea8d032e6a3831
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-simple-access@npm:7.18.2"
dependencies:
"@babel/types": ^7.18.2
checksum: c0862b56db7e120754d89273a039b128c27517389f6a4425ff24e49779791e8fe10061579171fb986be81fa076778acb847c709f6f5e396278d9c5e01360c375
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": ^7.16.0
checksum: b9ed2896eb253e6a85f472b0d4098ed80403758ad1a4e34b02b11e8276e3083297526758b1a3e6886e292987266f10622d7dbced3508cc22b296a74903b41cfb
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": ^7.16.7
checksum: e10aaf135465c55114627951b79115f24bc7af72ecbb58d541d66daf1edaee5dde7cae3ec8c3639afaf74526c03ae3ce723444e3b5b3dc77140c456cd84bcaa1
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: dbb3db9d184343152520a209b5684f5e0ed416109cde82b428ca9c759c29b10c7450657785a8b5c5256aa74acc6da491c1f0cf6b784939f7931ef82982051b69
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: c5ccc451911883cc9f12125d47be69434f28094475c1b9d2ada7c3452e6ac98a1ee8ddd364ca9e3f9855fcdee96cdeafa32543ebd9d17fee7a1062c202e80570
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": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.8
"@babel/types": ^7.16.8
checksum: d8aae4bacaf138d47dca1421ba82b41eac954cbb0ad17ab1c782825c6f2afe20076fbed926ab265967758336de5112d193a363128cd1c6967c66e0151174f797
languageName: node
linkType: hard
"@babel/helpers@npm:^7.17.9":
version: 7.17.9
resolution: "@babel/helpers@npm:7.17.9"
dependencies:
"@babel/template": ^7.16.7
"@babel/traverse": ^7.17.9
"@babel/types": ^7.17.0
checksum: 3c6db861e4c82fff2de3efb4ad12e32658c50c29920597cd0979390659b202e5849acd9542e0e2453167a52ccc30156ee4455d64d0e330f020d991d7551566f8
languageName: node
linkType: hard
"@babel/helpers@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helpers@npm:7.18.2"
dependencies:
"@babel/template": ^7.16.7
"@babel/traverse": ^7.18.2
"@babel/types": ^7.18.2
checksum: 94620242f23f6d5f9b83a02b1aa1632ffb05b0815e1bb53d3b46d64aa8e771066bba1db8bd267d9091fb00134cfaeda6a8d69d1d4cc2c89658631adfa077ae70
languageName: node
linkType: hard
"@babel/highlight@npm:^7.16.7":
version: 7.17.9
resolution: "@babel/highlight@npm:7.17.9"
dependencies:
"@babel/helper-validator-identifier": ^7.16.7
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 7bdf10228f2e4d18f48f114411ed584380d356e7c168d7582c14abd8df9909b2fc09e0a7cd334f47c3eb0bc17e639e0c8d9688c6afd5d09a2bdbf0ac193b11fd
languageName: node
linkType: hard
"@babel/node@npm:^7.18.5":
version: 7.18.5
resolution: "@babel/node@npm:7.18.5"
dependencies:
"@babel/register": ^7.17.7
commander: ^4.0.1
core-js: ^3.22.1
node-environment-flags: ^1.0.5
regenerator-runtime: ^0.13.4
v8flags: ^3.1.1
peerDependencies:
"@babel/core": ^7.0.0-0
bin:
babel-node: ./bin/babel-node.js
checksum: be159cce39fb10aa41271d3f699e608126a60d929b9fb8614cf8c47f0c26a2a7131cd1e549752f225335cb231b52439aa092afca8a278357ac4f16600caf17a6
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.17.10":
version: 7.17.10
resolution: "@babel/parser@npm:7.17.10"
bin:
parser: ./bin/babel-parser.js
checksum: a9493d9fb8625e0904a178703866c8ee4d3a6003f0954b08df9f772b54dae109c69376812b74732e0c3e1a7f1d5b30915577a1db12e5e16b0abee083539df574
languageName: node
linkType: hard
"@babel/parser@npm:^7.18.5":
version: 7.18.5
resolution: "@babel/parser@npm:7.18.5"
bin:
parser: ./bin/babel-parser.js
checksum: 4976349d8681af215fd5771bd5b74568cc95a2e8bf2afcf354bf46f73f3d6f08d54705f354b1d0012f914dd02a524b7d37c5c1204ccaafccb9db3c37dba96a9b
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": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6ef739b3a2b0ac0b22b60ff472c118163ceb8d414dd08c8186cc563fddc2be62ad4d8681e02074a1c7f0056a72e7146493a85d12ded02e50904b0009ed85d8bf
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": ^7.17.12
"@babel/helper-skip-transparent-expression-wrappers": ^7.16.0
"@babel/plugin-proposal-optional-chaining": ^7.17.12
peerDependencies:
"@babel/core": ^7.13.0
checksum: 68520a8f26e56bc8d90c22133537a9819e82598e3c82007f30bdaf8898b0e12a7bfa0cd3044aca35a7f362fd6bc04e4cd8052a571fc2eb40ad8f1cf24e0fc45f
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": ^7.17.12
"@babel/helper-remap-async-to-generator": ^7.16.8
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 16a3c7f68a27031b4973b7c64ca009873c91b91afd7b3a4694ec7f1c6d8e91a6ee142eafd950113810fae122faa1031de71140333b2b1bd03d5367b1a05b1d91
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": ^7.17.12
"@babel/helper-plugin-utils": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 884df6a4617a18cdc2a630096b2a10954bcc94757c893bb01abd6702fdc73343ca5c611f4884c4634e0608f5e86c3093ea6b973ce00bf21b248ba54de92c837d
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": ^7.18.0
"@babel/helper-plugin-utils": ^7.17.12
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 70fd622fd7c62cca2aa99c70532766340a5c30105e35cb3f1187b450580d43adc78b3fcb1142ed339bcfccf84be95ea03407adf467331b318ce6874432736c89
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": ^7.16.7
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5992012484fb8bda1451369350e475091954ed414dd9ef8654a3c4daa2db0205d4f29c94f5d3dedfbc5a434996375c8304586904337d6af938ac0f27a0033e23
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": ^7.17.12
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 41c9cd4c0a5629b65725d2554867c15b199f534cea5538bd1ae379c0d13e7206d8590e23b23cb05a8b243e33e6eb88c1de3fd03a55cdbc6d4cf8634a6bebe43d
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": ^7.17.12
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8ed4ee3fbc28e44fac17c48bd95b5b8c3ffc852053a9fffd36ab498ec0b0ba069b8b2f5658edc18332748948433b9d3e1e376f564a1d65cb54592ba9943be09b
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": ^7.17.12
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0d48451836219b7beeca4be22a8aeb4a177a4944be4727afb94a4a11f201dde8b0b186dd2ad65b537d61e9af3fa1afda734f7096bec8602debd76d07aa342e21
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": ^7.17.12
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7881d8005d0d4e17a94f3bfbfa4a0d8af016d2f62ed90912fabb8c5f8f0cc0a15fd412f09c230984c40b5c893086987d403c73198ef388ffcb3726ff72efc009
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": ^7.16.7
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8e2fb0b32845908c67f80bc637a0968e28a66727d7ffb22b9c801dc355d88e865dc24aec586b00c922c23833ae5d26301b443b53609ea73d8344733cd48a1eca
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": ^7.17.10
"@babel/helper-compilation-targets": ^7.17.10
"@babel/helper-plugin-utils": ^7.17.12
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2b49bcf9a6b11fd8b6a1d4962a64f3c846a63f8340eca9824c907f75bfcff7422ca35b135607fc3ef2d4e7e77ce6b6d955b772dc3c1c39f7ed24a0d8a560ec78
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": ^7.16.7
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4a422bb19a23cf80a245c60bea7adbe5dac8ff3bc1a62f05d7155e1eb68d401b13339c94dfd1f3d272972feeb45746f30d52ca0f8d5c63edf6891340878403df
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": ^7.17.12
"@babel/helper-skip-transparent-expression-wrappers": ^7.16.0
"@babel/plugin-syntax-optional-chaining": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a27b220573441a0ad3eecf8ddcb249556a64de45add236791d76cfa164a8fd34181857528fa7d21d03d6b004e7c043bd929cce068e611ee1ac72aaf4d397aa12
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": ^7.17.12
"@babel/helper-plugin-utils": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a1e5bd6a0a541af55d133d7bcf51ff8eb4ac7417a30f518c2f38107d7d033a3d5b7128ea5b3a910b458d7ceb296179b6ff9d972be60d1c686113d25fede8bed3
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": ^7.16.7
"@babel/helper-create-class-features-plugin": ^7.17.12
"@babel/helper-plugin-utils": ^7.17.12
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 056cb77994b2ee367301cdf8c5b7ed71faf26d60859bbba1368b342977481b0884712a1b97fbd9b091750162923d0265bf901119d46002775aa66e4a9f30f411
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.17.12"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.17.12
"@babel/helper-plugin-utils": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0e4194510415ed11849f1617fcb32d996df746ba93cd05ebbabecb63cfc02c0e97b585c97da3dcf68acdd3c8b71cfae964abe5d5baba6bd3977a475d9225ad9e
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.16.7
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.16.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2b8a33713d456183f0b7d011011e7bd932c08cc06216399a7b2015ab39284b511993dc10a89bbb15d1d728e6a2ef42ca08c3202619aa148cbd48052422ea3995
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
languageName: node
linkType: hard
"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a
languageName: node
linkType: hard
"@babel/plugin-syntax-import-assertions@npm:^7.17.12":
version: 7.17.12
resolution: "@babel/plugin-syntax-import-assertions@npm:7.17.12"
dependencies:
"@babel/helper-plugin-utils": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fef25c3247d18dc7b8e432ed07f4afb92d70113fcfc3db0ca52388f8083b4bd60f88fe9ec0085e8a5a6daf18a619042376e76e2b4bd9470cddb7362cd268bea5
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": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.17.10
resolution: "@babel/plugin-syntax-typescript@npm:7.17.10"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 43e908acf4a1e267f7bd86dc2fcb015b1fbcc364da43b125289d6a91bd32eeed41e5d9870051f7a3e4e2da9eeff7655f7988b6f27beac06bcb60c054aa5bac6d
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": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 48f99e74f523641696d5d9fb3f5f02497eca2e97bc0e9b8230a47f388e37dc5fd84b8b29e9f5a0c82d63403f7ba5f085a28e26939678f6e917d5c01afd884b50
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": ^7.16.7
"@babel/helper-plugin-utils": ^7.17.12
"@babel/helper-remap-async-to-generator": ^7.16.8
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 052dd56eb3b10bc31f5aaced0f75fc7307713f74049ccfb91cd087bebfc890a6d462b59445c5299faaca9030814172cac290c941c76b731a38dcb267377c9187
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": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 591e9f75437bb32ebf9506d28d5c9659c66c0e8e0c19b12924d808d898e68309050aadb783ccd70bb4956555067326ecfa17a402bc77eb3ece3c6863d40b9016
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": ^7.17.12
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5fdc8fd2f56f43e275353123fa1cda3df475daf1e9d92c03d5aa1ae50d3a0ccabf80c6168356947d8eb8e6e29098c875bc27fda8c7d4fbca6ffc6eec5d5faa8d
languageName: node
linkType: hard