-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
15882 lines (14324 loc) · 568 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: 8
cacheKey: 10
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10/e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10/14ed60cb45750d386c64229ac7bab20e10eedc193503fa4decff764162d329d6d3363ed2cd3debec833186ee54affe4f824f6e8eff531295117fd1ebda200270
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10/4ef9c679515be9cb8eab519fcded953f86226155a599cf7ea209e40e088bb9a51bb5893d3307eae510b07bb3e359d64f2620957a00c27825dbe26ac62aca81f5
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": "npm:^7.22.5"
checksum: 10/b1ac7de75859699a9118c5247f489cc943d8d041339323904cd8140592993762f50abc14bc49b6703cb8a94b1aa90d6df2599625825e7ae470c9283b4a6170aa
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.23.5":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10/4812e94885ba7e3213d49583a155fdffb05292330f0a9b2c41b49288da70cf3c746a3fda0bf1074041a6d741c33f8d7be24be5e96f41ef77395eeddc5c9ff624
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.10.4, @babel/compat-data@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/compat-data@npm:7.11.0"
dependencies:
browserslist: "npm:^4.12.0"
invariant: "npm:^2.2.4"
semver: "npm:^5.5.0"
checksum: 10/21b90c3dba2988016dbe456c25401235bd9b85fe35f25d336c445347c66f1e3725d94f23ee3754608f921c0a9a1ca24f221b6a121e7d1fd3403925d1561b8739
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/compat-data@npm:7.22.9"
checksum: 10/6797f59857917e57e1765811e4f48371f2bc6063274be012e380e83cbc1a4f7931d616c235df56404134aa4bb4775ee61f7b382688314e1b625a4d51caabd734
languageName: node
linkType: hard
"@babel/core@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/core@npm:7.22.9"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.5"
"@babel/generator": "npm:^7.22.9"
"@babel/helper-compilation-targets": "npm:^7.22.9"
"@babel/helper-module-transforms": "npm:^7.22.9"
"@babel/helpers": "npm:^7.22.6"
"@babel/parser": "npm:^7.22.7"
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.8"
"@babel/types": "npm:^7.22.5"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.1"
checksum: 10/0c209a850651e23acd5662fecbd928a4805294579e13b28d1dc7adfb9e3ad31c500e2c5c3db2c8ea18c1f3613b0aed3e24652089652efc8401d824b88962bcf9
languageName: node
linkType: hard
"@babel/core@npm:^7.7.5, @babel/core@npm:^7.9.0":
version: 7.11.1
resolution: "@babel/core@npm:7.11.1"
dependencies:
"@babel/code-frame": "npm:^7.10.4"
"@babel/generator": "npm:^7.11.0"
"@babel/helper-module-transforms": "npm:^7.11.0"
"@babel/helpers": "npm:^7.10.4"
"@babel/parser": "npm:^7.11.1"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.11.0"
"@babel/types": "npm:^7.11.0"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.1"
json5: "npm:^2.1.2"
lodash: "npm:^4.17.19"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 10/e0ff6eab59decd56ac320dd99680ffe3c511a888b27d1d84442bc861c2a932c7716090576c8aff97a511d502e2a0849e043a13d5593aca82e1b97d05eade17d9
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/eslint-parser@npm:7.22.9"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ^7.5.0 || ^8.0.0
checksum: 10/3660ce8c7e56a2d342a491ea549bf61d13df9bbd60e46d58ea528ab1b357ec5e08c646575d98c08566daea45068d9d84a9b3b0868af98707b98c03709ddd5481
languageName: node
linkType: hard
"@babel/eslint-plugin@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/eslint-plugin@npm:7.22.5"
dependencies:
eslint-rule-composer: "npm:^0.3.0"
peerDependencies:
"@babel/eslint-parser": ">=7.11.0"
eslint: ">=7.5.0"
checksum: 10/8b54bc4e3ec15841d502f3bbd4caafb992ccc18469ba3df15a6bc70e79b5f6f5a2ee0bd79b9c70722f0496dd821fc6d8c2cbcc8d52bd908342bb96de7979fc3d
languageName: node
linkType: hard
"@babel/generator@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/generator@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10/3968e32472951dea1c22c88ad3038c71e060d3d114690d7a60e6005793b4ec4ef74871c8fa067d24e1645eb82571c8cd78a5f4e48e631a6aafd66d6920f5bb65
languageName: node
linkType: hard
"@babel/generator@npm:^7.22.7, @babel/generator@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/generator@npm:7.22.9"
dependencies:
"@babel/types": "npm:^7.22.5"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10/1ee43f99512c51d594c8992f4c4cd07d2843eb58cf3c22d1f605906b9c0ed89640bdcea2c8d583e75a8032a49bb4d950d2055007ecb75af404ebc2db8a513b94
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10/a0b82b2ed731adc173db5dcc53731b7ab6de4cbe1a66908badcf492889fc1e86c17e1d482aabc6b5dde0453caf8024329485d3e2ba3e81056951720862ab8bbf
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/2f3256e6a87a890e1e84ab7d22734179450f0578f2a9621250329d34601cbf3b4f7ee7e53e088f68dd4522ce6d55d70f14bd469b81b4d6b3afaa0cd578402bcb
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.10.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/types": "npm:^7.10.5"
checksum: 10/450fc251f21b01ebc391c7a4f40907dd2527f0d9b71f6304cef7387d5ed278452bb9cb595193eb7cb164e355339558c68a526e82ef4ad6940e92079fc4c4ff54
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-react-jsx@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/132d89507a252e61a29dd0e5af104fc32329087e31ea1fdb941e1e21d7a8660474e7b64cd51b94339d81d387be335d29c03cf64390c4a7b9bfbbf8256d114d7a
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-compilation-targets@npm:7.10.4"
dependencies:
"@babel/compat-data": "npm:^7.10.4"
browserslist: "npm:^4.12.0"
invariant: "npm:^2.2.4"
levenary: "npm:^1.1.1"
semver: "npm:^5.5.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/a070bfa3309c0ab3675bf573bcaafbf8e8651a7973f7f002611fa177f9d7ef40255751849b3752a10d6bf7802c384ca8b2614c8168cc9cf39076b34a2c711041
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/helper-compilation-targets@npm:7.22.9"
dependencies:
"@babel/compat-data": "npm:^7.22.9"
"@babel/helper-validator-option": "npm:^7.22.5"
browserslist: "npm:^4.21.9"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/779510e4c2036fa9880c0ed7b77ce84e5926093e216dffa0044f31a146f0daae363c00d1cdda2250788edc8d6457b9bce6245c51d9f4161bb51e053c12c4b478
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.10.5"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/helper-member-expression-to-functions": "npm:^7.10.5"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
"@babel/helper-split-export-declaration": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/81e755adb13b0085af9b9d14579432162e1cae258e4bcc620fdc28726523d3b648d5ae321cc66de609fd74396060cd84aae34bd81533efe0d85e740b09c160a5
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-regex": "npm:^7.10.4"
regexpu-core: "npm:^4.7.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/8d19950f18344d657d8ecc985696569d860d88fb03ed29df690fd7555ddc2cbf87af554dfc51641fb50b3f42ef2b32c22dad2069d83c6c3b2b170ea191d76414
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/types": "npm:^7.10.5"
lodash: "npm:^4.17.19"
checksum: 10/e46959f60ab5d72b64a8816129ef8d183192a81f691b1b4b371184dcdb4b0b4ca9dcd9580f54d9041ad3294cfedc9dc69f4d487435a6ed6cd247bc01a378f868
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-environment-visitor@npm:7.22.5"
checksum: 10/248532077d732a34cd0844eb7b078ff917c3a8ec81a7f133593f71a860a582f05b60f818dc5049c2212e5baa12289c27889a4b81d56ef409b4863db49646c4b1
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-explode-assignable-expression@npm:7.10.4"
dependencies:
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/5630be93447f431396631c0e8932ced7bf23398bbfee81aca0e54a94e8433d03af899592609c9678d2f6818fa400da233060dc4e12108236df3d0e5480929916
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/81c7565dab2e600ea0f75fd94acac33004ea3707a5fcd1563cada534f5cf3d276b10f33b03c8196503fbbddd079b91fa29c9a24d13404e421008800f47f11541
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-function-name@npm:7.22.5"
dependencies:
"@babel/template": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
checksum: 10/6d02e304a45fe2a64d69dfa5b4fdfd6d68e08deb32b0a528e7b99403d664e9207e6b856787a8ff3f420e77d15987ac1de4eb869906e6ed764b67b07c804d20ba
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10/798e2eb6cd5d2ff91a6cc3904ad626fca366fb33e631cb214477f100207ef26acdf78280a31f8adf59a988f020221165834902d5e201a8b5bbefab361d502daf
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10/efb6adceec6fa202f911e9f3efe849ebc6dcbba89b110f957bfe0ca93e29e5593490ce34b9e67f170deb3532564947a5350d2fdb8f1f95407dcf7c9af5b8a855
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.10.4, @babel/helper-member-expression-to-functions@npm:^7.10.5":
version: 7.11.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10/25485d53991208884daa8c76b3df0ae74ab591ab1a97579543f2095213bbe276212ef78c23cec389e7d916a67b14e8fb8d1b91fb30de88a7b3748aaf27ea37b5
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0":
version: 7.12.5
resolution: "@babel/helper-module-imports@npm:7.12.5"
dependencies:
"@babel/types": "npm:^7.12.5"
checksum: 10/6c3cde2119c93d22e0010b0b5fd1eed5ff5fad9fa70e5a66fb67ded751c7ad7f3759bb8856dcf851c293637cd6ff1951cfaef195db7b7c72def0675e5b1fca78
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-module-imports@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10/2b84054b7fa9f8f4e776927a5bcc23841b6900d36cc1e1ade12e37bdae61ef85b108c55d0aa2f6e4f874190b1e37393febc5d247312028d854cfdcb20d73adbd
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-module-imports@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/d8296447c0cdc3c02417ba32864da3374e53bd2763a6c404aae118987c222c47238d9d1f4fd2a88250a85e0a68eff38d878c491b00c56d9bd20e809f91eb41b4
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.10.4, @babel/helper-module-transforms@npm:^7.10.5, @babel/helper-module-transforms@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-module-transforms@npm:7.11.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
"@babel/helper-simple-access": "npm:^7.10.4"
"@babel/helper-split-export-declaration": "npm:^7.11.0"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.11.0"
lodash: "npm:^4.17.19"
checksum: 10/dcbd03dde03a67b79909eac1c56e784c503476c2158d065dd6773ad421374d7535788501fbefa22005d757afbb00a2cd016c9f3ed0065fada55a0b9088b4c781
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/helper-module-transforms@npm:7.22.9"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.5"
"@babel/helper-module-imports": "npm:^7.22.5"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/80244f45e3f665305f8cf9412ee2efe44d1d30c201f869ceb0e87f9cddbbff06ebfed1dbe122a40875404867b747e7df73c0825c93765c108bcf2e86d2ef8b9b
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10/358b904a5067c19d3d09e8e9a8ba1bdfb8dad71bb6fa3777d64f04e78d8425bad0b8ea7969bbcdf14bad0a7815d3575fc3323a085cbea6c36c47063e3aee4b00
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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 10/639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: "npm:^4.17.19"
checksum: 10/920a424cae7c1bb5c0c30675d564b025ca249a40d850565c3372d00c9ca1d68b806824465e154e8d555afc0f5a9ab50267806745fd4ef20b671ebabe5ee2579e
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-remap-async-to-generator@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-wrap-function": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/b65ad79bbde12647f8cb66ab14c5e081bd2e7144d412f0f58cbb3a97796d82d1d8bdb8ae3698224c7309c547611578309b4ec2e73e446f634c5eb5f2a5e40ae7
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-replace-supers@npm:7.10.4"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.10.4"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/fbb526f5e2d53009b3849fc11e8efb5cb8637f37f35e6b278c960470443c19f7410f560a398baeb2b38927afb3562702c70442657d3cf6ac4dc8dc4d57dc44a9
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-simple-access@npm:7.10.4"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/4a2c9073c3a864528f0bee135b2b1f07ac0fd0ef60c43e1a67de4ca6bdd3cc73cc32393637ab8fd61bafc6ed9742b8104a75577268d4568440f9551cd256f9b9
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/7d5430eecf880937c27d1aed14245003bd1c7383ae07d652b3932f450f60bfcf8f2c1270c593ab063add185108d26198c69d1aca0e6fb7c6fdada4bcf72ab5b7
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10/2ef75f9510d53a58eeb5558eef5425abf85505980fe7bb0f114783c7d554445aad54bdc61ff78a20c2989eee69fd1c45f64bab470860f32170221b8b43312ab4
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10/eb03088c44e70ba3039b4608b0d108dcb1659f951b976044a487961c725b7c18e3d14b30f78180b8375c4bdbd0410494de56f716d30bc9ae6493e53c17047ec1
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921
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: 10/7f275a7f1a9504da06afc33441e219796352a4a3d0288a961bc14d1e30e06833a71621b33c3e60ee3ac1ff3c502d55e392bcbc0665f6f9d2629809696fab7cdd
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 10/d0b225ba142e059d1aa887d37ad04d03075a09f8e3d7d48627ad3783ea4625109c71a56be08da61d88e7f849570a81472eaec683afe9daacf369466dbf34ea0a
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/helper-validator-identifier@npm:7.14.9"
checksum: 10/38c8990855907593ecf88d15193e8cf7ab3f9c0d1b95869527fcf1a60e3a87216983bda1f6d53f4300ff0aa870660e0a56abab2d00b99240a9ccdbfc843723bb
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: 10/12cb7d4535b3f8d109a446f7bef08d20eebe94fd97b534cd415c936ab342e9634edc5c99961af976bd78bcae6e6ec4b2ab8483d0da2ac5926fbe9f7dd9ab28ab
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-option@npm:7.22.5"
checksum: 10/bbeca8a85ee86990215c0424997438b388b8d642d69b9f86c375a174d3cdeb270efafd1ff128bc7a1d370923d13b6e45829ba8581c027620e83e3a80c5c414b3
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-wrap-function@npm:7.10.4"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/8ad9e9d4b3aa5398fa149c2ea538d733313249747f7e55a47bdc12ba0e802f8096cb8217446fc75d519893802971f606510215f5edec53f7fae974cb36830342
languageName: node
linkType: hard
"@babel/helpers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helpers@npm:7.10.4"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10/f2b2f90626d8ccd4d0b35c400a901d2ce1113d6da043216ad89a0e17fe5e3c70339072497bea87b0e2031efdc7836811bbcdee225f961933e8cca55fb4ce1ad5
languageName: node
linkType: hard
"@babel/helpers@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helpers@npm:7.22.6"
dependencies:
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.6"
"@babel/types": "npm:^7.22.5"
checksum: 10/c7c5876476321c979f2c15086e526e3424121829a3abd52a79a5a886008b251e1fcb5ea6e498eca3204e5f1d2455804bf9eb87b7478a535449805acc9dbce190
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.10.4"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10/6fab4679162562907942acc3647bc8c405b955f3bef7c654ef160491d0801ebdc12651c2051144dc0e22b69044fe3059d630151d5d7fb84b10ed4093da707707
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10/ff59305c0184648c9cb042638e9d2d184c12df2a112c71359268a982e7ab65cd5236f392ee8eb722a3bf5b5bd155954fdc7b5aacb6b2b1cd5e38dafcbe63cc57
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/69b73f38cdd4f881b09b939a711e76646da34f4834f4ce141d7a49a6bb1926eab1c594148970a8aa9360398dff800f63aade4e81fafdd7c8d8a8489ea93bfec1
languageName: node
linkType: hard
"@babel/parser@npm:^7.10.4, @babel/parser@npm:^7.11.0":
version: 7.11.2
resolution: "@babel/parser@npm:7.11.2"
bin:
parser: ./bin/babel-parser.js
checksum: 10/d36f945df8b65eeb9424a9cc4e33fd1c7e5d15a794483d94b9d75bdaecc635697bfe7ea86d44c3201946d88d99c088874f9c51cf37cf423672a3798465357810
languageName: node
linkType: hard
"@babel/parser@npm:^7.11.1":
version: 7.11.3
resolution: "@babel/parser@npm:7.11.3"
bin:
parser: ./bin/babel-parser.js
checksum: 10/1dede5773ac8e609cc523a8d3c4fced6494aafcc7e7cb37f06a7886037e38bb43a003509421525caf1d97c44c2045f984c324d10b578a8bd140c33592f6b5538
languageName: node
linkType: hard
"@babel/parser@npm:^7.22.5, @babel/parser@npm:^7.22.7":
version: 7.22.7
resolution: "@babel/parser@npm:7.22.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10/f420f89ea8e5803a44f76a57630002ca5721fbde719c10ac4eaebf1d01fad102447cd90a7721c97b1176bde33ec9bc2b68fe8c7d541668dc6610727ba79c8862
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.10.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-remap-async-to-generator": "npm:^7.10.4"
"@babel/plugin-syntax-async-generators": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/726d7ea6b6f7bf4edfce758bd475a56ed42813594dab4c26bc41be62fea5b7f9109d13c17a7cd68d3f13446a73c2584192a19853771f81d000dd8b10348db6bb
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/c5eaa72a5dd8b0ad8d4d1eb0ca5b8c75663962ee9e7bdcca8dac057f1f267101979bf74744960e5e52333e0ad2d5551d41b86cb9c92ad7797c7cf884ece17f65
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/dc72d1ed765db571cb3a2784ec1ca58ec6be97c657694a2335972f1335e21242eb79a1fa2ff0e2e6097a4039a88cd8ec21cf8cc5d14f7232209bf926e9d33134
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/0d8cea5024b68cc1c85c1e04ff331fd9bc404e6807aa00b8030d15420d34634922cddb792c49794260b333a18bb017c58b75a8d3549efcc6ac1d5713e7c51daa
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-json-strings@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-json-strings": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/68a718bc82177c21c31e9d63c0981dd220cc472272e01bef9775e6c689111a7761201d7faf9af765daf281ae7f203e2d0a6cc46f01c27c24c7d9b6f18e83693e
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/59fbb3cc75e5d0a79ec98b0d930930f2cfeae6c601458eda4a9ecd10ddc361bf45f740e534bf5f4dff5e01737ba4ba3d9571628695940b64a1e773cecfcd1a8a
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/553988b4bc03ec51d97e16233a5d650b3e8ceb5e990bb7e412372c23fd3cd9192d145e5d8cd09d74e9302d0301e4992b9f427375601ca6607ff27d4836f9ffea
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/297dfaf34eb27fcc36009f620b4bc094dde99897fe4c49f68d132093213bc8f040a2da5714a363443ea49e078001a53761a850e30c4c612e59ca48a4bb23ea58
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.0"
"@babel/plugin-transform-parameters": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/f4e49662179d3de7e47f454b2781a5c7edef4e856f9bb76abccd90d5384c1831574b2b7f2e9fe68a0355b20a5836022f44f88156443900aaffc65670ab7a9a71
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/ae8437ce12e6125b773507a4efd9bfdb132ccbefd7588d9aa8af48f9b48c8310d19daaf4009b0b338d8a5c9f631daef3cc5d32ff8ed02e421c449b193756ed9c
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.11.0"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/2f5ac45b390d149e7d2ad19b4602c7b730e1c6473fd1ddda2358e9abdd380b7a937fcb1dd49b6621b0e50049be463824d3dc67eb0212ea71ccbf6ca98ab20487
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-private-methods@npm:7.10.4"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/345dee67cf274575e9fa83b49e03a38a20021a32d0c59a3f44289586007525ea411910f76c4f74fde24629052196abf4ea04da76dc378ab92f33b32e57f29a7f
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.10.4, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/43e1aca45597a3aa32f6258bace5922cf416c2f6fd175f5a5f483bfb8345f5607bb9a63702e69f0d2fa79c9397d0d14a82a08811b694a885d7d62acf81e62369
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0":
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: 10/7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/454db1392c5415abf0681a619e71c667df94f7c7587767016b804c4b84180ed4fc00cefcae677850fa356c991085ab61ae524c4d4bab95445cb4aa0a3af96017
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0":
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: 10/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": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0":
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: 10/bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-jsx@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/89dca777c5c203342506c27ac0770e0203c7af154800880739d62abb1b1b82de42a7de2eb63ba417f3a922d60a8bcaffc473a9f78ab76b68e9637127eb19afce
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: 10/aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.0":
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: 10/87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
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: 10/01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.0":
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: 10/fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.0":
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: 10/910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.0":
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: 10/eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-top-level-await@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/415b336142684dc48d9276b96631d04f3eeaa2d575696197455f3370fb184d7f846f3bcf4193cf33b936fcaa5bfa4b4fd9b53d116d61adffa8c7d9b8a3174df0
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-arrow-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/c40bb8f643848cbceeb4a5b9f97aa7cbd9d7bc5a42668dfdcd0954dcc28773aafc401a03aa6734a1795de1b877fddc6ecf3c4cfd8fa45bf4b5b03f905cb39c62
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-async-to-generator@npm:7.10.4"
dependencies:
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-remap-async-to-generator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/a20ef71854d23b7bfd2fd3fdc69c3941d9ace40a0db09c73af029cbc0ceb3664da1cf4471bcaccca53c4ce5c53a5cbd7158c05b0bdb979343e9136642f9418b8
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bdd2d4511b86b88c8efb82a94742fa0f8afef74c82fd9506a9a991cecd0561d6f54e01cc71abf7b42122034b7df0362a6d741c58474ac621b02f188133449a8c
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.10.4":
version: 7.11.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.11.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/6c0094d87a09411fa8f1e9cf884ab910c296b91f3c577f7932f187feaf1b82927396192704906f2ebb301205eae149809bafa9920e7c8339731f6a186221c45a
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-classes@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-define-map": "npm:^7.10.4"
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"