-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathyarn.lock
More file actions
5650 lines (5101 loc) · 193 KB
/
Copy pathyarn.lock
File metadata and controls
5650 lines (5101 loc) · 193 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 file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@algolia/autocomplete-core@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-core@npm:1.17.9"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.17.9"
"@algolia/autocomplete-shared": "npm:1.17.9"
checksum: 10c0/e1111769a8723b9dd45fc38cd7edc535c86c1f908b84b5fdc5de06ba6b8c7aca14e5f52ebce84fa5f7adf857332e396b93b7e7933b157b2c9aefc0a19d9574ab
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.9"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.9"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 10c0/05c21502631643abdcd6e9f70b5814a60d34bad59bca501e26e030fd72e689be5cecfb6e8939a0a1bdcb2394591e55e26a42a82c7247528eafeff714db0819a4
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-preset-algolia@npm:1.17.9"
dependencies:
"@algolia/autocomplete-shared": "npm:1.17.9"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/99159c7e02a927d0d96717cb4cfd2f8dbc4da73267a8eae4f83af5bf74087089f6e7dbffd316512e713a4cc534e936b6a7ccb5c4a5ff84b4bf73f2d3cc050e79
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.9":
version: 1.17.9
resolution: "@algolia/autocomplete-shared@npm:1.17.9"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 10c0/b318281aecdaae09171b47ee4f7bc66b613852cad4506e9d6278fff35ba68a12dd9cce2d90b5f4c3ba0e3d7d780583cbe46b22275260e41bbf09fb01e4a18f49
languageName: node
linkType: hard
"@algolia/client-abtesting@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-abtesting@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/e143032026e3b93b4f60c4c5bda506f3be5e3480194fefe4968a560139681fecdbf7bb293bdf72ba13c12f94b81bd55e280cbfc849251c92f0dab0baf08cdfed
languageName: node
linkType: hard
"@algolia/client-analytics@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-analytics@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/4ab55b7a6ca421c48c93c77e56784daff6785fe10ffccba5d92fc2a55961da5faba29463a145c9f30153bedd613b1e69bf6d8ffaf6764c8e2267436f48c90609
languageName: node
linkType: hard
"@algolia/client-common@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-common@npm:5.34.1"
checksum: 10c0/7818a9ecef092d1eeef31a78b8c49d2cd8c6eee2e29fd66ddf05a0f206587a04d046ff944f240dceb75c4036e56288c7ad5463dd253caa2003f71e66f6b0e532
languageName: node
linkType: hard
"@algolia/client-insights@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-insights@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/00e80289f0a3964277b0b5a654448d2ff01fa89010d5da72accef5b22562a9136670d378a226afb124b73bf4ed5122a14520117591f6ecd4a73be6e4bc99bc9d
languageName: node
linkType: hard
"@algolia/client-personalization@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-personalization@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/cc3822cde67574f7aeff1ae5c592459d4c0657cdda3e22223154e261bc02e57e9a6a3458c6daa2b330bfaf7fbcadeae2f95d4f40ee7d469f1499f8d9b85402e9
languageName: node
linkType: hard
"@algolia/client-query-suggestions@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-query-suggestions@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/c86a3668f4f80adb1d8f652485020028d8738cff7f2d4b1849a07b3845f3e356c28dab9a83a90d7370dd493442f915ee84d188dbdf63e1e1e3403686fb8fe011
languageName: node
linkType: hard
"@algolia/client-search@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/client-search@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/6c127872ab82b9b4f46e6d1104a1b404972d2b864985a4b891afd74c176541918e0fe974a50302631ea8ec7da83818c829e297fbfa5c2df8d0561abba1d06aa6
languageName: node
linkType: hard
"@algolia/ingestion@npm:1.34.1":
version: 1.34.1
resolution: "@algolia/ingestion@npm:1.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/16c7ccf29f30b3eb6b053e0702febe344143f98c56002c2582d8fc3b861f6f05c9d56a1fc30c1c324379075e3b3826dd395090a35653f97ee50769726f427dbd
languageName: node
linkType: hard
"@algolia/monitoring@npm:1.34.1":
version: 1.34.1
resolution: "@algolia/monitoring@npm:1.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/4b42ad7a5754837d0feb4dc1552e74441f89f590275b3dfcfeffcda5425628047f609ece5108424cb291716e3926388451361377a829c42845a5ca537fcdc14c
languageName: node
linkType: hard
"@algolia/recommend@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/recommend@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
"@algolia/requester-browser-xhr": "npm:5.34.1"
"@algolia/requester-fetch": "npm:5.34.1"
"@algolia/requester-node-http": "npm:5.34.1"
checksum: 10c0/60f721065873c5332fa13c7d082caba8454867a3dfe4f2e80c712a8936876e1d9afa26b4f09eb9c74f50b386eddf73f0c8e5813619330b710e5ca45b2a17460b
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/requester-browser-xhr@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
checksum: 10c0/4b5b31c1c908bed9cbce2ded72a5f3def606a97b3bb368c7b17981c9a37ad61d7796de104c8759de6e51fb56e698e22bb83b5ca2ffea28bb0f41575be0a9ba42
languageName: node
linkType: hard
"@algolia/requester-fetch@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/requester-fetch@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
checksum: 10c0/c9f5b58f3163f8f734c5095836154ddf44770222ea23826ce1f9758ebd7bda947f5720559cd85a9166166cc7be32f385d968425dfb9d9326b07cb09038c5d3e5
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:5.34.1":
version: 5.34.1
resolution: "@algolia/requester-node-http@npm:5.34.1"
dependencies:
"@algolia/client-common": "npm:5.34.1"
checksum: 10c0/865e4cf799fc6c35db99e52df984c92cf3c9ecbf844e1ae73190fc868490b2d5d6f0d2b5788d1bc80ff2c05500f9b940647ecc84000251c2fdd3268c0ce1a49d
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.0.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: "npm:^1.3.0"
tinyexec: "npm:^1.0.1"
checksum: 10c0/140d5994c76fd3d0e824c88f1ce91b3370e8066a8bc2f5729ae133bf768caa239f7915e29c78f239b7ead253113ace51293e95127fafe2b786b88eb615b3be47
languageName: node
linkType: hard
"@antfu/utils@npm:^8.1.0":
version: 8.1.1
resolution: "@antfu/utils@npm:8.1.1"
checksum: 10c0/cd55d322496f0324323a7bd312bbdc305db02f5c74c53d59213a00a7ecfd66926b6755a41f27c6e664a687cd7a967d3a8b12d3ea57f264ae45dd1c5c181f5160
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-identifier@npm:7.27.1"
checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84
languageName: node
linkType: hard
"@babel/parser@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/parser@npm:7.28.0"
dependencies:
"@babel/types": "npm:^7.28.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/c2ef81d598990fa949d1d388429df327420357cb5200271d0d0a2784f1e6d54afc8301eb8bdf96d8f6c77781e402da93c7dc07980fcc136ac5b9d5f1fce701b5
languageName: node
linkType: hard
"@babel/types@npm:^7.28.0":
version: 7.28.2
resolution: "@babel/types@npm:7.28.2"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
checksum: 10c0/24b11c9368e7e2c291fe3c1bcd1ed66f6593a3975f479cbb9dd7b8c8d8eab8a962b0d2fca616c043396ce82500ac7d23d594fbbbd013828182c01596370a0b10
languageName: node
linkType: hard
"@docsearch/css@npm:3.9.0, @docsearch/css@npm:^3.9.0":
version: 3.9.0
resolution: "@docsearch/css@npm:3.9.0"
checksum: 10c0/6300551e1cab7a5487063ec3581ae78ddaee3d93ec799556b451054448559b3ba849751b825fbd8b678367ef944bd82b3f11bc1d9e74e08e3cc48db40487b396
languageName: node
linkType: hard
"@docsearch/js@npm:^3.9.0":
version: 3.9.0
resolution: "@docsearch/js@npm:3.9.0"
dependencies:
"@docsearch/react": "npm:3.9.0"
preact: "npm:^10.0.0"
checksum: 10c0/f96b9d452c87ada7ff368138442da96b8daa33f4edd956ed14209d284e267eb546ad20a85fa6f70352fc4bf530293635978329ca12a40aacf4e2d0595e91d61e
languageName: node
linkType: hard
"@docsearch/react@npm:3.9.0, @docsearch/react@npm:^3.9.0":
version: 3.9.0
resolution: "@docsearch/react@npm:3.9.0"
dependencies:
"@algolia/autocomplete-core": "npm:1.17.9"
"@algolia/autocomplete-preset-algolia": "npm:1.17.9"
"@docsearch/css": "npm:3.9.0"
algoliasearch: "npm:^5.14.2"
peerDependencies:
"@types/react": ">= 16.8.0 < 20.0.0"
react: ">= 16.8.0 < 20.0.0"
react-dom: ">= 16.8.0 < 20.0.0"
search-insights: ">= 1 < 3"
peerDependenciesMeta:
"@types/react":
optional: true
react:
optional: true
react-dom:
optional: true
search-insights:
optional: true
checksum: 10c0/5e737a5d9ef1daae1cd93e89870214c1ab0c36a3a2193e898db044bcc5d9de59f85228b2360ec0e8f10cdac7fd2fe3c6ec8a05d943ee7e17d6c1cef2e6e9ff2d
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/aix-ppc64@npm:0.25.8"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/android-arm64@npm:0.25.8"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/android-arm@npm:0.25.8"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/android-x64@npm:0.25.8"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/darwin-arm64@npm:0.25.8"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/darwin-x64@npm:0.25.8"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/freebsd-arm64@npm:0.25.8"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/freebsd-x64@npm:0.25.8"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-arm64@npm:0.25.8"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-arm@npm:0.25.8"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-ia32@npm:0.25.8"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-loong64@npm:0.25.8"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-mips64el@npm:0.25.8"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-ppc64@npm:0.25.8"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-riscv64@npm:0.25.8"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-s390x@npm:0.25.8"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/linux-x64@npm:0.25.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/netbsd-arm64@npm:0.25.8"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/netbsd-x64@npm:0.25.8"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/openbsd-arm64@npm:0.25.8"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/openbsd-x64@npm:0.25.8"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/openharmony-arm64@npm:0.25.8"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/sunos-x64@npm:0.25.8"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/win32-arm64@npm:0.25.8"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/win32-ia32@npm:0.25.8"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.8":
version: 0.25.8
resolution: "@esbuild/win32-x64@npm:0.25.8"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@iconify/types@npm:^2.0.0":
version: 2.0.0
resolution: "@iconify/types@npm:2.0.0"
checksum: 10c0/65a3be43500c7ccacf360e136d00e1717f050b7b91da644e94370256ac66f582d59212bdb30d00788aab4fc078262e91c95b805d1808d654b72f6d2072a7e4b2
languageName: node
linkType: hard
"@iconify/utils@npm:^2.3.0":
version: 2.3.0
resolution: "@iconify/utils@npm:2.3.0"
dependencies:
"@antfu/install-pkg": "npm:^1.0.0"
"@antfu/utils": "npm:^8.1.0"
"@iconify/types": "npm:^2.0.0"
debug: "npm:^4.4.0"
globals: "npm:^15.14.0"
kolorist: "npm:^1.8.0"
local-pkg: "npm:^1.0.0"
mlly: "npm:^1.7.4"
checksum: 10c0/926013852cd9d09b8501ee0f3f7d40386dc5ed1cb904869d6502f5ee1a64aee5664e9c00da49d700528d26c4a51ea0cac4f046c4eb281d0f8d54fc5df2f3fd0d
languageName: node
linkType: hard
"@iconify/vue@npm:^5.0.0":
version: 5.0.0
resolution: "@iconify/vue@npm:5.0.0"
dependencies:
"@iconify/types": "npm:^2.0.0"
peerDependencies:
vue: ">=3"
checksum: 10c0/363133a77bf697c4cebda2af776ca6fce312d15742a5ed6a2114d79d032814b15f04bcc1cec51cee31256f1a62dc64b0dbbcfe4e341692cb2dca64f0561fa1c0
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.4
resolution: "@jridgewell/sourcemap-codec@npm:1.5.4"
checksum: 10c0/c5aab3e6362a8dd94ad80ab90845730c825fc4c8d9cf07ebca7a2eb8a832d155d62558800fc41d42785f989ddbb21db6df004d1786e8ecb65e428ab8dff71309
languageName: node
linkType: hard
"@lit-labs/ssr-dom-shim@npm:^1.4.0":
version: 1.4.0
resolution: "@lit-labs/ssr-dom-shim@npm:1.4.0"
checksum: 10c0/eb8b4c6ed83db48e2f2c8c038f88e0ac302214918e5c1209458cb82a35ce27ce586100c5692885b2c5520f6941b2c3512f26c4d7b7dd48f13f17f1668553395a
languageName: node
linkType: hard
"@lit/reactive-element@npm:^2.1.0":
version: 2.1.1
resolution: "@lit/reactive-element@npm:2.1.1"
dependencies:
"@lit-labs/ssr-dom-shim": "npm:^1.4.0"
checksum: 10c0/200d72c3d1bb8babc88123f3684e52cf490ec20cc7974002d666b092afa18e4a7c1ca15883c84c0b8671361a9875905eb18c1f03d20ecbbbaefdaec6e0c7c4eb
languageName: node
linkType: hard
"@mdit-vue/plugin-component@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-component@npm:2.1.4"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/0d3f7bfe989bbe7e0ac61dc4e2441bd4b1912add6ca1d18bcadab129b8abed67f8213ff84d6e2ba3ace2ce5e2e65575a1ef4d70e1e1fa4b38bc84cd5b345a5f7
languageName: node
linkType: hard
"@mdit-vue/plugin-frontmatter@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-frontmatter@npm:2.1.4"
dependencies:
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
gray-matter: "npm:^4.0.3"
markdown-it: "npm:^14.1.0"
checksum: 10c0/e60f05f8fb33769fcc7d9f66f5a6f189c6e1fd875ebfbe126a79d8525e6a9639d5e37f9df146003b66e7a5c8a6825c542536412762c61e37225b4754e0b16add
languageName: node
linkType: hard
"@mdit-vue/plugin-headers@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-headers@npm:2.1.4"
dependencies:
"@mdit-vue/shared": "npm:2.1.4"
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/de0b934ae2b2b9d245ccd63c65e34065255ea6f39e8c43a9d90186dad6b621df629b9df434ab0718820d88e3f20f0cb2f541f1d2674b63f33d7bd00116f2271d
languageName: node
linkType: hard
"@mdit-vue/plugin-sfc@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-sfc@npm:2.1.4"
dependencies:
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/35fb5f268c2c3cc1448d407d58b8b527db843d962b235480dd889cbdf196831bd1bdabe43def4b335a3971414eb2151ef5f2912f44472f0da819733a25f21725
languageName: node
linkType: hard
"@mdit-vue/plugin-title@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-title@npm:2.1.4"
dependencies:
"@mdit-vue/shared": "npm:2.1.4"
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/374d721ea9e696feb1e3ef63ef4eee33ae36207632d2d9c403c5ef7480d1a7db7e990c621cb936302367e355c03a011e30024006c5c6ae98b9d2b7cba0257fb3
languageName: node
linkType: hard
"@mdit-vue/plugin-toc@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/plugin-toc@npm:2.1.4"
dependencies:
"@mdit-vue/shared": "npm:2.1.4"
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/79ea488967b50c253bd1998e03367841707216916f77272d4c21c10bf043272a4d8d529a5df32eb51c104f72370e0b07bc48fc808a9801e5420aa7851fcfd0b0
languageName: node
linkType: hard
"@mdit-vue/shared@npm:2.1.4, @mdit-vue/shared@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/shared@npm:2.1.4"
dependencies:
"@mdit-vue/types": "npm:2.1.4"
"@types/markdown-it": "npm:^14.1.2"
markdown-it: "npm:^14.1.0"
checksum: 10c0/999fd4eb5f71d0249eaeb8b377bac77b51faf57d990631e54991111be1b73dfe61cd0c427ab2bc2b332a60a4e70da8f918b974759197b8a848635433403143f6
languageName: node
linkType: hard
"@mdit-vue/types@npm:2.1.4, @mdit-vue/types@npm:^2.1.4":
version: 2.1.4
resolution: "@mdit-vue/types@npm:2.1.4"
checksum: 10c0/e3b4a43b6893e7963589a7f922d731a34ca74018c59b9d6f6acef32bc5def485f449e1e5c6b6909eb5f7b73a8d04dfc440d0f8f26e12508ad7d74240d87ef29c
languageName: node
linkType: hard
"@mdit/helper@npm:0.22.1":
version: 0.22.1
resolution: "@mdit/helper@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/2f3b4171651342d4090439e4e17b92187d23df76198b0109aef7f49f42d95a5d7fda598a088026a382b2af3d1370772082ea5648fa083ae52254401d3b145ba2
languageName: node
linkType: hard
"@mdit/plugin-alert@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-alert@npm:0.22.2"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/90360d714eaffd5f25680655d0895cb446df911abe562e2e6743093cc375f0ee106d2383cd8af2f58131bcac3f33fa7986f9bbf0419a57dccd7cef5df5b829ef
languageName: node
linkType: hard
"@mdit/plugin-attrs@npm:^0.23.1":
version: 0.23.1
resolution: "@mdit/plugin-attrs@npm:0.23.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/dfe2a40e487ab17e52a73c2434222a919ada92d612a8cbdd58c6ba24f832b076fb24f8d10208b9b3292888f0c88f7c74d683dfba45bd1bba367d47250273305d
languageName: node
linkType: hard
"@mdit/plugin-container@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-container@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/4c8f64a74d19e6dd59328a992a6dc3237c6b8d03c677fa2dccaf6f0cc6908a63e286ddfc81b9265a38a94860a83e30f26567a7f87a2ea0c5cfdb109ce2cf7e67
languageName: node
linkType: hard
"@mdit/plugin-figure@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-figure@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/17e55c2ba8f3fe6baacd13c28a124b0e9d4f4cdecb0f9529c589196283ea466b55f5108a5a043fa8ce44eda57c290243597cd7e3565d70b373fca7dc2b411b7e
languageName: node
linkType: hard
"@mdit/plugin-footnote@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-footnote@npm:0.22.2"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
checksum: 10c0/5ee30cd8cd96b70b4f8ba1686d29946da8ff9eee54bc3a6ecf92792b8a6537490da81a28cc5549d1fdba00b7476c45262478f42608624021544d040474b96b02
languageName: node
linkType: hard
"@mdit/plugin-img-lazyload@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-img-lazyload@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/78e1053f1368e7f110a7268000c2ed2bdc1c79f157f63457f2a3d2d12dac0653d8b5b0e1e5bf5ded003d22b729248212eeb595ca1ca34c23f9e67a5b6eedce90
languageName: node
linkType: hard
"@mdit/plugin-img-mark@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-img-mark@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/3970ca3c2bd4c25af2a901d8f4ea31d9d88e049d67364a6f9ef385c95c96c587453da90db813f57d57f2a862d722159f3ca067b6575376d96b0527160e6620b7
languageName: node
linkType: hard
"@mdit/plugin-img-size@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-img-size@npm:0.22.2"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/2f0866b5206d5f7f12e8a36d0fcc90113b0295f90c7ea687e7fe178ba23ef78e66dc475ce04cc0cd24e4b2872ee412cf00bea8bf17ef078f348da39e9dffaafe
languageName: node
linkType: hard
"@mdit/plugin-include@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-include@npm:0.22.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
upath: "npm:^2.0.1"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/a4c55751dbf6dac776181db153e69d2b4b1a23666401d558e797e4acb6419deb81e70197e6f28b3125c19bd3b4db22815a72fcc3d29205436ec7044fe6f5bf2a
languageName: node
linkType: hard
"@mdit/plugin-katex-slim@npm:^0.23.1":
version: 0.23.1
resolution: "@mdit/plugin-katex-slim@npm:0.23.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@mdit/plugin-tex": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
katex: ^0.16.9
markdown-it: ^14.1.0
peerDependenciesMeta:
katex:
optional: true
markdown-it:
optional: true
checksum: 10c0/8b4423bd818da13cb76e065ecd38002922be52130b0c3b3117f81544c1727f41109879fc5b629eaa63638300efb172cec26aa3512976df81ffbd0587aa95aabd
languageName: node
linkType: hard
"@mdit/plugin-mark@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-mark@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/bb63772e70a432a1320419ef681f3cde8377833045cd3740984f187c93f1d458df13add9ad1436b196e74a830b66ad6bdd6909b29fa4c5b037de872a74cf6cf3
languageName: node
linkType: hard
"@mdit/plugin-mathjax-slim@npm:^0.23.1":
version: 0.23.1
resolution: "@mdit/plugin-mathjax-slim@npm:0.23.1"
dependencies:
"@mdit/plugin-tex": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
upath: "npm:^2.0.1"
peerDependencies:
markdown-it: ^14.1.0
mathjax-full: ^3.2.2
peerDependenciesMeta:
markdown-it:
optional: true
mathjax-full:
optional: true
checksum: 10c0/2890808031881299e7d9e5eb4fd243d42ec5c17e529afd1e371827a290146b5a93eac9e0392c465f34c0cdff35204599c48c760f2413f840ac16c00290c471ad
languageName: node
linkType: hard
"@mdit/plugin-plantuml@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-plantuml@npm:0.22.2"
dependencies:
"@mdit/plugin-uml": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/c88f1cbc6d42787479ca4366ad0ba04e9cada0d1e192b27904920ef22f6bcab596369ee40f175f7d03615d04d8bfcb41a63bde703123d02f800be0250702753b
languageName: node
linkType: hard
"@mdit/plugin-sub@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-sub@npm:0.22.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/1030adaf9e79d57fc38ca29a0804edd07d77d80a14b5ce99ade7be5fd5d3050b2664d9d70aaafdf96149d926766dff2ba716459743ab78892db0560afc00c631
languageName: node
linkType: hard
"@mdit/plugin-sup@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-sup@npm:0.22.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/596d6a64fe02bbfaf13ef807a7e33f22ed99d92766abcf1bc4d78d11cd65faf1e34e5db535739d79d7c22d217b329772bdfd341121b6fe28dc1eb4a31175f3ca
languageName: node
linkType: hard
"@mdit/plugin-tab@npm:^0.22.2":
version: 0.22.2
resolution: "@mdit/plugin-tab@npm:0.22.2"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/96fd1a789ebc7f5b398a151c8fb01f9c598e8412c5d2506a708025c7d531c308b68225c8d47d19cdd5dad37963a65cca1ea65ab5670adf9bc202a618416a323a
languageName: node
linkType: hard
"@mdit/plugin-tasklist@npm:^0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-tasklist@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/a96ff15525e19d96d8ad4477e903c55ea5393f6d8f62dbb1d5166463c06b3deebab824d50410229ffbe0a31f03a72c05d95e99791baef9d3601108e39e7f817d
languageName: node
linkType: hard
"@mdit/plugin-tex@npm:0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-tex@npm:0.22.1"
dependencies:
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/e17cb9753d1f39d7dc75529f460cd387cdbd158bb5f1280091cd0253d250297dc4e6e3a7295fab123ffd5cf7145b6f6f9ac722bd5e7953b496f189b26ca536e1
languageName: node
linkType: hard
"@mdit/plugin-uml@npm:0.22.1":
version: 0.22.1
resolution: "@mdit/plugin-uml@npm:0.22.1"
dependencies:
"@mdit/helper": "npm:0.22.1"
"@types/markdown-it": "npm:^14.1.2"
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
checksum: 10c0/9e965ef553f95d0e60846ce01c7a41f9e400453620da287acf19d79f71746483d209615fbd465e864f7b5726eb3054607975f0e80a5c66ebadcf49d8d2de8b02
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/agent@npm:3.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
languageName: node
linkType: hard
"@npmcli/fs@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/fs@npm:4.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
languageName: node
linkType: hard
"@pengzhanbo/utils@npm:^2.1.0":
version: 2.1.0
resolution: "@pengzhanbo/utils@npm:2.1.0"
checksum: 10c0/ce3eaa60e263a479af45a966515efa4bb2fb2e917499848bf13433f0462836352390cf74b59a0a544332893dc1a80fbdc72117985a33dc8d32b651b47fc147d6
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@pkgr/core@npm:^0.2.9":
version: 0.2.9
resolution: "@pkgr/core@npm:0.2.9"
checksum: 10c0/ac8e4e8138b1a7a4ac6282873aef7389c352f1f8b577b4850778f5182e4a39a5241facbe48361fec817f56d02b51691b383010843fb08b34a8e8ea3614688fd5
languageName: node
linkType: hard