-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
yarn.lock
16600 lines (15036 loc) · 612 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: 8
cacheKey: 10c0
"@1stg/babel-preset@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/babel-preset@npm:4.0.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-proposal-class-properties": "npm:^7.18.6"
"@babel/plugin-proposal-decorators": "npm:^7.23.6"
"@babel/preset-env": "npm:^7.23.6"
"@babel/preset-react": "npm:^7.23.3"
"@babel/preset-typescript": "npm:^7.23.3"
"@pkgr/utils": "npm:^3.0.0"
"@vue/babel-helper-vue-jsx-merge-props": "npm:^1.4.0"
"@vue/babel-plugin-jsx": "npm:^1.1.5"
"@vue/babel-preset-jsx": "npm:^1.4.0"
babel-plugin-import: "npm:^1.13.8"
babel-plugin-transform-async-to-promises: "npm:^0.8.18"
babel-plugin-transform-react-remove-prop-types: "npm:^0.4.24"
babel-plugin-transform-remove-console: "npm:^6.9.4"
babel-plugin-transform-typescript-metadata: "npm:^0.3.2"
babel-preset-proposal-typescript: "npm:^4.0.0"
core-js: "npm:^3.35.0"
fast-async: "npm:^7.0.6"
peerDependencies:
"@babel/core": ">=7.14.1"
checksum: 2cbc81eb7cbe08d546b031adc0d1e4d487d6fe319e99ab7d59569b936fce12c59b4ad5d59b18893d68f85d87927e278ca2a4dc4fedf43eabc6d80df96a5aa822
languageName: node
linkType: hard
"@1stg/commitlint-config@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/commitlint-config@npm:4.0.0"
dependencies:
"@commitlint/config-conventional": "npm:^18.4.3"
"@commitlint/config-lerna-scopes": "npm:^18.4.3"
"@pkgr/utils": "npm:^3.0.0"
checksum: d100c9772de419d9aff2d6b2a74f50ce7a7adc2f9122dcc071b301dfb617dc8a06c6c3ed01e5e46915a084954c8dd40db78224cbbd3291c4423675bb2c101ac4
languageName: node
linkType: hard
"@1stg/common-config@npm:^10.0.0":
version: 10.0.0
resolution: "@1stg/common-config@npm:10.0.0"
dependencies:
"@1stg/babel-preset": "npm:^4.0.0"
"@1stg/commitlint-config": "npm:^4.0.0"
"@1stg/eslint-config": "npm:^8.0.0"
"@1stg/lint-staged": "npm:^4.0.0"
"@1stg/markuplint-config": "npm:^3.0.1"
"@1stg/prettier-config": "npm:^4.0.0"
"@1stg/remark-preset": "npm:^2.0.0"
"@1stg/simple-git-hooks": "npm:^0.2.3"
"@1stg/tsconfig": "npm:^2.3.3"
"@babel/core": "npm:^7.23.6"
"@commitlint/cli": "npm:^18.4.3"
eslint: "npm:^8.56.0"
lint-staged: "npm:^15.2.0"
npm-run-all: "npm:^4.1.5"
prettier: "npm:^3.1.1"
simple-git-hooks: "npm:^2.9.0"
tslib: "npm:^2.6.2"
checksum: b8b998fcf42d668b5d92d8d2e3f45426afce5f4d0ffd5b88b70a504088e6888f25c9ddad7e4cab72a0b701f9fa6505f92e6b7e69e7be80259b8f46dfbd4adfc5
languageName: node
linkType: hard
"@1stg/config@npm:^0.2.2":
version: 0.2.2
resolution: "@1stg/config@npm:0.2.2"
checksum: 6025ebc4ca2eaeceeafebf61767c4c0090ead82ff609d17f200e6a7f2f0fab92f28f69455a1f54bc9cf1e1bf9f633ffde4019dfde30c2fbc0b03af9e62888596
languageName: node
linkType: hard
"@1stg/eslint-config@npm:^8.0.0":
version: 8.0.0
resolution: "@1stg/eslint-config@npm:8.0.0"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@angular-eslint/eslint-plugin": "npm:^17.1.1"
"@angular-eslint/eslint-plugin-template": "npm:^17.1.1"
"@angular-eslint/template-parser": "npm:^17.1.1"
"@babel/eslint-parser": "npm:^7.23.3"
"@babel/eslint-plugin": "npm:^7.23.5"
"@eslint-community/eslint-plugin-eslint-comments": "npm:^4.1.0"
"@pkgr/utils": "npm:^3.0.0"
"@typescript-eslint/eslint-plugin": "npm:^6.16.0"
"@typescript-eslint/parser": "npm:^6.16.0"
angular-eslint-template-parser: "npm:^0.1.1"
eslint-config-prettier: "npm:^9.1.0"
eslint-config-standard: "npm:^17.1.0"
eslint-config-standard-jsx: "npm:^11.0.0"
eslint-config-standard-react: "npm:^13.0.0"
eslint-formatter-friendly: "npm:^7.0.0"
eslint-import-resolver-typescript: "npm:^3.6.1"
eslint-plugin-css: "npm:^0.8.1"
eslint-plugin-es-x: "npm:^7.5.0"
eslint-plugin-import: "npm:eslint-plugin-i@^2.29.1"
eslint-plugin-jest: "npm:^27.6.0"
eslint-plugin-jsdoc: "npm:^46.9.1"
eslint-plugin-jsonc: "npm:^2.11.2"
eslint-plugin-markup: "npm:^0.11.0"
eslint-plugin-mdx: "npm:^2.3.0"
eslint-plugin-n: "npm:^16.6.0"
eslint-plugin-prettier: "npm:^5.1.2"
eslint-plugin-promise: "npm:^6.1.1"
eslint-plugin-react: "npm:^7.33.2"
eslint-plugin-react-hooks: "npm:^4.6.0"
eslint-plugin-regexp: "npm:^2.1.2"
eslint-plugin-simple-import-sort: "npm:^10.0.0"
eslint-plugin-sonar: "npm:^0.13.1"
eslint-plugin-sonarjs: "npm:^0.23.0"
eslint-plugin-svelte: "npm:^2.35.1"
eslint-plugin-toml: "npm:^0.8.0"
eslint-plugin-unicorn: "npm:^50.0.1"
eslint-plugin-vue: "npm:^9.19.2"
eslint-plugin-yml: "npm:^1.11.0"
peerDependencies:
eslint: ">=8.0.0"
checksum: 010d475c118522112b4ea8eb36f325af86152e3ab6acf50d0d2eaa08c9fb1d9db7b7fca7fb0f033baa905e3fca29f6bf504044f6509a4b8f9d60c1cdf462059f
languageName: node
linkType: hard
"@1stg/lint-staged@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/lint-staged@npm:4.0.0"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@1stg/prettier-config": "npm:^4.0.0"
"@1stg/tsconfig": "npm:^2.3.3"
"@pkgr/core": "npm:^0.1.0"
prettier: "npm:^3.1.1"
peerDependencies:
lint-staged: ">=10.0.0"
checksum: 46a9ac243fc3d1b11b6fe84f6556dd0f8ac7693c97de150f1f115d4181300f01f63d2e51e785d7cb98fd7e5b70c77a0208d65300084ee3b0fbcfad587fe9ed19
languageName: node
linkType: hard
"@1stg/markuplint-config@npm:^3.0.1":
version: 3.0.1
resolution: "@1stg/markuplint-config@npm:3.0.1"
dependencies:
"@markuplint/svelte-parser": "npm:^3.8.0"
"@markuplint/vue-parser": "npm:^3.8.0"
"@markuplint/vue-spec": "npm:^3.9.0"
markuplint-angular-parser: "npm:^2.0.0"
peerDependencies:
markuplint: ^3.0.0
checksum: 795f0df88d3bdf19a12c2e15221c0a2cb07bf075006e336ad09a08d46359e9f9d2a2aaf0a59361096e1c94c3df00908e7cb9afade4bf1a9e5cf9abcfdb6e3c87
languageName: node
linkType: hard
"@1stg/prettier-config@npm:^4.0.0":
version: 4.0.1
resolution: "@1stg/prettier-config@npm:4.0.1"
dependencies:
"@1stg/config": "npm:^0.2.2"
"@prettier/plugin-pug": "npm:^3.0.0"
"@prettier/plugin-ruby": "npm:^4.0.4"
"@prettier/plugin-xml": "npm:^3.2.2"
prettier-plugin-ini: "npm:^1.1.0"
prettier-plugin-pkg: "npm:^0.18.0"
prettier-plugin-properties: "npm:^0.3.0"
prettier-plugin-sh: "npm:^0.13.1"
prettier-plugin-stylus: "npm:^0.1.0"
prettier-plugin-svelte: "npm:^3.1.2"
prettier-plugin-toml: "npm:^2.0.1"
peerDependencies:
prettier: ">=1.18.0"
checksum: 760c2d1bdadff3277a6e9c29ab3fe0c345df0d1749aaee34ed1a862be26f3d56953d71a0f62e0c9378caa44c266d0645ea6d1c84cf81ac233e9beb6ce15b6581
languageName: node
linkType: hard
"@1stg/remark-preset@npm:^2.0.0":
version: 2.0.0
resolution: "@1stg/remark-preset@npm:2.0.0"
dependencies:
remark-frontmatter: "npm:^4.0.1"
remark-gfm: "npm:^3.0.1"
remark-lint: "npm:^9.1.1"
remark-lint-no-duplicate-headings: "npm:^3.1.1"
remark-lint-no-duplicate-headings-in-section: "npm:^3.1.1"
remark-preset-lint-consistent: "npm:^5.1.1"
remark-preset-lint-markdown-style-guide: "npm:^5.1.2"
remark-preset-lint-recommended: "npm:^6.1.2"
remark-preset-prettier: "npm:^2.0.1"
remark-validate-links: "npm:^12.1.0"
checksum: d3d6ed7b0af2241b458c38725dee26f39cb48b95f8132f0070a36d8ff31b54ea0924e466a3d2820725cf2c151a62a780c49c82e911ca870c367a0f65515fbb62
languageName: node
linkType: hard
"@1stg/simple-git-hooks@npm:^0.2.3":
version: 0.2.4
resolution: "@1stg/simple-git-hooks@npm:0.2.4"
dependencies:
"@pkgr/utils": "npm:^3.0.0"
peerDependencies:
"@commitlint/cli": ">=11.0.0"
lint-staged: ">=9.0.0"
simple-git-hooks: ">=2.2.0"
checksum: 1d8677c271ba89e43dc3f13009709c4dfd1e84d17fa7c21366e3d0bf581f253ebc8e4df382f1380260f02c9f43b71e3f094903d0be70ab7391f69ab3c133a4f1
languageName: node
linkType: hard
"@1stg/tsconfig@npm:^2.3.3":
version: 2.3.3
resolution: "@1stg/tsconfig@npm:2.3.3"
peerDependencies:
typescript: ">=3.0.0"
checksum: 41801fec98779027429c2d3be540ddde8ba538e20be927b21322a1181367deed905ca59b6a60353c34f9c67eaaae6fd041dad392f717e93587837e53fc62a9a2
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.2.1":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/bundled-angular-compiler@npm:17.2.1"
checksum: a91f2e3e809a5724f5544a9724d98f1ad84ff55a3ed906dc0a31b3ab90cd1e0194bdf958b25a54186ca27c9b43ce0d1207e2ef833c6f5697d396fe09e01d08fc
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:^17.1.1":
version: 17.2.1
resolution: "@angular-eslint/eslint-plugin-template@npm:17.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.2.1"
"@angular-eslint/utils": "npm:17.2.1"
"@typescript-eslint/type-utils": "npm:6.19.0"
"@typescript-eslint/utils": "npm:6.19.0"
aria-query: "npm:5.3.0"
axobject-query: "npm:4.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 9a253a0547e5fcc841bf9e5dd9e54048e764030a27012acfcf2c6e3c4ae6309721059622b68d7df825370a60f58fd5465eb701973e475ec0a4366636ff154288
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:^17.1.1":
version: 17.2.1
resolution: "@angular-eslint/eslint-plugin@npm:17.2.1"
dependencies:
"@angular-eslint/utils": "npm:17.2.1"
"@typescript-eslint/utils": "npm:6.19.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 609a041fbbda6be6f5d531319b32ba669495ffbd97424cddfb1c595954ed5d9adcf443baeb375288e0fa727c19237d975f7e0fa2bc5c62042131618bbf1ca5f8
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:^17.1.1":
version: 17.2.1
resolution: "@angular-eslint/template-parser@npm:17.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.2.1"
eslint-scope: "npm:^8.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 4b455f2787211bcefb01135729a38251d954646723b1f86584e8729e81b766745a8971e2095f19f8e9257b150ee33393788413e80d7b3f57847d095c308a7e37
languageName: node
linkType: hard
"@angular-eslint/utils@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/utils@npm:17.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.2.1"
"@typescript-eslint/utils": "npm:6.19.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 30115f8edfbce703db35126c4cddc8bad3972bf55eafae8a57021510dabd028ee94a43d6c610fd346f6d30537d785ce1ad164ea5bca80567f3339f9fd4bf1953
languageName: node
linkType: hard
"@babel/code-frame@npm:7.0.0":
version: 7.0.0
resolution: "@babel/code-frame@npm:7.0.0"
dependencies:
"@babel/highlight": "npm:^7.0.0"
checksum: 354d21933d183ae2b3326d960b7731244c21a6cca663d10a3822ffb122bfa2cd3bb85bfb75bc6be7f73afbb4e69281355e5093b572d8690dc47d5ad813c42f35
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.3, @babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 081278ed46131a890ad566a59c61600a5f9557bd8ee5e535890c8548192532ea92590742fd74bd9db83d74c669ef8a04a7e1c85cdea27f960233e3b83c3a957c
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.6":
version: 7.23.7
resolution: "@babel/core@npm:7.23.7"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.7"
"@babel/parser": "npm:^7.23.6"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.7"
"@babel/types": "npm:^7.23.6"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 38c9934973d384ed83369712978453eac91dc3f22167404dbdb272b64f602e74728a6f37012c53ee57e521b8ae2da60097f050497d9b6a212d28b59cdfb2cd1d
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/eslint-parser@npm:7.23.3"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0
checksum: abb01d23acd80e983125cd72c547baaf7775bfca7a98fc57a2a95f2b70197a34c6bf861e255ab5c8740ace27c50a9966481503875fcc23b2636598740e4881f4
languageName: node
linkType: hard
"@babel/eslint-plugin@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/eslint-plugin@npm:7.23.5"
dependencies:
eslint-rule-composer: "npm:^0.3.0"
peerDependencies:
"@babel/eslint-parser": ^7.11.0
eslint: ^7.5.0 || ^8.0.0
checksum: adaf0975bab774c9a7ddd7aac6f2f7e4e0b087fea24759d8538ebe988b72eaca5928d9afc6b9c13927bf3e3c6ac66795d1060f6a8bfa9748de27f5d93d3fef64
languageName: node
linkType: hard
"@babel/generator@npm:^7.0.0-beta.44, @babel/generator@npm:^7.23.6, @babel/generator@npm:^7.7.2":
version: 7.23.6
resolution: "@babel/generator@npm:7.23.6"
dependencies:
"@babel/types": "npm:^7.23.6"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 53540e905cd10db05d9aee0a5304e36927f455ce66f95d1253bb8a179f286b88fa7062ea0db354c566fe27f8bb96567566084ffd259f8feaae1de5eccc8afbda
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 2535e3824ca6337f65786bbac98e562f71699f25532cecd196f027d7698b4967a96953d64e36567956658ad1a05ccbdc62d1ba79ee751c79f4f1d2d3ecc2e01c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-compilation-targets@npm:7.23.6"
dependencies:
"@babel/compat-data": "npm:^7.23.5"
"@babel/helper-validator-option": "npm:^7.23.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: ba38506d11185f48b79abf439462ece271d3eead1673dd8814519c8c903c708523428806f05f2ec5efd0c56e4e278698fac967e5a4b5ee842c32415da54bc6fa
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.23.6, @babel/helper-create-class-features-plugin@npm:^7.23.7":
version: 7.23.7
resolution: "@babel/helper-create-class-features-plugin@npm:7.23.7"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-member-expression-to-functions": "npm:^7.23.0"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.22.20"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: f594e99f97211bda5530756712751c1c4ce6063bb376f1f38cc540309a086bd0f4b62aff969ddb29e7310e936c2d3745934a2b292c4710be8112e57fbe3f3381
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
regexpu-core: "npm:^5.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 8eba4c1b7b94a83e7a82df5c3e504584ff0ba6ab8710a67ecc2c434a7fb841a29c2f5c94d2de51f25446119a1df538fa90b37bd570db22ddd5e7147fe98277c6
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.4.4":
version: 0.4.4
resolution: "@babel/helper-define-polyfill-provider@npm:0.4.4"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 60126f5f719b9e2114df62e3bf3ac0797b71d8dc733db60192eb169b004fde72ee309fa5848c5fdfe98b8e8863c46f55e16da5aa8a4e420b4d2670cd0c5dd708
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.5.0":
version: 0.5.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.5.0"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 2b053b96a0c604a7e0f5c7d13a8a55f4451d938f7af42bd40f62a87df15e6c87a0b1dbd893a0f0bb51077b54dc3ba00a58b166531a5940ad286ab685dd8979ec
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.22.15, @babel/helper-member-expression-to-functions@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
checksum: b810daddf093ffd0802f1429052349ed9ea08ef7d0c56da34ffbcdecbdafac86f95bdea2fe30e0e0e629febc7dd41b56cb5eacc10d1a44336d37b755dac31fa4
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.0.0-beta.44, @babel/helper-module-imports@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 4e0d7fc36d02c1b8c8b3006dfbfeedf7a367d3334a04934255de5128115ea0bafdeb3e5736a2559917f0653e4e437400d54542da0468e08d3cbc86d3bbfa8f30
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/helper-module-transforms@npm:7.23.3"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 211e1399d0c4993671e8e5c2b25383f08bee40004ace5404ed4065f0e9258cc85d99c1b82fd456c030ce5cfd4d8f310355b54ef35de9924eabfc3dff1331d946
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8
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.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.22.5
resolution: "@babel/helper-plugin-utils@npm:7.22.5"
checksum: d2c4bfe2fa91058bcdee4f4e57a3f4933aed7af843acfd169cd6179fab8d13c1d636474ecabb2af107dc77462c7e893199aa26632bac1c6d7e025a17cbb9d20d
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-wrap-function": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: aa93aa74250b636d477e8d863fbe59d4071f8c2654841b7ac608909e480c1cf3ff7d7af5a4038568829ad09d810bb681668cbe497d9c89ba5c352793dc9edf1e
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-replace-supers@npm:7.22.20"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-member-expression-to-functions": "npm:^7.22.15"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6b0858811ad46873817c90c805015d63300e003c5a85c147a17d9845fa2558a02047c3cc1f07767af59014b2dd0fa75b503e5bc36e917f360e9b67bb6f1e79f4
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: f0cf81a30ba3d09a625fd50e5a9069e575c5b6719234e04ee74247057f8104beca89ed03e9217b6e9b0493434cedc18c5ecca4cea6244990836f1f893e140369
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: ab7fa2aa709ab49bb8cd86515a1e715a3108c4bb9a616965ba76b43dc346dee66d1004ccf4d222b596b6224e43e04cbc5c3a34459501b388451f8c589fbc3691
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: d83e4b623eaa9622c267d3c83583b72f3aac567dc393dda18e559d79187961cb29ae9c57b2664137fc3d19508370b12ec6a81d28af73a50e0846819cb21c6e44
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: f348d5637ad70b6b54b026d6544bd9040f78d24e7ec245a0fc42293968181f6ae9879c22d89744730d246ce8ec53588f716f102addd4df8bbc79b73ea10004ac
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.15, @babel/helper-validator-option@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/helper-validator-option@npm:7.23.5"
checksum: af45d5c0defb292ba6fd38979e8f13d7da63f9623d8ab9ededc394f67eb45857d2601278d151ae9affb6e03d5d608485806cd45af08b4468a0515cf506510e94
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-wrap-function@npm:7.22.20"
dependencies:
"@babel/helper-function-name": "npm:^7.22.5"
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.22.19"
checksum: 97b5f42ff4d305318ff2f99a5f59d3e97feff478333b2d893c4f85456d3c66372070f71d7bf9141f598c8cf2741c49a15918193633c427a88d170d98eb8c46eb
languageName: node
linkType: hard
"@babel/helpers@npm:^7.23.7":
version: 7.23.8
resolution: "@babel/helpers@npm:7.23.8"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.7"
"@babel/types": "npm:^7.23.6"
checksum: d9fce49278a31aaa017a40c1fcdaa450999c49e33582cce8138058c58b1acbe3a2d2488f010f28e91dedf0d35795ea32f0ee18745bbb6c7f54052ae0fd7e6a3f
languageName: node
linkType: hard
"@babel/highlight@npm:^7.0.0, @babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/parser@npm:7.23.6"
bin:
parser: ./bin/babel-parser.js
checksum: 6f76cd5ccae1fa9bcab3525b0865c6222e9c1d22f87abc69f28c5c7b2c8816a13361f5bd06bddbd5faf903f7320a8feba02545c981468acec45d12a03db7755e
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 356a4e9fc52d7ca761ce6857fc58e2295c2785d22565760e6a5680be86c6e5883ab86e0ba25ef572882c01713d3a31ae6cfa3e3222cdb95e6026671dab1fa415
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/plugin-transform-optional-chaining": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.13.0
checksum: a8785f099d55ca71ed89815e0f3a636a80c16031f80934cfec17c928d096ee0798964733320c8b145ef36ba429c5e19d5107b06231e0ab6777cfb0f01adfdc23
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.23.7":
version: 7.23.7
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.23.7"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 355746e21ad7f43e4f4daef54cfe2ef461ecd19446b2afedd53c39df1bf9aa2eeeeaabee2279b1321de89a97c9360e4f76e9ba950fee50ff1676c25f6929d625
languageName: node
linkType: hard
"@babel/plugin-proposal-async-do-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-async-do-expressions@npm:7.23.3"
dependencies:
"@babel/helper-hoist-variables": "npm:^7.22.5"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-async-do-expressions": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.13.0
checksum: cb8ca76885470424a83455f63fd3da849a3e4e4bc49bf0cf0daca5d85153ad661c13cc1aeb54b143c6a4c65141f2ce73199dcb757904783c4fefaf9606af6464
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.18.6"
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d5172ac6c9948cdfc387e94f3493ad86cb04035cf7433f86b5d358270b1b9752dc25e176db0c5d65892a246aca7bdb4636672e15626d7a7de4bc0bd0040168d9
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.23.6":
version: 7.23.7
resolution: "@babel/plugin-proposal-decorators@npm:7.23.7"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.23.7"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-decorators": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 49457b186d3ac5130ed27bc3af1fcfbca495d6e68ad9e800cd0cfefc0720158563db170ca5c99f03cfe12ff2affc088eeaba7d766b2d9c0538e2a85e21e557ed
languageName: node
linkType: hard
"@babel/plugin-proposal-destructuring-private@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-destructuring-private@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-destructuring-private": "npm:^7.23.3"
"@babel/plugin-transform-destructuring": "npm:^7.23.3"
"@babel/plugin-transform-parameters": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.17.0
checksum: 3f2d82d785711638515bc55fe32ded002e5a4dad8099c1f391ab88bdba80c6d82621d31b7a04c01e3ac7cab8d24134508e26081c800c65f1a96d7a5d9a017b88
languageName: node
linkType: hard
"@babel/plugin-proposal-do-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-do-expressions@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-do-expressions": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e1e211d8365c524217743da03b46c14cb6bc71b882a74837ea80dba36cb8c4cc7ccede745cf4910b0351a2001477b7d02710232198fe8dc448aa18a67a1f4ffb
languageName: node
linkType: hard
"@babel/plugin-proposal-duplicate-named-capturing-groups-regex@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-duplicate-named-capturing-groups-regex@npm:7.23.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7badd1c746deb9750036077baa9f18e85729237bfa4d0ca64d163eafe89e6f3c7088aa72b36c7b2b5774e05df8b655145898233258004d2d0ab5cb37f4b238c9
languageName: node
linkType: hard
"@babel/plugin-proposal-function-bind@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-function-bind@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-function-bind": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 933b3a1d52a20a41a7f8040faee5ee327cb5792765e1f9d18ea5b719ae5d2db8eb8833bfd23df5ec77d722c74ab875b4e0a7eb8e7ab635c296ec892e846b587f
languageName: node
linkType: hard
"@babel/plugin-proposal-function-sent@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-function-sent@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-wrap-function": "npm:^7.22.20"
"@babel/plugin-syntax-function-sent": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f2d8bf5fe189aed1b404f0694dea05ca8056984ac5304456d580e6c0b0188d61bc053887f8a5b6827be735e963e0a52a631ba55010062a09b02fcb4b9ef5fd11
languageName: node
linkType: hard
"@babel/plugin-proposal-import-defer@npm:^7.23.0":
version: 7.23.7
resolution: "@babel/plugin-proposal-import-defer@npm:7.23.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-import-defer": "npm:^7.23.7"
"@babel/plugin-transform-modules-commonjs": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 15eeefe12123d637b8498d5edd971694744bf1ad25d3db1d5af96fd530bb9506e7772d9eb5d4a06da18dd00726a74147ba0835ed2b4e69a8c15fe12a8a57bfe5
languageName: node
linkType: hard
"@babel/plugin-proposal-import-wasm-source@npm:^7.23.0":
version: 7.23.7
resolution: "@babel/plugin-proposal-import-wasm-source@npm:7.23.7"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-import-source": "npm:^7.23.7"
peerDependencies:
"@babel/core": ^7.22.0
checksum: 2a3f1553d2fa376266030c2d33965f55c009256a3a22bf91311c8b464e4c04881f6ebcf400f5a97ca8ee5ec70e8064b12064cc7f93802cadc3790d6d1547ed55
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining-assign@npm:^7.23.0":
version: 7.23.7
resolution: "@babel/plugin-proposal-optional-chaining-assign@npm:7.23.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/plugin-syntax-optional-chaining-assign": "npm:^7.23.7"
"@babel/plugin-transform-optional-chaining": "npm:^7.23.4"
peerDependencies:
"@babel/core": ^7.22.5
checksum: 0f60ed1cc6675d0ae5d659b34b16f3fea87c9578c26adcbc09d3fdcfd589ab2d63e0b7d4ed0c48990b7c381b3aaaf4a0e9c6f217b0a3cabb3d2e390b9d0e5ccd
languageName: node
linkType: hard
"@babel/plugin-proposal-partial-application@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-partial-application@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-partial-application": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 64b7cb49085b531344d9bc6f18e03d855a966033b303ebd95e1a3715de7693055017110fa9b163c923d9a82f14c12b88e3fa331f53f339c2feb97d448dd302ea
languageName: node
linkType: hard
"@babel/plugin-proposal-pipeline-operator@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-pipeline-operator@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-pipeline-operator": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a1cda8c165db97fa32c94c29f91768dc7b63ca12015f8d1ee7f06a0d5afbf390802afb5f300cee6028751632b66243732d03ff4cb81181e0c67a6601fbbd06b8
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2":
version: 7.21.0-placeholder-for-preset-env.2
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e605e0070da087f6c35579499e65801179a521b6842c15181a1e305c04fded2393f11c1efd09b087be7f8b083d1b75e8f3efcbc1292b4f60d3369e14812cff63
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.21.11":
version: 7.21.11
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.11"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.18.6"
"@babel/helper-create-class-features-plugin": "npm:^7.21.0"
"@babel/helper-plugin-utils": "npm:^7.20.2"
"@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3c8c9ea175101b1cbb2b0e8fee20fcbdd03eb0700d3581aa826ac3573c9b002f39b1512c2af9fd1903ff921bcc864da95ad3cdeba53c9fbcfb3dc23916eacf47
languageName: node
linkType: hard
"@babel/plugin-proposal-record-and-tuple@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-record-and-tuple@npm:7.23.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/helper-validator-option": "npm:^7.22.15"
"@babel/plugin-syntax-record-and-tuple": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.12.0
checksum: bf398bbc6cfb7d8d62ce08e7cb85e743d4c6aa7a62165c4fa9f4261e20386603f03612e10f2a1f9d5bc82fda03d69965f4e4e627e37ea61aa7961555783b1229
languageName: node
linkType: hard
"@babel/plugin-proposal-regexp-modifiers@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-regexp-modifiers@npm:7.23.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.22.15"
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: f5ec2f39ed9f53e342eac8fc222931d6d242043f4945643eaba43f9d3a1c5bfff027c6fa5a06b7a32305d4fc5010d754c8933aef885d43188b9ee173a3455186
languageName: node
linkType: hard
"@babel/plugin-proposal-throw-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-proposal-throw-expressions@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
"@babel/plugin-syntax-throw-expressions": "npm:^7.23.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4d9cfef05c69e1f9e8be54fd437aec1c285c457b5c48fd7ccfb4bf070da522e402b30d647f76cd3b6d37b5feed37cf02cd17bca3c99e2153371f06968b8b567f
languageName: node
linkType: hard
"@babel/plugin-syntax-async-do-expressions@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-syntax-async-do-expressions@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cb231d9b1d1918bbd6fda95067b8049c0d992b079447bfb116b03577f44f84ab7e900f6bc6736a1d4bd2f4d41a6f24216b19cbe58ec52df14db8b13fa984aee2
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-syntax-decorators@npm:7.23.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 86299c050b0a5b6565d6b9e3529f2d6dca4780215ab88050bdd0ae9a576868a17f9cd1e140857089cc5d06bdfeb89f0711285f99481b82316896a552a62e449f
languageName: node
linkType: hard
"@babel/plugin-syntax-destructuring-private@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/plugin-syntax-destructuring-private@npm:7.23.3"