-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathyarn.lock
15921 lines (14410 loc) · 572 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: 10
"@1stg/babel-preset@npm:^4.0.2":
version: 4.0.3
resolution: "@1stg/babel-preset@npm:4.0.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.26.5"
"@babel/plugin-proposal-decorators": "npm:^7.25.9"
"@babel/plugin-transform-class-properties": "npm:^7.25.9"
"@babel/preset-env": "npm:^7.26.9"
"@babel/preset-react": "npm:^7.26.3"
"@babel/preset-typescript": "npm:^7.26.0"
"@pkgr/utils": "npm:^3.0.0"
"@vue/babel-helper-vue-jsx-merge-props": "npm:^1.4.0"
"@vue/babel-plugin-jsx": "npm:^1.3.0"
"@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.41.0"
fast-async: "npm:^7.0.6"
peerDependencies:
"@babel/core": ">=7.14.1"
checksum: 10/9088a91341afe3fc62def95ab7905add97a184f770d231bb785f2a59bb1e6681c0fff1cb454d12255e7fd5906f84c332684d6177fc0f98561cc2eabb6b2d04b9
languageName: node
linkType: hard
"@1stg/commitlint-config@npm:^5.0.0":
version: 5.0.0
resolution: "@1stg/commitlint-config@npm:5.0.0"
dependencies:
"@commitlint/config-conventional": "npm:^19.8.0"
"@commitlint/config-workspace-scopes": "npm:^19.8.0"
"@pkgr/utils": "npm:^3.0.0"
checksum: 10/2c7be439a496651a0353190f4f0edb437d2314bc1dbc7b24b1f31230e6f0eae311653af625464774b340b849f06af3278cdbc521586110b1bca9b2d79c428215
languageName: node
linkType: hard
"@1stg/common-config@npm:^11.0.0":
version: 11.0.4
resolution: "@1stg/common-config@npm:11.0.4"
dependencies:
"@1stg/babel-preset": "npm:^4.0.2"
"@1stg/commitlint-config": "npm:^5.0.0"
"@1stg/eslint-config": "npm:^8.0.8"
"@1stg/lint-staged": "npm:^4.0.4"
"@1stg/markuplint-config": "npm:^4.0.0"
"@1stg/prettier-config": "npm:^4.0.3"
"@1stg/remark-preset": "npm:^3.0.0"
"@1stg/simple-git-hooks": "npm:^0.2.4"
"@1stg/tsconfig": "npm:^3.0.0"
"@babel/core": "npm:^7.26.9"
tslib: "npm:^2.8.1"
checksum: 10/19a9cc54aba3a8dde7fe87d7bc9763f1f97b7af890e06cdf7cc5be795d79e262421dad14729050b80d51f1a72cf21ac3c4be25e2c3dfcb72d636340f8c9b2272
languageName: node
linkType: hard
"@1stg/config@npm:^1.0.0":
version: 1.0.0
resolution: "@1stg/config@npm:1.0.0"
checksum: 10/8c06906f99b371e22cb64ef28d1e59bbce3fdf3c56c90b2f91b18efac1bddae1d37ffd5794c5b47d82ad1870b912ddd82b84adc2542cb16572eaf324f5c95db3
languageName: node
linkType: hard
"@1stg/eslint-config@npm:^8.0.8":
version: 8.0.8
resolution: "@1stg/eslint-config@npm:8.0.8"
dependencies:
"@1stg/config": "npm:^1.0.0"
"@babel/eslint-parser": "npm:^7.26.8"
"@babel/eslint-plugin": "npm:^7.25.9"
"@eslint-community/eslint-plugin-eslint-comments": "npm:^4.4.1"
"@eslint-react/eslint-plugin": "npm:^1.31.0"
"@eslint/js": "npm:^9.22.0"
"@pkgr/utils": "npm:^3.0.0"
"@typescript-eslint/eslint-plugin": "npm:^8.26.0"
"@typescript-eslint/parser": "npm:^8.26.0"
angular-eslint: "npm:^19.2.1"
angular-eslint-template-parser: "npm:^0.1.3"
eslint-config-prettier: "npm:^10.1.1"
eslint-import-resolver-typescript: "npm:^3.8.3"
eslint-plugin-css: "npm:^0.11.0"
eslint-plugin-import-x: "npm:^4.6.1"
eslint-plugin-jest: "npm:^28.11.0"
eslint-plugin-jsdoc: "npm:^50.6.3"
eslint-plugin-jsonc: "npm:^2.19.1"
eslint-plugin-markup: "npm:^0.11.0"
eslint-plugin-mdx: "npm:^3.2.0"
eslint-plugin-n: "npm:^17.16.2"
eslint-plugin-prettier: "npm:^5.2.3"
eslint-plugin-promise: "npm:^7.2.1"
eslint-plugin-react-hooks: "npm:^5.2.0"
eslint-plugin-regexp: "npm:^2.7.0"
eslint-plugin-simple-import-sort: "npm:^12.1.1"
eslint-plugin-sonarjs: "npm:^3.0.2"
eslint-plugin-toml: "npm:^0.12.0"
eslint-plugin-unicorn: "npm:^57.0.0"
eslint-plugin-vue: "npm:^10.0.0"
eslint-plugin-yml: "npm:^1.17.0"
globals: "npm:^16.0.0"
typescript-eslint: "npm:^8.26.0"
peerDependencies:
eslint: ">=8.0.0"
checksum: 10/cdceb2ba4c9709cf26046af83c0be27342bce10f459da14ed39e1949546d23c513761333a7e205565465deea96bf52984933e6474b9dfab130436d1c4fe06608
languageName: node
linkType: hard
"@1stg/lib-config@npm:^13.0.1":
version: 13.0.1
resolution: "@1stg/lib-config@npm:13.0.1"
dependencies:
"@1stg/common-config": "npm:^11.0.0"
"@pkgr/rollup": "npm:^6.0.0"
checksum: 10/b9a95afa07ebce7f4a0bba23b51ec2a4d6ebcdba6b997113a3d731e02aee21d6a42a77461b25e3647ddc347501df275c57ac2f1f9225365eb190573ba25e06e4
languageName: node
linkType: hard
"@1stg/lint-staged@npm:^4.0.4":
version: 4.0.4
resolution: "@1stg/lint-staged@npm:4.0.4"
dependencies:
"@1stg/config": "npm:^1.0.0"
"@1stg/prettier-config": "npm:^4.0.3"
"@1stg/tsconfig": "npm:^3.0.0"
"@pkgr/core": "npm:^0.1.1"
prettier: "npm:^3.5.3"
peerDependencies:
lint-staged: ">=12.1.0"
checksum: 10/9126920796eac77b584a3597a70160a8034c5b5b5f37b998621145d51176ad3583ac3b0e162eca1fb25f628d8425da67d1ccb4895df9a701b62dba1ff1b89227
languageName: node
linkType: hard
"@1stg/markuplint-config@npm:^4.0.0":
version: 4.0.0
resolution: "@1stg/markuplint-config@npm:4.0.0"
dependencies:
"@markuplint/vue-parser": "npm:^4.6.17"
"@markuplint/vue-spec": "npm:^4.5.17"
markuplint-angular-parser: "npm:^2.0.0"
peerDependencies:
markuplint: ^4.0.0
checksum: 10/f0cc91e608e5c46b6a48d2bd0b2eb8e19ea9c80e2b907eef3f28a669f7eeb4be4e1666116666bfe29b4f3b0abf788c0c86418b96553c5277bec1a0d952a8f3d3
languageName: node
linkType: hard
"@1stg/prettier-config@npm:^4.0.3":
version: 4.0.4
resolution: "@1stg/prettier-config@npm:4.0.4"
dependencies:
"@1stg/config": "npm:^1.0.0"
"@prettier/plugin-pug": "npm:^3.2.1"
"@prettier/plugin-ruby": "npm:^4.0.4"
"@prettier/plugin-xml": "npm:^3.4.1"
prettier-plugin-ini: "npm:^1.3.0"
prettier-plugin-pkg: "npm:^0.18.1"
prettier-plugin-properties: "npm:^0.3.0"
prettier-plugin-sh: "npm:^0.15.0"
prettier-plugin-stylus: "npm:^0.1.0"
prettier-plugin-toml: "npm:^2.0.2"
peerDependencies:
prettier: ^3.0.0
checksum: 10/400172a546dde79eb4b0394788b550052669860f265d97d1643a1122b15f2fb8b226e0636df6bc9cb08fdb2050be3e0397504fa7965f4310f76b664c73356b26
languageName: node
linkType: hard
"@1stg/remark-preset@npm:^3.0.0":
version: 3.0.0
resolution: "@1stg/remark-preset@npm:3.0.0"
dependencies:
remark-frontmatter: "npm:^5.0.0"
remark-gfm: "npm:^4.0.1"
remark-lint: "npm:^10.0.1"
remark-lint-no-duplicate-headings: "npm:^4.0.1"
remark-lint-no-duplicate-headings-in-section: "npm:^4.0.1"
remark-preset-lint-consistent: "npm:^6.0.1"
remark-preset-lint-markdown-style-guide: "npm:^6.0.1"
remark-preset-lint-recommended: "npm:^7.0.1"
remark-preset-prettier: "npm:^2.0.1"
remark-validate-links: "npm:^13.1.0"
checksum: 10/5d2013f4b510cdf3fb45a5b4a090d5c20e3f13edd0dfe68beeda8ea1b744280f0ddad173c59356dbadf1cc9f0db3a7fc487cb7eb65dbc713d65c7e6d78ea0aed
languageName: node
linkType: hard
"@1stg/simple-git-hooks@npm:^0.2.4":
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: 10/4145cde03467d0855bbf6edc55d65155f19f6f672c47132adaaad8981c033904a3aba61a9416b4c077a9b3c54ccbea1dec88612b04bbfb9a5cb422f996d4955a
languageName: node
linkType: hard
"@1stg/tsconfig@npm:^3.0.0":
version: 3.0.0
resolution: "@1stg/tsconfig@npm:3.0.0"
peerDependencies:
typescript: ">=5.7.0"
checksum: 10/ae257ef131b6f038ab1d1b0a9d5edbd4b8bf10cee4cd4520751f65b43ecc5009334606442b1fb3a923229790dae6a7ad5c6d5ae273d2bb3b2934fdcac0e1620c
languageName: node
linkType: hard
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@angular-devkit/architect@npm:>= 0.1900.0 < 0.2000.0":
version: 0.1902.3
resolution: "@angular-devkit/architect@npm:0.1902.3"
dependencies:
"@angular-devkit/core": "npm:19.2.3"
rxjs: "npm:7.8.1"
checksum: 10/b6ab654bfa0d0fc5b9eda1cc0c39fa116ea2ff2233efd2fb0a027e08b80d7ba369ed7cea98c86982cbf5f6734e0aadef4ff917f52b9a68d4868cf7c4e2a40a44
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.2.3, @angular-devkit/core@npm:>= 19.0.0 < 20.0.0":
version: 19.2.3
resolution: "@angular-devkit/core@npm:19.2.3"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^4.0.0
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/821ca8b2c408a6e905740ff691214cff9758858850ef34db35d5d6e53351152393865324dab57180abc2b3d0becab96cd1e1f9ec66c4744f5f7a33c3831da624
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:>= 19.0.0 < 20.0.0":
version: 19.2.3
resolution: "@angular-devkit/schematics@npm:19.2.3"
dependencies:
"@angular-devkit/core": "npm:19.2.3"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/f6d9b6b5d0c78b227dea3e00addcfe9de9f1e248671d69cbdeb28aa8348de99a8e092470333ab9cd98b268fd5ae90d2380b82efb881b892d94083202b7ad3d12
languageName: node
linkType: hard
"@angular-eslint/builder@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/builder@npm:19.2.1"
dependencies:
"@angular-devkit/architect": "npm:>= 0.1900.0 < 0.2000.0"
"@angular-devkit/core": "npm:>= 19.0.0 < 20.0.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/6176ef106a176c9fbd0ed0b3cbe1696644330b60fa0230ed1736f9e56a9ae96f03ee3772af33810c703ace80517b89177c27cf49279a0f75d293e49c2cd0f7f9
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/bundled-angular-compiler@npm:19.2.1"
checksum: 10/503389e0565c5a9fb3b80252f9535a78a78501a25363025a33db4ffccc7f8a1429ff1ad07ffa68ec68cc8dc4604dccdc56b2d0e96247166880abec3f27f23ca5
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/eslint-plugin-template@npm:19.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.2.1"
"@angular-eslint/utils": "npm:19.2.1"
aria-query: "npm:5.3.2"
axobject-query: "npm:4.1.0"
peerDependencies:
"@typescript-eslint/types": ^7.11.0 || ^8.0.0
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/6b8a9728e62d76b7261064192e57de7a0ed108a7c842b28c2ea5b44e8506e4a7d16ca9df3cd2b51af648bef188913e0694d4185b545a68c694009767f25fbc36
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/eslint-plugin@npm:19.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.2.1"
"@angular-eslint/utils": "npm:19.2.1"
peerDependencies:
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/b1c852faf70dab4ac8ee87df71f7c53fed0f485469fe9aa1871dac94d68f95a90c5b5e006ade085aabf27ddbd1137915d0eb8c9a3f91686f309870f0fe1b9817
languageName: node
linkType: hard
"@angular-eslint/schematics@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/schematics@npm:19.2.1"
dependencies:
"@angular-devkit/core": "npm:>= 19.0.0 < 20.0.0"
"@angular-devkit/schematics": "npm:>= 19.0.0 < 20.0.0"
"@angular-eslint/eslint-plugin": "npm:19.2.1"
"@angular-eslint/eslint-plugin-template": "npm:19.2.1"
ignore: "npm:7.0.3"
semver: "npm:7.7.1"
strip-json-comments: "npm:3.1.1"
checksum: 10/5d831a70604774631272eb4f1880d8d17fdb0b5ed83bfed7292572008fc838c3f7427e346ee1fc91ca8b35f5e927adc425a3da6fdebc13db49a5b87c1b264c0c
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/template-parser@npm:19.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.2.1"
eslint-scope: "npm:^8.0.2"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/92960a459232ea899aab904aab3f05bfc7325fb705421688187128446a682eb453f4e5833fe6a5caa2d624ef3f86d406df2595908fe72790253ee30bcc2bfdb0
languageName: node
linkType: hard
"@angular-eslint/utils@npm:19.2.1":
version: 19.2.1
resolution: "@angular-eslint/utils@npm:19.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.2.1"
peerDependencies:
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10/011bf313f5115d6ccce03b8a59bd6f423799c02d06a74ee79567c3f825ffcb77f86e2cbc0888852945dacc57eb3b6b3507255d9d4a62ff8e0f39c59feede9e13
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10/14ed60cb45750d386c64229ac7bab20e10eedc193503fa4decff764162d329d6d3363ed2cd3debec833186ee54affe4f824f6e8eff531295117fd1ebda200270
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/db2c2122af79d31ca916755331bb4bac96feb2b334cdaca5097a6b467fdd41963b89b14b6836a14f083de7ff887fc78fa1b3c10b14e743d33e12dbfe5ee3d223
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: 10/bdddf577f670e0e12996ef37e134856c8061032edb71a13418c3d4dae8135da28910b7cd6dec6e668ab3a41e42089ef7ee9c54ef52fe0860b54cb420b0d14948
languageName: node
linkType: hard
"@babel/core@npm:^7.26.9":
version: 7.26.10
resolution: "@babel/core@npm:7.26.10"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.26.2"
"@babel/generator": "npm:^7.26.10"
"@babel/helper-compilation-targets": "npm:^7.26.5"
"@babel/helper-module-transforms": "npm:^7.26.0"
"@babel/helpers": "npm:^7.26.10"
"@babel/parser": "npm:^7.26.10"
"@babel/template": "npm:^7.26.9"
"@babel/traverse": "npm:^7.26.10"
"@babel/types": "npm:^7.26.10"
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: 10/68f6707eebd6bb8beed7ceccf5153e35b86c323e40d11d796d75c626ac8f1cc4e1f795584c5ab5f886bc64150c22d5088123d68c069c63f29984c4fc054d1dab
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.26.8":
version: 7.26.10
resolution: "@babel/eslint-parser@npm:7.26.10"
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 || ^9.0.0
checksum: 10/27eb60d16b8963ea587a54b4bc8bce9b63f7a294455fd00aa6e8f8a45d10ea9b52f89a9d951ff80c226bddbc09c316a3aa63b531fdfa389cf31d1db8d7080796
languageName: node
linkType: hard
"@babel/eslint-plugin@npm:^7.25.9":
version: 7.26.10
resolution: "@babel/eslint-plugin@npm:7.26.10"
dependencies:
eslint-rule-composer: "npm:^0.3.0"
peerDependencies:
"@babel/eslint-parser": ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
checksum: 10/dba3319e90d27a9d9dd4615d2681986c10d8bf988349f4863f00356c6471a65a3e420420cf5778057259a4947ba5d411ae5e53a8fdb95b6c82c70d487efb90a8
languageName: node
linkType: hard
"@babel/generator@npm:^7.0.0-beta.44, @babel/generator@npm:^7.26.10":
version: 7.26.10
resolution: "@babel/generator@npm:7.26.10"
dependencies:
"@babel/parser": "npm:^7.26.10"
"@babel/types": "npm:^7.26.10"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/acf5e6544ee672810b598add2451302146cc79e1974fa5d87c5f70d5a51cab140abb628e36c434d01616af3747fd42378379e4b828f3eb9672e84c14f21db46b
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": "npm:^7.25.9"
checksum: 10/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": "npm:^7.26.5"
"@babel/helper-validator-option": "npm:^7.25.9"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/f3b5f0bfcd7b6adf03be1a494b269782531c6e415afab2b958c077d570371cf1bfe001c442508092c50ed3711475f244c05b8f04457d8dea9c34df2b741522bf
languageName: node
linkType: hard
"@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": "npm:^7.25.9"
"@babel/helper-member-expression-to-functions": "npm:^7.25.9"
"@babel/helper-optimise-call-expression": "npm:^7.25.9"
"@babel/helper-replace-supers": "npm:^7.26.5"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
"@babel/traverse": "npm:^7.26.9"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/28bca407847563cabcafcbd84a06c8b3d53d36d2e113cc7b7c15e3377fbfdb4b6b7c73ef76a7c4c9908cc71ee3f350c4bb16a86a4380c6812e17690f792264fe
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": "npm:^7.25.9"
regexpu-core: "npm:^6.2.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/4c44122ea11c4253ee78a9c083b7fbce96c725e2cb43cc864f0e8ea2749f7b6658617239c6278df9f132d09a7545c8fe0336ed2895ad7c80c71507828a7bc8ba
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": "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: 10/b79a77ac8fbf1aaf6c7f99191871760508e87d75a374ff3c39c6599a17d9bb82284797cd451769305764e504546caf22ae63367b22d6e45e32d0a8f4a34aab53
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": "npm:^7.25.9"
"@babel/helper-module-imports": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/23680d9ecfe0bb63b141c96f2db49037b8cff63a181acd9af541206818a487655b8c8476e43218cc945dc48d4d91daf62f41fbca388194702dd4076d70563ae0
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": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/ef8cc1c1e600b012b312315f843226545a1a89f25d2f474ce2503fd939ca3f8585180f291a3a13efc56cf13eddc1d41a3a040eae9a521838fd59a6d04cc82490
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.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/e090be5dee94dda6cd769972231b21ddfae988acd76b703a480ac0c96f3334557d70a965bf41245d6ee43891e7571a8b400ccf2b2be5803351375d0f4e5bcf08
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": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/9841d2a62f61ad52b66a72d08264f23052d533afc4ce07aec2a6202adac0bfe43014c312f94feacb3291f4c5aafe681955610041ece2c276271adce3f570f2f5
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": "npm:^7.25.9"
checksum: 10/f09d0ad60c0715b9a60c31841b3246b47d67650c512ce85bbe24a3124f1a4d66377df793af393273bc6e1015b0a9c799626c48e53747581c1582b99167cc65dc
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @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.25.9, @babel/helper-plugin-utils@npm:^7.26.5":
version: 7.26.5
resolution: "@babel/helper-plugin-utils@npm:7.26.5"
checksum: 10/1cc0fd8514da3bb249bed6c27227696ab5e84289749d7258098701cffc0c599b7f61ec40dd332f8613030564b79899d9826813c96f966330bcfc7145a8377857
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": "npm:^7.25.9"
"@babel/helper-wrap-function": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/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": "npm:^7.25.9"
"@babel/helper-optimise-call-expression": "npm:^7.25.9"
"@babel/traverse": "npm:^7.26.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/cfb911d001a8c3d2675077dbb74ee8d7d5533b22d74f8d775cefabf19c604f6cbc22cfeb94544fe8efa626710d920f04acb22923017e68f46f5fdb1cb08b32ad
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": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/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: 10/c28656c52bd48e8c1d9f3e8e68ecafd09d949c57755b0d353739eb4eae7ba4f7e67e92e4036f1cd43378cc1397a2c943ed7bcaf5949b04ab48607def0258b775
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
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: 10/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": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/988dcf49159f1c920d6b9486762a93767a6e84b5e593a6342bc235f3e47cc1cb0c048d8fca531a48143e6b7fce1ff12ddbf735cf5f62cb2f07192cf7c27b89cf
languageName: node
linkType: hard
"@babel/helpers@npm:^7.26.10":
version: 7.26.10
resolution: "@babel/helpers@npm:7.26.10"
dependencies:
"@babel/template": "npm:^7.26.9"
"@babel/types": "npm:^7.26.10"
checksum: 10/664146257974ccf064b42bd99b1b85717cce2bcebc5068273e13b230ee8bd98d87187c3783706758d76b678ebe0d2f48150eaa6cffc4f77af1342a78ec1cf57a
languageName: node
linkType: hard
"@babel/parser@npm:^7.25.3, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.26.9":
version: 7.26.10
resolution: "@babel/parser@npm:7.26.10"
dependencies:
"@babel/types": "npm:^7.26.10"
bin:
parser: ./bin/babel-parser.js
checksum: 10/3f87781f46795ba72448168061d9e99c394fdf9cd4aa3ddf053a06334247da4d25d0923ccc89195937d3360d384cee181e99711763c1e8fe81d4f17ee22541fc
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": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/3c23ef34e3fd7da3578428cb488180ab6b7b96c9c141438374b6d87fa814d87de099f28098e5fc64726c19193a1da397e4d2351d40b459bcd2489993557e2c74
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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/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": "npm:^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
"@babel/plugin-transform-optional-chaining": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 10/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": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/cb893e5deb9312a0120a399835b6614a016c036714de7123c8edabccc56a09c4455016e083c5c4dd485248546d4e5e55fc0e9132b3c3a9bd16abf534138fe3f2
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": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.13.0
checksum: 10/cba8439898a8f11f166dcbd46b1c14e130433ef9fbb6882fc63490c2d883f586cb63e76058615f5da0e50183cc7dd341803a3007096ad313e963e67640509dc1
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-proposal-decorators@npm:7.25.9"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.25.9"
"@babel/helper-plugin-utils": "npm:^7.25.9"
"@babel/plugin-syntax-decorators": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/f564de219ace3980cd679c719738390c02e2e6f562b330bfb941fab94c128bcb2b30e9970e1aae82d3b908703e162e4a62fb9269c7e9fb4bad83d0a56cdb41af
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": "npm:^7.25.9"
"@babel/plugin-transform-destructuring": "npm:^7.25.9"
"@babel/plugin-transform-parameters": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.17.0
checksum: 10/79f2f6322465930bbb97e2325b65623b4af4b971ca6c491d2180020c1a4597096c892b60dc7187ae73065c9ffb5b3acc123aa08038c28c3115fd9321db421fca
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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/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": "npm:^7.24.7"
"@babel/helper-plugin-utils": "npm:^7.24.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/94ac19b1d67983c44586ab759ff32bfecf16a86c659c4fd3ebb1990830f2e9df822d50bfc3769c70df508b68b7b6d2cb3295c7c73a70c7239998126093d2eee1
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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/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": "npm:^7.25.9"
"@babel/helper-wrap-function": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/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": "npm:^7.25.9"
"@babel/plugin-transform-modules-commonjs": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/ff312ff04f04dbeb7baf4c33dd23ad2e119cab22fedb504c2e59316b9129c7885e726df15e7071886a8797e05decb9e99b54666f978be36657b5b82f5bd467aa
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": "npm:^7.25.9"
"@babel/helper-plugin-utils": "npm:^7.25.9"
"@babel/plugin-syntax-import-source": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.22.0
checksum: 10/0cf4cd44cf1d0c59fc033f086a5d6d1d416edbfff0e6972fcdae3bfb9f8bfabd60a725137167c2ae2127e4fb866277e2ec28ea5ea3d8047b27c83110a3356c23
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": "npm:^7.25.9"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
"@babel/plugin-syntax-optional-chaining-assign": "npm:^7.25.9"
"@babel/plugin-transform-optional-chaining": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.22.5
checksum: 10/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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/30106a0cea7f2ff8a7f54e833e632608549acf430f4f4792d8dccc072af49d43cb3b2493ac94ab29432c5b8e0942d4fd135075c6b5f30882b4d69294cf34cfc0
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": "npm:^7.26.5"
"@babel/plugin-syntax-pipeline-operator": "npm:^7.26.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/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: 10/fab70f399aa869275690ec6c7cedb4ef361d4e8b6f55c3d7b04bfee61d52fb93c87cec2c65d73cddbaca89fb8ef5ec0921fce675c9169d9d51f18305ab34e78a
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: 10/f803b5e1de0cb7c53f0d7f70bfbf57f2b3a20d95c19f8f2710719c4938149b490ee14d2d0c2f8316080823f0943c6cb8668fa8c139420e7bc7f80a66bfd50fff
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": "npm:^7.25.9"
"@babel/helper-plugin-utils": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
"@babel/plugin-syntax-record-and-tuple": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.12.0
checksum: 10/3bf01ef6755defefafcb21db85328031f0472e46f9cff7259e4612cdf6ea404abab1dcbf4d1898da333ae1ea196bd725a60a56505d8f4095bb564e4050d32af7
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": "npm:^7.25.9"
"@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bc213f0a909babd322ee535acf83de26f7a6c601dbcd745daa4ba9f2af006b05554d5c294fb7309d952bc4eb2e4d41bb6795d8ed6a90d25ad33ca2bea03f7996
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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/e22e85c0a780b9c10619996d8e9fdb5f151869e53ce2b82ea05a52d393a1dbfda82e5896e9a75775a78ca7f91bca3b7d6864bec401ae1e9dc2b490dc044cad8d
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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/c122aa577166c80ee67f75aebebeef4150a132c4d3109d25d7fc058bf802946f883e330f20b78c1d3e3a5ada631c8780c263d2d01b5dbaecc69efefeedd42916
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": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/7d381b0798e7e3522b38d91af187612119a6d3d403cda2af9e4d242c9c9482f7c63873e4ed64d83da1f56ab260809789785a0c2561226efe2c850dbd227cc489
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.2.0, @babel/plugin-syntax-jsx@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-syntax-jsx@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/bb609d1ffb50b58f0c1bac8810d0e46a4f6c922aa171c458f3a19d66ee545d36e782d3bffbbc1fed0dc65a558bdce1caf5279316583c0fff5a2c1658982a8563
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining-assign@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/plugin-syntax-optional-chaining-assign@npm:7.25.9"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/b56baa89023a73f06631338bcccfda241c8c190bba97eb9f21bcbb09d87714ead79dc94545d9f7f360ff95a86c18ce8ae4169423b1d87b4e6d81b6917328bfb3
languageName: node