-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathyarn.lock
15397 lines (13945 loc) · 558 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.7":
version: 4.0.7
resolution: "@1stg/babel-preset@npm:4.0.7"
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.27.0"
"@pkgr/utils": "npm:^3.1.0"
"@vue/babel-helper-vue-jsx-merge-props": "npm:^1.4.0"
"@vue/babel-plugin-jsx": "npm:^1.4.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: 10c0/4767fd0564b9ced56cf8ee60145ef777518ba6d7dda0580722fe6685f4a263d31c0ab0fecbeb02e8ecb6aac19e5ddbab38110885ec9f0980d04c6c9c2cc2c34e
languageName: node
linkType: hard
"@1stg/commitlint-config@npm:^5.0.4":
version: 5.0.4
resolution: "@1stg/commitlint-config@npm:5.0.4"
dependencies:
"@commitlint/config-conventional": "npm:^19.8.0"
"@commitlint/config-workspace-scopes": "npm:^19.8.0"
"@pkgr/utils": "npm:^3.1.0"
checksum: 10c0/f65d1b834ac8a83aa6a58361b216f15d85752cd0daf9dae664d6f2e227806667c1e51f8556cd845fd648afc78358b55c6262ff111dace6c6e9b3a876340a7ac1
languageName: node
linkType: hard
"@1stg/common-config@npm:^12.0.0":
version: 12.0.0
resolution: "@1stg/common-config@npm:12.0.0"
dependencies:
"@1stg/babel-preset": "npm:^4.0.7"
"@1stg/commitlint-config": "npm:^5.0.4"
"@1stg/eslint-config": "npm:^8.4.0"
"@1stg/lint-staged": "npm:^4.0.8"
"@1stg/markuplint-config": "npm:^4.0.2"
"@1stg/prettier-config": "npm:^5.0.0"
"@1stg/remark-preset": "npm:^3.0.3"
"@1stg/simple-git-hooks": "npm:^1.0.2"
"@1stg/tsconfig": "npm:^3.0.2"
"@babel/core": "npm:^7.26.10"
tslib: "npm:^2.8.1"
checksum: 10c0/908c63f3d1cfc0afcdd6436183a44edc7e06766d0f39f3c2c19269f0620a2ec45455544b96a9831efbb8db37890fb9cd4a898145e77ea0f38edae332e9a3b463
languageName: node
linkType: hard
"@1stg/config@npm:^1.0.3":
version: 1.0.3
resolution: "@1stg/config@npm:1.0.3"
checksum: 10c0/50a694833f99cc2eeb9ddb8abb38781d2c98b39e57b2972c431d72b8599f07d691ca2aec4e99e523d3cc5de54d7eef242f243833ae707f3ba5aa6e8ba5df9b3b
languageName: node
linkType: hard
"@1stg/eslint-config@npm:^8.4.0":
version: 8.4.0
resolution: "@1stg/eslint-config@npm:8.4.0"
dependencies:
"@1stg/config": "npm:^1.0.3"
"@babel/eslint-parser": "npm:^7.27.0"
"@babel/eslint-plugin": "npm:^7.27.0"
"@eslint-community/eslint-plugin-eslint-comments": "npm:^4.4.1"
"@eslint-react/eslint-plugin": "npm:^1.40.3"
"@eslint/js": "npm:^9.24.0"
"@pkgr/utils": "npm:^3.1.0"
"@typescript-eslint/eslint-plugin": "npm:^8.29.0"
"@typescript-eslint/parser": "npm:^8.29.0"
"@vitest/eslint-plugin": "npm:^1.1.39"
angular-eslint: "npm:^19.3.0"
angular-eslint-template-parser: "npm:^0.1.3"
eslint-config-prettier: "npm:^10.1.1"
eslint-import-resolver-typescript: "npm:^4.3.1"
eslint-plugin-css: "npm:^0.11.0"
eslint-plugin-import-x: "npm:^4.10.1"
eslint-plugin-jest: "npm:^28.11.0"
eslint-plugin-jsdoc: "npm:^50.6.9"
eslint-plugin-jsonc: "npm:^2.20.0"
eslint-plugin-markup: "npm:^1.0.0"
eslint-plugin-mdx: "npm:^3.4.0"
eslint-plugin-n: "npm:^17.17.0"
eslint-plugin-prettier: "npm:^5.2.6"
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:^58.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.29.0"
peerDependencies:
eslint: ">=8.0.0"
checksum: 10c0/96542eca70d8025302036c0a9f8364557391ba14635dc44d8c62b993cb8e2ac563a002094119e9f2f5299a606771a8ba8d871ee45e8729b81a05061eca894ab3
languageName: node
linkType: hard
"@1stg/lint-staged@npm:^4.0.8":
version: 4.0.8
resolution: "@1stg/lint-staged@npm:4.0.8"
dependencies:
"@1stg/config": "npm:^1.0.3"
"@1stg/prettier-config": "npm:^5.0.0"
"@1stg/tsconfig": "npm:^3.0.2"
"@pkgr/core": "npm:^0.2.0"
prettier: "npm:^3.5.3"
peerDependencies:
lint-staged: ">=12.1.0"
checksum: 10c0/95e669161b8f326cb6ee0b4ab22b2c7377b57a26a024bb0a9fbb57a055ef4fde8c93cc3597d40a6cfc2b80feae903d5fd3bfe2d8b9b620465d0c08815fc6327f
languageName: node
linkType: hard
"@1stg/markuplint-config@npm:^4.0.2":
version: 4.0.3
resolution: "@1stg/markuplint-config@npm:4.0.3"
dependencies:
"@markuplint/vue-parser": "npm:^4.6.18"
"@markuplint/vue-spec": "npm:^4.5.18"
markuplint-angular-parser: "npm:^3.0.1"
peerDependencies:
markuplint: ^4.0.0
checksum: 10c0/4f05fb31b794dee240b805c5655660df13382b82c29411adc321541c5850e55c256aee6b91365220ca78c607365e0be53c5cfe190cbf7d0e78f3ddaf03e1f148
languageName: node
linkType: hard
"@1stg/prettier-config@npm:^5.0.0":
version: 5.0.0
resolution: "@1stg/prettier-config@npm:5.0.0"
dependencies:
"@1stg/config": "npm:^1.0.3"
"@prettier/plugin-pug": "npm:^3.3.0"
"@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.19.0"
prettier-plugin-properties: "npm:^0.3.0"
prettier-plugin-sh: "npm:^0.16.1"
prettier-plugin-stylus: "npm:^0.1.0"
prettier-plugin-toml: "npm:^2.0.4"
peerDependencies:
prettier: ^3.0.0
checksum: 10c0/423f7fd818fd9142da855ed044c23769f186232639f8791e7752a72d8d1b9e0696c8326131f7116a18e75806061f8bc43a88f58a5fd23c61fd304315c182d39e
languageName: node
linkType: hard
"@1stg/remark-preset@npm:^3.0.3":
version: 3.0.3
resolution: "@1stg/remark-preset@npm:3.0.3"
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.2"
remark-validate-links: "npm:^13.1.0"
checksum: 10c0/edbec06932f00967aa452555173db312b87fec315cbc18e6e58cf06d59101e70a37d15f1de4602664bb557b2a09df45cf7c4a4b5903da295dc6d4f4f750e8d7f
languageName: node
linkType: hard
"@1stg/simple-git-hooks@npm:^1.0.2":
version: 1.0.2
resolution: "@1stg/simple-git-hooks@npm:1.0.2"
dependencies:
"@pkgr/utils": "npm:^3.1.0"
peerDependencies:
"@commitlint/cli": ">=11.0.0"
lint-staged: ">=9.0.0"
simple-git-hooks: ">=2.12.1"
checksum: 10c0/22e92354b9933dbaebfaa5cba4863dc4ebaf36d70da3fe3340d7cf4670a29dad7e357b174f4a80084aad7b219d8e0464984c75e60fb07f4e60cb8aaa73d7d539
languageName: node
linkType: hard
"@1stg/tsconfig@npm:^3.0.2":
version: 3.0.2
resolution: "@1stg/tsconfig@npm:3.0.2"
peerDependencies:
typescript: ">=5.7.0"
checksum: 10c0/be37efcc743e930f8ae0eeca5683a1940eed02fb5504e34e7f89be2763386dc78f9ddad3dff8e59fc6b27387297e85b54658f3a88c92c72540dccdde350ffe55
languageName: node
linkType: hard
"@actions/core@npm:^1.11.1":
version: 1.11.1
resolution: "@actions/core@npm:1.11.1"
dependencies:
"@actions/exec": "npm:^1.1.1"
"@actions/http-client": "npm:^2.0.1"
checksum: 10c0/9aa30b397d8d0dbc74e69fe46b23fb105cab989beb420c57eacbfc51c6804abe8da0f46973ca9f639d532ea4c096d0f4d37da0223fbe94f304fa3c5f53537c30
languageName: node
linkType: hard
"@actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 10c0/4a09f6bdbe50ce68b5cf8a7254d176230d6a74bccf6ecc3857feee209a8c950ba9adec87cc5ecceb04110182d1c17117234e45557d72fde6229b7fd3a395322a
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10c0/13141b66a42aa4afd8c50f7479e13a5cdb5084ccb3c73ec48894b8029743389a3d2bf8cdc18e23fb70cd33995740526dd308815613907571e897c3aa1e5eada6
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10c0/5b8751918e5bf0bebd923ba917fb1c0e294401e7ff0037f32c92a4efa4215550df1f6633c63fd4efb2bdaae8711e69b9e36925857db1f38935ff62a5c92ec29e
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.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: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@angular-devkit/architect@npm:>= 0.1900.0 < 0.2000.0":
version: 0.1902.6
resolution: "@angular-devkit/architect@npm:0.1902.6"
dependencies:
"@angular-devkit/core": "npm:19.2.6"
rxjs: "npm:7.8.1"
checksum: 10c0/061526c22dd2a667dc2c1dae182e679a4668478ebcac13cbe8d676671463efa925cc33e022f9841fbe369374baf74a04dbaea4e2bf3e69f215b336685379c426
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.2.6, @angular-devkit/core@npm:>= 19.0.0 < 20.0.0":
version: 19.2.6
resolution: "@angular-devkit/core@npm:19.2.6"
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: 10c0/0f15217b48beda566e5d050b1ac704cbcf180e1e99c66d51d79bbbc4f67e62bd0311c64ab8f6c843427d316c817f2ff27d6531212015985dd4d7dc96578ff5ff
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:>= 19.0.0 < 20.0.0":
version: 19.2.6
resolution: "@angular-devkit/schematics@npm:19.2.6"
dependencies:
"@angular-devkit/core": "npm:19.2.6"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10c0/17a5a8fac6fd1a17c2f4772233c048f4fd952d65b5372f7a42b31b6b5432dc5398272ae2f1299b451d3bfce2c3ef9088d0a045358f39eb661bb944ee75efd943
languageName: node
linkType: hard
"@angular-eslint/builder@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/builder@npm:19.3.0"
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: 10c0/dd634e3cbf47ce1229ca36313d996f70b44676526a214bbac2fe900173e07901ac0d0926276e386a68a70fc783ab349fb62c086dcd266cc2dae91a0172f5920d
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/bundled-angular-compiler@npm:19.3.0"
checksum: 10c0/4e6144d309fbf83223c772d5b88c519bf4cf99f0508ff1071964a8ce3f0f1cc78da9e4cd668e9cbe73e9f1a30fc787a5341d91a537dd9f8107a8a68851feaf4c
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/eslint-plugin-template@npm:19.3.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.3.0"
"@angular-eslint/utils": "npm:19.3.0"
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: 10c0/c42c2e160d84bb813a86d7371917968ce2af183b52a043535a024828429f44233afbb6d0d38382adb36f18d88c8b8680b376d520c8c7500a78e6bc3972a3b2d7
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/eslint-plugin@npm:19.3.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.3.0"
"@angular-eslint/utils": "npm:19.3.0"
peerDependencies:
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10c0/d2bee1c094d02b0dc1e2caf0c13e540b5cb426817803bbd74ef8602deaceac931401314b942eaacfdced78db9915d0f477ba4b20ec6d91d914e1b615a6ad4c3a
languageName: node
linkType: hard
"@angular-eslint/schematics@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/schematics@npm:19.3.0"
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.3.0"
"@angular-eslint/eslint-plugin-template": "npm:19.3.0"
ignore: "npm:7.0.3"
semver: "npm:7.7.1"
strip-json-comments: "npm:3.1.1"
checksum: 10c0/4752d2c66deb3c90de593194ad719f7990a51914eac19a11262f11b903e69cc2ed11535a570726a52e4e8014fd2505e3dfc6f4c432a5360e56d574d05ee4b120
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/template-parser@npm:19.3.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.3.0"
eslint-scope: "npm:^8.0.2"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10c0/c025d96c1934b4153393d952783e53d53e3ec09729cd50bfe9c1289b4283efb7e1ea628f32f91626923610dd27cb90aa48059bbb7c06a001827abec3e4c99b89
languageName: node
linkType: hard
"@angular-eslint/utils@npm:19.3.0":
version: 19.3.0
resolution: "@angular-eslint/utils@npm:19.3.0"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:19.3.0"
peerDependencies:
"@typescript-eslint/utils": ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: "*"
checksum: 10c0/997fa1f8f6cf54aad0f552cba5f01ec59a9b11461dab1155475af84d69320d86c5e8a871e07855e51fc550f72845ba4cdc63429c78cc013e9f8db847814c031d
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: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.21.4, @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: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.8":
version: 7.26.8
resolution: "@babel/compat-data@npm:7.26.8"
checksum: 10c0/66408a0388c3457fff1c2f6c3a061278dd7b3d2f0455ea29bb7b187fa52c60ae8b4054b3c0a184e21e45f0eaac63cf390737bc7504d1f4a088a6e7f652c068ca
languageName: node
linkType: hard
"@babel/core@npm:^7.23.9, @babel/core@npm:^7.26.10":
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: 10c0/e046e0e988ab53841b512ee9d263ca409f6c46e2a999fe53024688b92db394346fa3aeae5ea0866331f62133982eee05a675d22922a4603c3f603aa09a581d62
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.27.0":
version: 7.27.0
resolution: "@babel/eslint-parser@npm:7.27.0"
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: 10c0/bbecdc3f21413c4f0b21bc0ee93520ed47a61520a40d745f874097d01e6e22bf20a5f992d321656f4ef3ddbc04535a7da7ca6de2e87cecb82bbee0888f996480
languageName: node
linkType: hard
"@babel/eslint-plugin@npm:^7.27.0":
version: 7.27.0
resolution: "@babel/eslint-plugin@npm:7.27.0"
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: 10c0/1444f0a6721ebe5c490d7b45e2ef389c19e95c72e872aa149c7c42c787cb4a72f5c1852efa4ac35a23de735d83fd949411417bbb0299aa43b6252897a99c52f2
languageName: node
linkType: hard
"@babel/generator@npm:^7.0.0-beta.44, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.27.0":
version: 7.27.0
resolution: "@babel/generator@npm:7.27.0"
dependencies:
"@babel/parser": "npm:^7.27.0"
"@babel/types": "npm:^7.27.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10c0/7cb10693d2b365c278f109a745dc08856cae139d262748b77b70ce1d97da84627f79648cab6940d847392c0e5d180441669ed958b3aee98d9c7d274b37c553bd
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: 10c0/095b6ba50489d797733abebc4596a81918316a99e3632755c9f02508882912b00c2ae5e468532a25a5c2108d109ddbe9b7da78333ee7cc13817fc50c00cf06fe
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.27.0
resolution: "@babel/helper-compilation-targets@npm:7.27.0"
dependencies:
"@babel/compat-data": "npm:^7.26.8"
"@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: 10c0/375c9f80e6540118f41bd53dd54d670b8bf91235d631bdead44c8b313b26e9cd89aed5c6df770ad13a87a464497b5346bb72b9462ba690473da422f5402618b6
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.25.9, @babel/helper-create-class-features-plugin@npm:^7.27.0":
version: 7.27.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.27.0"
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.27.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/c4945903136d934050e070f69a4d72ec425f1f70634e0ddf14ad36695f935125a6df559f8d5b94cc1ed49abd4ce9c5be8ef3ba033fa8d09c5dd78d1a9b97d8cc
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.27.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.27.0"
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: 10c0/62513522a43521d8a29285a47127694ec28d66d793cd156cf875cdee6a9b3a9a1626c43c1eb75ce18fa2bf5dc3140f0a8081a34feb24272ecf66084f3cc3b00a
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.6.3, @babel/helper-define-polyfill-provider@npm:^0.6.4":
version: 0.6.4
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.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: 10c0/b74f2b46e233a178618d19432bdae16e0137d0a603497ee901155e083c4a61f26fe01d79fb95d5f4c22131ade9d958d8f587088d412cca1302633587f070919d
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: 10c0/7dff954c74a855fd85414fe29a7a7f9c7e0764e73ed104e3567d3bb15f3db92dfacb297ffae07852a8deefa21ab46598d90f6c6e23873b12bc9a34e9b6469ab7
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: 10c0/e08c7616f111e1fb56f398365e78858e26e466d4ac46dff25921adc5ccae9b232f66e952a2f4162bbe336627ba336c7fd9eca4835b6548935973d3380d77eaff
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: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70
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: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a
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: 10c0/90203e6607edeadd2a154940803fd616c0ed92c1013d6774c4b8eb491f1a5a3448b68faae6268141caa5c456e55e3ee49a4ed2bd7ddaf2365daea321c435914c
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: 10c0/cdaba71d4b891aa6a8dfbe5bac2f94effb13e5fa4c2c487667fdbaa04eae059b78b28d85a885071f45f7205aeb56d16759e1bed9c118b94b16e4720ef1ab0f65
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: 10c0/6798b562f2788210980f29c5ee96056d90dc73458c88af5bd32f9c82e28e01975588aa2a57bb866c35556bd9b76bac937e824ee63ba472b6430224b91b4879e9
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: 10c0/b19b1245caf835207aaaaac3a494f03a16069ae55e76a2e1350b5acd560e6a820026997a8160e8ebab82ae873e8208759aa008eb8422a67a775df41f0a4633d4
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: 10c0/09ace0c6156961624ac9524329ce7f45350bab94bbe24335cbe0da7dfaa1448e658771831983cb83fe91cf6635b15d0a3cab57c03b92657480bfb49fb56dd184
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: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
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: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
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: 10c0/27fb195d14c7dcb07f14e58fe77c44eea19a6a40a74472ec05c441478fa0bb49fa1c32b2d64be7a38870ee48ef6601bdebe98d512f0253aea0b39756c4014f3e
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: 10c0/b6627d83291e7b80df020f8ee2890c52b8d49272962cac0114ef90f189889c90f1027985873d1b5261a4e986e109b2754292dc112392f0b1fcbfc91cc08bd003
languageName: node
linkType: hard
"@babel/helpers@npm:^7.26.10":
version: 7.27.0
resolution: "@babel/helpers@npm:7.27.0"
dependencies:
"@babel/template": "npm:^7.27.0"
"@babel/types": "npm:^7.27.0"
checksum: 10c0/a3c64fd2d8b164c041808826cc00769d814074ea447daaacaf2e3714b66d3f4237ef6e420f61d08f463d6608f3468c2ac5124ab7c68f704e20384def5ade95f4
languageName: node
linkType: hard
"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.26.9, @babel/parser@npm:^7.27.0":
version: 7.27.0
resolution: "@babel/parser@npm:7.27.0"
dependencies:
"@babel/types": "npm:^7.27.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/ba2ed3f41735826546a3ef2a7634a8d10351df221891906e59b29b0a0cd748f9b0e7a6f07576858a9de8e77785aad925c8389ddef146de04ea2842047c9d2859
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: 10c0/7aab47fcbb8c1ddc195a3cd66609edcad54c5022f018db7de40185f0182950389690e953e952f117a1737b72f665ff02ad30de6c02b49b97f1d8f4ccdffedc34
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: 10c0/3a652b3574ca62775c5f101f8457950edc540c3581226579125da535d67765f41ad7f0e6327f8efeb2540a5dad5bb0c60a89fb934af3f67472e73fb63612d004
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: 10c0/18fc9004104a150f9f5da9f3307f361bc3104d16778bb593b7523d5110f04a8df19a2587e6bdd5e726fb1d397191add45223f4f731bb556c33f14f2779d596e8
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: 10c0/3f6c8781a2f7aa1791a31d2242399ca884df2ab944f90c020b6f112fb19f05fa6dad5be143d274dad1377e40415b63d24d5489faf5060b9c4a99e55d8f0c317c
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: 10c0/02b365f0cc4df8b8b811c68697c93476da387841e5f153fe42766f34241b685503ea51110d5ed6df7132759820b93e48d9fa3743cffc091eed97c19f7e5fe272
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: 10c0/179ed14a92435067bb1f116691c69c5ba119dcdb4451f320fc3091e91c9290b83ceaeb86e9399234f1c6c2e76173062aa4d7fe11fe86cfa7544a18fc4878b8fa
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: 10c0/d7d54644f50a60c47090d70121905ca76534bd7a837c03d25e163ca6ae384b48ef6dcfb125a99f12b3ce7e78e074a33f6fa8c4531c1a46aa31274153f587b05e
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: 10c0/a190866ebeba34af97d71247a34311cb2819c34bc40dc4817e94de4326d26ee7bff94a24c0ccbae0e7cf8febe13e916773f0e8f865fbb203c57178049227547b
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: 10c0/a4b3b8abcbb275b3b20f9cb38ee3ba833071f19f4aa1901f1e4d0488fda41ff79fe9d8d48180770f1da726cf3bb3adc5890cb23a723b6047ce0b0de1b23ef812
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: 10c0/41b7047c08792bd89d2851bfbd8ae943b58a646ff463d15598d19abcc7bd89ec4a997a6cf78d68b22c315e49ae98645cb7e6341db89a4b2158a325c2f1ef5aff
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: 10c0/29d9e0bc42487d81c533ff2c898469a80ab3825bd32af9593fd9a4959c4ac2b7a351ac8ba689680b8e8d1d5a141700194b8e3a1390deb23be362be0084586a44
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: 10c0/f98680b7df8276743c090a480e9648d691e19adac89179a6b06c741e85e2c855e6a065e2a539b4073b15bd2d50c239c4c0a5de519904998eecb9e784469c2a81
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: 10c0/c322265cb71602c20feabc1a731b05105e3d1b442e2df3b3a5510b10fd90b02656600287c4c83048f0e887005b2f017eacd988ced2f81e38997a30ebad6991d7
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: 10c0/5e5da3f99f8ade0b09f5ae3a872a47e1c1f27fed01cc260fa334d8ce6f7c6673923da4fd827f2a8d7831d5eba2f96ce6cf9b7271300cd5ca24c6fb8092f072eb
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: 10c0/082842dd8b68aa9378d02c300da6cf0a870a13e05f5632756251591e7ded7c469243396311c4c1e8562431ef5671f6734a774945c8e7144a89225465c0a9e92e
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: 10c0/fd03449868c8360ebfdc6f322fedd6b62f546b78e12b6bffa4a2c758e6d6161c93f9b6215eae07fb67366eaae59a8119da2f1a817546a772ee67ddb2625b522e
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: 10c0/0360e8fe610c828f069732e1068a7a89a9ff1d8136e18855315383a72db1fe72f5ea58dbde71d047d6174ac3fb806dba0341040c316f98cebbfbf9713a2642b2
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: 10c0/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: 10c0/3c8c9ea175101b1cbb2b0e8fee20fcbdd03eb0700d3581aa826ac3573c9b002f39b1512c2af9fd1903ff921bcc864da95ad3cdeba53c9fbcfb3dc23916eacf47
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: 10c0/ed837ddb551766f3f818f918e7cc9a468c55c44b9f7f731b1d42df95f8f0e8d773864b663d90c05f344b585ac79d4315a9f871e03cf36119a4f67338e566792c
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: 10c0/400133769fe932770c197c35055192f21aac18f13857654c635e256f0dfa501bad68288cc6e000600cb78d9039f802a3558d58c18169b03d89cbe69dbe45b151
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: 10c0/23806927e7982c1fa828df60710f18332dbd04130b0857e50272e62f6490a813c5d5a74fe094206a987be179612e645ae263febaa17cfd4233941ed119c08f2e
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: 10c0/47e44a7d61b76dac4f18fd61edc186012e084eb8f1fe253c483b0fe90b73366b4ebd2b0b03728e000fd1fdedc8af3aa6e93246caf97183a8d9d42a0eb57ecfcc
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: 10c0/525b174e60b210d96c1744c1575fc2ddedcc43a479cba64a5344cf77bd0541754fc58120b5a11ff832ba098437bb05aa80900d1f49bb3d888c5e349a4a3a356e
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: 10c0/e594c185b12bfe0bbe7ca78dfeebe870e6d569a12128cac86f3164a075fe0ff70e25ddbd97fd0782906b91f65560c9dc6957716b7b4a68aba2516c9b7455e352
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: 10c0/05453a438b874b49000c657dbdac7f9209e3d06ee948a2df65ac1028831480d60b792611f528e86139d8ae57f0e840d7c10c6f86801dfcf1d5bfabaa52c2caad
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.2.0, @babel/plugin-syntax-jsx@npm:^7.25.9":