generated from fox-one/fe-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
14587 lines (13153 loc) · 503 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: 4
cacheKey: 7
"@babel/cli@npm:^7.13.16":
version: 7.16.8
resolution: "@babel/cli@npm:7.16.8"
dependencies:
"@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
source-map: ^0.5.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: 82522449c0862be196bc2b50235debdaafe7108ce0939899b8491919f108d99d13e5dbef449d725b669832e63853fcd9527f63e00e5f6fc091a58e6fe0fcec83
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 033d3fb3bf911929c0d904282ee69d1197c8d8ae9c6492aaab09e530bca8c463b11c190185dfda79866556facb5bb4c8dc0b4b32b553d021987fcc28c8dd9c6c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @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: 79eb7c3207b05c19927e45dd1cc179a3bac1bfa31cfde1708f7acc78cad5993a28837bd9abdad08fddb9ff757dd183dccb7c7fc1af8a0c2a38570b9a5c38400b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": ^7.18.6
checksum: 7bc86ea4d6bf6792f0f5629b1a7addbb8e3160a39c03becffe62ac1f49482ab820eb74143427b877e087c6a28feda697487f0e84e6bdb3ab6aa54976ca5ac5e3
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.16.4, @babel/compat-data@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/compat-data@npm:7.16.8"
checksum: 4a87b8b861c8b0554cc5183719d2b27e0f9690e4dc99e7c97d18170a93c733b00648736296822f30c48eea488d69665fa137e9729c4d7262e8e645a204f93a25
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.14.0, @babel/compat-data@npm:^7.19.3, @babel/compat-data@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/compat-data@npm:7.19.4"
checksum: e96edd8618954a15d65abbfd2093498d208cf45b81d07c4d567cd0fe2cda472801861a19d97dc620a9a60c0d894d1667d52626caafbc1ae87b1d3c76685ac4e3
languageName: node
linkType: hard
"@babel/core@npm:7.16.7, @babel/core@npm:^7.1.0, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.7.5":
version: 7.16.7
resolution: "@babel/core@npm:7.16.7"
dependencies:
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.16.7
"@babel/helper-compilation-targets": ^7.16.7
"@babel/helper-module-transforms": ^7.16.7
"@babel/helpers": ^7.16.7
"@babel/parser": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
source-map: ^0.5.0
checksum: 7f3b8dbae863c32ce7bc55679fc3a39e38518c759ef26bd4fde0ef265408f888d9e31d378417016a94a997995cb9f044c04497cd2ddf33afa2b544bfcd5e7434
languageName: node
linkType: hard
"@babel/generator@npm:^7.16.7, @babel/generator@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/generator@npm:7.16.8"
dependencies:
"@babel/types": ^7.16.8
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 50208ff24d06cbe4705a2021356ceac0c8baa9271701e738899910694cc7fa6c7fda356e6c59211842e1269e7d29757c4709167eb57cb63f40388f1f34191e6c
languageName: node
linkType: hard
"@babel/generator@npm:^7.19.4":
version: 7.19.5
resolution: "@babel/generator@npm:7.19.5"
dependencies:
"@babel/types": ^7.19.4
"@jridgewell/gen-mapping": ^0.3.2
jsesc: ^2.5.1
checksum: 1ec0f010c8c928acf551033140a8f7f2b43f7492efdc13921b258d6cbfa763279ec66c57963547a7ae1cbf4dd22fa3168c7b1650993c8fc4724521bcb2a0aa20
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.15.4, @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: 9932a420c244e23c231cc5e229880351eca5a54c48929d824d7428227d17296c4aa9bed20ff88a2c1412e54cf0e1cd7a6771f2e2dfb316f09294facedbecb5f8
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-annotate-as-pure@npm:7.18.6"
dependencies:
"@babel/types": ^7.18.6
checksum: 4b4807ba0bbc15fc06d5fda53ade6bf06b3652f0cc26573b79ce9e4601dc9f6f7697f882f0cec200d2eb185904d62b10206784e98617f2317b1ad5e20009fff4
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: 3180e1a9d9bdd33fdf4e6ca0ad883f9e6c954fc5b7e0b01adf962ce726e0eceb61b890b06019fa59545f3923b87c482430976a82ee521580134335d734fa6518
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.18.6":
version: 7.18.9
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.18.9"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.18.6
"@babel/types": ^7.18.9
checksum: 8ee9fb545a4a0c1d244b79253fd5b77081200c0f7c37baff6200b3a0887d88468be4aeaaf75e7ea0f52c6564d99ecdedc7857f08173b24a4f187ad38133fd994
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-compilation-targets@npm:7.16.7"
dependencies:
"@babel/compat-data": ^7.16.4
"@babel/helper-validator-option": ^7.16.7
browserslist: ^4.17.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: f7da620a08109ef59c8a48d79b402221dcf8b4fb5b26bf3822e1f7663a7a2e3b5d3808ce3a43875e106e88cb582f03c04abb1b3fa6a52ba03f5192bb667346b4
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.16, @babel/helper-compilation-targets@npm:^7.18.9, @babel/helper-compilation-targets@npm:^7.19.0, @babel/helper-compilation-targets@npm:^7.19.3":
version: 7.19.3
resolution: "@babel/helper-compilation-targets@npm:7.19.3"
dependencies:
"@babel/compat-data": ^7.19.3
"@babel/helper-validator-option": ^7.18.6
browserslist: ^4.21.3
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7dc7714c5ec9642e3bd68fa2f444b424d5545e78150de0db88a2331bd52a49987d6b8cf05c215b2765f4e41db62837ed17413ec11ffdd22f7c55def51ea15b4b
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-create-class-features-plugin@npm:7.16.7"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-function-name": ^7.16.7
"@babel/helper-member-expression-to-functions": ^7.16.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: 483636331fb99aa309884d750c9f2d9949117e5b728ab82fb6078c059a5d9218fa581dda9686cff16d437268eca2bb9fc7bdcd365e558e78322426f752c443db
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6":
version: 7.19.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.19.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.18.6
"@babel/helper-environment-visitor": ^7.18.9
"@babel/helper-function-name": ^7.19.0
"@babel/helper-member-expression-to-functions": ^7.18.9
"@babel/helper-optimise-call-expression": ^7.18.6
"@babel/helper-replace-supers": ^7.18.9
"@babel/helper-split-export-declaration": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: b1d39e1e0e8b007807083dfcfbd06d6b4d4a5d965c12c29b021fd388d93ef549c7edfa36f5ae21c9d2c52ad8815699fbfb3143ee9030d46e29ac6b93ddb3fffb
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.16.7"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 95d6f8448d1afe5140c9c8caf939c465f320cbf42f1021d5bed63bc9fd8ebb2e14f6f70a093e29ea5610a61dda157a4e16e876f0b948085d71e85d53d458ebc9
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.19.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.18.6
regexpu-core: ^5.1.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 978e5de36c680df7766c8292d765b4ec9a70a3da310f1ae9f63546200aebd00c115bbda8043810224dbd5e841d13b2f85024b44316d9b33049bcf34b03552254
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.2.2, @babel/helper-define-polyfill-provider@npm:^0.2.4":
version: 0.2.4
resolution: "@babel/helper-define-polyfill-provider@npm:0.2.4"
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: ba80247ade354093aa80aaeafa1b27a1be77889f10499926eee45de77b68a7dd03b29b1042f1b1885d551d4fe7cad5ae3f30b3e6796caea3cd0b56074334cdf1
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: 78d377d9cf7ab1ef60c9231e185666113381ce26f2be2a6ce341e42ed681c73b6f02831eae335d1a1bcf6d45f11efbeaa922c7601938a3c18941b7be1f4c5bcb
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: da3195cad9c65b90ed05b3e3c0b084de4666380442c4a4d3b88921907163e621ff593a4f4479f167a1e3f0b5ca6b46843b2a939dc5f8ee8805d5a33f1742ae39
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
checksum: b6f8963ee52b96786eb7bdc2fc7194ddf8fd13e47be7f06eddd144a1e8f91637fcaae129795be20bcde2a30abccdfc9a46bd9b253af718172941e87e1f3f5be2
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: 1911e495db11675035b2957162c087d7688aed75876ec6498e74d1e860ea9a4fa62cf9daad6711a9d8fce32b4e81b457f44451896fa5b06070d30ef0aff04f68
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-explode-assignable-expression@npm:7.18.6"
dependencies:
"@babel/types": ^7.18.6
checksum: 872d6301013a31cfd8952f21e69e413b7e41d1ae8a534d32a5990d43fdf4aa7826e9afee6e9c4d41de6113bf62510ad0efcbe377706cec9e3dc4d43fc84c458d
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-function-name@npm:7.16.7"
dependencies:
"@babel/helper-get-function-arity": ^7.16.7
"@babel/template": ^7.16.7
"@babel/types": ^7.16.7
checksum: 919e9f34f4729b1e0f8205ee23d6327641d618bbe3ba4cae9be894aabc93f81cf0b783f7dfff45159f5e72ad224e15c7184a9a22aa8df6a1788bbd059b0d1d12
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.18.9, @babel/helper-function-name@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-function-name@npm:7.19.0"
dependencies:
"@babel/template": ^7.18.10
"@babel/types": ^7.19.0
checksum: 28398bf89eca40ab3aea6b72f599029aa7824c9d8e1687c353569ef52c3e4befb90deb21e7b6652bdcef9915597426b56ba642c9d410633f5ff3ee46a2cd5f7b
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-get-function-arity@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 1dfbdb56ef398867fa36272237ab4f5aa4208cb27d015972f1b61e9cb59ff48389900e2a4a1d1211401f490abb2161ad05fcf74fe00e4473e3903636e459b00d
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: d9f544a8b9a9f3dbf6cf8d2b7cfb4692ad3ded6e65f1a6ccefd8fd6cb271d102e2a4ef0a84aaafccc3c7ad763bc4599adfa6f90d6828d40e6c3f11d960bd657b
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-hoist-variables@npm:7.18.6"
dependencies:
"@babel/types": ^7.18.6
checksum: afb9f3a3a9745f251c68bb375c4aff7a3eef5916bdaaf3f22b381aeafaa2dba7177607b595ce22558135023e0185f43f02f86efa292f5c388e33f58a8888cea5
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: b63e0def243ba0317896fe090c6a18742f514bf96b6b21d34daa9d9b477ec6f6d98c267da5c02ea52ed08ee30eee9e1e81e395606543d19b9428ba7b1ac7cb3a
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-member-expression-to-functions@npm:7.18.9"
dependencies:
"@babel/types": ^7.18.9
checksum: 0f6fa10e06ec2a036c4fb98532b0bd3c0485a6817e5314791e4dde5202aa26d09b546a5d4f101b06b052daed377041f6d7e624f2b8b56feeec0905a41c8e439f
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.15.4, @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: 5248e9ccce3e9c8b542b58d5c086fa238543b833298fa19f40439617b689fd3ac675f4aa946fd0f94f3bb824a8b57d7292af9cbf10549dfbfda18a0a2a9c79b6
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-module-imports@npm:7.18.6"
dependencies:
"@babel/types": ^7.18.6
checksum: 1f2c66c1653102d20dcc79aa56116e2ba11856f230f7b2b8fc43e2714e68683007c41b32591895400e3c8cc7eb04679bc40cbdc8f120053a7914d3c778eb9051
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-transforms@npm:7.16.7"
dependencies:
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-module-imports": ^7.16.7
"@babel/helper-simple-access": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
"@babel/helper-validator-identifier": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: 79e70c79e62d91b0e9b4b1be201cd0ff890232638fee69f74104e9f9e295213dc327bbb966af0719dcf063986380232cdadf89f95a1e6b8402a8d1dfd8441797
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.18.6, @babel/helper-module-transforms@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-module-transforms@npm:7.19.0"
dependencies:
"@babel/helper-environment-visitor": ^7.18.9
"@babel/helper-module-imports": ^7.18.6
"@babel/helper-simple-access": ^7.18.6
"@babel/helper-split-export-declaration": ^7.18.6
"@babel/helper-validator-identifier": ^7.18.6
"@babel/template": ^7.18.10
"@babel/traverse": ^7.19.0
"@babel/types": ^7.19.0
checksum: a3779a782a79eac7fecf73722bfcabb42fe436803f68f37d076c4f16a2f1427e71071807c4a2f40eef8a42ba374eb7eba3a89b1bc036c2de9e2d752948b9714a
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: e678628ff65a16a7bc4e826eddd0a6a24130c47e9120974a8a9bc1baba9f70701fbc3875da99e39ab6ada920ee5a43bc3020c8b5ccb8a71c4313926cf63a798c
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-optimise-call-expression@npm:7.18.6"
dependencies:
"@babel/types": ^7.18.6
checksum: a489756f239bfdc77a2957d85e7fd350cc89c73ce99f255b5667b3d2554c829e5c726076b830a56676b297b695b08ac1d02c1ef2425fa83b392824d67e2b1750
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: bad83930f7e3777ef543591396c60532321e9a355c4c5ae605a072e0b8753df587aa4b8038efb40528e134ee1aeee6e03c6f1b8852a2fb2948cab4e282838ede
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.18.9, @babel/helper-plugin-utils@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-plugin-utils@npm:7.19.0"
checksum: 461bd9985a0be80a4b0df37a188d3eedca20d94c14f9c2851b500549958aacf073b6e42810382284f5b07fb2379c2e327180401d00eb791d152fd568e8de1842
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: 4a1d50cd1131ea1675df1d9e7f5f826366a3570cf216850ec97388f78f79719bb0660bb986972c29a89b3ba8d8525e126ee5986d63fec67df4017598434467a6
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.18.6, @babel/helper-remap-async-to-generator@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-remap-async-to-generator@npm:7.18.9"
dependencies:
"@babel/helper-annotate-as-pure": ^7.18.6
"@babel/helper-environment-visitor": ^7.18.9
"@babel/helper-wrap-function": ^7.18.9
"@babel/types": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: d7429532ff896a43b60c0a37211c2bae90a438ac8a0d50e9c66f123e3f8a0fbc5d3d184a5bfc6813180a97791aff5e7f2c44cdda4c9869cf1ecdeca2ace2cba5
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: 765cdc257576b6bdaa18df2bd9584bfbe8963fa924debbf472f35f483f21e85f57f01c4e9f500bc997f01d4ddae19d6bf1f08387dc06a46336d7a150a700d682
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.18.6, @babel/helper-replace-supers@npm:^7.18.9":
version: 7.19.1
resolution: "@babel/helper-replace-supers@npm:7.19.1"
dependencies:
"@babel/helper-environment-visitor": ^7.18.9
"@babel/helper-member-expression-to-functions": ^7.18.9
"@babel/helper-optimise-call-expression": ^7.18.6
"@babel/traverse": ^7.19.1
"@babel/types": ^7.19.0
checksum: b0af5ced102af0996f96ac61e8b5c809f31ee7bfbd67c62b7c745cd44cc5523d394c07efb8dbf8a8abddd98492d12d94bde6a983246e69332cfbaa704e7832c8
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-simple-access@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: f7c7e1fa7755e353a1e1cf91c0338b94f4485390afb875aa2d1c569109d40a29ad1b1d1cee81b41d4a8b0d298945748920a6201a6c74fd14ab1d49654d120405
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.18.6":
version: 7.19.4
resolution: "@babel/helper-simple-access@npm:7.19.4"
dependencies:
"@babel/types": ^7.19.4
checksum: d9fd86cfcdacca479d447bd28772742ec4a44b9e5d8d959a31a93798f1b69c1831978bd45c67ff1d2496ce191fd652bf056ddef61421bfc6f506d7a715641b83
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: 34d9d028bf68e558c25cb9347576620f596fbb934e31a3c688fdfdbea2f8d7df16a20bff17eb5e85f1af55f7125cc29c6f895db6d196be6ed2701a51b16d822b
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.18.9"
dependencies:
"@babel/types": ^7.18.9
checksum: e0c68807480a61fbb978c2f82bfbb66c190bb97bdb3c24e2bf5399b9312a04afb205fad98ee2def758879ba77662e8ad77c432f296a6ab1e613b78e25c5179b9
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: a259453a633d66c4a59cb2e260c3e4ac5c830677dba5bcc4055a15c68ac8e35f1b2f6e27ff4e25b0799fc14a0ecdfcfd32a5d24d019fd20ae44fe82efca060be
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-split-export-declaration@npm:7.18.6"
dependencies:
"@babel/types": ^7.18.6
checksum: 7d189c3998cbcc22a138e573b61f081877b4941e539fdc2fd2d73caa0ce1a9a7b1bdc2749d8d9ae3f81abf4aaaed9a87245a26f507d97489011848c0e5821e6a
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/helper-string-parser@npm:7.19.4"
checksum: e9e9747c1b1b5991a5b4f31214055bd2997d3e0cd0b0c25f249862a6a891727762d62a8d79a09e94f2eb30d56af7fa2d00f90e97d50664bc75ac3316b42e2ea7
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: 43b4b4b721c8a9c0b9bb62f85c9bde572eb0cffc80e3b615a9018e38d7f878db047f754fb342642e4e8abbb42026c37d32c5e077a3289ee2b9a4b91a8f6b014b
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 4167919e3518fdec9c8fb087b0f62d4ba86a0e983d4b8294e13f75983244bf89c06f2c0ba8abf096e122adb49ecb69702a19c9b3e6dfb2abad5d4ad49c0348ba
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.17, @babel/helper-validator-option@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-option@npm:7.18.6"
checksum: 1ab88f4176404452437a89ab3fffe6ff3ceb2a12a3fc1f25e79143f9c5b5f5d23682696865af1a7a34c8affdd671295a50898ffe940e13e3df1df6db19df6be1
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: e446b2cab75b1691db82763f5e7d4f75112b1ff665ce3f35226f7adadf366762de956a7e386db31b7df46968c6714abd76bdfecc67b29d842fcfca8d8aa4273f
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: 8ac9126812e62191b5b4def0c5511f8973b134ca028e32e8f8823ec0f9ad94f3f4fab8f06d2c314078af88b5551c812b790c5e4bcacd7c4d3dcca9246196116b
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.18.9":
version: 7.19.0
resolution: "@babel/helper-wrap-function@npm:7.19.0"
dependencies:
"@babel/helper-function-name": ^7.19.0
"@babel/template": ^7.18.10
"@babel/traverse": ^7.19.0
"@babel/types": ^7.19.0
checksum: 51ae2737bc70a34b6806d6950685434538e283853c5a78646c232671f296135ef81d0682fef00c5d8d696edfaf2fce1be3c8479e54d8ad52f6b88668e6a81dd7
languageName: node
linkType: hard
"@babel/helpers@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helpers@npm:7.16.7"
dependencies:
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: 02775b84dd2bc42064740940bc2ce6372a21fd713b21191c11d8d57a0a7dedb740b6b8f8ca925a1b7efc675f301fa962131369398c8dc8093d338ff95afe6d17
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/highlight@npm:7.16.7"
dependencies:
"@babel/helper-validator-identifier": ^7.16.7
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: fa1ee4f97fafd3103fcc57fbd1c0f7d4d3230e56f24f71cc34773a258197d02647c8f0af2616c98fa57947715701c489b06a8655d03e106012ac7d4fdf280f2b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": ^7.18.6
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 40e315e64afcdc30300368f136dd879f2bef862178e8c3f8ff69aa112ada58e77a80432f0a65ac2eb1baf26106d535d48758a3a4b8383ed2caf699d264d05496
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.7, @babel/parser@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/parser@npm:7.16.8"
bin:
parser: ./bin/babel-parser.js
checksum: 75ac64d66057e187447ab45de13d9a6fd19143b0daf51b440a922d93d41df8d3759f4dfbed2519e514d74fb293fdd80bf0b5392c1fa0a941a603e765c20dce2a
languageName: node
linkType: hard
"@babel/parser@npm:^7.18.10, @babel/parser@npm:^7.19.4, @babel/parser@npm:^7.6.0, @babel/parser@npm:^7.9.6":
version: 7.19.4
resolution: "@babel/parser@npm:7.19.4"
bin:
parser: ./bin/babel-parser.js
checksum: 89d2cf90e59f13aecc6f7c83019c3431d501a966a8af9b86d80bff5c5598a3d27d63baece76c10da54ac90f775b76fff4eb2342b8d7f6968051652733b2a9d40
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0
checksum: 81bdb39c279a8911b117866d25e51fe152b7dc7bd6a30d96bf402e347fb0ccd5c08d68609e36a5c8a95ccc3c43c8ca3ff386224aa6c82a5f2d0b4f613f0e5a80
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.13.12":
version: 7.18.9
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
"@babel/helper-skip-transparent-expression-wrappers": ^7.18.9
"@babel/plugin-proposal-optional-chaining": ^7.18.9
peerDependencies:
"@babel/core": ^7.13.0
checksum: 24778c67254085164f5362e53ec3b8d1fa57e761ece105eb00c36d57bf01e416d0017586c65e9f42a3d8093ccaa4a375c9cb90d3d1ad3f384f2c7a41e2501d4d
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@babel/helper-skip-transparent-expression-wrappers": ^7.16.0
"@babel/plugin-proposal-optional-chaining": ^7.16.7
peerDependencies:
"@babel/core": ^7.13.0
checksum: 402dd85ffda93b0d7788d0b5d4cb123f682c7173c7af576c67adb7e52c76eca835bf495b4ba4f4947a19c82c11de487c93dc94ba318e84aa12662e75034eed69
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.14.2":
version: 7.19.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.19.1"
dependencies:
"@babel/helper-environment-visitor": ^7.18.9
"@babel/helper-plugin-utils": ^7.19.0
"@babel/helper-remap-async-to-generator": ^7.18.9
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5a74c2be8b558938479b5c3d50a905c0959f6de327970a6d4a3447ce3c52e603803f212964bad0fbb5cb8650943500369f3cef183a5ec4af0a08b0148a95ffd8
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.16.8"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@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: 469de722c1f006898793f260eadc1044351f8080e010f6f4a092bb8894d62f4a9d8160dd6e8c5c8e42f996ca8d1287368b4400e3fb88cc8d0bb95e05e3a5893d
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.13.0, @babel/plugin-proposal-class-properties@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-class-properties@npm:7.16.7"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9ff933a393df5c17c3ac8d6f6fc1daf2587247dab7c4e2f836e0b11f5e4388ac5b4484ab4e924a7422ffb7b83eb74ad9c66ce1ae14795b68d075e2ad720f9646
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.13.11":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-static-block@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 45210615b6c48d326ce92933f1f4c3e9967acebca0e223651671abbeb21ec718fcfc3b57f3444108adef2027892382303256dee53fdc573fe6e326ea300e3021
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-class-static-block@npm:7.16.7"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 4e473b138b91fa601f0d902f5a2bb4edad3f95c8b7bdee2e4d7b585bbf21300838d8bc5972b86e512c0f15a8efea8fa3b00c1c9e879cd0e82602db9615cd5f9e
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.14.2":
version: 7.18.6
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fd5230b4e1c7fca866ba8aa21ae8cb863a469e261ec124ec7fccdb24ad2c2bf4e0319648db13bf92aed599c02df8d999ef3ec2394f3b1681e28f04a49f67b9b7
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: be4022f6d26de14c18e458243466fa99e1427ca04efd9daa19154644268f2ba54438c4a95615d6e0e79ec0e0f2a23971ba2914b901a2f5d063b15226d50f7ba9
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.14.2":
version: 7.18.9
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 626158ed6b8c9a45a7cd7c9a800a30decfb912210763994faec0a07f63764fa31f264eee47a78973b8f119a20048c42edc838c4a097dbaf44a44c1f44085a50a
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aa764df6600f986e59abe7bae32fdb50900bf07c47c5c375461821d36a1afd78746041fc950d6f4be608c71052bcbac7a11281eb06bbf6abd30f139ecca5a232
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.14.2":
version: 7.18.6
resolution: "@babel/plugin-proposal-json-strings@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3d2d045332bd27c356ddcd648e01e2e02c4a2aa5971316e1cd9c5c6b172c060a7399194f65da3b1689370a8d73bfb32cf229c9e043ff9c8c367dbe0bb577b70d
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-json-strings@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1f015a20c5999e8f29da51724c7928b39a1cc02dff422a983b02e7b501576ed09e532c93edb3e272e7d422fe76bb6ea7e0a387c48d03c2f2ef28efff0bdff5c3
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.14.2":
version: 7.18.9
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bf00745d5d814aa2c8197259a36255da1c312818825c6addcc1ddd06d59a0d1ec654b3cca96063a4a09115db1c8fbd09c2f0ab147b399c17c07f805dcc859f08
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4b3ca50a9f7cba62a3fb6d815adc7c2bffe4aaf1d7fdd9970a8eea6f0bff9f5f21ed5dc511d9154624f93b806dc6a6229250d928863351df61cb22728a0bd577
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 668b183c62bac8d199bb6c3b5916d7c260c71c9c6c8bd1669d23d0b37ba90555a36a2fafe8d2235162bbdba62cac5c16679746f0e0b09cb47ca64e2997425e2c
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.14.2":
version: 7.18.6
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fdc2de713c49418563c5efd340eff4ea5cfccca15aa288353f06864fd11248c3f91a2c09e4ab76c0c5715e9f2c9f44a0c8b2910db55211df28d8db28b986f3f1
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.13, @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: 63cbbad59a02c1e0dea4fc8174305af2a0505d5ac293df5e6ea93c1ceeed47e945f8497b02020f02c03bef6197a9a9d45d5426b02ee0d2706df0d5ed31c3749e
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.14.2":
version: 7.18.6
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b45951deb578911a4f72793ea314b7e5abf7a6a9263574a1accffce7b2cb744a444053299d43e50642dffb0b725216d70d0f98c0862ecd2c63895094be55066d
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.13.8, @babel/plugin-proposal-object-rest-spread@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.16.7"
dependencies:
"@babel/compat-data": ^7.16.4
"@babel/helper-compilation-targets": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f1c71a060b29bbd977e930ff0fa656563e022dbaafd704096d842c7c69cf40d1a8e28d7eaed549c102cb8a0b262b07c0d16de4ca67404b81c8bb754f22650a85
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.14.2":
version: 7.19.4
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.19.4"
dependencies:
"@babel/compat-data": ^7.19.4
"@babel/helper-compilation-targets": ^7.19.3
"@babel/helper-plugin-utils": ^7.19.0
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.18.8
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7f8732f703ae257fbe0c878f96d314de6b068751d1e59dd0eaba65b196851243c94c70b1aacbc3f3dab320c977eec5a908915941d43a58d875210292f21991e4
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.14.2":
version: 7.18.6
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0666c59aac1246c720bdd995ce2e4c49a37fbd819c8eb2b2c0e6fe3f65a748abdc2b33d37981f8a2529c0520b242825fd553355835eae7acd9aa7fa31153452d
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: 43fd5a02f2d31bd128f18621cab39bfa06330cbc5eed21c7ae7c9d253ff24a2619ffd415f152e080b2bfb90de305705c453740e6cf15b0bc0fb1c1bf495bb75b
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.13.12, @babel/plugin-proposal-optional-chaining@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
"@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: cfd7bb9919cc57935c9a6b9280e017235f208505c2e5e27e4cd1982c9732d1f93e1d8c63819c302412d2b4bed135e07275f14fe18b05e52c19a3cf61b4caf05c
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.14.2, @babel/plugin-proposal-optional-chaining@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
"@babel/helper-skip-transparent-expression-wrappers": ^7.18.9
"@babel/plugin-syntax-optional-chaining": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db3cb1f2ab1c142ca2a9193272dfac4d67a1c11f5186c3a340f8511e19f9f394acc96085d9fb071175620a6d8a7608ba36fb9eac08933b099a931500dae72761