forked from danbooru/danbooru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8767 lines (7876 loc) · 306 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
"@alpinejs/morph@npm:^3.9.0":
version: 3.10.3
resolution: "@alpinejs/morph@npm:3.10.3"
checksum: 3d440bf974eaf1cab8e21dd5e9475f7f99fe89b908df64c28e9235855d40350001dcefd83355aeaa9f7f1273ef888bceabc7246a12385acd56a84956f721e65f
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": ^0.1.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: db5a84e3297235d6d1664f39456f6ae628c7c48256c0e73206f70f0e9f7092b5dc14a8a6db6508b056b8651fe3c1b7a09b6430cf48a780655452f341ac20c38f
languageName: node
linkType: hard
"@babel/cli@npm:^7.16.8":
version: 7.18.10
resolution: "@babel/cli@npm:7.18.10"
dependencies:
"@jridgewell/trace-mapping": ^0.3.8
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents.3
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.2.0
make-dir: ^2.1.0
slash: ^2.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: df074d28eb4f066afec052d4a656bceb584d4e618dace05be03a063f22fe71fada18d0fdc425d176762ea258b7fe26ebf178b1a6e7005f4abc3b84adc15f1ea7
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @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.17.7, @babel/compat-data@npm:^7.18.8, @babel/compat-data@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/compat-data@npm:7.19.0"
checksum: 510dd1fec85e441f538961936cca572853806039c39b3de5f3778eeaae43b886e7a1d983da14aab8036eb5f2b614a8d7f72f9c3bf5612bc8359201b29d43f374
languageName: node
linkType: hard
"@babel/core@npm:7.19.0, @babel/core@npm:^7.15.5":
version: 7.19.0
resolution: "@babel/core@npm:7.19.0"
dependencies:
"@ampproject/remapping": ^2.1.0
"@babel/code-frame": ^7.18.6
"@babel/generator": ^7.19.0
"@babel/helper-compilation-targets": ^7.19.0
"@babel/helper-module-transforms": ^7.19.0
"@babel/helpers": ^7.19.0
"@babel/parser": ^7.19.0
"@babel/template": ^7.18.10
"@babel/traverse": ^7.19.0
"@babel/types": ^7.19.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.1
semver: ^6.3.0
checksum: c1904124bd525fa7ae5aa479718fed4fee05663c8e87b1fa1f3beda11427bc2f1b1229caeacc056cc0cfe688d2264cce5d338874217c7cc0dcf9d5145b95a47b
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.16.5":
version: 7.18.9
resolution: "@babel/eslint-parser@npm:7.18.9"
dependencies:
eslint-scope: ^5.1.1
eslint-visitor-keys: ^2.1.0
semver: ^6.3.0
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ^7.5.0 || ^8.0.0
checksum: 9a997a023c1977dfd6e5131974e3533262f1eaf6180cd9afe691b1c3833c83c690dfe89bf52458a68d2cc65a9033d7a0bb02af2c267c66a142cafa7f9a0c19d1
languageName: node
linkType: hard
"@babel/generator@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/generator@npm:7.19.0"
dependencies:
"@babel/types": ^7.19.0
"@jridgewell/gen-mapping": ^0.3.2
jsesc: ^2.5.1
checksum: 2284584c25a1d5852e53e33053aadf7832d2dec5017a08819767ad15d7b88d116b3a4f01cb9ce70b4e0bed05a0eff54aadd0a0f6f048b66fbb1eaa4b5eb9f752
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.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.17.7, @babel/helper-compilation-targets@npm:^7.18.9, @babel/helper-compilation-targets@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-compilation-targets@npm:7.19.0"
dependencies:
"@babel/compat-data": ^7.19.0
"@babel/helper-validator-option": ^7.18.6
browserslist: ^4.20.2
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: c42d05a8806535d217fd6fa6755a956a173ff16c54551ed4920cf367ecc97b6cf73957b68b38b8fdd18cbaf95f11ace29d7d9e9e4a2c68cf18c3c02a0afd6702
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.19.0":
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.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.3.2":
version: 0.3.2
resolution: "@babel/helper-define-polyfill-provider@npm:0.3.2"
dependencies:
"@babel/helper-compilation-targets": ^7.17.7
"@babel/helper-plugin-utils": ^7.16.7
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: a75d9ffbee43ec6de6d84b825070116c40ed05ff349f6f8bc8f54b4f2bd20bd8d5e0c43611d15aad6c43501bf09ce5aabd7ddcdbc764ec01b6cbc77ccb02b3bd
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.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.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-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.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.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.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.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.14.5, @babel/helper-plugin-utils@npm:^7.16.7, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.18.9, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
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.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.18.6, @babel/helper-replace-supers@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-replace-supers@npm:7.18.9"
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.18.9
"@babel/types": ^7.18.9
checksum: 44b0d682894d6452a6f9d0a0aa9ee300ce7bc9eaf8b2f5ab30856d0bc14a30b275cec6227438f397a62990e210d1e107ec7bd03b6fa6931169ec8134948b7d1b
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": ^7.18.6
checksum: ad961b53ed17a5beab6dd9aadcf8e72387b3f7e194afff4c7c02949f9a807f5a2f15283bd9376e0151ad828896b936f08e77f9f7a328e9d94cae426a23a903ca
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.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.18.10":
version: 7.18.10
resolution: "@babel/helper-string-parser@npm:7.18.10"
checksum: e63c7a06197a7b64c27224c69e597c5cc64e49003e2f22e7d3959ff65bd81fdc7a79fae629404d9586bd5798427f719c294c49a670d4cef889618fe831cc38a4
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: 22afac806bff9cdc606b7221490cb9d8075966d99dff1a82f78df9bb81e89aebb5aead5724949724b05a34e6025c6598abf701c4f86dd48076f611ffa5ab85a1
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: 1ab88f4176404452437a89ab3fffe6ff3ceb2a12a3fc1f25e79143f9c5b5f5d23682696865af1a7a34c8affdd671295a50898ffe940e13e3df1df6db19df6be1
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.19.0":
version: 7.19.0
resolution: "@babel/helpers@npm:7.19.0"
dependencies:
"@babel/template": ^7.18.10
"@babel/traverse": ^7.19.0
"@babel/types": ^7.19.0
checksum: 2559b8dc764694cc24ac031366aaaa00cb22348acc85ff4fb1c516158aac020d941303d7cdfea720ad77bfbeab225c94dfb314062444916461b4714a5a3e3712
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.18.10, @babel/parser@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/parser@npm:7.19.0"
bin:
parser: ./bin/babel-parser.js
checksum: 84f9406700e7ae3d972b1abb75ca5a988231e4c6aa43f9fecef6ada9006e494abe5b1221c7df0654c3280fe5e1bae9dafc61113396f25a0cce4f7f1a8640de60
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": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0
checksum: 59169e166c80cd609cb35b4d3d06ae288a1199238215c4c7a66492382ed73c81eff13731e034f8b7d7da766ba19f4050e61a5640796619a6910e0904ea754412
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.18.9":
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-proposal-async-generator-functions@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.19.0"
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: 7892fbf1a2f06197fc1b5ef807fd3053e4c2c226396930c0e46546c806668075ce968e3106fbff2f7b5c9ff8925f62fdd05be1e8d794f3ab85ce76d346a2326e
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.14.5, @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": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3c4b84c1c1bd7b9bc947a463511992b3e97ef527a91cb4a7d48d8112c9e43ff5cc83816fda9b258f1b20569f0f0c20c704ad47e9ddda473a5a288db89e7efa4b
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": ^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-decorators@npm:^7.16.7":
version: 7.19.0
resolution: "@babel/plugin-proposal-decorators@npm:7.19.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.19.0
"@babel/helper-plugin-utils": ^7.19.0
"@babel/helper-replace-supers": ^7.18.9
"@babel/helper-split-export-declaration": ^7.18.6
"@babel/plugin-syntax-decorators": ^7.19.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6cd4d92c2a9e11b07de32e4c418a88cac8571f6079bf020775155dd1befa3e973939cc1709b45e79d6909dc2a4bd35cb3bf5dee86c14d0032d308da749890932
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": ^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-export-namespace-from@npm:^7.18.9":
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-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": ^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-logical-assignment-operators@npm:^7.18.9":
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-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": ^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.18.6":
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.18.9":
version: 7.18.9
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.18.9"
dependencies:
"@babel/compat-data": ^7.18.8
"@babel/helper-compilation-targets": ^7.18.9
"@babel/helper-plugin-utils": ^7.18.9
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.18.8
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1d9168e907a9de0566f9839ecfc0ed9c2c5e82425e438ea33380a58015012d37de0999535b2ae04c0362dc33ecc47e8d4209dd04809f450d8b95c02bc39ae717
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": ^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-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
languageName: node
linkType: hard
"@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": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3451f720d195a54ba094baa9905546558458366e8c722eee81175abed95c44cf87b8c510308f08295eb27bc9f626246bb4e0fcd4720cd484c83634219dee1dd1
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": ^7.18.6
"@babel/helper-create-class-features-plugin": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8cf2ec2fb3bd4a9f6c4b77322bbc3ac35fab19c3059ed2456080f1a99f52f04751ac1144e3a246d5781fd38038136449e01de760d38933ced6e25b14b7e51a39
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": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6c21a7c4194d13d6ac85618ad47b1ef66b1cd247d46dd7b48ae3868497a90ca939742f85926114af6f325f99e523c48f85346bc0efba4126840b26696ef6bdab
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3023dec8acd42e0b691d9cdf21bc6931fe3e3d53c2231bdfe3eca3afeab168723f7315991550a163748bc49dbcd3c95632b77ec56f5e1d89bc5029cfeb7f0f7b
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 43bef611dd3912e3adcea1bcb587eaba1b8c8f24dfb134f191488e3521453d4f0a36408e6a3e27b512bee6e1b569c889db31a270d5576e9c34a80326bbc6bd7d
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-syntax-decorators@npm:7.19.0"
dependencies:
"@babel/helper-plugin-utils": ^7.19.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bcfe32142e7949504f7fb55cdd84c6851032d9dc2a7532ca41a4730a2048abbe0c9557f1519144b847ae996ffaac0ba5f4c600968f6ebe7eae37e9f5b26fa6e7
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
languageName: node
linkType: hard
"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 832e007319bc5040818012d51eb91c3ad4c38a1ea696e9a9805df4d601d8c4f061032cb61494946e7bdaa5db0422a6bb6f39577cd0e5c8323b6bb2c364406dcb
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": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fa65b1e5201fbcb807bb2641a8df55b3f013725decb69a4b72ca38eacf7cbeca4e3d358bbc27243aaad715bee25a64771579d51fac018f872cbb6d4ef69c881c
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
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": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b82f717707d278e58d12649932bf3327923361f051cd4517a5b63d7ebfe39cb6cdfb37aa199b5a441db305301a3c8de01c946d25d1f4c4ecb94322a23ac9e73
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
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": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1f987725a8e705c255bd3f47d4154445ccc8706c021e4abd0e3ac28bd2ea15f2dd9f44a4db04ca476909c86a366c737a9fcd808a38cfd84ee670c817ef05207f
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 642baff7c2150f146aa2ae94f8fa93f8aa81f5d82731241c60054037938cbde8031898194a216ec567af9b35bc4f394be3cd87d76aea39c8e32d68927ea67601
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-arrow-functions@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6aa2313a6720995ec45a9db0f1dfb2d1e756792a41c1072161fc153483d58ce37e1f254390bb2cd2abc740ae859199c3f9b24d2627fe02ee119999702db5de1c
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-async-to-generator@npm:7.18.6"
dependencies:
"@babel/helper-module-imports": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
"@babel/helper-remap-async-to-generator": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 304e8e3f658e587536cae7d74e5c93bd9ea6b706d5f45432435d6c2833cd7a48c0124695a46efb5b30dce61f6999b81fe6ac3b617007a7c98a8c33d82fc7c2bb
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 07774f22f1ede81f38ed3c58d25cb9ad8e2526cb4635aae9087930f20d0e505023bdf5fb61f48aa3c4d898677864be861df636d58db7880315074702dc5d21a5
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-block-scoping@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4f1cebcf5a7d0467dce08427ed7b70101a60fe3db69b2d2fa0f892aff8b4f22edb9a883a45d3c81d7065abe0d7f8db3f96b1ff4cf783eef4805cfc50a35b8976
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-transform-classes@npm:7.19.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.18.6
"@babel/helper-compilation-targets": ^7.19.0
"@babel/helper-environment-visitor": ^7.18.9
"@babel/helper-function-name": ^7.19.0
"@babel/helper-optimise-call-expression": ^7.18.6
"@babel/helper-plugin-utils": ^7.19.0
"@babel/helper-replace-supers": ^7.18.9
"@babel/helper-split-export-declaration": ^7.18.6
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2f832f5251fbe175feeb48f598e8e62ba4b7063735e6fb073ccc3426cfeea08fa424c53b57a5cfd78ef08b05597b41c099284cb12c1f6c1ab2380877bd4fb5b7
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-computed-properties@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 51b9879b939718985966d6901fc6417117d40a8799d220dc24f1b41156463035fbc259db1128099259a8265a47d2babcbe03938aabb833cd8a779a32495155e8
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.18.13":
version: 7.18.13
resolution: "@babel/plugin-transform-destructuring@npm:7.18.13"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a5bf16a947ff315a7cafe2d61c1b662df7579385602ad8e9cd1671051369ddcc35712a23927d9134fa66ad630c453225cba4ea76ec31f89244d8c560823c0ddc
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.18.6, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.18.6
resolution: "@babel/plugin-transform-dotall-regex@npm:7.18.6"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a1132050c9c007c9fd102129c64a31980953756b48f30d257d617e822a8c14d6fc6ee3570ca5c69439891fc2f65157e2505cb3f09e7e54b710e7a7f4e85d9243
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 33734d72c895978830eb47b2c2e4fa8be11ce503d20b707d57a6b4475aa8137ee53c9c8dc943d7c257db89cd5993e55dc2d617cb54907c37d687d9f9f0ea50ec
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.18.6"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2b3dab88ea16421049255ca32a30e74fcf0b1913dabe02ebb0898201715e3aae2163ec7f7a659fe2ed1c54b64bbfc1a51ea91f44275d1e3e3596b9c8f63302e5
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.18.8":
version: 7.18.8
resolution: "@babel/plugin-transform-for-of@npm:7.18.8"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1ebcc3eb354cd3f9074cd7a490c266c16975bc2657547f401c66210b78ed727510cb34198310a5e8099e07582f68d374a9cff3cd98910a1d83b18fe295c9d76a
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-function-name@npm:7.18.9"
dependencies:
"@babel/helper-compilation-targets": ^7.18.9
"@babel/helper-function-name": ^7.18.9
"@babel/helper-plugin-utils": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 56c424516b38ca5bb9a0b567b5edc338a5a12d7e5544c9dd65e1228cabae59f8917280c1a779943dc477682c6426c77d23afdb7b3ce26de05793d2ccdee0651a
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-literals@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fbfc2a7a48f26c3175849d909a92f5c914cb2bf2bdfc38923cbdd005ff30e26a03838b24ed1a541047f3d02cbc2613a80d3caa289f4b4b48e465a53d11ae5cbe
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8caac67388668ef09f37237a5e55a39902fb1877ba675a7c2ea514a068ac75e36284772b6a63b7495d375dee6b8967156d3cc9c7ecf33e3b051c9ed7f274998a
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-modules-amd@npm:7.18.6"
dependencies:
"@babel/helper-module-transforms": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c509ade7160a6dda259a9ec7d412703574ac1ba41e66cba5f6eee3560f7558eb4eb50ddfa1fa760e932904ba81966a666c9f3ca2b35f76aff1078f8e49e1b4b
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.18.6"
dependencies:
"@babel/helper-module-transforms": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
"@babel/helper-simple-access": ^7.18.6
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 87ae1570a60fad6123ca5fd200cd703bcefef1fb76d58d5f50a53584b0a5cdd4b0ed02af2e742997c68d904a2ec76fe9c1abebb8b58a29f5550d15511a9766e9
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.19.0"
dependencies:
"@babel/helper-hoist-variables": ^7.18.6