forked from danbooru/danbooru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8724 lines (7834 loc) · 303 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.9.1
resolution: "@alpinejs/morph@npm:3.9.1"
checksum: c9fb6804dc90af9c4675bbd54733191b331756addd649a46461b11b2e46bf94d3ffe9f5f89ad01a9d089d40646b4d9bac60da51e902a08ad3e2b4690276776af
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.1.0":
version: 2.1.2
resolution: "@ampproject/remapping@npm:2.1.2"
dependencies:
"@jridgewell/trace-mapping": ^0.3.0
checksum: c88540afa04a5e897de6772b9507fe1b86fd8b0741e7cb86b941552b1ba73d533431dd9223dc6a6f512dcbfc70759d9d6af3e3b863c527b23a2b070be135e6bc
languageName: node
linkType: hard
"@babel/cli@npm:^7.16.8":
version: 7.17.6
resolution: "@babel/cli@npm:7.17.6"
dependencies:
"@jridgewell/trace-mapping": ^0.3.4
"@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: ba9a46285a1049dc80685d7f7ab7a9ae4202c8fd376aa5daf93631832784a978132ba4c0732479af90ba0eaa03b68847bd81417b8b81317b340183cc4c35ffe2
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/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.16.4, @babel/compat-data@npm:^7.16.8, @babel/compat-data@npm:^7.17.0":
version: 7.17.0
resolution: "@babel/compat-data@npm:7.17.0"
checksum: c4095f7d0ecc440d8b40dc3ca39bf8248449def929ad92ae2331882cf78cff70f0a452931a64182db8f6579b3398b06ea6e77c5e3a53ac91c8161af19085d2a3
languageName: node
linkType: hard
"@babel/core@npm:7.17.5, @babel/core@npm:^7.15.5":
version: 7.17.5
resolution: "@babel/core@npm:7.17.5"
dependencies:
"@ampproject/remapping": ^2.1.0
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.17.3
"@babel/helper-compilation-targets": ^7.16.7
"@babel/helper-module-transforms": ^7.16.7
"@babel/helpers": ^7.17.2
"@babel/parser": ^7.17.3
"@babel/template": ^7.16.7
"@babel/traverse": ^7.17.3
"@babel/types": ^7.17.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
checksum: b6bcc930f54f1658a876cbd3886a94d4f6de0d73beb58083b4b6b68c57ae7f4117a751af2182735da5a126220b1e1c0ce6d37f81a77e49bd277a7ea6ca613de2
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.16.5":
version: 7.17.0
resolution: "@babel/eslint-parser@npm:7.17.0"
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: 8a56e6111f5df77ec9fca45b508f455ae97178c0090244dee1e358834cfffedcad6dd1245257a5006ac5b70fe062cc91324e7d8729bc7eb0414fec938bd1cbf9
languageName: node
linkType: hard
"@babel/generator@npm:^7.17.3":
version: 7.17.3
resolution: "@babel/generator@npm:7.17.3"
dependencies:
"@babel/types": ^7.17.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 88ea5d0b1d289fbe1f4b1a0c6457370a969b2a78711b157415bddddd860723f0c8078ae2b3a67f99dafa439e53e42b16b21767da7df8d96b55c7a7472f4010f8
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-annotate-as-pure@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 9932a420c244e23c231cc5e229880351eca5a54c48929d824d7428227d17296c4aa9bed20ff88a2c1412e54cf0e1cd7a6771f2e2dfb316f09294facedbecb5f8
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-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-create-class-features-plugin@npm:^7.16.10, @babel/helper-create-class-features-plugin@npm:^7.16.7, @babel/helper-create-class-features-plugin@npm:^7.17.1, @babel/helper-create-class-features-plugin@npm:^7.17.6":
version: 7.17.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.17.6"
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: c584901d3f7285c7158101ea0984eb6b3d76de5990a2b6967c400509e09b8d4c2299cd3456d513c3910ec8acdb2c1ac470785deec9f51db624b974f55ab864ce
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.16.7":
version: 7.17.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.17.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
regexpu-core: ^5.0.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 1f5369812406aa92af16dfd7f55a5ac1e071720b0b2e47b7db33e4e94ad9fadb99170c865e8a9a4938146f7b9fcbc85acb460b9da5728e4c90016f00dfa28144
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-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-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-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-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-module-imports@npm:^7.12.13, @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-transforms@npm:^7.16.7":
version: 7.17.6
resolution: "@babel/helper-module-transforms@npm:7.17.6"
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.17.3
"@babel/types": ^7.17.0
checksum: 1cb623b6431dda66a871b07fb6e2ab51881a44ca02816d93267e43c9759062b16ae689c145026f684f88a4cbbafe1c5b48a99dad5232c3e527fdc3ec46d7ce54
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-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-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-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-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-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-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-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-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/helpers@npm:^7.17.2":
version: 7.17.2
resolution: "@babel/helpers@npm:7.17.2"
dependencies:
"@babel/template": ^7.16.7
"@babel/traverse": ^7.17.0
"@babel/types": ^7.17.0
checksum: f18091a62a71edd34ecb95d122902228f02912854e37fc40d3bc69159652ddab0594786bbd24ce2f407fbb8e6979b9fd7cec4feab5e2ae1d8722fefa57fa6373
languageName: node
linkType: hard
"@babel/highlight@npm:^7.16.7":
version: 7.16.10
resolution: "@babel/highlight@npm:7.16.10"
dependencies:
"@babel/helper-validator-identifier": ^7.16.7
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 0ceb2a16cacd3e92e0e64f8780dde246badc2ca3d2c4b9b22cab409e06629d2823e029deb6cca19d9a56dcaa747b26b3d683cb2c0b36518db2126d0161c89bfa
languageName: node
linkType: hard
"@babel/parser@npm:^7.16.7, @babel/parser@npm:^7.17.3":
version: 7.17.3
resolution: "@babel/parser@npm:7.17.3"
bin:
parser: ./bin/babel-parser.js
checksum: 7a601f86e628b5e701e9b954a838a4bc5506b050c697ebb8862a3dc68fbe93576a644326827b523180ba06ad58b3d978c43dc77509d93dc0573daa0b1aff5aed
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.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.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.14.5, @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.16.7":
version: 7.17.6
resolution: "@babel/plugin-proposal-class-static-block@npm:7.17.6"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.17.6
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: bbfed0c8794573ec53689a1ebbc553949b2a78ec1954674fc1e0cac32d408f6070c41ea143138a356305a35128e6e871fe47a9b3b06974d8bd8f6aa167dfd00c
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.16.7":
version: 7.17.2
resolution: "@babel/plugin-proposal-decorators@npm:7.17.2"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.17.1
"@babel/helper-plugin-utils": ^7.16.7
"@babel/helper-replace-supers": ^7.16.7
"@babel/plugin-syntax-decorators": ^7.17.0
charcodes: ^0.2.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 94d0e5f12cabde6e84055d9124d4869e466b9aefe96d37bf9c961021d63616e86dd9f60eb74ce22878341463a650873f92f0cd773b9f6fb04d0d0fda43dc3bbf
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.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.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.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.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-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-object-rest-spread@npm:^7.16.7":
version: 7.17.3
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.17.3"
dependencies:
"@babel/compat-data": ^7.17.0
"@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: f9887a83992ba020e41643ca6977571766e1a2af2cd731157aefa6f9682b7475d9e2b0e615a2654cc243ecf7e1da33aa26441d885129874668b85612dd4d8e70
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.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-private-methods@npm:^7.16.11":
version: 7.16.11
resolution: "@babel/plugin-proposal-private-methods@npm:7.16.11"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.10
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c4c01caf59f6c8938a6b477c229739ca37dec2f1929da96f7ff471d4986d34526fd2225571098bd37a6a6dc4d496149d1f9d26140ddb9d6a340dbee8cc9fbfb3
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.16.7"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.7
"@babel/helper-create-class-features-plugin": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a41e1c067a0705f73e964e9839d9242e53532830c5d641cb830c3c94c271e6555798603be4eaa9ad7bffbc29b7e5beb1ae7cb606cbb88f839ac12417166f3f7e
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.16.7, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.16.7
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.16.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 06987ff481fe89f89f36ee103c0d2a6e16ca0478e5da96a214a93bbf015777e4cf86fbce57b9eb02000b7f9e99e95be09598e08be34014c8b3851ab37d801757
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.17.0":
version: 7.17.0
resolution: "@babel/plugin-syntax-decorators@npm:7.17.0"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0330fad0fb51eac85101f39c08ddb9f17f19f9c07dc514501e9ae9c627ae790f51956e9b7a52adba23f824e29ea4d40c334517374ce4504b4947ca28c2f8d990
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-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.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-arrow-functions@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e084d3d781f85ebed05a5689554764a79f6948e9e63af9179d83ad3e9abb54653456c6473967b3193545f897fc352aa78aa54072b94a4c110957a77e14e6c154
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/plugin-transform-async-to-generator@npm:7.16.8"
dependencies:
"@babel/helper-module-imports": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/helper-remap-async-to-generator": ^7.16.8
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 08a8dfc730e5bc4e2c34b10c6d448cd1fc1ca8bb7e6a8fcae8241dc92055bebd14c88653ad742c313fb121438b27434d3ff6ba6370fe03a7d143f033b855646d
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b1cfb880e499df9f39bec153e1effe041475eea230f1746d9bae9160472e95066f18a21899a27bbebbcffa852faab66512b5f58074bdeefcf0849793cf237954
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-block-scoping@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4f24f0db82bed4d0564314aca597f538f8e06d8e6f476b23cd6fe7dd0957eb0bd8e64daa9d2021cdfe913e0761a3f9a53b15d00c231958fba7b897ddf99f3bc2
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-classes@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-optimise-call-expression": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/helper-replace-supers": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 43619a07a8d942361016ba6644414ad55d4a69705580b6f4b41f17a6357a7109bb0b53c6ee5aef5dfd7fe383104b0089f3c2c77696c870794e2d3cfbfe8b9bb7
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-computed-properties@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b752d217f9c289114844c82a9d006457852ef6308688fa76bdf3cadd02e2b7bd83afe5a7e0f5112c20c6f1fd8f7bcfe74ee7e225b59c3915e3989ddbc425ea63
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.16.7":
version: 7.17.3
resolution: "@babel/plugin-transform-destructuring@npm:7.17.3"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8739cc2e04159e501edf107609b2772253bf3c8edb4f9c9da08f01038f48fb5a3307e2d7c8f0a83501fc1b0f67f444e18978538e39309c8321708f9ed07f564b
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.16.7, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.16.7
resolution: "@babel/plugin-transform-dotall-regex@npm:7.16.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4e8eea5dd4136a2452f74956683028b6bce4d6696b80676ec84ed86524acbe65b0c29871315fb9aa9bd76aeb3cdb30bb2033321e539f8d67c0020625f4b8fecb
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ad1e198da9a8db49c1d12527170c69346fc7c2b268d84189967c4a440b50440d6e8476348eab3c2df2d7e71f3f3819ffedc28668b1e6db5d09294cb3a3c27de2
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.16.7"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f3b15d92577bb15febecb211be4e7fb8db652b7bba6258318bc66ebc18107d64a16d0084a42e10b2c53f8820bb8472cf4a90d11a87f3e7fcadf3ec41e13080d4
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-for-of@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 67b3b1864b30e7bedb8aed7fe9ff565ee496dff10a0a010c5801d401667ad750fd9b7c2778027c844faa5f2ef3e94c520a65ef2b75d742c2f2235967458a22ba
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-function-name@npm:7.16.7"
dependencies:
"@babel/helper-compilation-targets": ^7.16.7
"@babel/helper-function-name": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b33af4e85ce4289a3c4403511ded15c1f79cc170aa1c93ced6f131b4e4b31b8f0e34d0e9a95f22ddbb92db87c1e9cfc96829c7ddcf18ce0f9adcb192b6333aab
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-literals@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 927ae2a4cde22f01def36e01873f1d622ad5b91ff9f1c50005d62bd9087022feb2c19f697803b0d56d11b495b3c576bfff309aee14cd121252a593c1121892e4
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.16.7"
dependencies:
"@babel/helper-plugin-utils": ^7.16.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1f49f51aab239bb162b65f3ca174bc31720f607330a67cf08626befbb615a6c10fb366b699a62936440c26f0ca4d69172e83abd15683b4143af1fa5d8da29161
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-modules-amd@npm:7.16.7"
dependencies:
"@babel/helper-module-transforms": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 999890f4f98229177bd354c4bd8f27d90c2b7176dd1cbd6b69e834761b20f1e52bbcee07c659726a3fcf8b79ed66a8252ae558a6d805fc6fa144190202e5057a
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.16.8"
dependencies:
"@babel/helper-module-transforms": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/helper-simple-access": ^7.16.7
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 90cb6bc0fe966fc18f158e638fe309b58ca44a59e47f568f4e563994c061e4bbd17a81c0c7d2147c0fb6dbc07d0e161993373e630665b59ab256b83903e14385
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.16.7"
dependencies:
"@babel/helper-hoist-variables": ^7.16.7
"@babel/helper-module-transforms": ^7.16.7
"@babel/helper-plugin-utils": ^7.16.7
"@babel/helper-validator-identifier": ^7.16.7
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 41af6b441cfcdcc6e805b6ab249786535c0343d05c2e725005f9329e0787ea9ca397103a682cc97a16129fdf6069c1c8b9fdaf57b51825adc36b0ec9875c654e
languageName: node
linkType: hard