-
Notifications
You must be signed in to change notification settings - Fork 21
/
yarn.lock
17712 lines (16030 loc) · 619 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
"@aduh95/viz.js@npm:^3.1.0":
version: 3.7.0
resolution: "@aduh95/viz.js@npm:3.7.0"
checksum: 2d31add5d37020170819cc9ee478c3c3de354e15979c74ca3ea399d3eb58b36e1e366c7d82549cbe96e4e2eb75e3fee742abb53f1c806727aeda8c583b8b5fe0
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:1.7.1":
version: 1.7.1
resolution: "@algolia/autocomplete-core@npm:1.7.1"
dependencies:
"@algolia/autocomplete-shared": "npm:1.7.1"
checksum: db772275618c3844b411a66195403f2b118758b52b94fd292fef9569b3e1d90ee1bfdee7473a90e114e8ee58e867fa197f011721ebc704ed3cd253b2edcc78e4
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.7.1":
version: 1.7.1
resolution: "@algolia/autocomplete-preset-algolia@npm:1.7.1"
dependencies:
"@algolia/autocomplete-shared": "npm:1.7.1"
peerDependencies:
"@algolia/client-search": ^4.9.1
algoliasearch: ^4.9.1
checksum: b110379b1bf49a230a35cbf167c858d480f196480474ef954a64e822c46e5e2a39eae2440a2c1c5f6beb96f51f8a5c75ba05586defa611a4cf32b4208ad29ce2
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.7.1":
version: 1.7.1
resolution: "@algolia/autocomplete-shared@npm:1.7.1"
checksum: e8d63dca92beba8054fbc242ee34e2c47385ff2ff5951ebd5e3c6e78d5ab3a241f575ce167667fccb92ad474c7b81e1e904e1379f49f6652943b25cb0a619de0
languageName: node
linkType: hard
"@algolia/cache-browser-local-storage@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/cache-browser-local-storage@npm:4.13.1"
dependencies:
"@algolia/cache-common": "npm:4.13.1"
checksum: f3c19e7355895781eb69c132be9b8d497e7f6d27c2b8a5246868c99602d32d1ed54788691f9764a543d36607d1569b4f6ab0f17d801bfc812301e17ac82676c6
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/cache-common@npm:4.13.1"
checksum: 75ba4923daecfb0ae9d8ad13fa458719329be89b7609b39239ba29faaf4ffb216fd37cf32082a8bc5039fed22d7ef982e7531ded6984015665279c8d77dcd620
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/cache-in-memory@npm:4.13.1"
dependencies:
"@algolia/cache-common": "npm:4.13.1"
checksum: 7d5ff4a72f6fad2a99d84398353a733bb6084b98e2b196e96d774ecb5089236b73edef57880ca0ac5eb23f51ef2c08502c8ede194fb7fcf90c595f1cf6f05560
languageName: node
linkType: hard
"@algolia/client-account@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/client-account@npm:4.13.1"
dependencies:
"@algolia/client-common": "npm:4.13.1"
"@algolia/client-search": "npm:4.13.1"
"@algolia/transporter": "npm:4.13.1"
checksum: af91a1ba66481de739a55669ca37d2014c44d8769794c6cc6171fc16d90acff7dc7db4aa4019e5c1a0c6e589bade1728842ca352a4827325fe942e05cb09e943
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/client-analytics@npm:4.13.1"
dependencies:
"@algolia/client-common": "npm:4.13.1"
"@algolia/client-search": "npm:4.13.1"
"@algolia/requester-common": "npm:4.13.1"
"@algolia/transporter": "npm:4.13.1"
checksum: 03471bed55f580278ff0098bf9f72f7aa0e2dbbaef1f897b042b045aa8fef39048d226e1307c0b3ad79b60a0bc0aa4d32a50da3eeb93195bc988b2fe4806985e
languageName: node
linkType: hard
"@algolia/client-common@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/client-common@npm:4.13.1"
dependencies:
"@algolia/requester-common": "npm:4.13.1"
"@algolia/transporter": "npm:4.13.1"
checksum: a19b60c58b3580a80622d131b556795c1936d174ae4abc5592764ee4308980d123d82685dcfe324c7b88caf66876ad550d43791742b0e29ce2315674834a2976
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/client-personalization@npm:4.13.1"
dependencies:
"@algolia/client-common": "npm:4.13.1"
"@algolia/requester-common": "npm:4.13.1"
"@algolia/transporter": "npm:4.13.1"
checksum: 5f1efa7a5a200c3986a5511b37048e2c7c9281e8c8ad6c61334ea43ab8411c94e8789ff1938163b48d3e2344f3430b268fe3fc4b4ebc0ebc212e4d15252c58c0
languageName: node
linkType: hard
"@algolia/client-search@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/client-search@npm:4.13.1"
dependencies:
"@algolia/client-common": "npm:4.13.1"
"@algolia/requester-common": "npm:4.13.1"
"@algolia/transporter": "npm:4.13.1"
checksum: fdf7e26998a26bd2762e02b7999322ba5d935a33b88949a22ea93214779a5ab73ff77928280258ca0b6ba19b1fb427cb03d65a501d09d7c3d9b8b2bc6b1bbaa8
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/logger-common@npm:4.13.1"
checksum: 99356fa0737b6f8abc2f7942c7c1865e398e309e837691f6c9eafdda7bfd2b9dc9b57897ce931f0db385d56fe687fc46ca4fc8104fd85173b8f691476a72f169
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/logger-console@npm:4.13.1"
dependencies:
"@algolia/logger-common": "npm:4.13.1"
checksum: fa05a465fcd77178f33360518138a6e8c315566f53a27c6509ed3191fdccc45dad3ddc96b6f75994768f45faf61872e89682fcffd6a1fc22e55e84e878971077
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/requester-browser-xhr@npm:4.13.1"
dependencies:
"@algolia/requester-common": "npm:4.13.1"
checksum: edba05042b22e17131bad248f3cb6f852e8f387834e6279bb4d43515e1daf1b3117e3b94dafe1369663e765e9d0c98e7a489aa85f47c931edb294106ab4f518e
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/requester-common@npm:4.13.1"
checksum: c53d79289e782ce79ee659c0364daee6e0c55923424933b0198ef927f7b146274a29df5272f2b12549ed450cf3444bacb2a3346999730fdfb9e3ecd54dd1cd74
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/requester-node-http@npm:4.13.1"
dependencies:
"@algolia/requester-common": "npm:4.13.1"
checksum: ae3a19f1dedbe5192bc9280a7c995c072f72954736c83a2624e9b04bd649a618d0dd53d952e23223faccfc39ba3d1120e4919e6fa916a288abf75da0e5feaf12
languageName: node
linkType: hard
"@algolia/transporter@npm:4.13.1":
version: 4.13.1
resolution: "@algolia/transporter@npm:4.13.1"
dependencies:
"@algolia/cache-common": "npm:4.13.1"
"@algolia/logger-common": "npm:4.13.1"
"@algolia/requester-common": "npm:4.13.1"
checksum: 866aab02ebe81a41cf594c5803024c5d087303e9e5bb4007452978b3f82896a4386030646daaed34007f6bd5289eb5320079a12cc4de734009c030a4674c07e0
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.1.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 468104da656991a578ac6c9e074fe9e6a810c37e90106a738464c971a9cea37ae29c3752c8946f884a82da458597fdff57da70c4fca3fb560d29038132d2d524
languageName: node
linkType: hard
"@angular-devkit/architect@npm:*":
version: 0.1400.6
resolution: "@angular-devkit/architect@npm:0.1400.6"
dependencies:
"@angular-devkit/core": "npm:14.0.6"
rxjs: "npm:6.6.7"
checksum: 55fabd96f600aaaa08f4acdf07934777fe48572f45230444e135f1f0011ad5e0f749326688492e650c9ed5a1dd6c44f888c315de7a39d221f2cb31ee4b1706a7
languageName: node
linkType: hard
"@angular-devkit/core@npm:*, @angular-devkit/core@npm:14.0.6":
version: 14.0.6
resolution: "@angular-devkit/core@npm:14.0.6"
dependencies:
ajv: "npm:8.11.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.0.0"
rxjs: "npm:6.6.7"
source-map: "npm:0.7.3"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 21174772255e8ceaf515f1fc9ee7cc61131d69a5c3f4be4ffe9ff695fc4fc4e7fcb382cfe821aed0062c7a2ebb1c3456f111a96da0f432b218a524873167b256
languageName: node
linkType: hard
"@angular-devkit/core@npm:13.3.5":
version: 13.3.5
resolution: "@angular-devkit/core@npm:13.3.5"
dependencies:
ajv: "npm:8.9.0"
ajv-formats: "npm:2.1.1"
fast-json-stable-stringify: "npm:2.1.0"
magic-string: "npm:0.25.7"
rxjs: "npm:6.6.7"
source-map: "npm:0.7.3"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: b90c60358527504c8093cd8e98dfdb0a953996a50ee6372c9eb8996b358613223c5a2568ce5f96a574c82e7d5486a9da58531996591a8b911e8258e31a7022f5
languageName: node
linkType: hard
"@angular-devkit/core@npm:13.3.8":
version: 13.3.8
resolution: "@angular-devkit/core@npm:13.3.8"
dependencies:
ajv: "npm:8.9.0"
ajv-formats: "npm:2.1.1"
fast-json-stable-stringify: "npm:2.1.0"
magic-string: "npm:0.25.7"
rxjs: "npm:6.6.7"
source-map: "npm:0.7.3"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 18e8a8ccf2a0c4283e5eab6cefe5a141c9a1056f880dac0aa4f95f3348c5dd1e3e9c5c2a5f904a962d4d2d847c87d9c1443a5902e5f09c9dc7f4dd1e84998022
languageName: node
linkType: hard
"@angular-devkit/core@npm:14.0.5":
version: 14.0.5
resolution: "@angular-devkit/core@npm:14.0.5"
dependencies:
ajv: "npm:8.11.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.0.0"
rxjs: "npm:6.6.7"
source-map: "npm:0.7.3"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: a55e7edc9f29f63a9556ed038745bc2bd2179e10f1dbb877c8d5bdf4006612b1a64c652327613eae517c1c0743d8fcba200b84a881b08e1c8ff7becbdc8b8d93
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:14.0.5":
version: 14.0.5
resolution: "@angular-devkit/schematics-cli@npm:14.0.5"
dependencies:
"@angular-devkit/core": "npm:14.0.5"
"@angular-devkit/schematics": "npm:14.0.5"
ansi-colors: "npm:4.1.1"
inquirer: "npm:8.2.4"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.0.1"
bin:
schematics: bin/schematics.js
checksum: f00bbb2b0467e2d2107fb4501576b4f63bc50d2dd75cd2f48b222b5e120c521395446910a6db9028d5be4536144a75571442b12b5f8b6bdda991f4e86a8b8e26
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:*":
version: 14.0.6
resolution: "@angular-devkit/schematics@npm:14.0.6"
dependencies:
"@angular-devkit/core": "npm:14.0.6"
jsonc-parser: "npm:3.0.0"
magic-string: "npm:0.26.1"
ora: "npm:5.4.1"
rxjs: "npm:6.6.7"
checksum: 2778299112e7e869d92ef8bc42a6a7e3c1d12635e75cede8f9696a4ec8b20106aaafffa723bdc78aa34b3d27f0dfebc308232309ae00b7593bc6e8523ad5abcd
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:13.3.5":
version: 13.3.5
resolution: "@angular-devkit/schematics@npm:13.3.5"
dependencies:
"@angular-devkit/core": "npm:13.3.5"
jsonc-parser: "npm:3.0.0"
magic-string: "npm:0.25.7"
ora: "npm:5.4.1"
rxjs: "npm:6.6.7"
checksum: 46b2d64cb4629f4915a25ee5c8ff0090cfaca8c5cde8e9111a599bd3a4acdee7aeb81abf35c58a3b8f8d8dd9a70f42f7a1d87c5e3824e389bb4ea68e62f5c539
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:14.0.5":
version: 14.0.5
resolution: "@angular-devkit/schematics@npm:14.0.5"
dependencies:
"@angular-devkit/core": "npm:14.0.5"
jsonc-parser: "npm:3.0.0"
magic-string: "npm:0.26.1"
ora: "npm:5.4.1"
rxjs: "npm:6.6.7"
checksum: 70507121dbf3068f3058678c0aeabaddd281dbf34a015052aa9f5a3e80306eaae21a4c934f2ba0fa6939652e0e8f6978510fb9cd3527b6dceb7dd1ee9c0ef953
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:^13.2.4":
version: 13.3.8
resolution: "@angular-devkit/schematics@npm:13.3.8"
dependencies:
"@angular-devkit/core": "npm:13.3.8"
jsonc-parser: "npm:3.0.0"
magic-string: "npm:0.25.7"
ora: "npm:5.4.1"
rxjs: "npm:6.6.7"
checksum: b5e569abf6aaf3eebafc81fd59b2ca66a58501f10179a7ae7ca31339ba177de444b9967196fbcee74ded6b242c7749d1dbd6d0b11544d1916489c8364ef09db0
languageName: node
linkType: hard
"@apollo/client@npm:~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0":
version: 3.6.9
resolution: "@apollo/client@npm:3.6.9"
dependencies:
"@graphql-typed-document-node/core": "npm:^3.1.1"
"@wry/context": "npm:^0.6.0"
"@wry/equality": "npm:^0.5.0"
"@wry/trie": "npm:^0.3.0"
graphql-tag: "npm:^2.12.6"
hoist-non-react-statics: "npm:^3.3.2"
optimism: "npm:^0.16.1"
prop-types: "npm:^15.7.2"
symbol-observable: "npm:^4.0.0"
ts-invariant: "npm:^0.10.3"
tslib: "npm:^2.3.0"
zen-observable-ts: "npm:^1.2.5"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
graphql-ws: ^5.5.5
react: ^16.8.0 || ^17.0.0 || ^18.0.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
graphql-ws:
optional: true
react:
optional: true
subscriptions-transport-ws:
optional: true
checksum: c660dc36e5d812816aaacaea7dd47320beb794cff5b138a937577c05cd752319ad8190343df889d5ec531b792945a3d2632e5e09c557049ed30bc693cc766995
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: f79b471726685624aa941384c7ea98f3a415f19772ef7c9339fd16b51d11cb2dce8bfea9da4b092fec03e7ee8859c058a85e318aa90678d8d2fa9c27a59581ce
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.18.6, @babel/code-frame@npm:^7.8.3":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: eb27d165ea1c7c23e71a2a6f64225fe0ca0b2a39f5c0b57fda2a62dfa845799ca94886b08014f8fd4a711538cc6b1c89b9fc1dca6a5148893932bc03412ca848
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.18.6":
version: 7.18.8
resolution: "@babel/compat-data@npm:7.18.8"
checksum: 3436129f528c2953a07cbdc5bce1667d1579b35f8468d37042d03402401beab3ed21d4962a8fc9bcda2881a2b93eae0ffade85bcf1e383ffc4fa7bd92d20ad8f
languageName: node
linkType: hard
"@babel/core@npm:7.18.6, @babel/core@npm:^7.0.1, @babel/core@npm:^7.1.0, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.17.5, @babel/core@npm:^7.17.9, @babel/core@npm:^7.7.2, @babel/core@npm:^7.8.0":
version: 7.18.6
resolution: "@babel/core@npm:7.18.6"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.18.6"
"@babel/helper-compilation-targets": "npm:^7.18.6"
"@babel/helper-module-transforms": "npm:^7.18.6"
"@babel/helpers": "npm:^7.18.6"
"@babel/parser": "npm:^7.18.6"
"@babel/template": "npm:^7.18.6"
"@babel/traverse": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: 33ed7885a7709f127265e3068b386bb2207bd6ee58d86c4871f73bcdddcabf0bd6dbef6bd38bd4336da5971140d6b66d624aa1a871a8876139f377f8a6c98c5c
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.6, @babel/generator@npm:^7.18.7, @babel/generator@npm:^7.7.2":
version: 7.18.7
resolution: "@babel/generator@npm:7.18.7"
dependencies:
"@babel/types": "npm:^7.18.7"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: a75bd8ed81a9635785850f06af3e45a6ad221072a86be76c9f586537e92acb282f24c4c0a606efc9da79491f72aca476828f52bd5486fb431681c9afb32912b9
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": "npm:^7.18.6"
checksum: 1fcc8f0e9377623a19e00de620391dba3e0343d82ae2142eb7c94b10d6dbddafc201a7a84d1d9ce45ec82291b887f9d85b83d53a50850cdf1b07cee79de554b9
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.18.6"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
checksum: 698dc1c6fbbb2a70f7cdf2b7ba5dd69803c888bc6cd561d11568160babb9659ce48c0b283394a0aec2ea1d010764736c633124c6b0e5d547ec6c7b1fe54a26f6
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-compilation-targets@npm:7.18.6"
dependencies:
"@babel/compat-data": "npm:^7.18.6"
"@babel/helper-validator-option": "npm:^7.18.6"
browserslist: "npm:^4.20.2"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 4cefc3bc5dca5a2f7f1d76a6fea6a0cac9144e1443d3324db5b324f9a30fff72a7d8ec1e2cefdc70cd5ba24af5ea90714c8d521148667aed6f68218d077e3971
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.18.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-environment-visitor": "npm:^7.18.6"
"@babel/helper-function-name": "npm:^7.18.6"
"@babel/helper-member-expression-to-functions": "npm:^7.18.6"
"@babel/helper-optimise-call-expression": "npm:^7.18.6"
"@babel/helper-replace-supers": "npm:^7.18.6"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 289eed2e58451d07b2b2a7d2df10798aceb16cd484c94bbf3d1b8ad97ec12c7b0454f6a3c2b043b6be31e921bbf73a15bd201385b830b2d86b6f4993891763ab
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.18.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
regexpu-core: "npm:^5.1.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: e5068cbc803e5c5e3ef5dfd6d537754db712c5a3a92f165869b8b9b93f2207a79554666bfb96cbabaa126de58d08f4f157101b283c6ba46676f6d72691935e34
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": "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: dc1c76590613514009f9bae1e0c9fa8f0e8c46694b616763e3afc329dc2084db8c88e2e99e1a06b10029426e51c5b3596778debeb637932b4bc9f5be1d9a195e
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-environment-visitor@npm:7.18.6"
checksum: e41d27fe3d4696bc45c3862d648248795d5ef117f9e08878b83176cc121368d741aec1979fcfd72a4dbe7c936278394fc0f6d63b0d6dca9d4f7fd53ad8506bae
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": "npm:^7.18.6"
checksum: 24d7f1d5a69a5bae6076db48f0ff83b51f947a5078574409954f93ff95ccc32b69ee71022c52d3385e22a707ed9efdd9185421f38c16fe6595b606ca4d604ffb
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-function-name@npm:7.18.6"
dependencies:
"@babel/template": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
checksum: c0cbcff95be4ec1cb33eee938ba65cbfa4896611ee35af04a5c1b98c2ff32a1f92addca7281341e2cb01d48171fcdfde870c2b9f6131fbce63bbb7e22728b315
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": "npm:^7.18.6"
checksum: 462ef0d14fbe6861cee3a2c2bee1eff76d31ec94230c147684d55fa65351784c4afffaa62a8a540caec659d47ef5641707cdb99ce049f1bf2995cfcccace537a
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-member-expression-to-functions@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: d0f94b5476bea4c148cc2de622601ca003c648f785eb1124a7dc0140f72a038d22e1f24bc517e3f2933d999563efd442787515e0e5de92ffd325b02e7d391b37
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-module-imports@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 5c2d1987e4854abe7ca227d2e318b699c100dedc8ec45fe858755d5e9da8760ac136c0b1e669cc381f44eb79607b6f4ffcf7642e1aa84504389f9ca6065e8ee1
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.18.6":
version: 7.18.8
resolution: "@babel/helper-module-transforms@npm:7.18.8"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.6"
"@babel/helper-module-imports": "npm:^7.18.6"
"@babel/helper-simple-access": "npm:^7.18.6"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/helper-validator-identifier": "npm:^7.18.6"
"@babel/template": "npm:^7.18.6"
"@babel/traverse": "npm:^7.18.8"
"@babel/types": "npm:^7.18.8"
checksum: 5ee5c314537f5fadfa2be946b45c59404e4514d6d492607e1ceac7067ae26f48524fb43f9682e60e175235b608f09f285aeb8dae5360b5a8cf4719ee2dc6ff6c
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": "npm:^7.18.6"
checksum: d8d3756889d051393c30d859bd2b5c5ce039a8e1123ef15b0f96bbb6adc67a71e182a96d3308079faf7be80cfc4718283c981f83a9747e6e23e00088702db9bf
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.18.6, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.18.6
resolution: "@babel/helper-plugin-utils@npm:7.18.6"
checksum: 357b1326a2bc55406a6fe11f2464b98863339173d9603e4116008fdca5e6daef69276582ab0a78e013c0402c89f0335ea610d3a02f90dd90401fedce6d945b88
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-remap-async-to-generator@npm:7.18.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-environment-visitor": "npm:^7.18.6"
"@babel/helper-wrap-function": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 132d9f380fd70107328988522a7de1a671c54e8bca1d8a82e891a265b150e62e78cb395d20e9d32a3e767c225b5ac5f420d8a34c879eecb6a46c56f090750c7f
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-replace-supers@npm:7.18.6"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.6"
"@babel/helper-member-expression-to-functions": "npm:^7.18.6"
"@babel/helper-optimise-call-expression": "npm:^7.18.6"
"@babel/traverse": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
checksum: 5f675b73e58d02d9ac4af4e05496018d5142ba2a0688e34f3979674285f24e8446169ddc5700113b47d60262b2a66d370fad2234cfd7b695e757b3f6448c2dad
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-simple-access@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 59d09d4fab16a270448ffe46fb7006b3d5c4d1f790488382173736b4fb481cbed84f81ee73081dda6ef5eb890969a5be61710c6a6493ca35b8c54056d87d8988
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 382aae5623d27a42658f1e192375021d0f0ac1299a81aa528f26b3b3f74aeec955995af9adeb76f742169107d399a9bf1d03d347bfdc6b7ae43b64fb686894e9
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": "npm:^7.18.6"
checksum: a7834c5b54600542460aa278b0e988178ebe1905df856df909e4fdafffcaa05fc1688e5504a6f388ca1bc36dbdb78a56af422b4a7795876680451d86e55055b9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-identifier@npm:7.18.6"
checksum: 665356113236e4de93e1d0055276c896c870842cf64496d5633fe00726eef8e096fcbc687385f5ce2c23d815bf60dfd15d3b9ae341503394bd925aec616d3c10
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-option@npm:7.18.6"
checksum: c32c6e5daa9b2e2cbee66477c652757add3a204fea24f486b3b630e1fb69df53591ddc8acf5c5bc30a157e7275e53e25b3fbafbe1d2fb21604ca09cd8d3d052c
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-wrap-function@npm:7.18.6"
dependencies:
"@babel/helper-function-name": "npm:^7.18.6"
"@babel/template": "npm:^7.18.6"
"@babel/traverse": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
checksum: 53ff71f56b956d68fbe9b28cfc0705285af5e4ae9e97dc31c69199d39639b13f300cb891997f084a1e267cd14c68fa80d2519b174db7078c21e49ce955c5519c
languageName: node
linkType: hard
"@babel/helpers@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helpers@npm:7.18.6"
dependencies:
"@babel/template": "npm:^7.18.6"
"@babel/traverse": "npm:^7.18.6"
"@babel/types": "npm:^7.18.6"
checksum: 052d190bcfde17009428b52e3602f1089be8d1dfce7b186acb9ce9504e3cc4bd24a407b3d22524e79a0229e69b274a52d2e208f184bb79a71fd7edcb9a1c687d
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": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: b8eeb1d38327c635004b3ae946ff334bb994334a5fdd874e216e62bbe3b8f8f10c901c3795c25db7c8e49eb5a56948b9dbe38c3800c4f977016402997dacedae
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.16.4, @babel/parser@npm:^7.18.6, @babel/parser@npm:^7.18.8":
version: 7.18.8
resolution: "@babel/parser@npm:7.18.8"
bin:
parser: ./bin/babel-parser.js
checksum: 1070a211e2b4871b02886a67c3be01c6ad594dc870855b2014a957bd75731651dace86d2fa8325d85d29b2976968955a2c9837be6b3b9ff1e79b3e7c537f7668
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 15cb2c56bf44b12741de13e086d2e73878117357d2c7d94d302fda0f81da9ba63d0f6a43405cc0376c07d8fee15b38da6e6ed54fc9222101d55a63f3a0393db1
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.18.6"
"@babel/plugin-proposal-optional-chaining": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 09d4e88b1a0eac16478dc6c8c8d79ae1e965855f00ba1422da1eb8e542965574c06b9bb4f598ff1d9fa68049df1d6541c113a6f66784f66a62a16e6def71f95b
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.18.6"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/helper-remap-async-to-generator": "npm:^7.18.6"
"@babel/plugin-syntax-async-generators": "npm:^7.8.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a9ebf015921b879ffa890caa559b0ef3c0e7698cc5e2a26aa20d69897d6009ece36d80bf8891c448f62025edda4ed7ad8e5ebf79b24ba68bb7e95aa8abef4124
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 31561c055d0693c1f4e6738c26fa6e51f2db703c05d9b3f522d75d2052f3c35dd2eae0a36ed433e84b26e5f41a45ab2c09339873720600c89f5121771396e0fc
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-static-block@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-class-static-block": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.12.0
checksum: 6ee8ac231dc32ced2f8ad83ee2f26cf75e41bd20debd98e3b8a39b562f3cdba47c6b3f6a24457876d23f3590d91cb76cfe3be159ec88e777012ca552ca743011
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5ae2b563b314b74e740a658eb7735169af91b85867aeaffd4f688dfed8bfcaff404338d88c21d6c5fc3219b945b36088374bc888688367ae73774b461f4dce46
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d3bf4f49047296538b78e6ae40f2c2510f4ea5355cf4af9c5b25378f70e0882b04b8b5e929abaf488c0ce04fb115a8ee797d072408077ddc02e7f15dc48f1ff9
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-json-strings@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-json-strings": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 07d1b37ca2f3f328180cf22f113af59225059df4712b8a6d41e600a2f3eeddf1d145042c811b4774892d0ef3a49f296974b82cf8d7d46f99c84f2c70dbe0ad28
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d8bb3ae904c9d89aef601e0a8f2379447ac558b8665701d4894face13ac442fa2d5bd418d809fc6427ba98f4997514ccba896e72d1e23ecd7f0038bd41937ff5
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: abe2f48358d1918d741352ee994371b8a934c7dd20e5962fdc564fe28f8986715a10acabc99ca883ee3195823d9f79096373848afb455bf61934fc4f81e11258
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6aea22e506394659f43ce083c31b53f0d79d3942afbabd499efe8b80aec35e60e2ea13559e14397fd753613bc0985a02d2dc0e68e2bd52b03ee325482b007707
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.18.6"
dependencies:
"@babel/compat-data": "npm:^7.18.6"
"@babel/helper-compilation-targets": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3"
"@babel/plugin-transform-parameters": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3d8695856a0b4e15af9b68e67313dd67633a8ca406210bb5d76cbc3b9da2326d17f08f662414a4cf1d3648387ad3ee305635352ea1758175871dbf5d478245f4
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 792601eacca8714c25f8e6bb06734e3fed1a52ef5cd3acd070a8480c0e0344c5f3546c165502e59163f09fa7405393a90981106e01c06dff1d7639ca77f2263a
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.18.6"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 743cfc78ab1b1a19fab5da78e0b5fe6c1b02edfb6bf5b93607ee9a50ee25fd16d2c83d17bb45bba7b3c4db2fc2fdba4fb97f0da7926c56752ac5bc469b371043
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:*, @babel/plugin-proposal-private-methods@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-private-methods@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ead2a2435e83b8571a21a26df15502a470a1f73c21a790c1f8830508a21c68621b23866e04495901fa2fc482bfa7909cbab7c55266dfddf3b50c0f65ffbc0201
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.18.6"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aadc79cc06dfd5298d6dcca269a8f2cb007692ce1c18454933a0fe40780e94ddb3c3b8439ead1a3eec88fe0c67b102b77f703f5f7a988f2cd88bc255df8af34c
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.18.6, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.18.6
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.18.6"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cb478bcdb48c37c67a8e65903c6fdfea07a3e66447f49f07691a4edfa6a0a3a984f6c685a057884ca13568d6799aaee295b335bece9f046dc9929cc0f201193d
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-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7c7ac943e411834cd015f0200f9edb17735fea43b9f58edaa108a05548b8eb3508458c5e98604ccad441b7d06a0e9b68cbd6d6c7e35065cba15f75e519504a01
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "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.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-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-import-assertions@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-syntax-import-assertions@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0401bca7a83dfda76cc8f69f680be52b72f8f1a875ed70752eccf0b571f19e6300a31277a130034c61de11d19d82f48cdd2daf75efd127d2c218a0bc93c2baff
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0