-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
4417 lines (3756 loc) · 158 KB
/
yarn.lock
File metadata and controls
4417 lines (3756 loc) · 158 KB
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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@aashutoshrathi/word-wrap@^1.2.3":
"integrity" "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA=="
"resolved" "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz"
"version" "1.2.6"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.21.4":
"integrity" "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz"
"version" "7.22.13"
dependencies:
"@babel/highlight" "^7.22.13"
"chalk" "^2.4.2"
"@babel/helper-validator-identifier@^7.22.5":
"integrity" "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz"
"version" "7.22.15"
"@babel/highlight@^7.22.13":
"integrity" "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz"
"version" "7.22.13"
dependencies:
"@babel/helper-validator-identifier" "^7.22.5"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"@babel/parser@^7.21.3":
"integrity" "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz"
"version" "7.22.16"
"@colors/colors@1.5.0":
"integrity" "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="
"resolved" "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz"
"version" "1.5.0"
"@esbuild/win32-x64@0.18.20":
"integrity" "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ=="
"resolved" "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz"
"version" "0.18.20"
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
"integrity" "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="
"resolved" "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"eslint-visitor-keys" "^3.3.0"
"@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1":
"integrity" "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg=="
"resolved" "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz"
"version" "4.8.0"
"@eslint/eslintrc@^2.1.2":
"integrity" "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.6.0"
"globals" "^13.19.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@eslint/js@8.48.0":
"integrity" "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw=="
"resolved" "https://registry.npmjs.org/@eslint/js/-/js-8.48.0.tgz"
"version" "8.48.0"
"@humanwhocodes/config-array@^0.11.10":
"integrity" "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz"
"version" "0.11.11"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@isaacs/cliui@^8.0.2":
"version" "8.0.2"
dependencies:
"string-width" "^5.1.2"
"string-width-cjs" "npm:string-width@^4.2.0"
"strip-ansi" "^7.0.1"
"strip-ansi-cjs" "npm:strip-ansi@^6.0.1"
"wrap-ansi" "^8.1.0"
"wrap-ansi-cjs" "npm:wrap-ansi@^7.0.0"
"@isaacs/string-locale-compare@^1.1.0":
"version" "1.1.0"
"@microsoft/api-extractor-model@7.27.6":
"integrity" "sha512-eiCnlayyum1f7fS2nA9pfIod5VCNR1G+Tq84V/ijDrKrOFVa598BLw145nCsGDMoFenV6ajNi2PR5WCwpAxW6Q=="
"resolved" "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.27.6.tgz"
"version" "7.27.6"
dependencies:
"@microsoft/tsdoc" "0.14.2"
"@microsoft/tsdoc-config" "~0.16.1"
"@rushstack/node-core-library" "3.59.7"
"@microsoft/api-extractor@^7.36.4":
"integrity" "sha512-21UECq8C/8CpHT23yiqTBQ10egKUacIpxkPyYR7hdswo/M5yTWdBvbq+77YC9uPKQJOUfOD1FImBQ1DzpsdeQQ=="
"resolved" "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.36.4.tgz"
"version" "7.36.4"
dependencies:
"@microsoft/api-extractor-model" "7.27.6"
"@microsoft/tsdoc" "0.14.2"
"@microsoft/tsdoc-config" "~0.16.1"
"@rushstack/node-core-library" "3.59.7"
"@rushstack/rig-package" "0.4.1"
"@rushstack/ts-command-line" "4.15.2"
"colors" "~1.2.1"
"lodash" "~4.17.15"
"resolve" "~1.22.1"
"semver" "~7.5.4"
"source-map" "~0.6.1"
"typescript" "~5.0.4"
"@microsoft/tsdoc-config@~0.16.1":
"integrity" "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw=="
"resolved" "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.16.2.tgz"
"version" "0.16.2"
dependencies:
"@microsoft/tsdoc" "0.14.2"
"ajv" "~6.12.6"
"jju" "~1.4.0"
"resolve" "~1.19.0"
"@microsoft/tsdoc@0.14.2":
"integrity" "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug=="
"resolved" "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.14.2.tgz"
"version" "0.14.2"
"@nodelib/fs.scandir@2.1.5":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@npmcli/arborist@^6.3.0":
"version" "6.3.0"
dependencies:
"@isaacs/string-locale-compare" "^1.1.0"
"@npmcli/fs" "^3.1.0"
"@npmcli/installed-package-contents" "^2.0.2"
"@npmcli/map-workspaces" "^3.0.2"
"@npmcli/metavuln-calculator" "^5.0.0"
"@npmcli/name-from-folder" "^2.0.0"
"@npmcli/node-gyp" "^3.0.0"
"@npmcli/package-json" "^4.0.0"
"@npmcli/query" "^3.0.0"
"@npmcli/run-script" "^6.0.0"
"bin-links" "^4.0.1"
"cacache" "^17.0.4"
"common-ancestor-path" "^1.0.1"
"hosted-git-info" "^6.1.1"
"json-parse-even-better-errors" "^3.0.0"
"json-stringify-nice" "^1.1.4"
"minimatch" "^9.0.0"
"nopt" "^7.0.0"
"npm-install-checks" "^6.0.0"
"npm-package-arg" "^10.1.0"
"npm-pick-manifest" "^8.0.1"
"npm-registry-fetch" "^14.0.3"
"npmlog" "^7.0.1"
"pacote" "^15.0.8"
"parse-conflict-json" "^3.0.0"
"proc-log" "^3.0.0"
"promise-all-reject-late" "^1.0.0"
"promise-call-limit" "^1.0.2"
"read-package-json-fast" "^3.0.2"
"semver" "^7.3.7"
"ssri" "^10.0.1"
"treeverse" "^3.0.0"
"walk-up-path" "^3.0.1"
"@npmcli/config@^6.2.1":
"version" "6.2.1"
dependencies:
"@npmcli/map-workspaces" "^3.0.2"
"ci-info" "^3.8.0"
"ini" "^4.1.0"
"nopt" "^7.0.0"
"proc-log" "^3.0.0"
"read-package-json-fast" "^3.0.2"
"semver" "^7.3.5"
"walk-up-path" "^3.0.1"
"@npmcli/disparity-colors@^3.0.0":
"version" "3.0.0"
dependencies:
"ansi-styles" "^4.3.0"
"@npmcli/fs@^3.1.0":
"version" "3.1.0"
dependencies:
"semver" "^7.3.5"
"@npmcli/git@^4.0.0", "@npmcli/git@^4.0.1", "@npmcli/git@^4.1.0":
"version" "4.1.0"
dependencies:
"@npmcli/promise-spawn" "^6.0.0"
"lru-cache" "^7.4.4"
"npm-pick-manifest" "^8.0.0"
"proc-log" "^3.0.0"
"promise-inflight" "^1.0.1"
"promise-retry" "^2.0.1"
"semver" "^7.3.5"
"which" "^3.0.0"
"@npmcli/installed-package-contents@^2.0.1", "@npmcli/installed-package-contents@^2.0.2":
"version" "2.0.2"
dependencies:
"npm-bundled" "^3.0.0"
"npm-normalize-package-bin" "^3.0.0"
"@npmcli/map-workspaces@^3.0.2", "@npmcli/map-workspaces@^3.0.4":
"version" "3.0.4"
dependencies:
"@npmcli/name-from-folder" "^2.0.0"
"glob" "^10.2.2"
"minimatch" "^9.0.0"
"read-package-json-fast" "^3.0.0"
"@npmcli/metavuln-calculator@^5.0.0":
"version" "5.0.1"
dependencies:
"cacache" "^17.0.0"
"json-parse-even-better-errors" "^3.0.0"
"pacote" "^15.0.0"
"semver" "^7.3.5"
"@npmcli/name-from-folder@^2.0.0":
"version" "2.0.0"
"@npmcli/node-gyp@^3.0.0":
"version" "3.0.0"
"@npmcli/package-json@^4.0.0", "@npmcli/package-json@^4.0.1":
"version" "4.0.1"
dependencies:
"@npmcli/git" "^4.1.0"
"glob" "^10.2.2"
"hosted-git-info" "^6.1.1"
"json-parse-even-better-errors" "^3.0.0"
"normalize-package-data" "^5.0.0"
"proc-log" "^3.0.0"
"semver" "^7.5.3"
"@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1", "@npmcli/promise-spawn@^6.0.2":
"version" "6.0.2"
dependencies:
"which" "^3.0.0"
"@npmcli/query@^3.0.0":
"version" "3.0.0"
dependencies:
"postcss-selector-parser" "^6.0.10"
"@npmcli/run-script@^6.0.0", "@npmcli/run-script@^6.0.2":
"version" "6.0.2"
dependencies:
"@npmcli/node-gyp" "^3.0.0"
"@npmcli/promise-spawn" "^6.0.0"
"node-gyp" "^9.0.0"
"read-package-json-fast" "^3.0.0"
"which" "^3.0.0"
"@octokit/auth-token@^4.0.0":
"integrity" "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA=="
"resolved" "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz"
"version" "4.0.0"
"@octokit/core@^5.0.0", "@octokit/core@>=5":
"integrity" "sha512-YbAtMWIrbZ9FCXbLwT9wWB8TyLjq9mxpKdgB3dUNxQcIVTf9hJ70gRPwAcqGZdY6WdJPZ0I7jLaaNDCiloGN2A=="
"resolved" "https://registry.npmjs.org/@octokit/core/-/core-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@octokit/auth-token" "^4.0.0"
"@octokit/graphql" "^7.0.0"
"@octokit/request" "^8.0.2"
"@octokit/request-error" "^5.0.0"
"@octokit/types" "^11.0.0"
"before-after-hook" "^2.2.0"
"universal-user-agent" "^6.0.0"
"@octokit/endpoint@^9.0.0":
"integrity" "sha512-szrQhiqJ88gghWY2Htt8MqUDO6++E/EIXqJ2ZEp5ma3uGS46o7LZAzSLt49myB7rT+Hfw5Y6gO3LmOxGzHijAQ=="
"resolved" "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.0.tgz"
"version" "9.0.0"
dependencies:
"@octokit/types" "^11.0.0"
"is-plain-object" "^5.0.0"
"universal-user-agent" "^6.0.0"
"@octokit/graphql@^7.0.0":
"integrity" "sha512-T5S3oZ1JOE58gom6MIcrgwZXzTaxRnxBso58xhozxHpOqSTgDS6YNeEUvZ/kRvXgPrRz/KHnZhtb7jUMRi9E6w=="
"resolved" "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.1.tgz"
"version" "7.0.1"
dependencies:
"@octokit/request" "^8.0.1"
"@octokit/types" "^11.0.0"
"universal-user-agent" "^6.0.0"
"@octokit/openapi-types@^18.0.0":
"integrity" "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw=="
"resolved" "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.0.0.tgz"
"version" "18.0.0"
"@octokit/plugin-paginate-rest@^8.0.0":
"integrity" "sha512-2xZ+baZWUg+qudVXnnvXz7qfrTmDeYPCzangBVq/1gXxii/OiS//4shJp9dnCCvj1x+JAm9ji1Egwm1BA47lPQ=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-8.0.0.tgz"
"version" "8.0.0"
dependencies:
"@octokit/types" "^11.0.0"
"@octokit/plugin-retry@^6.0.0":
"integrity" "sha512-a1/A4A+PB1QoAHQfLJxGHhLfSAT03bR1jJz3GgQJZvty2ozawFWs93MiBQXO7SL2YbO7CIq0Goj4qLOBj8JeMQ=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@octokit/request-error" "^5.0.0"
"@octokit/types" "^11.0.0"
"bottleneck" "^2.15.3"
"@octokit/plugin-throttling@^7.0.0":
"integrity" "sha512-KL2k/d0uANc8XqP5S64YcNFCudR3F5AaKO39XWdUtlJIjT9Ni79ekWJ6Kj5xvAw87udkOMEPcVf9xEge2+ahew=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"@octokit/types" "^11.0.0"
"bottleneck" "^2.15.3"
"@octokit/request-error@^5.0.0":
"integrity" "sha512-1ue0DH0Lif5iEqT52+Rf/hf0RmGO9NWFjrzmrkArpG9trFfDM/efx00BJHdLGuro4BR/gECxCU2Twf5OKrRFsQ=="
"resolved" "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@octokit/types" "^11.0.0"
"deprecation" "^2.0.0"
"once" "^1.4.0"
"@octokit/request@^8.0.1", "@octokit/request@^8.0.2":
"integrity" "sha512-8N+tdUz4aCqQmXl8FpHYfKG9GelDFd7XGVzyN8rc6WxVlYcfpHECnuRkgquzz+WzvHTK62co5di8gSXnzASZPQ=="
"resolved" "https://registry.npmjs.org/@octokit/request/-/request-8.1.1.tgz"
"version" "8.1.1"
dependencies:
"@octokit/endpoint" "^9.0.0"
"@octokit/request-error" "^5.0.0"
"@octokit/types" "^11.1.0"
"is-plain-object" "^5.0.0"
"universal-user-agent" "^6.0.0"
"@octokit/types@^11.0.0", "@octokit/types@^11.1.0":
"integrity" "sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ=="
"resolved" "https://registry.npmjs.org/@octokit/types/-/types-11.1.0.tgz"
"version" "11.1.0"
dependencies:
"@octokit/openapi-types" "^18.0.0"
"@pkgjs/parseargs@^0.11.0":
"version" "0.11.0"
"@pnpm/config.env-replace@^1.1.0":
"integrity" "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w=="
"resolved" "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz"
"version" "1.1.0"
"@pnpm/network.ca-file@^1.0.1":
"integrity" "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA=="
"resolved" "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"graceful-fs" "4.2.10"
"@pnpm/npm-conf@^2.1.0":
"integrity" "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA=="
"resolved" "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz"
"version" "2.2.2"
dependencies:
"@pnpm/config.env-replace" "^1.1.0"
"@pnpm/network.ca-file" "^1.0.1"
"config-chain" "^1.1.11"
"@rollup/pluginutils@^5.0.2":
"integrity" "sha512-0KJnIoRI8A+a1dqOYLxH8vBf8bphDmty5QvIm2hqm7oFCFYKCAZWWd2hXgMibaPsNDhI0AtpYfQZJG47pt/k4g=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.4.tgz"
"version" "5.0.4"
dependencies:
"@types/estree" "^1.0.0"
"estree-walker" "^2.0.2"
"picomatch" "^2.3.1"
"@rushstack/node-core-library@3.59.7":
"integrity" "sha512-ln1Drq0h+Hwa1JVA65x5mlSgUrBa1uHL+V89FqVWQgXd1vVIMhrtqtWGQrhTnFHxru5ppX+FY39VWELF/FjQCw=="
"resolved" "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.7.tgz"
"version" "3.59.7"
dependencies:
"colors" "~1.2.1"
"fs-extra" "~7.0.1"
"import-lazy" "~4.0.0"
"jju" "~1.4.0"
"resolve" "~1.22.1"
"semver" "~7.5.4"
"z-schema" "~5.0.2"
"@rushstack/rig-package@0.4.1":
"integrity" "sha512-AGRwpqlXNSp9LhUSz4HKI9xCluqQDt/obsQFdv/NYIekF3pTTPzc+HbQsIsjVjYnJ3DcmxOREVMhvrMEjpiq6g=="
"resolved" "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.1.tgz"
"version" "0.4.1"
dependencies:
"resolve" "~1.22.1"
"strip-json-comments" "~3.1.1"
"@rushstack/ts-command-line@4.15.2":
"integrity" "sha512-5+C2uoJY8b+odcZD6coEe2XNC4ZjGB4vCMESbqW/8DHRWC/qIHfANdmN9F1wz/lAgxz72i7xRoVtPY2j7e4gpQ=="
"resolved" "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.15.2.tgz"
"version" "4.15.2"
dependencies:
"@types/argparse" "1.0.38"
"argparse" "~1.0.9"
"colors" "~1.2.1"
"string-argv" "~0.3.1"
"@semantic-release/commit-analyzer@^10.0.0", "@semantic-release/commit-analyzer@^10.0.4":
"integrity" "sha512-pFGn99fn8w4/MHE0otb2A/l5kxgOuxaaauIh4u30ncoTJuqWj4hXTgEJ03REqjS+w1R2vPftSsO26WC61yOcpw=="
"resolved" "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-10.0.4.tgz"
"version" "10.0.4"
dependencies:
"conventional-changelog-angular" "^6.0.0"
"conventional-commits-filter" "^3.0.0"
"conventional-commits-parser" "^5.0.0"
"debug" "^4.0.0"
"import-from" "^4.0.0"
"lodash-es" "^4.17.21"
"micromatch" "^4.0.2"
"@semantic-release/error@^3.0.0":
"integrity" "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw=="
"resolved" "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz"
"version" "3.0.0"
"@semantic-release/error@^4.0.0":
"integrity" "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ=="
"resolved" "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz"
"version" "4.0.0"
"@semantic-release/git@^10.0.1":
"integrity" "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w=="
"resolved" "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz"
"version" "10.0.1"
dependencies:
"@semantic-release/error" "^3.0.0"
"aggregate-error" "^3.0.0"
"debug" "^4.0.0"
"dir-glob" "^3.0.0"
"execa" "^5.0.0"
"lodash" "^4.17.4"
"micromatch" "^4.0.0"
"p-reduce" "^2.0.0"
"@semantic-release/github@^9.0.0", "@semantic-release/github@^9.0.5":
"integrity" "sha512-d1ZZjMvXpSa4E1L3XjdNOqgUy00o9QZX55L75pMsb/w+1NV6CCfDYOvH8qwKygHS/rKzI3FkBTcR40ahOodsgg=="
"resolved" "https://registry.npmjs.org/@semantic-release/github/-/github-9.0.5.tgz"
"version" "9.0.5"
dependencies:
"@octokit/core" "^5.0.0"
"@octokit/plugin-paginate-rest" "^8.0.0"
"@octokit/plugin-retry" "^6.0.0"
"@octokit/plugin-throttling" "^7.0.0"
"@semantic-release/error" "^4.0.0"
"aggregate-error" "^4.0.1"
"debug" "^4.3.4"
"dir-glob" "^3.0.1"
"globby" "^13.1.4"
"http-proxy-agent" "^7.0.0"
"https-proxy-agent" "^7.0.0"
"issue-parser" "^6.0.0"
"lodash-es" "^4.17.21"
"mime" "^3.0.0"
"p-filter" "^3.0.0"
"url-join" "^5.0.0"
"@semantic-release/npm@^10.0.2", "@semantic-release/npm@^10.0.5":
"integrity" "sha512-cJnQ2M5pxJRwZEkb0A/+U3TG4UNmjrrLwV2PxJKljn5OPT0yJB8GzGgWbbKACayvxrT06YdTa4Amtq/piJcOIA=="
"resolved" "https://registry.npmjs.org/@semantic-release/npm/-/npm-10.0.5.tgz"
"version" "10.0.5"
dependencies:
"@semantic-release/error" "^4.0.0"
"aggregate-error" "^4.0.1"
"execa" "^8.0.0"
"fs-extra" "^11.0.0"
"lodash-es" "^4.17.21"
"nerf-dart" "^1.0.0"
"normalize-url" "^8.0.0"
"npm" "^9.5.0"
"rc" "^1.2.8"
"read-pkg" "^8.0.0"
"registry-auth-token" "^5.0.0"
"semver" "^7.1.2"
"tempy" "^3.0.0"
"@semantic-release/release-notes-generator@^11.0.0", "@semantic-release/release-notes-generator@^11.0.7":
"integrity" "sha512-T09QB9ImmNx7Q6hY6YnnEbw/rEJ6a+22LBxfZq+pSAXg/OL/k0siwEm5cK4k1f9dE2Z2mPIjJKKohzUm0jbxcQ=="
"resolved" "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-11.0.7.tgz"
"version" "11.0.7"
dependencies:
"conventional-changelog-angular" "^6.0.0"
"conventional-changelog-writer" "^6.0.0"
"conventional-commits-filter" "^4.0.0"
"conventional-commits-parser" "^5.0.0"
"debug" "^4.0.0"
"get-stream" "^7.0.0"
"import-from" "^4.0.0"
"into-stream" "^7.0.0"
"lodash-es" "^4.17.21"
"read-pkg-up" "^10.0.0"
"@sigstore/protobuf-specs@^0.1.0":
"version" "0.1.0"
"@sigstore/tuf@^1.0.1":
"version" "1.0.2"
dependencies:
"@sigstore/protobuf-specs" "^0.1.0"
"tuf-js" "^1.1.7"
"@swc/core-win32-x64-msvc@1.3.82":
"integrity" "sha512-4mJMnex21kbQoaHeAmHnVwQN9/XAfPszJ6n9HI7SVH+aAHnbBIR0M59/b50/CJMjTj5niUGk7EwQ3nhVNOG32g=="
"resolved" "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.82.tgz"
"version" "1.3.82"
"@swc/core@^1.3.61":
"integrity" "sha512-jpC1a18HMH67018Ij2jh+hT7JBFu7ZKcQVfrZ8K6JuEY+kjXmbea07P9MbQUZbAe0FB+xi3CqEVCP73MebodJQ=="
"resolved" "https://registry.npmjs.org/@swc/core/-/core-1.3.82.tgz"
"version" "1.3.82"
dependencies:
"@swc/types" "^0.1.4"
optionalDependencies:
"@swc/core-darwin-arm64" "1.3.82"
"@swc/core-darwin-x64" "1.3.82"
"@swc/core-linux-arm-gnueabihf" "1.3.82"
"@swc/core-linux-arm64-gnu" "1.3.82"
"@swc/core-linux-arm64-musl" "1.3.82"
"@swc/core-linux-x64-gnu" "1.3.82"
"@swc/core-linux-x64-musl" "1.3.82"
"@swc/core-win32-arm64-msvc" "1.3.82"
"@swc/core-win32-ia32-msvc" "1.3.82"
"@swc/core-win32-x64-msvc" "1.3.82"
"@swc/types@^0.1.4":
"integrity" "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg=="
"resolved" "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz"
"version" "0.1.4"
"@tootallnate/once@2":
"version" "2.0.0"
"@tufjs/canonical-json@1.0.0":
"version" "1.0.0"
"@tufjs/models@1.0.4":
"version" "1.0.4"
dependencies:
"@tufjs/canonical-json" "1.0.0"
"minimatch" "^9.0.0"
"@types/argparse@1.0.38":
"integrity" "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA=="
"resolved" "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz"
"version" "1.0.38"
"@types/estree@^1.0.0":
"integrity" "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz"
"version" "1.0.1"
"@types/json-schema@^7.0.12":
"integrity" "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz"
"version" "7.0.12"
"@types/minimist@^1.2.0":
"integrity" "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"
"version" "1.2.2"
"@types/node@*", "@types/node@^20.6.0", "@types/node@>= 14":
"integrity" "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz"
"version" "20.6.0"
"@types/normalize-package-data@^2.4.0", "@types/normalize-package-data@^2.4.1":
"integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"
"version" "2.4.1"
"@types/prop-types@*":
"integrity" "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"
"version" "15.7.5"
"@types/react-dom@^18.2.7":
"integrity" "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz"
"version" "18.2.7"
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^18.2.15":
"integrity" "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz"
"version" "18.2.21"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz"
"version" "0.16.3"
"@types/semver@^7.5.0":
"integrity" "sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg=="
"resolved" "https://registry.npmjs.org/@types/semver/-/semver-7.5.1.tgz"
"version" "7.5.1"
"@typescript-eslint/eslint-plugin@^6.0.0":
"integrity" "sha512-CW9YDGTQnNYMIo5lMeuiIG08p4E0cXrXTbcZ2saT/ETE7dWUrNxlijsQeU04qAAKkILiLzdQz+cGFxCJjaZUmA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@eslint-community/regexpp" "^4.5.1"
"@typescript-eslint/scope-manager" "6.6.0"
"@typescript-eslint/type-utils" "6.6.0"
"@typescript-eslint/utils" "6.6.0"
"@typescript-eslint/visitor-keys" "6.6.0"
"debug" "^4.3.4"
"graphemer" "^1.4.0"
"ignore" "^5.2.4"
"natural-compare" "^1.4.0"
"semver" "^7.5.4"
"ts-api-utils" "^1.0.1"
"@typescript-eslint/parser@^6.0.0", "@typescript-eslint/parser@^6.0.0 || ^6.0.0-alpha":
"integrity" "sha512-setq5aJgUwtzGrhW177/i+DMLqBaJbdwGj2CPIVFFLE0NCliy5ujIdLHd2D1ysmlmsjdL2GWW+hR85neEfc12w=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@typescript-eslint/scope-manager" "6.6.0"
"@typescript-eslint/types" "6.6.0"
"@typescript-eslint/typescript-estree" "6.6.0"
"@typescript-eslint/visitor-keys" "6.6.0"
"debug" "^4.3.4"
"@typescript-eslint/scope-manager@6.6.0":
"integrity" "sha512-pT08u5W/GT4KjPUmEtc2kSYvrH8x89cVzkA0Sy2aaOUIw6YxOIjA8ilwLr/1fLjOedX1QAuBpG9XggWqIIfERw=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@typescript-eslint/types" "6.6.0"
"@typescript-eslint/visitor-keys" "6.6.0"
"@typescript-eslint/type-utils@6.6.0":
"integrity" "sha512-8m16fwAcEnQc69IpeDyokNO+D5spo0w1jepWWY2Q6y5ZKNuj5EhVQXjtVAeDDqvW6Yg7dhclbsz6rTtOvcwpHg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@typescript-eslint/typescript-estree" "6.6.0"
"@typescript-eslint/utils" "6.6.0"
"debug" "^4.3.4"
"ts-api-utils" "^1.0.1"
"@typescript-eslint/types@6.6.0":
"integrity" "sha512-CB6QpJQ6BAHlJXdwUmiaXDBmTqIE2bzGTDLADgvqtHWuhfNP3rAOK7kAgRMAET5rDRr9Utt+qAzRBdu3AhR3sg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.6.0.tgz"
"version" "6.6.0"
"@typescript-eslint/typescript-estree@6.6.0":
"integrity" "sha512-hMcTQ6Al8MP2E6JKBAaSxSVw5bDhdmbCEhGW/V8QXkb9oNsFkA4SBuOMYVPxD3jbtQ4R/vSODBsr76R6fP3tbA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@typescript-eslint/types" "6.6.0"
"@typescript-eslint/visitor-keys" "6.6.0"
"debug" "^4.3.4"
"globby" "^11.1.0"
"is-glob" "^4.0.3"
"semver" "^7.5.4"
"ts-api-utils" "^1.0.1"
"@typescript-eslint/utils@6.6.0":
"integrity" "sha512-mPHFoNa2bPIWWglWYdR0QfY9GN0CfvvXX1Sv6DlSTive3jlMTUy+an67//Gysc+0Me9pjitrq0LJp0nGtLgftw=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
"@types/json-schema" "^7.0.12"
"@types/semver" "^7.5.0"
"@typescript-eslint/scope-manager" "6.6.0"
"@typescript-eslint/types" "6.6.0"
"@typescript-eslint/typescript-estree" "6.6.0"
"semver" "^7.5.4"
"@typescript-eslint/visitor-keys@6.6.0":
"integrity" "sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.6.0.tgz"
"version" "6.6.0"
dependencies:
"@typescript-eslint/types" "6.6.0"
"eslint-visitor-keys" "^3.4.1"
"@vitejs/plugin-react-swc@^3.3.2":
"integrity" "sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA=="
"resolved" "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.3.2.tgz"
"version" "3.3.2"
dependencies:
"@swc/core" "^1.3.61"
"@volar/language-core@~1.10.0", "@volar/language-core@1.10.1":
"integrity" "sha512-JnsM1mIPdfGPxmoOcK1c7HYAsL6YOv0TCJ4aW3AXPZN/Jb4R77epDyMZIVudSGjWMbvv/JfUa+rQ+dGKTmgwBA=="
"resolved" "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.1.tgz"
"version" "1.10.1"
dependencies:
"@volar/source-map" "1.10.1"
"@volar/source-map@~1.10.0", "@volar/source-map@1.10.1":
"integrity" "sha512-3/S6KQbqa7pGC8CxPrg69qHLpOvkiPHGJtWPkI/1AXCsktkJ6gIk/5z4hyuMp8Anvs6eS/Kvp/GZa3ut3votKA=="
"resolved" "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.1.tgz"
"version" "1.10.1"
dependencies:
"muggle-string" "^0.3.1"
"@volar/typescript@~1.10.0":
"integrity" "sha512-+iiO9yUSRHIYjlteT+QcdRq8b44qH19/eiUZtjNtuh6D9ailYM7DVR0zO2sEgJlvCaunw/CF9Ov2KooQBpR4VQ=="
"resolved" "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.1.tgz"
"version" "1.10.1"
dependencies:
"@volar/language-core" "1.10.1"
"@vue/compiler-core@3.3.4":
"integrity" "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g=="
"resolved" "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz"
"version" "3.3.4"
dependencies:
"@babel/parser" "^7.21.3"
"@vue/shared" "3.3.4"
"estree-walker" "^2.0.2"
"source-map-js" "^1.0.2"
"@vue/compiler-dom@^3.3.0":
"integrity" "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w=="
"resolved" "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz"
"version" "3.3.4"
dependencies:
"@vue/compiler-core" "3.3.4"
"@vue/shared" "3.3.4"
"@vue/language-core@^1.8.8", "@vue/language-core@1.8.10":
"integrity" "sha512-db8PtM4ZZr7SYNH30XpKxUYnUBYaTvcuJ4c2whKK04fuAjbtjAIZ2al5GzGEfUlesmvkpgdbiSviRXUxgD9Omw=="
"resolved" "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.10.tgz"
"version" "1.8.10"
dependencies:
"@volar/language-core" "~1.10.0"
"@volar/source-map" "~1.10.0"
"@vue/compiler-dom" "^3.3.0"
"@vue/reactivity" "^3.3.0"
"@vue/shared" "^3.3.0"
"minimatch" "^9.0.0"
"muggle-string" "^0.3.1"
"vue-template-compiler" "^2.7.14"
"@vue/reactivity@^3.3.0":
"integrity" "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ=="
"resolved" "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz"
"version" "3.3.4"
dependencies:
"@vue/shared" "3.3.4"
"@vue/shared@^3.3.0", "@vue/shared@3.3.4":
"integrity" "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ=="
"resolved" "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz"
"version" "3.3.4"
"@vue/typescript@1.8.10":
"integrity" "sha512-vPSpTXMk4chYwvyTGjM891cKgnx2r6vtbdANOp2mRU31f4HYGyLrZBlGgiua7SaO2cLjUg8y91OipJe0t8OFhA=="
"resolved" "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.10.tgz"
"version" "1.8.10"
dependencies:
"@volar/typescript" "~1.10.0"
"@vue/language-core" "1.8.10"
"abbrev@^1.0.0":
"version" "1.1.1"
"abbrev@^2.0.0":
"version" "2.0.0"
"abort-controller@^3.0.0":
"version" "3.0.0"
dependencies:
"event-target-shim" "^5.0.0"
"acorn-jsx@^5.3.2":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.9.0":
"integrity" "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz"
"version" "8.10.0"
"agent-base@^6.0.2", "agent-base@6":
"version" "6.0.2"
dependencies:
"debug" "4"
"agent-base@^7.0.2", "agent-base@^7.1.0":
"integrity" "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz"
"version" "7.1.0"
dependencies:
"debug" "^4.3.4"
"agentkeepalive@^4.2.1":
"version" "4.3.0"
dependencies:
"debug" "^4.1.0"
"depd" "^2.0.0"
"humanize-ms" "^1.2.1"
"aggregate-error@^3.0.0":
"integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="
"resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"clean-stack" "^2.0.0"
"indent-string" "^4.0.0"
"aggregate-error@^4.0.0", "aggregate-error@^4.0.1":
"integrity" "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w=="
"resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"clean-stack" "^4.0.0"
"indent-string" "^5.0.0"
"ajv@^6.12.4", "ajv@~6.12.6":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-escapes@^6.2.0":
"integrity" "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz"
"version" "6.2.0"
dependencies:
"type-fest" "^3.0.0"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-regex@^6.0.1":
"version" "6.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0", "ansi-styles@^4.3.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^6.1.0":
"version" "6.2.1"
"ansicolors@~0.3.2":
"integrity" "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg=="
"resolved" "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"
"version" "0.3.2"
"aproba@^1.0.3 || ^2.0.0", "aproba@^2.0.0":
"version" "2.0.0"
"archy@~1.0.0":
"version" "1.0.0"
"are-we-there-yet@^3.0.0":
"version" "3.0.1"
dependencies:
"delegates" "^1.0.0"
"readable-stream" "^3.6.0"
"are-we-there-yet@^4.0.0":
"version" "4.0.0"
dependencies:
"delegates" "^1.0.0"
"readable-stream" "^4.1.0"
"argparse@^2.0.1":
"integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"argparse@~1.0.9":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"argv-formatter@~1.0.0":
"integrity" "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw=="
"resolved" "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz"
"version" "1.0.0"
"array-ify@^1.0.0":
"integrity" "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng=="
"resolved" "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
"version" "1.0.0"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"arrify@^1.0.1":
"integrity" "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base64-js@^1.3.1":
"version" "1.5.1"
"before-after-hook@^2.2.0":
"integrity" "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ=="
"resolved" "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz"
"version" "2.2.3"
"bin-links@^4.0.1":
"version" "4.0.2"
dependencies:
"cmd-shim" "^6.0.0"
"npm-normalize-package-bin" "^3.0.0"
"read-cmd-shim" "^4.0.0"
"write-file-atomic" "^5.0.0"