forked from gorhom/react-native-bottom-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
13572 lines (12205 loc) · 483 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
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 8a4de6de5957731be882ae02e0c30d05b6fdbe9e25443c816629d54512939e2b6545fb821e07a7f9d6009c2be2d571973559bc9a2703810f8d79da1c9c8d09f5
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": "npm:^7.14.5"
checksum: 717cfbdfaeec4687985eb470839f0105c0642589d2169b605078de0042dc0093d1dd3336efe780f3907f8d50bbfbbf71dd526ce0b14bb807a6921486408b913d
languageName: node
linkType: hard
"@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.14.7, @babel/compat-data@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/compat-data@npm:7.15.0"
checksum: b7a580d0eda87db1c2ac99de7a636bf05607e0205133c9fb89805ad69ed0b789fe002646af800b5c110f145758a57b5ddd908259513683e450b87a8d7c9267c7
languageName: node
linkType: hard
"@babel/core@npm:^7.0.0, @babel/core@npm:^7.12.10":
version: 7.15.0
resolution: "@babel/core@npm:7.15.0"
dependencies:
"@babel/code-frame": "npm:^7.14.5"
"@babel/generator": "npm:^7.15.0"
"@babel/helper-compilation-targets": "npm:^7.15.0"
"@babel/helper-module-transforms": "npm:^7.15.0"
"@babel/helpers": "npm:^7.14.8"
"@babel/parser": "npm:^7.15.0"
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.1.2"
semver: "npm:^6.3.0"
source-map: "npm:^0.5.0"
checksum: 33f320e479c3493f0b7844298ce5fd7c40a3ad59b9b0c50ba566470878996e65932dab80481ea4460fd3b4240d88164edc24a999b41a9596b8f9f917bb96bd52
languageName: node
linkType: hard
"@babel/generator@npm:^7.15.0, @babel/generator@npm:^7.5.0":
version: 7.15.0
resolution: "@babel/generator@npm:7.15.0"
dependencies:
"@babel/types": "npm:^7.15.0"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 564c51602d1d288d042c0e0978afa75b97730b1686b8b65d9dd9ce171d2e9c8ed74c9b7ad371e72bb08d43c65df93b0e0861df796124b21d0874cc2bd9748dde
languageName: node
linkType: hard
"@babel/generator@npm:^7.17.9":
version: 7.17.9
resolution: "@babel/generator@npm:7.17.9"
dependencies:
"@babel/types": "npm:^7.17.0"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: bd2ec1126cdd8e47b9b5b0a785f7a283583304a988f0cf2a2d8c73c4e14537d639c196fc59512b91439b8926d09e3c85d3e33c634625c6d5de6b8db02b50ec8e
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-annotate-as-pure@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 9f1aafafa2c3238308b8cc3a71882b92e5d0ba7312f15f639e3d5d10baa66b413a428d21bc620cefd2782529688de2018c820de5c7dca2ff3fb4129d82d206bd
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.14.5":
version: 7.14.5
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.14.5"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.14.5"
"@babel/types": "npm:^7.14.5"
checksum: 6a272512e03d0e43a4e3f72d4ac13e87c8719c17d813a127c89db75a432a0ad0ed413a87506804da5e09fb3bc339f7a1ecb6db5cb31163fbb10c979e255ee0c0
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.14.5, @babel/helper-compilation-targets@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-compilation-targets@npm:7.15.0"
dependencies:
"@babel/compat-data": "npm:^7.15.0"
"@babel/helper-validator-option": "npm:^7.14.5"
browserslist: "npm:^4.16.6"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 874bb43d331e28c830b37836a5efbaab9c7259e5180e5b01767d05e045a0f52b919380d32e2fbb5e645139eee337876ac90934348b10fbd1c90987477dd3a305
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.14.5, @babel/helper-create-class-features-plugin@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.15.0"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.14.5"
"@babel/helper-function-name": "npm:^7.14.5"
"@babel/helper-member-expression-to-functions": "npm:^7.15.0"
"@babel/helper-optimise-call-expression": "npm:^7.14.5"
"@babel/helper-replace-supers": "npm:^7.15.0"
"@babel/helper-split-export-declaration": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: b60928682c841c2017e6ef9582330147151dd59613d74f17ea8d6e85973b951729211e05e8b272cbf34c3cba09fd79613cbb4d45c1a7b6bea5d1a7453a98dadb
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.16.7":
version: 7.17.9
resolution: "@babel/helper-create-class-features-plugin@npm:7.17.9"
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: 6d84c96aac3efffd0126ada8dfd55297c832bc8cffc7cd39d96f328783c02b3f5fe5e6d9b60a0affd83e181ba02f53ceb5440ea41fc0a00ed0540f01c65e9ec7
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.14.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.14.5"
regexpu-core: "npm:^4.7.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: d38ae96dcd5df122e9743044745de01a9d76897f06d2ae277232cfc9577193520ef0c470da826c49012c2e52a8a0bf3b2b94367c4369c2fd462ca9ba8ff0b926
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.2.2":
version: 0.2.3
resolution: "@babel/helper-define-polyfill-provider@npm:0.2.3"
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: 36ba4ac50a8a17812e2eb7db0833cd69acc338b35eb3455df848c7cd3ff503f199b23a3094ee81ad6e67ccc01894f2c45ad782a6f34155b59aec0acb7b0932c2
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": "npm:^7.16.7"
checksum: 593983b8c5f1fbbd88500e2a9142210b6198100c07316d79cb0569cb64ee09137f5310922a5f5506a393d6f2aa5a2decaf34e84711c34a6815434eee8eeeb7e3
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-explode-assignable-expression@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 89acee50e14153d0b855f71ba398702fa5cad693eb3122652306d9e985b4192791f569763d1c86b34a235e7b37b8ce82edd256f1f5dbf6722ea4bf65ef7eb35f
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-function-name@npm:7.14.5"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.14.5"
"@babel/template": "npm:^7.14.5"
"@babel/types": "npm:^7.14.5"
checksum: 92526da56cacc931fc04aee91b4bfcaa5c3a0389275539b7d3bf6fa54705ffea20dae0b395c14caae0722424ea6e7ce6781fdb70720ced41834e046e1db305a3
languageName: node
linkType: hard
"@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-get-function-arity@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-get-function-arity@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 278c4bd94b0fc1b0b63f022602dc0599fe0700bdbc9f236a23d8252517d6bbe441c2e3bad36a513e932f733dfd784db218306553d9dddaa3ae87dc6551ac981f
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-hoist-variables@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: e907062f65f48bb220ddc8360bb521792134a08977d38bcc3b2ead5fdcbd948f6b634c0e2cfaa2fbec7c5e7d69bbb992d534da673d53e4444e63452c8eb47373
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.15.0":
version: 7.15.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.15.0"
dependencies:
"@babel/types": "npm:^7.15.0"
checksum: 78b4f1c7f50e4f60fb030a047f76611c6812ae99a166e62f739bb5052f6fa37f0867c5e5b92e0a9d7e27b5ad7acae4e72b4c158dd37efb14d19a0ac7e2435d6a
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": "npm:^7.17.0"
checksum: e770b74425b042ed7570b64a2a479c55f0889038372723970b82aea19991c7b20ad5dbd03e66dc57ea667e3dcb18a653c69dcd99e11cff1f114fad64435aec5e
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-module-imports@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 70b856194151a29dbbda62506ba340d62e0e1875f44005d637860c954ab684ab17113afc055405f318413398e064fdbe3319cf090ed37bf04b64530505ce75b4
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.14.5, @babel/helper-module-transforms@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-module-transforms@npm:7.15.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.14.5"
"@babel/helper-replace-supers": "npm:^7.15.0"
"@babel/helper-simple-access": "npm:^7.14.8"
"@babel/helper-split-export-declaration": "npm:^7.14.5"
"@babel/helper-validator-identifier": "npm:^7.14.9"
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
checksum: 75438753293f86e648905f22af9acf280f62d5a1eab93227b173974029844d82a4082ceb15793a16c1793df9fa0c7442b468d596183602fb1fee99b562274d1a
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-optimise-call-expression@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 6cd9fbb8e06d50237bae40de961896496cd21831595f0c847a5c111b45840c9fbfae9ecebb2fa236471b592d194dcd63c3533984ed4b57299625607ef4ac105c
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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: 2e2c0dad632ce078597541847149b3e7063c091c503256f8b0f1bc5f496376127431884437727538a2433ade4c84a196464a9d1747c8055644663417f94bf798
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-plugin-utils@npm:7.16.7"
checksum: ac097bc33cef68a79c2d682803aab2d541b6e511c69494d43ba92c84c9ca443afb690fb8479237f387bf42c69ce14837c26f01c7cdb9fa4531265006f5e431fc
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-remap-async-to-generator@npm:7.14.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.14.5"
"@babel/helper-wrap-function": "npm:^7.14.5"
"@babel/types": "npm:^7.14.5"
checksum: a76b7f208db99b65e963309bf67e2a2943c5d0448ab2c556c8b9ea23ac4400e97fe65ccd978fc4c91ab6952c7623b916fb773735280eeb7a3291f02a7b0d9ee8
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.14.5, @babel/helper-replace-supers@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-replace-supers@npm:7.15.0"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.15.0"
"@babel/helper-optimise-call-expression": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
checksum: 7072d71d72e1273a9e474605effa11b7cfc8c28778404aa0d9d90a539bb9fd10b251a87e44a3f3eb3f0d601ea5cec8a2ca68aaa8cdfbd421f8145a07e67b9494
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": "npm:^7.16.7"
"@babel/helper-member-expression-to-functions": "npm:^7.16.7"
"@babel/helper-optimise-call-expression": "npm:^7.16.7"
"@babel/traverse": "npm:^7.16.7"
"@babel/types": "npm:^7.16.7"
checksum: 6dbcb5aa4c00d565d10a92ee730e6c16692c4783a2650be3da3e831b41f3e21448e857948c35f86f3b9b687a3689d0d58d3225e349e7cb2b97a48b75d6acb0b9
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-simple-access@npm:7.14.8"
dependencies:
"@babel/types": "npm:^7.14.8"
checksum: 2e61a1c943ed738e13ae5b12b4864d01f29c54e20c2c2eba6049773ddc2d4f0fbadb29a28a94422ffc3b0e165defab6f9ec40aafd2e8309c9e768d229b1e84a1
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 3880774a2e83407d6799e46df530b5ce7797eb64eec46ba493f67347d7e90c150aebabfff20bb9729717ba4354f0ff16eff23d8f4f6b611f179e9afc5971d39c
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-split-export-declaration@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: e04e13b9e4ebc9056c0df1671893a97022c00a3e5da863a3a7861fbd3b9fe48fd4f2767e07d5b853e662f66a2447f4202325db1bbdf4fd1035af2cdb063aa35c
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-string-parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: b998b01b4778859c301ede18aea41abb0dcd0497191bdb216aa561741fe74f8651a8d7a486d4151a448c44d37a5a8603c0296b4d4e2f5388989dd86003952ad4
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/helper-validator-identifier@npm:7.14.9"
checksum: caef3373908c7bb4048bf83aa7d48e26ff93a8387ceaa0adb10371342e458f1fb836c1239c0407dcf9709b4133bc454e84c89e6c9d7d31ed829756e4abdf74ab
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-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: ae436e63eca3aa0a70575a1a5ae8234307fdfe3b5c720002899bf49833c3abcde2b9b188ed10905f2c39013a95e49cc8356dd589cae80e03b39c3370c3e9de75
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-option@npm:7.14.5"
checksum: 97d6e301627334ec54aaf6f225dd11dabaa6d12068ecfc43b43f4717ceee093368eeff3d3b481265f17dd0b595191fe292cbe52b8a78600628006ba89eb44fcf
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.14.5":
version: 7.14.5
resolution: "@babel/helper-wrap-function@npm:7.14.5"
dependencies:
"@babel/helper-function-name": "npm:^7.14.5"
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.14.5"
"@babel/types": "npm:^7.14.5"
checksum: 4b2621f562e0c5ba07f1217d916569cb200613c4eb2c7226dddff1e7a8a485c91a2703c18863ddf28235723ccdadbd77a3e3d3210cb3fabc9f73729f741197a8
languageName: node
linkType: hard
"@babel/helpers@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helpers@npm:7.14.8"
dependencies:
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.14.8"
"@babel/types": "npm:^7.14.8"
checksum: 781b92ef70ed94528377c1ddcdb641414dd90ca7b34bc9d653cd7b9011165f48128a382ae3958f608a49ba1fe65474b3d5dfc818e5058abc40d37448faf6acae
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 640522d5433ec2ff8cb3ac4b2ac612a12af197fa545bd46beb22b35245b3e1cda111fa4047c0b989633f98662624c65d7d48b46a63ebc6bc75fb4021dc98f252
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": "npm:^7.16.7"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: ca2d9180205bba2b6df38d72227c44aa2729d28d295c23e45698706db155d38fec50b761580985e0ab1d527a1c585d9d5e81dcf590cb131e236fc8282082210e
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.14.5, @babel/parser@npm:^7.15.0, @babel/parser@npm:^7.7.0":
version: 7.15.0
resolution: "@babel/parser@npm:7.15.0"
bin:
parser: ./bin/babel-parser.js
checksum: cef7e34ad6b5475c4c98a4cc66fde343835cb297d47c85d949ae9e3df2daf31632bffcbb57899df9bd225035c44dbf087de440f7467da98c2f167d4b65d6db50
languageName: node
linkType: hard
"@babel/parser@npm:^7.16.7, @babel/parser@npm:^7.17.9":
version: 7.17.9
resolution: "@babel/parser@npm:7.17.9"
bin:
parser: ./bin/babel-parser.js
checksum: 8f1d711c278c15884953fa7341329082c2c8a5e17b320e3dbee1e52c7b384f6bf16fc3f1c90ef16fd0418242fb8574e5054296f432e41f622e2ac82b72ba064a
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.14.5"
"@babel/plugin-proposal-optional-chaining": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.13.0
checksum: fa4d4497621d7be0443ea39a9fe73ead3afa0062dd8a8fd7385ca1844b865af17d8bf15cbddb3a60645628dd290d0be72fca01a73df5087f3cb0769751ee928d
languageName: node
linkType: hard
"@babel/plugin-external-helpers@npm:^7.0.0":
version: 7.14.5
resolution: "@babel/plugin-external-helpers@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d28f5ccd7d54aaba6f7d29dba0eddafef204122bd84d831494951ade7bf4d55c1aab508958372c1f8437424d75914e867eedc112cc995dd13e1f69e6d8832bfc
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.14.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/helper-remap-async-to-generator": "npm:^7.14.5"
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3b204913ad93421a948bf5d4645a95b1dbef1ad698d6f33e0cf4bc9c875fdd06256a8cb85f1f22ba5bb6b6b27bb472f9a46e023e2861a702ecffe023abecd0aa
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.0.0, @babel/plugin-proposal-class-properties@npm:^7.12.1, @babel/plugin-proposal-class-properties@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-class-properties@npm:7.14.5"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2967f090999b16dfc05c06a242c8669dbddeb5256e41dac48828857dbec2a8b5f2aef1aa444332f85e843188a15a4d3f4cd0e124260ab8516d1ae1b181febb25
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-class-static-block": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.12.0
checksum: 6a97a876027bd6b50d1ca1fe8e01fc620085c7da7c3ce787bac07464c93049719abc4cd56bc017ad08a34be7aac61fa75201c8e2fc5909cdfdee707cdeaca75e
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a7d8ee7218e05da38c74cf118d72db6a1f11cd0bc4f02851109973d01231dbd2b2ce8906b2f06486ff16db259e4199780da70e309067e541c4e8be4c1727df79
languageName: node
linkType: hard
"@babel/plugin-proposal-export-default-from@npm:^7.0.0":
version: 7.14.5
resolution: "@babel/plugin-proposal-export-default-from@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-export-default-from": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fe723d00b1ac28a56bf819b077a0fefc0dc56eb85d75d61727f1a7a20b008ff25d836837ff3d7d25e99df853816a2ee0d368107e0ff2a86559b2eb758c30e171
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4f9d871bece4d7c86e04372448a2dc49c7dca5745499fa8a62533f45024f84433a2c1379ca70c2c8402e02dee8d9d1dd3ea9d4dbd7df6ab6a9273050f732ae66
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-json-strings@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-json-strings": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c1baae22af2a1d76a7262ceabbd9969d84e9dbd0ec58fa2e791af85c3146bc080f4bcc6981444a76ffe69ae3f47d4eaabc900a64d6add55d282a7543659dda4
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aa66cd43067ac2bf15df7e25cc1d4c4e98346310ddd1a0454a2b5f566d4db29c5a51b398dc853f75098a72e7f40c54cad126f0001bf784b4b790cdcbac29468b
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.0.0, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 52d8fcb494ae2ce4efefca3fe857ee14d0465f45ecd8c32ff48622733ed9c0cd404944bd08622d500895608336bb0b00a09843d14a548bcd219234aa83871694
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 904d71668818c2a1f58c37824f8536213935a5cd4c9434dd11897d35215b3ae3e8c1fc142c55d396c38aceb23976a3f182984ba1fd8adb63835e14ca1d297cc3
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0, @babel/plugin-proposal-object-rest-spread@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.14.7"
dependencies:
"@babel/compat-data": "npm:^7.14.7"
"@babel/helper-compilation-targets": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3"
"@babel/plugin-transform-parameters": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 53c3a0589a16e227aa3eb09c9705f0291896b7ee43285dba70016b165232e20d35b9babc898d98dfc9b75df676cc94c731bd48a63840262c44774235e0c34df0
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.0.0, @babel/plugin-proposal-optional-catch-binding@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2b41497b3c415ccec2277b9710fc80fbcd8d15dd0e5c843b0e53855a4668527f8c2a30bb214c7974564500074a0e010555d536a39476004e15c297b95da69c11
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.0.0, @babel/plugin-proposal-optional-chaining@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.14.5"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a451940331b33f43cb76a49871d9bf9731649de93b0ac90f4bea32f232042363ee370088f59924c5071fc73c3c1e1e4dc6ae84b3f21646842039e1991efa4d0
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-private-methods@npm:7.14.5"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 22222309ac97557e8a90e294fd6b8fb219543b1f8019e907f2b2524167756ba7e8e721aa59ab2491655803e3a2a260e6a162cb474688d6bb11116a395eb33554
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.14.5"
"@babel/helper-create-class-features-plugin": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ffed969f86bbdd9c30bda71d421b27b2e9581702d7eb0dc7b32a6a3cd2188bfbad36ab24301b76a8652126fea429d06400e37d6eb80dd6588e94215cf8b77c53
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.14.5, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.14.5
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.14.5"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 23c863bea24a33477000a6156d75affd6b65dfc5ffde6b0afc84a1cfa7104fc5e68831fe72597e249d9c0f9cc999949b0b74881eced66db04c3782e36ca89c45
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-class-properties@npm:^7.0.0, @babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "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.0.0, @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-default-from@npm:^7.0.0, @babel/plugin-syntax-export-default-from@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-export-default-from@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 600fea7cd9c84769962667b03f4125faeb5fc361e8b51dbaca578ee8324a4406d2024b1580eb0048d5dc941f55374d489083ef8cd1fc50ad80eb7972e13ed3ae
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-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.14.5, @babel/plugin-syntax-flow@npm:^7.2.0":
version: 7.14.5
resolution: "@babel/plugin-syntax-flow@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 98bdcf3c31c2422cfc5d3aecee983801366e289d3e4c5fcef21b234259df2818e909ab634866b546c3bfb4db49c8f2f8da6dd0dd9d61972e42b8f07c217c2432
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-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-jsx@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ed06f0ddc9211bd1cf26a3c37c9b10a1c6b9bc157db70541e5fdf44c1c91c9156b5173002b32a0446c9350716c1d1129e550d3662c2aa8be9ac02fafcc6a33cd
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "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.0.0, @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":
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.0.0, @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.0.0, @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":
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.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-typescript@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c4484332e99ef982ccb70fd820ee5b2e03a1e2b88798d39528c78413117962ec25a4fe282339236353819a7cea9635af029c2bd204bd3ec84f767efd590c9bf
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-syntax-typescript@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.16.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6da8d9fab8a126c811354e5bd3091af11476d000f2ed619e78bca879d4092298bca96248da117e396119c560ec833e8a2bd7335cfb29ad1188bc91892fd5bf2c
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-arrow-functions@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4fb0a9eeb91039ab2ecf1b5bb14eee0e7d84517e741ca4dc05b4ff95138d119fa06df31f06df3472f3bd7e205a8572233dcdc243d39c48249cd7154f8c2be03c
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.0.0, @babel/plugin-transform-async-to-generator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-async-to-generator@npm:7.14.5"
dependencies:
"@babel/helper-module-imports": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/helper-remap-async-to-generator": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 44dc2735c0dec2207f499d90fa48fc65ce4afcabbf231925251fa35b57a78194846592b94e8f20346476afce6456a38848e882ec2ea7a9054cfedbfac591793d
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 66d99743306825201d705f97a7e525f8372ef870fbb37303107aeb1f812a655ef256c1f5a18550a3ac77f1fe304cbc4e10cb2bb2b4883768f7c93c30ab6bf89b
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-block-scoping@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9db2738b4771c4d612b6d5870be6c9e8ec9bee81d81e716e76aab480cb5766e2d9b8efbb73dcd68e99777dd35741658ef8634ba1d3c7063d770b501983da1397
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/plugin-transform-classes@npm:7.14.9"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.14.5"
"@babel/helper-function-name": "npm:^7.14.5"
"@babel/helper-optimise-call-expression": "npm:^7.14.5"
"@babel/helper-plugin-utils": "npm:^7.14.5"
"@babel/helper-replace-supers": "npm:^7.14.5"
"@babel/helper-split-export-declaration": "npm:^7.14.5"
globals: "npm:^11.1.0"
peerDependencies: