-
Notifications
You must be signed in to change notification settings - Fork 34
/
pnpm-lock.yaml
7090 lines (6257 loc) · 255 KB
/
pnpm-lock.yaml
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
863
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
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@babel/core':
specifier: ^7.24.0
version: 7.24.0
'@babel/plugin-syntax-dynamic-import':
specifier: ^7.8.3
version: 7.8.3(@babel/[email protected])
'@babel/plugin-transform-runtime':
specifier: ^7.24.0
version: 7.24.0(@babel/[email protected])
'@babel/preset-env':
specifier: ^7.24.0
version: 7.24.0(@babel/[email protected])
'@babel/runtime':
specifier: ^7.24.0
version: 7.24.0
eslint:
specifier: 8.2.0
version: 8.2.0
eslint-config-prettier:
specifier: ^8.10.0
version: 8.10.0([email protected])
eslint-plugin-svelte3:
specifier: ^3.4.1
version: 3.4.1([email protected])([email protected])
husky:
specifier: ^7.0.4
version: 7.0.4
is-ci:
specifier: ^3.0.1
version: 3.0.1
lint-staged:
specifier: ^11.2.6
version: 11.2.6
prettier:
specifier: 2.4.0
version: 2.4.0
prettier-plugin-svelte:
specifier: ^2.10.1
version: 2.10.1([email protected])([email protected])
stylelint:
specifier: ^13.13.1
version: 13.13.1
stylelint-config-prettier:
specifier: ^8.0.2
version: 8.0.2([email protected])
stylelint-config-sass-guidelines:
specifier: ^8.0.0
version: 8.0.0([email protected])
stylelint-config-standard:
specifier: ^22.0.0
version: 22.0.0([email protected])
svelte:
specifier: ^3.59.2
version: 3.59.2
svelte-check:
specifier: ^2.10.3
typescript:
specifier: ^4.9.5
version: 4.9.5
attractions:
dependencies:
postcss:
specifier: '>=7 <9'
version: 8.4.35
devDependencies:
'@babel/core':
specifier: ^7.24.0
version: 7.24.0
'@babel/preset-env':
specifier: ^7.24.0
version: 7.24.0(@babel/[email protected])
'@rollup/plugin-node-resolve':
specifier: ^13.3.0
version: 13.3.0([email protected])
'@typescript-eslint/eslint-plugin':
specifier: ^5.62.0
'@typescript-eslint/parser':
specifier: ^5.62.0
version: 5.62.0([email protected])([email protected])
eslint:
specifier: ^7.32.0
version: 7.32.0
pkg-versions:
specifier: ^2.1.0
version: 2.1.0
prettier-plugin-svelte:
specifier: ^2.10.1
version: 2.10.1([email protected])([email protected])
rollup:
specifier: ^2.79.1
version: 2.79.1
rollup-plugin-svelte:
specifier: ^7.1.6
version: 7.1.6([email protected])([email protected])
rollup-plugin-terser:
specifier: ^7.0.2
version: 7.0.2([email protected])
sass:
specifier: ^1.71.1
version: 1.71.1
stylelint:
specifier: ^13.13.1
version: 13.13.1
sveld:
specifier: 0.17.2
svelte:
specifier: ^3.59.2
version: 3.59.2
svelte-preprocess:
specifier: ^4.10.7
version: 4.10.7(@babel/[email protected])([email protected])([email protected])([email protected])([email protected])
typescript:
specifier: ^4.9.5
version: 4.9.5
docs:
dependencies:
clipboard-polyfill:
specifier: ^3.0.3
version: 3.0.3
compression:
specifier: ^1.7.4
version: 1.7.4
polka:
specifier: next
version: 1.0.0-next.22
prismjs:
specifier: ^1.28.0
version: 1.28.0
sapper-environment:
specifier: ^1.0.1
version: 1.0.1
sirv:
specifier: ^1.0.19
version: 1.0.19
devDependencies:
'@babel/core':
specifier: ^7.18.5
version: 7.18.5
'@babel/plugin-syntax-dynamic-import':
specifier: ^7.8.3
version: 7.8.3(@babel/[email protected])
'@babel/plugin-transform-runtime':
specifier: ^7.18.5
version: 7.18.5(@babel/[email protected])
'@babel/preset-env':
specifier: ^7.18.2
version: 7.18.2(@babel/[email protected])
'@babel/runtime':
specifier: ^7.18.3
version: 7.18.3
'@rollup/plugin-alias':
specifier: ^3.1.9
version: 3.1.9([email protected])
'@rollup/plugin-babel':
specifier: ^5.3.1
version: 5.3.1(@babel/[email protected])([email protected])
'@rollup/plugin-commonjs':
specifier: ^20.0.0
version: 20.0.0([email protected])
'@rollup/plugin-node-resolve':
specifier: ^13.3.0
version: 13.3.0([email protected])
'@rollup/plugin-replace':
specifier: ^3.1.0
version: 3.1.0([email protected])
attractions:
specifier: workspace:^3.7.0
version: link:../attractions
eslint-config-prettier:
specifier: ^8.5.0
version: 8.5.0([email protected])
mdsvex:
specifier: ^0.9.8
version: 0.9.8([email protected])
postcss:
specifier: ^8.4.14
version: 8.4.14
prettier:
specifier: 2.4.0
version: 2.4.0
prism-svelte:
specifier: ^0.4.7
version: 0.4.7
remark-heading-id:
specifier: ^1.0.0
version: 1.0.0
rollup:
specifier: ^2.75.7
version: 2.75.7
rollup-plugin-svelte:
specifier: ^7.1.0
version: 7.1.0([email protected])([email protected])
rollup-plugin-terser:
specifier: ^7.0.2
version: 7.0.2([email protected])
sapper:
specifier: ^0.29.3
version: 0.29.3([email protected])
sass:
specifier: ^1.52.3
version: 1.52.3
svelte:
specifier: ^3.48.0
version: 3.48.0
svelte-feather-icons:
specifier: ^3.6.0
version: 3.6.0
svelte-preprocess:
specifier: ^4.10.7
version: 4.10.7(@babel/[email protected])([email protected])([email protected])([email protected])([email protected])
packages:
/@aashutoshrathi/[email protected]:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl XFhQG2bjy4Pu1I EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
dev: true
/@ampproject/[email protected]:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.13
dev: true
/@ampproject/[email protected]:
resolution: {integrity: sha512-30iZtAPgz LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.24
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl q2LQx16MISgJ0 z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
'@babel/highlight': 7.23.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.17.12
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.23.4
chalk: 2.4.2
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP /DlTVxLvsCzRTnZuGg==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-uU27kfDRlhfKl w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41 syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt UJ6JcGX DIekGFDxxIWofBxLCnQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.16.7
'@babel/generator': 7.18.2
'@babel/helper-compilation-targets': 7.18.2(@babel/[email protected])
'@babel/helper-module-transforms': 7.18.0
'@babel/helpers': 7.18.2
'@babel/parser': 7.18.5
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
convert-source-map: 1.8.0
debug: 4.3.4([email protected])
gensync: 1.0.0-beta.2
json5: 2.2.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.23.5
'@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-module-transforms': 7.23.3(@babel/[email protected])
'@babel/helpers': 7.24.0
'@babel/parser': 7.24.0
'@babel/template': 7.24.0
'@babel/traverse': 7.24.0
'@babel/types': 7.24.0
convert-source-map: 2.0.0
debug: 4.3.4([email protected])
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
'@jridgewell/gen-mapping': 0.3.1
jsesc: 2.5.2
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.24
jsesc: 2.5.2
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.16.7
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.18.5
'@babel/core': 7.18.5
'@babel/helper-validator-option': 7.16.7
browserslist: 4.21.0
semver: 6.3.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': 7.23.5
'@babel/helper-validator-option': 7.23.5
browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y LTmThLuVX0Pg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.18.2
'@babel/helper-function-name': 7.17.9
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-replace-supers': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-QAH vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-replace-supers': 7.22.20(@babel/[email protected])
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-annotate-as-pure': 7.16.7
regexpu-core: 5.0.1
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW qbE8tlsu3jntNYNfcGsc49LphF1PQIiD vMZ1z1xVOKt 93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq 2gsstyYt341HmPeWspihX43yVRA0mS 8GGk2Gckc7bY/HCmA==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-compilation-targets': 7.18.2(@babel/[email protected])
'@babel/helper-module-imports': 7.16.7
'@babel/helper-plugin-utils': 7.17.12
'@babel/traverse': 7.18.5
debug: 4.3.4([email protected])
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
debug: 4.3.4([email protected])
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx 1nNZhgocs gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo eoZqeW9UIiOcuYKRJA4ZAgV9myA pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a Q8CzD255fg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt /7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-LVtS6TqjJHFc nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok 0r88fp YtWVLZrp4CkafFGIp W0VKw4a22sgebPT99y FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-kclUYSUBIjlvnzN2 K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS HTQAgZd3dMEA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.2
'@babel/helper-module-imports': 7.16.7
'@babel/helper-simple-access': 7.18.2
'@babel/helper-split-export-declaration': 7.16.7
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z 1w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm 8Ng x0oiWF/nw/XQKA==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-9cUznXMG0 FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1 qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-wrap-function': 7.16.8
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-pBGyV4uBqOns 0UvhsTO8qgl8hO89PmiDYv /COyp1aeMcmfrfruz /nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-XzAIyxx vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.2
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib N1T2kr6PEeUT Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj DiMRynboZfIqOKvo03pmhTaUgiD6fQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-n0H99E/K Bika3 WNL17POvo4rKWZ7lZEp1Q fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512- il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL 3zw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b Iff2jHaM/RRFYl7K iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs /iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P a DGDsHw1yxqyQ/jzFEnxf5uTEGp 3bzAbNOxU1paTgYS4ECU/IgfDw==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-Y4OZ ytlatR8AI 8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D KkdJCGPq/ 8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.17.9
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB R4FvYoHGZz 4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.24.0
'@babel/types': 7.24.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-j d u5xT5utcQSzrh9p PaJX94h KN ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/traverse': 7.18.5
'@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
'@babel/traverse': 7.24.0
'@babel/types': 7.24.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc 3x4o1O fYyULu11GynEUQNwB6lua IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV 383FSOw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.18.4
dev: true
/@babel/[email protected]:
resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR rDgHg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.24.0
dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.17.12(@babel/[email protected]):
resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB aw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/[email protected]):
resolution: {integrity: sha512-iRkKcCqb7iGnq9 3G6rZ Ciz5VywC4XNRHe57lKM jOeYAoR0lVqdeeDRfh0tQcTfw/ vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.0
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V drYrc/d ovrF9NBi0pmtvmNb/FsWtRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
'@babel/plugin-proposal-optional-chaining': 7.17.12(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU Iwsi4Knl9wAletWem7kaRsGOG 8UEbRyqxY4SS5zvtfXwX jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-optional-chaining': 7.23.4(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.24.0
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.24.0
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf mVmBTdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/helper-remap-async-to-generator': 7.16.8
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-create-class-features-plugin': 7.18.0(@babel/[email protected])
'@babel/helper-plugin-utils': 7.17.12
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-t 8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-create-class-features-plugin': 7.18.0(@babel/[email protected])
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6 u70ZYZrd7uz ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa GttNiRzX56snQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-rKJ rKBoXwLnIn7n6o6fulViHMrOThz99ybH hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-EqFo2s1Z5yy JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb 5OEo2Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-ws/g3FSGVzv VH86 QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi O4X/VkWiWjnkKOBiqJrTaC98VKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.18.5
'@babel/core': 7.18.5
'@babel/helper-compilation-targets': 7.18.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/[email protected])
'@babel/plugin-transform-parameters': 7.17.12(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.5
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/[email protected])
dev: true
/@babel/[email protected](@babel/[email protected]):
resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==}