-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathyarn.lock
16762 lines (15187 loc) · 578 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: 6
cacheKey: 8
"@1stg/babel-preset@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/babel-preset@npm:4.0.0"
dependencies:
"@babel/helper-plugin-utils": ^7.22.5
"@babel/plugin-proposal-class-properties": ^7.18.6
"@babel/plugin-proposal-decorators": ^7.23.6
"@babel/preset-env": ^7.23.6
"@babel/preset-react": ^7.23.3
"@babel/preset-typescript": ^7.23.3
"@pkgr/utils": ^3.0.0
"@vue/babel-helper-vue-jsx-merge-props": ^1.4.0
"@vue/babel-plugin-jsx": ^1.1.5
"@vue/babel-preset-jsx": ^1.4.0
babel-plugin-import: ^1.13.8
babel-plugin-transform-async-to-promises: ^0.8.18
babel-plugin-transform-react-remove-prop-types: ^0.4.24
babel-plugin-transform-remove-console: ^6.9.4
babel-plugin-transform-typescript-metadata: ^0.3.2
babel-preset-proposal-typescript: ^4.0.0
core-js: ^3.35.0
fast-async: ^7.0.6
peerDependencies:
"@babel/core": ">=7.14.1"
checksum: a4f2397fafefc4a8990006a2ae34be3b96776747755df0454e5e0a46a2f5867497da876524c8ff3c3a87aeec6f8c7ad07f64dc28a419380a681331d630e23f42
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": ^18.4.3
"@commitlint/config-lerna-scopes": ^18.4.3
"@pkgr/utils": ^3.0.0
checksum: 719454f1b12a901762a828e12262ce4ddc45225e128e49be655386d306c72ef91ef284e478efa93d0b4d1ef497f208a02be101f3371317f61cd0b9475aef8ad3
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": ^4.0.0
"@1stg/commitlint-config": ^4.0.0
"@1stg/eslint-config": ^8.0.0
"@1stg/lint-staged": ^4.0.0
"@1stg/markuplint-config": ^3.0.1
"@1stg/prettier-config": ^4.0.0
"@1stg/remark-preset": ^2.0.0
"@1stg/simple-git-hooks": ^0.2.3
"@1stg/tsconfig": ^2.3.3
"@babel/core": ^7.23.6
"@commitlint/cli": ^18.4.3
eslint: ^8.56.0
lint-staged: ^15.2.0
npm-run-all: ^4.1.5
prettier: ^3.1.1
simple-git-hooks: ^2.9.0
tslib: ^2.6.2
checksum: cd2753cf2f67245d9d26c96e242536fb393326030928572c7346fbe896f1ab92da7b1873094419d058a5a5b3bae1bdcb8b5a7a384472e3cece03fd90f07c0073
languageName: node
linkType: hard
"@1stg/config@npm:^0.2.2":
version: 0.2.2
resolution: "@1stg/config@npm:0.2.2"
checksum: 37c1431132ed77272e57da0f027ab8c4d80a69b1c1b560654a6160487512ab42602a46bb90e919a551243785fc66d64089e6092b448ce6032fa29c014b2a8516
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": ^0.2.2
"@angular-eslint/eslint-plugin": ^17.1.1
"@angular-eslint/eslint-plugin-template": ^17.1.1
"@angular-eslint/template-parser": ^17.1.1
"@babel/eslint-parser": ^7.23.3
"@babel/eslint-plugin": ^7.23.5
"@eslint-community/eslint-plugin-eslint-comments": ^4.1.0
"@pkgr/utils": ^3.0.0
"@typescript-eslint/eslint-plugin": ^6.16.0
"@typescript-eslint/parser": ^6.16.0
angular-eslint-template-parser: ^0.1.1
eslint-config-prettier: ^9.1.0
eslint-config-standard: ^17.1.0
eslint-config-standard-jsx: ^11.0.0
eslint-config-standard-react: ^13.0.0
eslint-formatter-friendly: ^7.0.0
eslint-import-resolver-typescript: ^3.6.1
eslint-plugin-css: ^0.8.1
eslint-plugin-es-x: ^7.5.0
eslint-plugin-import: "npm:eslint-plugin-i@^2.29.1"
eslint-plugin-jest: ^27.6.0
eslint-plugin-jsdoc: ^46.9.1
eslint-plugin-jsonc: ^2.11.2
eslint-plugin-markup: ^0.11.0
eslint-plugin-mdx: ^2.3.0
eslint-plugin-n: ^16.6.0
eslint-plugin-prettier: ^5.1.2
eslint-plugin-promise: ^6.1.1
eslint-plugin-react: ^7.33.2
eslint-plugin-react-hooks: ^4.6.0
eslint-plugin-regexp: ^2.1.2
eslint-plugin-simple-import-sort: ^10.0.0
eslint-plugin-sonar: ^0.13.1
eslint-plugin-sonarjs: ^0.23.0
eslint-plugin-svelte: ^2.35.1
eslint-plugin-toml: ^0.8.0
eslint-plugin-unicorn: ^50.0.1
eslint-plugin-vue: ^9.19.2
eslint-plugin-yml: ^1.11.0
peerDependencies:
eslint: ">=8.0.0"
checksum: cd9668ddd0b257d05e94cdd1ddb28c25e006a4b447dc62219b5ec914c9f15b1609ace319c9e1e1dc9f335e2db8820ddc055db85159a8d2a4525b263bb2d4a1aa
languageName: node
linkType: hard
"@1stg/lib-config@npm:^13.0.0":
version: 13.0.0
resolution: "@1stg/lib-config@npm:13.0.0"
dependencies:
"@1stg/common-config": ^10.0.0
"@pkgr/rollup": ^5.0.0
checksum: 9d81c39b4efdca4647bc328650b62c80da7019f683eebe716452d3545a8913d782f06cfc79933116628795494613ff554e378744267672db0c441546a1235115
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": ^0.2.2
"@1stg/prettier-config": ^4.0.0
"@1stg/tsconfig": ^2.3.3
"@pkgr/core": ^0.1.0
prettier: ^3.1.1
peerDependencies:
lint-staged: ">=10.0.0"
checksum: 05ceeb0dc7b1620c8723869b65c1333ccfcb76c62aa8a243e22874ac95e1844f480504bad449614acde59a2a8598b03105d35fdc9aa24feb77be79ac703d6443
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": ^3.8.0
"@markuplint/vue-parser": ^3.8.0
"@markuplint/vue-spec": ^3.9.0
markuplint-angular-parser: ^2.0.0
peerDependencies:
markuplint: ^3.0.0
checksum: 8b2d4c89b124453f06906a71faabcadfc0f6faf580d7baca7d6b22dc1bae488c72aca24d25ac70e044afc4458ba3bd9f4bffc2a35a6c8d0d7e8160656301fe83
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": ^0.2.2
"@prettier/plugin-pug": ^3.0.0
"@prettier/plugin-ruby": ^4.0.4
"@prettier/plugin-xml": ^3.2.2
prettier-plugin-ini: ^1.1.0
prettier-plugin-pkg: ^0.18.0
prettier-plugin-properties: ^0.3.0
prettier-plugin-sh: ^0.13.1
prettier-plugin-stylus: ^0.1.0
prettier-plugin-svelte: ^3.1.2
prettier-plugin-toml: ^2.0.1
peerDependencies:
prettier: ">=1.18.0"
checksum: 85392ace1e455c29e2b792f053aca67641e1b6c80f1f8ab5bedebb0d12961d0d5007dfdd221f0cbee2ed40416dcc5b8df2378678ac09d9833f877d4b4ccf9ab7
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: ^4.0.1
remark-gfm: ^3.0.1
remark-lint: ^9.1.1
remark-lint-no-duplicate-headings: ^3.1.1
remark-lint-no-duplicate-headings-in-section: ^3.1.1
remark-preset-lint-consistent: ^5.1.1
remark-preset-lint-markdown-style-guide: ^5.1.2
remark-preset-lint-recommended: ^6.1.2
remark-preset-prettier: ^2.0.1
remark-validate-links: ^12.1.0
checksum: 0de9d6dc5a197ab77ee7716506fe5227b57550be7ae4d9e173f783cd3424a48395a7eb6ec77465439ede2ea2a2b5f78cc0e6c51a5e3a068e2da958df2f574b80
languageName: node
linkType: hard
"@1stg/simple-git-hooks@npm:^0.2.3":
version: 0.2.3
resolution: "@1stg/simple-git-hooks@npm:0.2.3"
dependencies:
"@pkgr/utils": ^2.3.1
peerDependencies:
"@commitlint/cli": ">=11.0.0"
lint-staged: ">=9.0.0"
simple-git-hooks: ">=2.2.0"
checksum: 1c5778578fa2cd82965034e362ef7b288176b95c81f81e1f4ec672d2b2190115912ee722de796ccc8f818dc9270c09ab7ccedd72b80167c94cc5f1ee935c626b
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: 639868ebc35f7c5014b2a6ae6d2f43fcb1a07593db278623d18fec518a138698989e08a2348bf7b8fc4bb3b98fa1bcd2e52140b36963e2da2b8399d7923d03f7
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
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": ^0.3.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: 03c04fd526acc64a1f4df22651186f3e5ef0a9d6d6530ce4482ec9841269cf7a11dbb8af79237c282d721c5312024ff17529cd72cc4768c11e999b58e2302079
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:17.5.3":
version: 17.5.3
resolution: "@angular-eslint/bundled-angular-compiler@npm:17.5.3"
checksum: cc2937fee92ac07483baacecf412aefaa2b99d78c245ce4297b6619c51b0b6e69daf65fc97cda40fb51cb7309542506070489a856d2128cba07b8851140275f5
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:^17.1.1":
version: 17.5.3
resolution: "@angular-eslint/eslint-plugin-template@npm:17.5.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": 17.5.3
"@angular-eslint/utils": 17.5.3
"@typescript-eslint/type-utils": 7.11.0
"@typescript-eslint/utils": 7.11.0
aria-query: 5.3.0
axobject-query: 4.0.0
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 54188437ef6d8869cf0e0c30a65928e0a32631ce63ba18f607d2d2f02cd48e1469f234023047679acea685079d353ff47e8b4015456c50ed72bccb26be8b88d5
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:^17.1.1":
version: 17.5.3
resolution: "@angular-eslint/eslint-plugin@npm:17.5.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": 17.5.3
"@angular-eslint/utils": 17.5.3
"@typescript-eslint/utils": 7.11.0
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 712b6e68a929d91f0eb8a952a86c666974176d03419f21564a3b150535e7ee9b5fef74f98580ab3a56aba39d01fb444df633f6a1ca4eba4aa16afb8c056287ce
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:^17.1.1":
version: 17.5.3
resolution: "@angular-eslint/template-parser@npm:17.5.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": 17.5.3
eslint-scope: ^8.0.0
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: d178f6a80017e6610f5cfa2a61c1b9a244fb129b965eb436e8a0072094b260b7359c1c8f5d3eb2faa5558d2fdbdb3baa80df7c0496d7e06f4918b391149880d6
languageName: node
linkType: hard
"@angular-eslint/utils@npm:17.5.3":
version: 17.5.3
resolution: "@angular-eslint/utils@npm:17.5.3"
dependencies:
"@angular-eslint/bundled-angular-compiler": 17.5.3
"@typescript-eslint/utils": 7.11.0
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 31a965bcd3e6cd5df86b73aff0a6613257d06de94d1c94e7400bfbd0c47a73f919233dfc542a0a7791696b3c3ed3daf5ad1bbd015ccb713e664558fcc4fa3440
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": ^7.0.0
checksum: 0483e67fea3ee5930c163c7dc729a2a5250afab49d0b52e187dfdb7b6382e256fa269e3b3f7af0d55cce27f145c79112934a9d2b8854dd3953c8337a61c0c619
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.24.7, @babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": ^7.25.9
js-tokens: ^4.0.0
picocolors: ^1.0.0
checksum: db13f5c42d54b76c1480916485e6900748bbcb0014a8aca87f50a091f70ff4e0d0a6db63cade75eb41fcc3d2b6ba0a7f89e343def4f96f00269b41b8ab8dd7b8
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5, @babel/compat-data@npm:^7.26.8":
version: 7.26.8
resolution: "@babel/compat-data@npm:7.26.8"
checksum: 1bb04c6860c8c9555b933cb9c3caf5ef1dac331a37a351efb67956fc679f695d487aea76e792dd43823702c1300f7906f2a298e50b4a8d7ec199ada9c340c365
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.6":
version: 7.26.9
resolution: "@babel/core@npm:7.26.9"
dependencies:
"@ampproject/remapping": ^2.2.0
"@babel/code-frame": ^7.26.2
"@babel/generator": ^7.26.9
"@babel/helper-compilation-targets": ^7.26.5
"@babel/helper-module-transforms": ^7.26.0
"@babel/helpers": ^7.26.9
"@babel/parser": ^7.26.9
"@babel/template": ^7.26.9
"@babel/traverse": ^7.26.9
"@babel/types": ^7.26.9
convert-source-map: ^2.0.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.2.3
semver: ^6.3.1
checksum: b6e33bdcbb8a5c929760548be400d18cbde1f07922a784586752fd544fbf13c71331406ffdb4fcfe53f79c69ceae602efdca654ad4e9ac0c2af47efe87e7fccd
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.23.3":
version: 7.26.8
resolution: "@babel/eslint-parser@npm:7.26.8"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1
eslint-visitor-keys: ^2.1.0
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
checksum: a434da9e3099e5f77911baa4eaa21f2ec64768703be1fde2858e8ffdb8be6cb78ff67c611c8c17fe1ece54d925b65487a7455cca93103b017443a51b76320751
languageName: node
linkType: hard
"@babel/eslint-plugin@npm:^7.23.5":
version: 7.25.9
resolution: "@babel/eslint-plugin@npm:7.25.9"
dependencies:
eslint-rule-composer: ^0.3.0
peerDependencies:
"@babel/eslint-parser": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
checksum: 42234bef7bec27ae64a46fbd8c6f5196e715522a6073c34c6dd9ea3bbcd2e092ad6dbdf0705d5796c509028a8ffa0f6235d8d8281d6b1c88811a8c8df33e2200
languageName: node
linkType: hard
"@babel/generator@npm:^7.0.0-beta.44, @babel/generator@npm:^7.26.9, @babel/generator@npm:^7.7.2":
version: 7.26.9
resolution: "@babel/generator@npm:7.26.9"
dependencies:
"@babel/parser": ^7.26.9
"@babel/types": ^7.26.9
"@jridgewell/gen-mapping": ^0.3.5
"@jridgewell/trace-mapping": ^0.3.25
jsesc: ^3.0.2
checksum: 57d034fb6c77dfd5e0c8ef368ff544e19cb6a27cb70d6ed5ff0552c618153dc6692d31e7d0f3a408e0fec3a519514b846c909316c3078290f3a3c1e463372eae
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.18.6, @babel/helper-annotate-as-pure@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-annotate-as-pure@npm:7.25.9"
dependencies:
"@babel/types": ^7.25.9
checksum: 41edda10df1ae106a9b4fe617bf7c6df77db992992afd46192534f5cff29f9e49a303231733782dd65c5f9409714a529f215325569f14282046e9d3b7a1ffb6c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5":
version: 7.26.5
resolution: "@babel/helper-compilation-targets@npm:7.26.5"
dependencies:
"@babel/compat-data": ^7.26.5
"@babel/helper-validator-option": ^7.25.9
browserslist: ^4.24.0
lru-cache: ^5.1.1
semver: ^6.3.1
checksum: 6bc0107613bf1d4d21913606e8e517194e5099a24db2a8374568e56ef4626e8140f9b8f8a4aabc35479f5904459a0aead2a91ee0dc63aae110ccbc2bc4b4fda1
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.25.9":
version: 7.26.9
resolution: "@babel/helper-create-class-features-plugin@npm:7.26.9"
dependencies:
"@babel/helper-annotate-as-pure": ^7.25.9
"@babel/helper-member-expression-to-functions": ^7.25.9
"@babel/helper-optimise-call-expression": ^7.25.9
"@babel/helper-replace-supers": ^7.26.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
"@babel/traverse": ^7.26.9
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: d445a660d2cdd92e83c04a60f52a304e54e5cc338796b6add9dec00048f1ad12125f78145ab688d029569a9559ef64f8e0de86f456b9e2630ea46f664ffb8e45
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.24.7, @babel/helper-create-regexp-features-plugin@npm:^7.25.9":
version: 7.26.3
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.26.3"
dependencies:
"@babel/helper-annotate-as-pure": ^7.25.9
regexpu-core: ^6.2.0
semver: ^6.3.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 50a27d8ce6da5c2fa0c62c132c4d27cfeb36e3233ff1e5220d643de3dafe49423b507382f0b72a696fce7486014b134c1e742f55438590f9405d26765b009af0
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.6.3":
version: 0.6.3
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.3"
dependencies:
"@babel/helper-compilation-targets": ^7.22.6
"@babel/helper-plugin-utils": ^7.22.5
debug: ^4.1.1
lodash.debounce: ^4.0.8
resolve: ^1.14.2
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 710e6d8a5391736b9f53f09d0494575c2e03de199ad8d1349bc8e514cb85251ea1f1842c2ff44830849d482052ddb42ae931101002a87a263b12f649c2e57c01
languageName: node
linkType: hard
"@babel/helper-import-to-platform-api@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-import-to-platform-api@npm:7.25.9"
dependencies:
"@babel/helper-compilation-targets": ^7.25.9
"@babel/helper-module-imports": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2579311be1f815af1f82d5cc3918105a0414b0d96a7572e2aabaf9145cb8565184375c71c1b0e2750f0e81a361cdc09f3c2758d65c7e8f1f44ba1a287aebe89a
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-member-expression-to-functions@npm:7.25.9"
dependencies:
"@babel/traverse": ^7.25.9
"@babel/types": ^7.25.9
checksum: 8e2f1979b6d596ac2a8cbf17f2cf709180fefc274ac3331408b48203fe19134ed87800774ef18838d0275c3965130bae22980d90caed756b7493631d4b2cf961
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.24.7, @babel/helper-module-imports@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": ^7.25.9
"@babel/types": ^7.25.9
checksum: 1b411ce4ca825422ef7065dffae7d8acef52023e51ad096351e3e2c05837e9bf9fca2af9ca7f28dc26d596a588863d0fedd40711a88e350b736c619a80e704e6
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helper-module-transforms@npm:7.26.0"
dependencies:
"@babel/helper-module-imports": ^7.25.9
"@babel/helper-validator-identifier": ^7.25.9
"@babel/traverse": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: 942eee3adf2b387443c247a2c190c17c4fd45ba92a23087abab4c804f40541790d51ad5277e4b5b1ed8d5ba5b62de73857446b7742f835c18ebd350384e63917
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-optimise-call-expression@npm:7.25.9"
dependencies:
"@babel/types": ^7.25.9
checksum: f09d0ad60c0715b9a60c31841b3246b47d67650c512ce85bbe24a3124f1a4d66377df793af393273bc6e1015b0a9c799626c48e53747581c1582b99167cc65dc
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.24.7, @babel/helper-plugin-utils@npm:^7.24.8, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.26.5, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.26.5
resolution: "@babel/helper-plugin-utils@npm:7.26.5"
checksum: 4771fbb1711c624c62d12deabc2ed7435a6e6994b6ce09d5ede1bc1bf19be59c3775461a1e693bdd596af865685e87bb2abc778f62ceadc1b2095a8e2aa74180
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-remap-async-to-generator@npm:7.25.9"
dependencies:
"@babel/helper-annotate-as-pure": ^7.25.9
"@babel/helper-wrap-function": ^7.25.9
"@babel/traverse": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: ea37ad9f8f7bcc27c109963b8ebb9d22bac7a5db2a51de199cb560e251d5593fe721e46aab2ca7d3e7a24b0aa4aff0eaf9c7307af9c2fd3a1d84268579073052
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.25.9, @babel/helper-replace-supers@npm:^7.26.5":
version: 7.26.5
resolution: "@babel/helper-replace-supers@npm:7.26.5"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.25.9
"@babel/helper-optimise-call-expression": ^7.25.9
"@babel/traverse": ^7.26.5
peerDependencies:
"@babel/core": ^7.0.0
checksum: c5ab31b29c7cc09e30278f8860ecdb873ce6c84b5c08bc5239c369c7c4fe9f0a63cda61b55b7bbd20edb4e5dc32e73087cc3c57d85264834bd191551d1499185
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.9"
dependencies:
"@babel/traverse": ^7.25.9
"@babel/types": ^7.25.9
checksum: fdbb5248932198bc26daa6abf0d2ac42cab9c2dbb75b7e9f40d425c8f28f09620b886d40e7f9e4e08ffc7aaa2cefe6fc2c44be7c20e81f7526634702fb615bdc
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-option@npm:7.25.9"
checksum: 9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-wrap-function@npm:7.25.9"
dependencies:
"@babel/template": ^7.25.9
"@babel/traverse": ^7.25.9
"@babel/types": ^7.25.9
checksum: 8ec1701e60ae004415800c4a7a188f5564c73b4e4f3fdf58dd3f34a3feaa9753173f39bbd6d02e7ecc974f48155efc7940e62584435b3092c07728ee46a604ea
languageName: node
linkType: hard
"@babel/helpers@npm:^7.26.9":
version: 7.26.9
resolution: "@babel/helpers@npm:7.26.9"
dependencies:
"@babel/template": ^7.26.9
"@babel/types": ^7.26.9
checksum: 06363f8288a24c1cfda03eccd775ac22f79cba319b533cb0e5d0f2a04a33512881cc3f227a4c46324935504fb92999cc4758b69b5e7b3846107eadcb5ee0abca
languageName: node
linkType: hard
"@babel/highlight@npm:^7.0.0":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": ^7.22.20
chalk: ^2.4.2
js-tokens: ^4.0.0
checksum: 643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89
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.25.3, @babel/parser@npm:^7.25.6, @babel/parser@npm:^7.26.9":
version: 7.26.9
resolution: "@babel/parser@npm:7.26.9"
dependencies:
"@babel/types": ^7.26.9
bin:
parser: ./bin/babel-parser.js
checksum: 2df965dbf3c67d19dc437412ceef23033b4d39b0dbd7cb498d8ab9ad9e1738338656ee72676199773b37d658edf9f4161cf255515234fed30695d74e73be5514
languageName: node
linkType: hard
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/traverse": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: b33d37dacf98a9c74f53959999adc37a258057668b62dba557e6865689433c53764673109eaba9102bf73b2ac4db162f0d9b89a6cca6f1b71d12f5908ec11da9
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: d3e14ab1cb9cb50246d20cab9539f2fbd1e7ef1ded73980c8ad7c0561b4d5e0b144d362225f0976d47898e04cbd40f2000e208b0913bd788346cf7791b96af91
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: a9d1ee3fd100d3eb6799a2f2bbd785296f356c531d75c9369f71541811fa324270258a374db103ce159156d006da2f33370330558d0133e6f7584152c34997ca
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
"@babel/plugin-transform-optional-chaining": ^7.25.9
peerDependencies:
"@babel/core": ^7.13.0
checksum: 5b298b28e156f64de51cdb03a2c5b80c7f978815ef1026f3ae8b9fc48d28bf0a83817d8fbecb61ef8fb94a7201f62cca5103cc6e7b9e8f28e38f766d7905b378
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/traverse": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: c684593952ab1b40dfa4e64e98a07e7227c6db175c21bd0e6d71d2ad5d240fef4e4a984d56f05a494876542a022244fe1c1098f4116109fd90d06615e8a269b1
languageName: node
linkType: hard
"@babel/plugin-proposal-async-do-expressions@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-async-do-expressions@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/traverse": ^7.25.9
peerDependencies:
"@babel/core": ^7.13.0
checksum: cba8439898a8f11f166dcbd46b1c14e130433ef9fbb6882fc63490c2d883f586cb63e76058615f5da0e50183cc7dd341803a3007096ad313e963e67640509dc1
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": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 49a78a2773ec0db56e915d9797e44fd079ab8a9b2e1716e0df07c92532f2c65d76aeda9543883916b8e0ff13606afeffa67c5b93d05b607bc87653ad18a91422
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.23.6":
version: 7.25.9
resolution: "@babel/plugin-proposal-decorators@npm:7.25.9"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.25.9
"@babel/helper-plugin-utils": ^7.25.9
"@babel/plugin-syntax-decorators": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ff598127818ac8e704009f1a9a207766ada5f84f6ca74e9de662cb6ce32bcb846c28fd52d6c5df9c55b4eac9a2a3492aa71fbd5cef0569a14b6f12003df22af2
languageName: node
linkType: hard
"@babel/plugin-proposal-destructuring-private@npm:^7.23.3":
version: 7.26.0
resolution: "@babel/plugin-proposal-destructuring-private@npm:7.26.0"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/plugin-transform-destructuring": ^7.25.9
"@babel/plugin-transform-parameters": ^7.25.9
peerDependencies:
"@babel/core": ^7.17.0
checksum: 4ef3d7200f7ab59d6cb9375e51bf63a9e99f16120298a23af253f0bdbbe5a284cdf1aefb9538c0b5f2a336f771f8e6397ad51e042cfa242dc1ebd6cdbac11c35
languageName: node
linkType: hard
"@babel/plugin-proposal-do-expressions@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-do-expressions@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7b51526265f99b1e9f80c574b0f3b6ec9e8e5d0ed2b7782e4c9532f497b6fa34380587f4f35b2e5e4e6b464dd079322dfce3bbbfc4fdf11fae1e5d9762700438
languageName: node
linkType: hard
"@babel/plugin-proposal-duplicate-named-capturing-groups-regex@npm:^7.23.3":
version: 7.24.7
resolution: "@babel/plugin-proposal-duplicate-named-capturing-groups-regex@npm:7.24.7"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.24.7
"@babel/helper-plugin-utils": ^7.24.7
peerDependencies:
"@babel/core": ^7.0.0
checksum: 253f4699150d874eb8b110582c8fea9889a5944a50883613df9ca96dc976b722884de52b4a87174428684f9a3bbef294033b4e69e90d1f545c1777543bf6d970
languageName: node
linkType: hard
"@babel/plugin-proposal-function-bind@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-function-bind@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 66ab480f06561db3e27c5b276046753c03a0a24d4948985bb9d2564f27cb6c827a95d15351b3fd2f157c7765aca92d1e061c87ea60e5d6e9379d0649f3366c82
languageName: node
linkType: hard
"@babel/plugin-proposal-function-sent@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-function-sent@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/helper-wrap-function": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8a307f16d6542eb04295ec5fb4879868abdc787b11e67a546b12a06e999b9acd2fa26342907f343ea1f09a3945c2c859ccbae14f1b660fbd98d77ae775ca1729
languageName: node
linkType: hard
"@babel/plugin-proposal-import-defer@npm:^7.23.0":
version: 7.25.9
resolution: "@babel/plugin-proposal-import-defer@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/plugin-transform-modules-commonjs": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eb6cafc16cf8925f09479b738713166fb4fcf86f6569305f23e8e0a4fea506bfa9c94ffc94590e6965962a1051af3a1545a65b7a0d13f3339fe0d5fc876cf174
languageName: node
linkType: hard
"@babel/plugin-proposal-import-wasm-source@npm:^7.23.0":
version: 7.25.9
resolution: "@babel/plugin-proposal-import-wasm-source@npm:7.25.9"
dependencies:
"@babel/helper-import-to-platform-api": ^7.25.9
"@babel/helper-plugin-utils": ^7.25.9
"@babel/plugin-syntax-import-source": ^7.25.9
peerDependencies:
"@babel/core": ^7.22.0
checksum: 8abaa8b94e4d25ce4405b9ce7675ee53db8c2a842918cd7cc44e429e979067a536e33e3d90923ac64a20fc60465662711702fdbf628f40f96ff254470b9f03fe
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining-assign@npm:^7.23.0":
version: 7.25.9
resolution: "@babel/plugin-proposal-optional-chaining-assign@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
"@babel/helper-skip-transparent-expression-wrappers": ^7.25.9
"@babel/plugin-syntax-optional-chaining-assign": ^7.25.9
"@babel/plugin-transform-optional-chaining": ^7.25.9
peerDependencies:
"@babel/core": ^7.22.5
checksum: d05258e6cabd055570b143b19db5ff9a2bea4d68e8a8f5553622cf3e630e4a1d25bae11c7218ba0d98aade112cc0af6f9cec6e95ee68c0c83e5e751bc1afed0d
languageName: node
linkType: hard
"@babel/plugin-proposal-partial-application@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-partial-application@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e2276d9c062e6878b124d0ac72c601234594bcc59883ba47f378dd335e1c480ce45bd4ae90683868fe61690481dadb3e89476ef8b496302fdae1303c07ae223a
languageName: node
linkType: hard
"@babel/plugin-proposal-pipeline-operator@npm:^7.23.3":
version: 7.26.7
resolution: "@babel/plugin-proposal-pipeline-operator@npm:7.26.7"
dependencies:
"@babel/helper-plugin-utils": ^7.26.5
"@babel/plugin-syntax-pipeline-operator": ^7.26.7
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 492ab0d4042f2464c1e1108cc5f46d9f392a2a561049d54d600396edffdaee411592a62c62e3f7687cbebd780dde17625b2aab14f027b66a2f52303156cbdefe
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: d97745d098b835d55033ff3a7fb2b895b9c5295b08a5759e4f20df325aa385a3e0bc9bd5ad8f2ec554a44d4e6525acfc257b8c5848a1345cb40f26a30e277e91
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": ^7.18.6
"@babel/helper-create-class-features-plugin": ^7.21.0
"@babel/helper-plugin-utils": ^7.20.2
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1b880543bc5f525b360b53d97dd30807302bb82615cd42bf931968f59003cac75629563d6b104868db50abd22235b3271fdf679fea5db59a267181a99cc0c265
languageName: node
linkType: hard
"@babel/plugin-proposal-record-and-tuple@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-record-and-tuple@npm:7.25.9"
dependencies:
"@babel/helper-module-imports": ^7.25.9
"@babel/helper-plugin-utils": ^7.25.9
"@babel/helper-validator-option": ^7.25.9
"@babel/plugin-syntax-record-and-tuple": ^7.25.9
peerDependencies:
"@babel/core": ^7.12.0
checksum: 6bd4ee62cb77b68f586607797d81a5670df3fa193c8c596d7a434272f9770701000ac44b62bc9fe5e33612ff345d4d23b90b3582cd170e1d24ae10954b135b4a
languageName: node
linkType: hard
"@babel/plugin-proposal-regexp-modifiers@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-regexp-modifiers@npm:7.25.9"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.25.9
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0
checksum: 4090a36fe487c7d8926e5dfb287ac03100a6abc8a9a89b8d57e4cf02219fa9e4a4b883205f882b36d5661a2372711af00f85d527da8a957e3072fb411f538989
languageName: node
linkType: hard
"@babel/plugin-proposal-throw-expressions@npm:^7.23.3":
version: 7.25.9
resolution: "@babel/plugin-proposal-throw-expressions@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bc213f0a909babd322ee535acf83de26f7a6c601dbcd745daa4ba9f2af006b05554d5c294fb7309d952bc4eb2e4d41bb6795d8ed6a90d25ad33ca2bea03f7996
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: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
languageName: node
linkType: hard
"@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": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.23.3, @babel/plugin-syntax-decorators@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-syntax-decorators@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aaf58b17e6aa08f41f93897daa93c601a486233a0375b4231799fc5c4e7c98480aaad3c1c44cf391a62e428c5f6546f76488a1023a4036bb87cd61fa79f1173b
languageName: node
linkType: hard
"@babel/plugin-syntax-import-assertions@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b58f2306df4a690ca90b763d832ec05202c50af787158ff8b50cdf3354359710bce2e1eb2b5135fcabf284756ac8eadf09ca74764aa7e76d12a5cac5f6b21e67
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c122aa577166c80ee67f75aebebeef4150a132c4d3109d25d7fc058bf802946f883e330f20b78c1d3e3a5ada631c8780c263d2d01b5dbaecc69efefeedd42916
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
languageName: node
linkType: hard
"@babel/plugin-syntax-import-source@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-syntax-import-source@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": ^7.25.9
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7d381b0798e7e3522b38d91af187612119a6d3d403cda2af9e4d242c9c9482f7c63873e4ed64d83da1f56ab260809789785a0c2561226efe2c850dbd227cc489
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: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard