raydb 0.2.0

High-performance embedded graph database
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!

__metadata:
  version: 8
  cacheKey: 10c0

"@emnapi/core@npm:^1.5.0, @emnapi/core@npm:^1.7.1":
  version: 1.8.1
  resolution: "@emnapi/core@npm:1.8.1"
  dependencies:
    "@emnapi/wasi-threads": "npm:1.1.0"
    tslib: "npm:^2.4.0"
  checksum: 10c0/2c242f4b49779bac403e1cbcc98edacdb1c8ad36562408ba9a20663824669e930bc8493be46a2522d9dc946b8d96cd7073970bae914928c7671b5221c85b432e
  languageName: node
  linkType: hard

"@emnapi/runtime@npm:^1.5.0, @emnapi/runtime@npm:^1.7.1":
  version: 1.8.1
  resolution: "@emnapi/runtime@npm:1.8.1"
  dependencies:
    tslib: "npm:^2.4.0"
  checksum: 10c0/f4929d75e37aafb24da77d2f58816761fe3f826aad2e37fa6d4421dac9060cbd5098eea1ac3c9ecc4526b89deb58153852fa432f87021dc57863f2ff726d713f
  languageName: node
  linkType: hard

"@emnapi/wasi-threads@npm:1.1.0":
  version: 1.1.0
  resolution: "@emnapi/wasi-threads@npm:1.1.0"
  dependencies:
    tslib: "npm:^2.4.0"
  checksum: 10c0/e6d54bf2b1e64cdd83d2916411e44e579b6ae35d5def0dea61a3c452d9921373044dff32a8b8473ae60c80692bdc39323e98b96a3f3d87ba6886b24dd0ef7ca1
  languageName: node
  linkType: hard

"@inquirer/ansi@npm:^2.0.3":
  version: 2.0.3
  resolution: "@inquirer/ansi@npm:2.0.3"
  checksum: 10c0/69c87abf39878fc68b07f9171249434dc055b95dbcafe81dc6f273aaa59343ce192e50063e7438ad6f3792d059731558f1537124f8230f219676108df3d3396c
  languageName: node
  linkType: hard

"@inquirer/checkbox@npm:^5.0.4":
  version: 5.0.4
  resolution: "@inquirer/checkbox@npm:5.0.4"
  dependencies:
    "@inquirer/ansi": "npm:^2.0.3"
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/figures": "npm:^2.0.3"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/d09b1091b7cfc08d44e2307217a45ae43595c65c04a07411bab3400402627cc8d7c5b4eb248f177c7bbe6e024df560a2c042ee8a5884338638b10af3908f27c4
  languageName: node
  linkType: hard

"@inquirer/confirm@npm:^6.0.4":
  version: 6.0.4
  resolution: "@inquirer/confirm@npm:6.0.4"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/9396088b293f1c2a1272df96acbc6c83a33aa78f1063ee4f0bef86a5bbef3888ed68ad6698bca8132edfbe85584137a1783573ba11a611b965e507a349c9cf2f
  languageName: node
  linkType: hard

"@inquirer/core@npm:^11.1.1":
  version: 11.1.1
  resolution: "@inquirer/core@npm:11.1.1"
  dependencies:
    "@inquirer/ansi": "npm:^2.0.3"
    "@inquirer/figures": "npm:^2.0.3"
    "@inquirer/type": "npm:^4.0.3"
    cli-width: "npm:^4.1.0"
    mute-stream: "npm:^3.0.0"
    signal-exit: "npm:^4.1.0"
    wrap-ansi: "npm:^9.0.2"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/e8d909c32400092a66a51aea8f8f808372e4fc95635342c07b2a5957e487b1ececa8024341240d538056c63f31414b9a18710860473973685de733f029be4b36
  languageName: node
  linkType: hard

"@inquirer/editor@npm:^5.0.4":
  version: 5.0.4
  resolution: "@inquirer/editor@npm:5.0.4"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/external-editor": "npm:^2.0.3"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/012ef227807da127f1f585b069b28b88730398f555e76dfd74b70d5dfc377a0943bc5acd81db2efaa1b6f999f45222acb6ac6f0b2b05505f695f62a69c05d249
  languageName: node
  linkType: hard

"@inquirer/expand@npm:^5.0.4":
  version: 5.0.4
  resolution: "@inquirer/expand@npm:5.0.4"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/f4083ca5233a808606ccd5428873254dc67040139b5cb96a4e1823979a341b637e4187b99a81dc57a271275d7a4b2bf232de85c7df9f5389a9a1ea9fe44939e8
  languageName: node
  linkType: hard

"@inquirer/external-editor@npm:^2.0.3":
  version: 2.0.3
  resolution: "@inquirer/external-editor@npm:2.0.3"
  dependencies:
    chardet: "npm:^2.1.1"
    iconv-lite: "npm:^0.7.2"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/b1de771f92b2b7f61f9174b704159ba57b8490281b1d18060abbabde065425d6dbde6e061d319b117f541db3821ec1dc80089530effa234490b2aa06ea13976c
  languageName: node
  linkType: hard

"@inquirer/figures@npm:^2.0.3":
  version: 2.0.3
  resolution: "@inquirer/figures@npm:2.0.3"
  checksum: 10c0/f316119e5cefd4d2d03dead3658b7ff02d34e0a41caa47f72a3ca095c1046ea252a62e9343f5847677ad6ddc490509fd7c10e845458d5af8936130ffb3a4810c
  languageName: node
  linkType: hard

"@inquirer/input@npm:^5.0.4":
  version: 5.0.4
  resolution: "@inquirer/input@npm:5.0.4"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/4d4df38f7a983e98856bcf376fb5d2e94dcf35392275a60590c4ec2cca90f54b02bc5244351572e69aa9ecdfcb9ecddbe4d1ee51d79b610514b4be3a1d7a86fc
  languageName: node
  linkType: hard

"@inquirer/number@npm:^4.0.4":
  version: 4.0.4
  resolution: "@inquirer/number@npm:4.0.4"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/01476614fdf2b4f9d63bba3d6aabd41b2d6688563a927e4e9bcf1a3408d47448a78c16d67fdb625cc630318d3f2b0d2158c5eece259a291b7399dcef2706218f
  languageName: node
  linkType: hard

"@inquirer/password@npm:^5.0.4":
  version: 5.0.4
  resolution: "@inquirer/password@npm:5.0.4"
  dependencies:
    "@inquirer/ansi": "npm:^2.0.3"
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/d3b07d72f6b2097db54a41926922f0a542e8f9ba107137c0d59ac8932452bc81b94f16c8be395bbd8b27cf31bd0ebbd45ee807feb71b16bb21af8f68e712a3e5
  languageName: node
  linkType: hard

"@inquirer/prompts@npm:^8.0.0":
  version: 8.2.0
  resolution: "@inquirer/prompts@npm:8.2.0"
  dependencies:
    "@inquirer/checkbox": "npm:^5.0.4"
    "@inquirer/confirm": "npm:^6.0.4"
    "@inquirer/editor": "npm:^5.0.4"
    "@inquirer/expand": "npm:^5.0.4"
    "@inquirer/input": "npm:^5.0.4"
    "@inquirer/number": "npm:^4.0.4"
    "@inquirer/password": "npm:^5.0.4"
    "@inquirer/rawlist": "npm:^5.2.0"
    "@inquirer/search": "npm:^4.1.0"
    "@inquirer/select": "npm:^5.0.4"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/f39a385298fb82994dfc21436e26da61c308952ad0538f4038110f3eb20113bcb0f6601068286b10d8ba53c62a28e706f338af80df86db47393a518d644ebb2d
  languageName: node
  linkType: hard

"@inquirer/rawlist@npm:^5.2.0":
  version: 5.2.0
  resolution: "@inquirer/rawlist@npm:5.2.0"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/e0cd116b89fce2dbd4b7d3842ec8a4bd0182532df0e45261dc4525e3a13d749fe5af49fb878cf6dc1e2a7876d436f6a0fc2a42ca574cdbdded780c270e043e8f
  languageName: node
  linkType: hard

"@inquirer/search@npm:^4.1.0":
  version: 4.1.0
  resolution: "@inquirer/search@npm:4.1.0"
  dependencies:
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/figures": "npm:^2.0.3"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/bdece740b9209058f8d56f26ac6d83b429f523ecda5a4e905f38c6ecaa3cac5671dce3bcd864a7f3db098456b6c630a634f249b8227e63e3ed1bf150273e4905
  languageName: node
  linkType: hard

"@inquirer/select@npm:^5.0.4":
  version: 5.0.4
  resolution: "@inquirer/select@npm:5.0.4"
  dependencies:
    "@inquirer/ansi": "npm:^2.0.3"
    "@inquirer/core": "npm:^11.1.1"
    "@inquirer/figures": "npm:^2.0.3"
    "@inquirer/type": "npm:^4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/85a776848ae58ee48a104704fabc195d0a52c5ac80216b252e71271e033cd8ff170eac20bc6763fd56bd8a6357a3c6a60ba85a3335526af4b654e1385da29496
  languageName: node
  linkType: hard

"@inquirer/type@npm:^4.0.3":
  version: 4.0.3
  resolution: "@inquirer/type@npm:4.0.3"
  peerDependencies:
    "@types/node": ">=18"
  peerDependenciesMeta:
    "@types/node":
      optional: true
  checksum: 10c0/98f893c986194085a9b31916efe231fb6d4a4f7c01a3e698aab6ef6177cffbc19e10d76131968837a23ef620ef62fb2285884049f8d6f0962a39d8c338840041
  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

"@mapbox/node-pre-gyp@npm:^2.0.0":
  version: 2.0.3
  resolution: "@mapbox/node-pre-gyp@npm:2.0.3"
  dependencies:
    consola: "npm:^3.2.3"
    detect-libc: "npm:^2.0.0"
    https-proxy-agent: "npm:^7.0.5"
    node-fetch: "npm:^2.6.7"
    nopt: "npm:^8.0.0"
    semver: "npm:^7.5.3"
    tar: "npm:^7.4.0"
  bin:
    node-pre-gyp: bin/node-pre-gyp
  checksum: 10c0/6243c60f0d7327772c679aad20f17bcbf771b362fb7fbf1ae6dcf8dd379bb852e5af26180ab1e987a75dffa7cd5445414dc47e2acbcfe820cb08374deebecbc3
  languageName: node
  linkType: hard

"@napi-rs/cli@npm:^3.2.0":
  version: 3.5.1
  resolution: "@napi-rs/cli@npm:3.5.1"
  dependencies:
    "@inquirer/prompts": "npm:^8.0.0"
    "@napi-rs/cross-toolchain": "npm:^1.0.3"
    "@napi-rs/wasm-tools": "npm:^1.0.1"
    "@octokit/rest": "npm:^22.0.1"
    clipanion: "npm:^4.0.0-rc.4"
    colorette: "npm:^2.0.20"
    emnapi: "npm:^1.7.1"
    es-toolkit: "npm:^1.41.0"
    js-yaml: "npm:^4.1.0"
    obug: "npm:^2.0.0"
    semver: "npm:^7.7.3"
    typanion: "npm:^3.14.0"
  peerDependencies:
    "@emnapi/runtime": ^1.7.1
  peerDependenciesMeta:
    "@emnapi/runtime":
      optional: true
  bin:
    napi: dist/cli.js
    napi-raw: cli.mjs
  checksum: 10c0/b67d057a052a28917c90653101dfcff9e7f60342b1120f4613d571533cf8080116d97d9825ad88d672c79a5165a0edf7aec4eb4db702464c0551ed48c1b81adf
  languageName: node
  linkType: hard

"@napi-rs/cross-toolchain@npm:^1.0.3":
  version: 1.0.3
  resolution: "@napi-rs/cross-toolchain@npm:1.0.3"
  dependencies:
    "@napi-rs/lzma": "npm:^1.4.5"
    "@napi-rs/tar": "npm:^1.1.0"
    debug: "npm:^4.4.1"
  peerDependencies:
    "@napi-rs/cross-toolchain-arm64-target-aarch64": ^1.0.3
    "@napi-rs/cross-toolchain-arm64-target-armv7": ^1.0.3
    "@napi-rs/cross-toolchain-arm64-target-ppc64le": ^1.0.3
    "@napi-rs/cross-toolchain-arm64-target-s390x": ^1.0.3
    "@napi-rs/cross-toolchain-arm64-target-x86_64": ^1.0.3
    "@napi-rs/cross-toolchain-x64-target-aarch64": ^1.0.3
    "@napi-rs/cross-toolchain-x64-target-armv7": ^1.0.3
    "@napi-rs/cross-toolchain-x64-target-ppc64le": ^1.0.3
    "@napi-rs/cross-toolchain-x64-target-s390x": ^1.0.3
    "@napi-rs/cross-toolchain-x64-target-x86_64": ^1.0.3
  peerDependenciesMeta:
    "@napi-rs/cross-toolchain-arm64-target-aarch64":
      optional: true
    "@napi-rs/cross-toolchain-arm64-target-armv7":
      optional: true
    "@napi-rs/cross-toolchain-arm64-target-ppc64le":
      optional: true
    "@napi-rs/cross-toolchain-arm64-target-s390x":
      optional: true
    "@napi-rs/cross-toolchain-arm64-target-x86_64":
      optional: true
    "@napi-rs/cross-toolchain-x64-target-aarch64":
      optional: true
    "@napi-rs/cross-toolchain-x64-target-armv7":
      optional: true
    "@napi-rs/cross-toolchain-x64-target-ppc64le":
      optional: true
    "@napi-rs/cross-toolchain-x64-target-s390x":
      optional: true
    "@napi-rs/cross-toolchain-x64-target-x86_64":
      optional: true
  checksum: 10c0/fcc7877c1e47ba6bf4801a4154240d3130703524b1fed17e736126ce58b53960872b9933f8434e3e86b4635e4c7fe881228be0d237210dd96c2087244523750f
  languageName: node
  linkType: hard

"@napi-rs/lzma-android-arm-eabi@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-android-arm-eabi@npm:1.4.5"
  conditions: os=android & cpu=arm
  languageName: node
  linkType: hard

"@napi-rs/lzma-android-arm64@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-android-arm64@npm:1.4.5"
  conditions: os=android & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/lzma-darwin-arm64@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-darwin-arm64@npm:1.4.5"
  conditions: os=darwin & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/lzma-darwin-x64@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-darwin-x64@npm:1.4.5"
  conditions: os=darwin & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/lzma-freebsd-x64@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-freebsd-x64@npm:1.4.5"
  conditions: os=freebsd & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.5"
  conditions: os=linux & cpu=arm
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-arm64-gnu@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-arm64-gnu@npm:1.4.5"
  conditions: os=linux & cpu=arm64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-arm64-musl@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-arm64-musl@npm:1.4.5"
  conditions: os=linux & cpu=arm64 & libc=musl
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.5"
  conditions: os=linux & cpu=ppc64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.5"
  conditions: os=linux & cpu=riscv64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-s390x-gnu@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-s390x-gnu@npm:1.4.5"
  conditions: os=linux & cpu=s390x & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-x64-gnu@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-x64-gnu@npm:1.4.5"
  conditions: os=linux & cpu=x64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/lzma-linux-x64-musl@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-linux-x64-musl@npm:1.4.5"
  conditions: os=linux & cpu=x64 & libc=musl
  languageName: node
  linkType: hard

"@napi-rs/lzma-wasm32-wasi@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-wasm32-wasi@npm:1.4.5"
  dependencies:
    "@napi-rs/wasm-runtime": "npm:^1.0.3"
  conditions: cpu=wasm32
  languageName: node
  linkType: hard

"@napi-rs/lzma-win32-arm64-msvc@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-win32-arm64-msvc@npm:1.4.5"
  conditions: os=win32 & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/lzma-win32-ia32-msvc@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-win32-ia32-msvc@npm:1.4.5"
  conditions: os=win32 & cpu=ia32
  languageName: node
  linkType: hard

"@napi-rs/lzma-win32-x64-msvc@npm:1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma-win32-x64-msvc@npm:1.4.5"
  conditions: os=win32 & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/lzma@npm:^1.4.5":
  version: 1.4.5
  resolution: "@napi-rs/lzma@npm:1.4.5"
  dependencies:
    "@napi-rs/lzma-android-arm-eabi": "npm:1.4.5"
    "@napi-rs/lzma-android-arm64": "npm:1.4.5"
    "@napi-rs/lzma-darwin-arm64": "npm:1.4.5"
    "@napi-rs/lzma-darwin-x64": "npm:1.4.5"
    "@napi-rs/lzma-freebsd-x64": "npm:1.4.5"
    "@napi-rs/lzma-linux-arm-gnueabihf": "npm:1.4.5"
    "@napi-rs/lzma-linux-arm64-gnu": "npm:1.4.5"
    "@napi-rs/lzma-linux-arm64-musl": "npm:1.4.5"
    "@napi-rs/lzma-linux-ppc64-gnu": "npm:1.4.5"
    "@napi-rs/lzma-linux-riscv64-gnu": "npm:1.4.5"
    "@napi-rs/lzma-linux-s390x-gnu": "npm:1.4.5"
    "@napi-rs/lzma-linux-x64-gnu": "npm:1.4.5"
    "@napi-rs/lzma-linux-x64-musl": "npm:1.4.5"
    "@napi-rs/lzma-wasm32-wasi": "npm:1.4.5"
    "@napi-rs/lzma-win32-arm64-msvc": "npm:1.4.5"
    "@napi-rs/lzma-win32-ia32-msvc": "npm:1.4.5"
    "@napi-rs/lzma-win32-x64-msvc": "npm:1.4.5"
  dependenciesMeta:
    "@napi-rs/lzma-android-arm-eabi":
      optional: true
    "@napi-rs/lzma-android-arm64":
      optional: true
    "@napi-rs/lzma-darwin-arm64":
      optional: true
    "@napi-rs/lzma-darwin-x64":
      optional: true
    "@napi-rs/lzma-freebsd-x64":
      optional: true
    "@napi-rs/lzma-linux-arm-gnueabihf":
      optional: true
    "@napi-rs/lzma-linux-arm64-gnu":
      optional: true
    "@napi-rs/lzma-linux-arm64-musl":
      optional: true
    "@napi-rs/lzma-linux-ppc64-gnu":
      optional: true
    "@napi-rs/lzma-linux-riscv64-gnu":
      optional: true
    "@napi-rs/lzma-linux-s390x-gnu":
      optional: true
    "@napi-rs/lzma-linux-x64-gnu":
      optional: true
    "@napi-rs/lzma-linux-x64-musl":
      optional: true
    "@napi-rs/lzma-wasm32-wasi":
      optional: true
    "@napi-rs/lzma-win32-arm64-msvc":
      optional: true
    "@napi-rs/lzma-win32-ia32-msvc":
      optional: true
    "@napi-rs/lzma-win32-x64-msvc":
      optional: true
  checksum: 10c0/df098c99f904b54541e3a34feeb5878c98a4abf1ababf1d301d903b99d98402fff5eda49e1dd103bb4bf44a9217a5e1b17fb30b74044416561f8fe02ca098ee3
  languageName: node
  linkType: hard

"@napi-rs/tar-android-arm-eabi@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-android-arm-eabi@npm:1.1.0"
  conditions: os=android & cpu=arm
  languageName: node
  linkType: hard

"@napi-rs/tar-android-arm64@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-android-arm64@npm:1.1.0"
  conditions: os=android & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/tar-darwin-arm64@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-darwin-arm64@npm:1.1.0"
  conditions: os=darwin & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/tar-darwin-x64@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-darwin-x64@npm:1.1.0"
  conditions: os=darwin & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/tar-freebsd-x64@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-freebsd-x64@npm:1.1.0"
  conditions: os=freebsd & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-arm-gnueabihf@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-arm-gnueabihf@npm:1.1.0"
  conditions: os=linux & cpu=arm
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-arm64-gnu@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-arm64-gnu@npm:1.1.0"
  conditions: os=linux & cpu=arm64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-arm64-musl@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-arm64-musl@npm:1.1.0"
  conditions: os=linux & cpu=arm64 & libc=musl
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-ppc64-gnu@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-ppc64-gnu@npm:1.1.0"
  conditions: os=linux & cpu=ppc64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-s390x-gnu@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-s390x-gnu@npm:1.1.0"
  conditions: os=linux & cpu=s390x & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-x64-gnu@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-x64-gnu@npm:1.1.0"
  conditions: os=linux & cpu=x64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/tar-linux-x64-musl@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-linux-x64-musl@npm:1.1.0"
  conditions: os=linux & cpu=x64 & libc=musl
  languageName: node
  linkType: hard

"@napi-rs/tar-wasm32-wasi@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-wasm32-wasi@npm:1.1.0"
  dependencies:
    "@napi-rs/wasm-runtime": "npm:^1.0.3"
  conditions: cpu=wasm32
  languageName: node
  linkType: hard

"@napi-rs/tar-win32-arm64-msvc@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-win32-arm64-msvc@npm:1.1.0"
  conditions: os=win32 & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/tar-win32-ia32-msvc@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-win32-ia32-msvc@npm:1.1.0"
  conditions: os=win32 & cpu=ia32
  languageName: node
  linkType: hard

"@napi-rs/tar-win32-x64-msvc@npm:1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar-win32-x64-msvc@npm:1.1.0"
  conditions: os=win32 & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/tar@npm:^1.1.0":
  version: 1.1.0
  resolution: "@napi-rs/tar@npm:1.1.0"
  dependencies:
    "@napi-rs/tar-android-arm-eabi": "npm:1.1.0"
    "@napi-rs/tar-android-arm64": "npm:1.1.0"
    "@napi-rs/tar-darwin-arm64": "npm:1.1.0"
    "@napi-rs/tar-darwin-x64": "npm:1.1.0"
    "@napi-rs/tar-freebsd-x64": "npm:1.1.0"
    "@napi-rs/tar-linux-arm-gnueabihf": "npm:1.1.0"
    "@napi-rs/tar-linux-arm64-gnu": "npm:1.1.0"
    "@napi-rs/tar-linux-arm64-musl": "npm:1.1.0"
    "@napi-rs/tar-linux-ppc64-gnu": "npm:1.1.0"
    "@napi-rs/tar-linux-s390x-gnu": "npm:1.1.0"
    "@napi-rs/tar-linux-x64-gnu": "npm:1.1.0"
    "@napi-rs/tar-linux-x64-musl": "npm:1.1.0"
    "@napi-rs/tar-wasm32-wasi": "npm:1.1.0"
    "@napi-rs/tar-win32-arm64-msvc": "npm:1.1.0"
    "@napi-rs/tar-win32-ia32-msvc": "npm:1.1.0"
    "@napi-rs/tar-win32-x64-msvc": "npm:1.1.0"
  dependenciesMeta:
    "@napi-rs/tar-android-arm-eabi":
      optional: true
    "@napi-rs/tar-android-arm64":
      optional: true
    "@napi-rs/tar-darwin-arm64":
      optional: true
    "@napi-rs/tar-darwin-x64":
      optional: true
    "@napi-rs/tar-freebsd-x64":
      optional: true
    "@napi-rs/tar-linux-arm-gnueabihf":
      optional: true
    "@napi-rs/tar-linux-arm64-gnu":
      optional: true
    "@napi-rs/tar-linux-arm64-musl":
      optional: true
    "@napi-rs/tar-linux-ppc64-gnu":
      optional: true
    "@napi-rs/tar-linux-s390x-gnu":
      optional: true
    "@napi-rs/tar-linux-x64-gnu":
      optional: true
    "@napi-rs/tar-linux-x64-musl":
      optional: true
    "@napi-rs/tar-wasm32-wasi":
      optional: true
    "@napi-rs/tar-win32-arm64-msvc":
      optional: true
    "@napi-rs/tar-win32-ia32-msvc":
      optional: true
    "@napi-rs/tar-win32-x64-msvc":
      optional: true
  checksum: 10c0/88a0ab081eacfa235266f14a0bc408b7581058b1f7e18b118c6f8e7012cca0dd91c5baf5de84e1d2eb8070386a7380aa4d8dedfc6f81e24ae9d0287ff50ae153
  languageName: node
  linkType: hard

"@napi-rs/wasm-runtime@npm:^1.0.3, @napi-rs/wasm-runtime@npm:^1.0.7, @napi-rs/wasm-runtime@npm:^1.1.1":
  version: 1.1.1
  resolution: "@napi-rs/wasm-runtime@npm:1.1.1"
  dependencies:
    "@emnapi/core": "npm:^1.7.1"
    "@emnapi/runtime": "npm:^1.7.1"
    "@tybys/wasm-util": "npm:^0.10.1"
  checksum: 10c0/04d57b67e80736e41fe44674a011878db0a8ad893f4d44abb9d3608debb7c174224cba2796ed5b0c1d367368159f3ca6be45f1c59222f70e32ddc880f803d447
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-android-arm-eabi@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-android-arm-eabi@npm:1.0.1"
  conditions: os=android & cpu=arm
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-android-arm64@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-android-arm64@npm:1.0.1"
  conditions: os=android & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-darwin-arm64@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-darwin-arm64@npm:1.0.1"
  conditions: os=darwin & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-darwin-x64@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-darwin-x64@npm:1.0.1"
  conditions: os=darwin & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-freebsd-x64@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-freebsd-x64@npm:1.0.1"
  conditions: os=freebsd & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-linux-arm64-gnu@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-linux-arm64-gnu@npm:1.0.1"
  conditions: os=linux & cpu=arm64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-linux-arm64-musl@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-linux-arm64-musl@npm:1.0.1"
  conditions: os=linux & cpu=arm64 & libc=musl
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-linux-x64-gnu@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-linux-x64-gnu@npm:1.0.1"
  conditions: os=linux & cpu=x64 & libc=glibc
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-linux-x64-musl@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-linux-x64-musl@npm:1.0.1"
  conditions: os=linux & cpu=x64 & libc=musl
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-wasm32-wasi@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-wasm32-wasi@npm:1.0.1"
  dependencies:
    "@napi-rs/wasm-runtime": "npm:^1.0.3"
  conditions: cpu=wasm32
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-win32-arm64-msvc@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-win32-arm64-msvc@npm:1.0.1"
  conditions: os=win32 & cpu=arm64
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-win32-ia32-msvc@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-win32-ia32-msvc@npm:1.0.1"
  conditions: os=win32 & cpu=ia32
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools-win32-x64-msvc@npm:1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools-win32-x64-msvc@npm:1.0.1"
  conditions: os=win32 & cpu=x64
  languageName: node
  linkType: hard

"@napi-rs/wasm-tools@npm:^1.0.1":
  version: 1.0.1
  resolution: "@napi-rs/wasm-tools@npm:1.0.1"
  dependencies:
    "@napi-rs/wasm-tools-android-arm-eabi": "npm:1.0.1"
    "@napi-rs/wasm-tools-android-arm64": "npm:1.0.1"
    "@napi-rs/wasm-tools-darwin-arm64": "npm:1.0.1"
    "@napi-rs/wasm-tools-darwin-x64": "npm:1.0.1"
    "@napi-rs/wasm-tools-freebsd-x64": "npm:1.0.1"
    "@napi-rs/wasm-tools-linux-arm64-gnu": "npm:1.0.1"
    "@napi-rs/wasm-tools-linux-arm64-musl": "npm:1.0.1"
    "@napi-rs/wasm-tools-linux-x64-gnu": "npm:1.0.1"
    "@napi-rs/wasm-tools-linux-x64-musl": "npm:1.0.1"
    "@napi-rs/wasm-tools-wasm32-wasi": "npm:1.0.1"
    "@napi-rs/wasm-tools-win32-arm64-msvc": "npm:1.0.1"
    "@napi-rs/wasm-tools-win32-ia32-msvc": "npm:1.0.1"
    "@napi-rs/wasm-tools-win32-x64-msvc": "npm:1.0.1"
  dependenciesMeta:
    "@napi-rs/wasm-tools-android-arm-eabi":
      optional: true
    "@napi-rs/wasm-tools-android-arm64":
      optional: true
    "@napi-rs/wasm-tools-darwin-arm64":
      optional: true
    "@napi-rs/wasm-tools-darwin-x64":
      optional: true
    "@napi-rs/wasm-tools-freebsd-x64":
      optional: true
    "@napi-rs/wasm-tools-linux-arm64-gnu":
      optional: true
    "@napi-rs/wasm-tools-linux-arm64-musl":
      optional: true
    "@napi-rs/wasm-tools-linux-x64-gnu":
      optional: true
    "@napi-rs/wasm-tools-linux-x64-musl":
      optional: true
    "@napi-rs/wasm-tools-wasm32-wasi":
      optional: true
    "@napi-rs/wasm-tools-win32-arm64-msvc":
      optional: true
    "@napi-rs/wasm-tools-win32-ia32-msvc":
      optional: true
    "@napi-rs/wasm-tools-win32-x64-msvc":
      optional: true
  checksum: 10c0/bee9258e0b16a2415acc57d9aa281fa50402b38f631aea28e3a8ecd16415cdfffade63313bca777e85c3a73b80cce899ac3dd35eba9104951d7da1eb28913122
  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

"@octokit/auth-token@npm:^6.0.0":
  version: 6.0.0
  resolution: "@octokit/auth-token@npm:6.0.0"
  checksum: 10c0/32ecc904c5f6f4e5d090bfcc679d70318690c0a0b5040cd9a25811ad9dcd44c33f2cf96b6dbee1cd56cf58fde28fb1819c01b58718aa5c971f79c822357cb5c0
  languageName: node
  linkType: hard

"@octokit/core@npm:^7.0.6":
  version: 7.0.6
  resolution: "@octokit/core@npm:7.0.6"
  dependencies:
    "@octokit/auth-token": "npm:^6.0.0"
    "@octokit/graphql": "npm:^9.0.3"
    "@octokit/request": "npm:^10.0.6"
    "@octokit/request-error": "npm:^7.0.2"
    "@octokit/types": "npm:^16.0.0"
    before-after-hook: "npm:^4.0.0"
    universal-user-agent: "npm:^7.0.0"
  checksum: 10c0/95a328ff7c7223d9eb4aa778c63171828514ae0e0f588d33beb81a4dc03bbeae055382f6060ce23c979ab46272409942ff2cf3172109999e48429c47055b1fbe
  languageName: node
  linkType: hard

"@octokit/endpoint@npm:^11.0.2":
  version: 11.0.2
  resolution: "@octokit/endpoint@npm:11.0.2"
  dependencies:
    "@octokit/types": "npm:^16.0.0"
    universal-user-agent: "npm:^7.0.2"
  checksum: 10c0/878ac12fbccff772968689b4744590677c5a3f12bebe31544832c84761bf1c6be521e8a3af07abffc9455a74dd4d1f350d714fc46fd7ce14a0a2b5f2d4e3a84c
  languageName: node
  linkType: hard

"@octokit/graphql@npm:^9.0.3":
  version: 9.0.3
  resolution: "@octokit/graphql@npm:9.0.3"
  dependencies:
    "@octokit/request": "npm:^10.0.6"
    "@octokit/types": "npm:^16.0.0"
    universal-user-agent: "npm:^7.0.0"
  checksum: 10c0/58588d3fb2834f64244fa5376ca7922a30117b001b621e141fab0d52806370803ab0c046ac99b120fa5f45b770f52a815157fb6ffc147fc6c1da4047c1f1af49
  languageName: node
  linkType: hard

"@octokit/openapi-types@npm:^27.0.0":
  version: 27.0.0
  resolution: "@octokit/openapi-types@npm:27.0.0"
  checksum: 10c0/602d1de033da180a2e982cdbd3646bd5b2e16ecf36b9955a0f23e37ae9e6cb086abb48ff2ae6f2de000fce03e8ae9051794611ae4a95a8f5f6fb63276e7b8e31
  languageName: node
  linkType: hard

"@octokit/plugin-paginate-rest@npm:^14.0.0":
  version: 14.0.0
  resolution: "@octokit/plugin-paginate-rest@npm:14.0.0"
  dependencies:
    "@octokit/types": "npm:^16.0.0"
  peerDependencies:
    "@octokit/core": ">=6"
  checksum: 10c0/841d79d4ccfe18fc809a4a67529b75c1dcdda13399bf4bf5b48ce7559c8b4b2cd422e3204bad4cbdea31c0cf0943521067415268e5bcfc615a3b813e058cad6b
  languageName: node
  linkType: hard

"@octokit/plugin-request-log@npm:^6.0.0":
  version: 6.0.0
  resolution: "@octokit/plugin-request-log@npm:6.0.0"
  peerDependencies:
    "@octokit/core": ">=6"
  checksum: 10c0/40e46ad0c77235742d0bf698ab4e17df1ae06e0d7824ffc5867ed71e27de860875adb73d89629b823fe8647459a8f262c26ed1aa6ee374873fa94095f37df0bb
  languageName: node
  linkType: hard

"@octokit/plugin-rest-endpoint-methods@npm:^17.0.0":
  version: 17.0.0
  resolution: "@octokit/plugin-rest-endpoint-methods@npm:17.0.0"
  dependencies:
    "@octokit/types": "npm:^16.0.0"
  peerDependencies:
    "@octokit/core": ">=6"
  checksum: 10c0/cf9984d7cf6a36ff7ff1b86078ae45fe246e3df10fcef0bccf20c8cfd27bf5e7d98dcb9cf5a7b56332b9c6fa30be28d159c2987d272a4758f77056903d94402f
  languageName: node
  linkType: hard

"@octokit/request-error@npm:^7.0.2":
  version: 7.1.0
  resolution: "@octokit/request-error@npm:7.1.0"
  dependencies:
    "@octokit/types": "npm:^16.0.0"
  checksum: 10c0/62b90a54545c36a30b5ffdda42e302c751be184d85b68ffc7f1242c51d7ca54dbd185b7d0027b491991776923a910c85c9c51269fe0d86111bac187507a5abc4
  languageName: node
  linkType: hard

"@octokit/request@npm:^10.0.6":
  version: 10.0.7
  resolution: "@octokit/request@npm:10.0.7"
  dependencies:
    "@octokit/endpoint": "npm:^11.0.2"
    "@octokit/request-error": "npm:^7.0.2"
    "@octokit/types": "npm:^16.0.0"
    fast-content-type-parse: "npm:^3.0.0"
    universal-user-agent: "npm:^7.0.2"
  checksum: 10c0/f789a75bf681b204ccd3d538921db662e148ed980005158d80ec4f16811e9ab73f375d4f30ef697852abd748a62f025060ea1b0c5198ec9c2e8d04e355064390
  languageName: node
  linkType: hard

"@octokit/rest@npm:^22.0.1":
  version: 22.0.1
  resolution: "@octokit/rest@npm:22.0.1"
  dependencies:
    "@octokit/core": "npm:^7.0.6"
    "@octokit/plugin-paginate-rest": "npm:^14.0.0"
    "@octokit/plugin-request-log": "npm:^6.0.0"
    "@octokit/plugin-rest-endpoint-methods": "npm:^17.0.0"
  checksum: 10c0/f3abd84e887cc837973214ce70720a9bba53f5575f40601c6122aa25206e9055d859c0388437f0a137f6cd0e4ff405e1b46b903475b0db32a17bada0c6513d5b
  languageName: node
  linkType: hard

"@octokit/types@npm:^16.0.0":
  version: 16.0.0
  resolution: "@octokit/types@npm:16.0.0"
  dependencies:
    "@octokit/openapi-types": "npm:^27.0.0"
  checksum: 10c0/b8d41098ba6fc194d13d641f9441347e3a3b96c0efabac0e14f57319340a2d4d1c8676e4cb37ab3062c5c323c617e790b0126916e9bf7b201b0cced0826f8ae2
  languageName: node
  linkType: hard

"@oxc-node/core-android-arm-eabi@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-android-arm-eabi@npm:0.0.35"
  conditions: os=android & cpu=arm
  languageName: node
  linkType: hard

"@oxc-node/core-android-arm64@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-android-arm64@npm:0.0.35"
  conditions: os=android & cpu=arm64
  languageName: node
  linkType: hard

"@oxc-node/core-darwin-arm64@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-darwin-arm64@npm:0.0.35"
  checksum: 10c0/7a87c90498f37b25c616a66a9557df915e1d54a297be1c47313e3daa3f56fa6428b76ad5eec3fa46e27fb937925d3eb5de7d790b13c3a8b04ec9aa1a499b1325
  conditions: os=darwin & cpu=arm64
  languageName: node
  linkType: hard

"@oxc-node/core-darwin-x64@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-darwin-x64@npm:0.0.35"
  conditions: os=darwin & cpu=x64
  languageName: node
  linkType: hard

"@oxc-node/core-freebsd-x64@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-freebsd-x64@npm:0.0.35"
  conditions: os=freebsd & cpu=x64
  languageName: node
  linkType: hard

"@oxc-node/core-linux-arm-gnueabihf@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-arm-gnueabihf@npm:0.0.35"
  conditions: os=linux & cpu=arm
  languageName: node
  linkType: hard

"@oxc-node/core-linux-arm64-gnu@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-arm64-gnu@npm:0.0.35"
  conditions: os=linux & cpu=arm64 & libc=glibc
  languageName: node
  linkType: hard

"@oxc-node/core-linux-arm64-musl@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-arm64-musl@npm:0.0.35"
  conditions: os=linux & cpu=arm64 & libc=musl
  languageName: node
  linkType: hard

"@oxc-node/core-linux-ppc64-gnu@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-ppc64-gnu@npm:0.0.35"
  conditions: os=linux & cpu=ppc64 & libc=glibc
  languageName: node
  linkType: hard

"@oxc-node/core-linux-s390x-gnu@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-s390x-gnu@npm:0.0.35"
  conditions: os=linux & cpu=s390x & libc=glibc
  languageName: node
  linkType: hard

"@oxc-node/core-linux-x64-gnu@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-x64-gnu@npm:0.0.35"
  conditions: os=linux & cpu=x64 & libc=glibc
  languageName: node
  linkType: hard

"@oxc-node/core-linux-x64-musl@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-linux-x64-musl@npm:0.0.35"
  conditions: os=linux & cpu=x64 & libc=musl
  languageName: node
  linkType: hard

"@oxc-node/core-openharmony-arm64@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-openharmony-arm64@npm:0.0.35"
  conditions: os=openharmony & cpu=arm64
  languageName: node
  linkType: hard

"@oxc-node/core-wasm32-wasi@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-wasm32-wasi@npm:0.0.35"
  dependencies:
    "@napi-rs/wasm-runtime": "npm:^1.0.7"
  conditions: cpu=wasm32
  languageName: node
  linkType: hard

"@oxc-node/core-win32-arm64-msvc@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-win32-arm64-msvc@npm:0.0.35"
  conditions: os=win32 & cpu=arm64
  languageName: node
  linkType: hard

"@oxc-node/core-win32-ia32-msvc@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-win32-ia32-msvc@npm:0.0.35"
  conditions: os=win32 & cpu=ia32
  languageName: node
  linkType: hard

"@oxc-node/core-win32-x64-msvc@npm:0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core-win32-x64-msvc@npm:0.0.35"
  conditions: os=win32 & cpu=x64
  languageName: node
  linkType: hard

"@oxc-node/core@npm:^0.0.35":
  version: 0.0.35
  resolution: "@oxc-node/core@npm:0.0.35"
  dependencies:
    "@oxc-node/core-android-arm-eabi": "npm:0.0.35"
    "@oxc-node/core-android-arm64": "npm:0.0.35"
    "@oxc-node/core-darwin-arm64": "npm:0.0.35"
    "@oxc-node/core-darwin-x64": "npm:0.0.35"
    "@oxc-node/core-freebsd-x64": "npm:0.0.35"
    "@oxc-node/core-linux-arm-gnueabihf": "npm:0.0.35"
    "@oxc-node/core-linux-arm64-gnu": "npm:0.0.35"
    "@oxc-node/core-linux-arm64-musl": "npm:0.0.35"
    "@oxc-node/core-linux-ppc64-gnu": "npm:0.0.35"
    "@oxc-node/core-linux-s390x-gnu": "npm:0.0.35"
    "@oxc-node/core-linux-x64-gnu": "npm:0.0.35"
    "@oxc-node/core-linux-x64-musl": "npm:0.0.35"
    "@oxc-node/core-openharmony-arm64": "npm:0.0.35"
    "@oxc-node/core-wasm32-wasi": "npm:0.0.35"
    "@oxc-node/core-win32-arm64-msvc": "npm:0.0.35"
    "@oxc-node/core-win32-ia32-msvc": "npm:0.0.35"
    "@oxc-node/core-win32-x64-msvc": "npm:0.0.35"
    pirates: "npm:^4.0.7"
  dependenciesMeta:
    "@oxc-node/core-android-arm-eabi":
      optional: true
    "@oxc-node/core-android-arm64":
      optional: true
    "@oxc-node/core-darwin-arm64":
      optional: true
    "@oxc-node/core-darwin-x64":
      optional: true
    "@oxc-node/core-freebsd-x64":
      optional: true
    "@oxc-node/core-linux-arm-gnueabihf":
      optional: true
    "@oxc-node/core-linux-arm64-gnu":
      optional: true
    "@oxc-node/core-linux-arm64-musl":
      optional: true
    "@oxc-node/core-linux-ppc64-gnu":
      optional: true
    "@oxc-node/core-linux-s390x-gnu":
      optional: true
    "@oxc-node/core-linux-x64-gnu":
      optional: true
    "@oxc-node/core-linux-x64-musl":
      optional: true
    "@oxc-node/core-openharmony-arm64":
      optional: true
    "@oxc-node/core-wasm32-wasi":
      optional: true
    "@oxc-node/core-win32-arm64-msvc":
      optional: true
    "@oxc-node/core-win32-ia32-msvc":
      optional: true
    "@oxc-node/core-win32-x64-msvc":
      optional: true
  checksum: 10c0/6328427d833c99b498f41b8dc58ed3503d17aabe66172a5aacce06c7e85377649aa6ac602dfa5dd8f8f01167b5fe428a65d751c40386eced495acbe9eb414e10
  languageName: node
  linkType: hard

"@oxlint/darwin-arm64@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/darwin-arm64@npm:1.39.0"
  conditions: os=darwin & cpu=arm64
  languageName: node
  linkType: hard

"@oxlint/darwin-x64@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/darwin-x64@npm:1.39.0"
  conditions: os=darwin & cpu=x64
  languageName: node
  linkType: hard

"@oxlint/linux-arm64-gnu@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/linux-arm64-gnu@npm:1.39.0"
  conditions: os=linux & cpu=arm64 & libc=glibc
  languageName: node
  linkType: hard

"@oxlint/linux-arm64-musl@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/linux-arm64-musl@npm:1.39.0"
  conditions: os=linux & cpu=arm64 & libc=musl
  languageName: node
  linkType: hard

"@oxlint/linux-x64-gnu@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/linux-x64-gnu@npm:1.39.0"
  conditions: os=linux & cpu=x64 & libc=glibc
  languageName: node
  linkType: hard

"@oxlint/linux-x64-musl@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/linux-x64-musl@npm:1.39.0"
  conditions: os=linux & cpu=x64 & libc=musl
  languageName: node
  linkType: hard

"@oxlint/win32-arm64@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/win32-arm64@npm:1.39.0"
  conditions: os=win32 & cpu=arm64
  languageName: node
  linkType: hard

"@oxlint/win32-x64@npm:1.39.0":
  version: 1.39.0
  resolution: "@oxlint/win32-x64@npm:1.39.0"
  conditions: os=win32 & cpu=x64
  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

"@ray-db/core-darwin-arm64@npm:0.1.7":
  version: 0.1.7
  resolution: "@ray-db/core-darwin-arm64@npm:0.1.7"
  conditions: os=darwin & cpu=arm64
  languageName: node
  linkType: hard

"@ray-db/core-darwin-x64@npm:0.1.7":
  version: 0.1.7
  resolution: "@ray-db/core-darwin-x64@npm:0.1.7"
  conditions: os=darwin & cpu=x64
  languageName: node
  linkType: hard

"@ray-db/core-linux-x64-gnu@npm:0.1.7":
  version: 0.1.7
  resolution: "@ray-db/core-linux-x64-gnu@npm:0.1.7"
  conditions: os=linux & cpu=x64 & libc=glibc
  languageName: node
  linkType: hard

"@ray-db/core-win32-x64-msvc@npm:0.1.7":
  version: 0.1.7
  resolution: "@ray-db/core-win32-x64-msvc@npm:0.1.7"
  conditions: os=win32 & cpu=x64
  languageName: node
  linkType: hard

"@ray-db/core@workspace:.":
  version: 0.0.0-use.local
  resolution: "@ray-db/core@workspace:."
  dependencies:
    "@emnapi/core": "npm:^1.5.0"
    "@emnapi/runtime": "npm:^1.5.0"
    "@napi-rs/cli": "npm:^3.2.0"
    "@napi-rs/wasm-runtime": "npm:^1.1.1"
    "@oxc-node/core": "npm:^0.0.35"
    "@oxc-node/core-darwin-arm64": "npm:0.0.35"
    "@ray-db/core-darwin-arm64": "npm:0.1.7"
    "@ray-db/core-darwin-x64": "npm:0.1.7"
    "@ray-db/core-linux-x64-gnu": "npm:0.1.7"
    "@ray-db/core-win32-x64-msvc": "npm:0.1.7"
    "@taplo/cli": "npm:^0.7.0"
    "@tybys/wasm-util": "npm:^0.10.0"
    ava: "npm:^6.4.1"
    chalk: "npm:^5.6.2"
    husky: "npm:^9.1.7"
    lint-staged: "npm:^16.1.6"
    npm-run-all2: "npm:^8.0.4"
    oxlint: "npm:^1.14.0"
    prettier: "npm:^3.6.2"
    tinybench: "npm:^6.0.0"
    typescript: "npm:^5.9.2"
  dependenciesMeta:
    "@ray-db/core-darwin-arm64":
      optional: true
    "@ray-db/core-darwin-x64":
      optional: true
    "@ray-db/core-linux-x64-gnu":
      optional: true
    "@ray-db/core-win32-x64-msvc":
      optional: true
  languageName: unknown
  linkType: soft

"@rollup/pluginutils@npm:^5.1.3":
  version: 5.3.0
  resolution: "@rollup/pluginutils@npm:5.3.0"
  dependencies:
    "@types/estree": "npm:^1.0.0"
    estree-walker: "npm:^2.0.2"
    picomatch: "npm:^4.0.2"
  peerDependencies:
    rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  peerDependenciesMeta:
    rollup:
      optional: true
  checksum: 10c0/001834bf62d7cf5bac424d2617c113f7f7d3b2bf3c1778cbcccb72cdc957b68989f8e7747c782c2b911f1dde8257f56f8ac1e779e29e74e638e3f1e2cac2bcd0
  languageName: node
  linkType: hard

"@sindresorhus/merge-streams@npm:^2.1.0":
  version: 2.3.0
  resolution: "@sindresorhus/merge-streams@npm:2.3.0"
  checksum: 10c0/69ee906f3125fb2c6bb6ec5cdd84e8827d93b49b3892bce8b62267116cc7e197b5cccf20c160a1d32c26014ecd14470a72a5e3ee37a58f1d6dadc0db1ccf3894
  languageName: node
  linkType: hard

"@taplo/cli@npm:^0.7.0":
  version: 0.7.0
  resolution: "@taplo/cli@npm:0.7.0"
  bin:
    taplo: dist/cli.js
  checksum: 10c0/c5a9a34502335731e405547fe24ba1a2f867fccdf8abe4d13e261e30fad6c18a2773a961981206166fde0c85b19accef40381c189c8c6ed4952c5b082c1d4996
  languageName: node
  linkType: hard

"@tybys/wasm-util@npm:^0.10.0, @tybys/wasm-util@npm:^0.10.1":
  version: 0.10.1
  resolution: "@tybys/wasm-util@npm:0.10.1"
  dependencies:
    tslib: "npm:^2.4.0"
  checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8
  languageName: node
  linkType: hard

"@types/estree@npm:^1.0.0":
  version: 1.0.8
  resolution: "@types/estree@npm:1.0.8"
  checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5
  languageName: node
  linkType: hard

"@vercel/nft@npm:^0.29.4":
  version: 0.29.4
  resolution: "@vercel/nft@npm:0.29.4"
  dependencies:
    "@mapbox/node-pre-gyp": "npm:^2.0.0"
    "@rollup/pluginutils": "npm:^5.1.3"
    acorn: "npm:^8.6.0"
    acorn-import-attributes: "npm:^1.9.5"
    async-sema: "npm:^3.1.1"
    bindings: "npm:^1.4.0"
    estree-walker: "npm:2.0.2"
    glob: "npm:^10.4.5"
    graceful-fs: "npm:^4.2.9"
    node-gyp-build: "npm:^4.2.2"
    picomatch: "npm:^4.0.2"
    resolve-from: "npm:^5.0.0"
  bin:
    nft: out/cli.js
  checksum: 10c0/84ba32c685f9d7c2c849b1e8c963d3b7eb09d122e666143ed97c3776f5b04a4745605e1d29fd81383f72b1d1c0d7d58e39f06dc92f021b5de079dfa4e8523574
  languageName: node
  linkType: hard

"abbrev@npm:^3.0.0":
  version: 3.0.1
  resolution: "abbrev@npm:3.0.1"
  checksum: 10c0/21ba8f574ea57a3106d6d35623f2c4a9111d9ee3e9a5be47baed46ec2457d2eac46e07a5c4a60186f88cb98abbe3e24f2d4cca70bc2b12f1692523e2209a9ccf
  languageName: node
  linkType: hard

"acorn-import-attributes@npm:^1.9.5":
  version: 1.9.5
  resolution: "acorn-import-attributes@npm:1.9.5"
  peerDependencies:
    acorn: ^8
  checksum: 10c0/5926eaaead2326d5a86f322ff1b617b0f698aa61dc719a5baa0e9d955c9885cc71febac3fb5bacff71bbf2c4f9c12db2056883c68c53eb962c048b952e1e013d
  languageName: node
  linkType: hard

"acorn-walk@npm:^8.3.4":
  version: 8.3.4
  resolution: "acorn-walk@npm:8.3.4"
  dependencies:
    acorn: "npm:^8.11.0"
  checksum: 10c0/76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62
  languageName: node
  linkType: hard

"acorn@npm:^8.11.0, acorn@npm:^8.15.0, acorn@npm:^8.6.0":
  version: 8.15.0
  resolution: "acorn@npm:8.15.0"
  bin:
    acorn: bin/acorn
  checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec
  languageName: node
  linkType: hard

"agent-base@npm:^7.1.2":
  version: 7.1.4
  resolution: "agent-base@npm:7.1.4"
  checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe
  languageName: node
  linkType: hard

"ansi-escapes@npm:^7.0.0":
  version: 7.2.0
  resolution: "ansi-escapes@npm:7.2.0"
  dependencies:
    environment: "npm:^1.0.0"
  checksum: 10c0/b562fd995761fa12f33be316950ee58fda489e125d331bcd9131434969a2eb55dc14e9405f214dcf4697c9d67c576ba0baf6e8f3d52058bf9222c97560b220cb
  languageName: node
  linkType: hard

"ansi-regex@npm:^5.0.1":
  version: 5.0.1
  resolution: "ansi-regex@npm:5.0.1"
  checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737
  languageName: node
  linkType: hard

"ansi-regex@npm:^6.0.1":
  version: 6.2.2
  resolution: "ansi-regex@npm:6.2.2"
  checksum: 10c0/05d4acb1d2f59ab2cf4b794339c7b168890d44dda4bf0ce01152a8da0213aca207802f930442ce8cd22d7a92f44907664aac6508904e75e038fa944d2601b30f
  languageName: node
  linkType: hard

"ansi-styles@npm:^4.0.0":
  version: 4.3.0
  resolution: "ansi-styles@npm:4.3.0"
  dependencies:
    color-convert: "npm:^2.0.1"
  checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041
  languageName: node
  linkType: hard

"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1":
  version: 6.2.3
  resolution: "ansi-styles@npm:6.2.3"
  checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868
  languageName: node
  linkType: hard

"argparse@npm:^1.0.7":
  version: 1.0.10
  resolution: "argparse@npm:1.0.10"
  dependencies:
    sprintf-js: "npm:~1.0.2"
  checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de
  languageName: node
  linkType: hard

"argparse@npm:^2.0.1":
  version: 2.0.1
  resolution: "argparse@npm:2.0.1"
  checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e
  languageName: node
  linkType: hard

"array-find-index@npm:^1.0.1":
  version: 1.0.2
  resolution: "array-find-index@npm:1.0.2"
  checksum: 10c0/86b9485c74ddd324feab807e10a6de3f9c1683856267236fac4bb4d4667ada6463e106db3f6c540ae6b720e0442b590ec701d13676df4c6af30ebf4da09b4f57
  languageName: node
  linkType: hard

"arrgv@npm:^1.0.2":
  version: 1.0.2
  resolution: "arrgv@npm:1.0.2"
  checksum: 10c0/7e6e782e6b749923ac7cbc4048ef6fe0844c4a59bfc8932fcd4c44566ba25eed46501f94dd7cf3c7297da88f3f599ca056bfb77d0c2484aebc92f04239f69124
  languageName: node
  linkType: hard

"arrify@npm:^3.0.0":
  version: 3.0.0
  resolution: "arrify@npm:3.0.0"
  checksum: 10c0/2e26601b8486f29780f1f70f7ac05a226755814c2a3ab42e196748f650af1dc310cd575a11dd4b9841c70fd7460b2dd2b8fe6fb7a3375878e2660706efafa58e
  languageName: node
  linkType: hard

"async-sema@npm:^3.1.1":
  version: 3.1.1
  resolution: "async-sema@npm:3.1.1"
  checksum: 10c0/a16da9f7f2dbdd00a969bf264b7ad331b59df3eac2b38f529b881c5cc8662594e68ed096d927ec2aabdc13454379cdc6d677bcdb0a3d2db338fb4be17957832b
  languageName: node
  linkType: hard

"ava@npm:^6.4.1":
  version: 6.4.1
  resolution: "ava@npm:6.4.1"
  dependencies:
    "@vercel/nft": "npm:^0.29.4"
    acorn: "npm:^8.15.0"
    acorn-walk: "npm:^8.3.4"
    ansi-styles: "npm:^6.2.1"
    arrgv: "npm:^1.0.2"
    arrify: "npm:^3.0.0"
    callsites: "npm:^4.2.0"
    cbor: "npm:^10.0.9"
    chalk: "npm:^5.4.1"
    chunkd: "npm:^2.0.1"
    ci-info: "npm:^4.3.0"
    ci-parallel-vars: "npm:^1.0.1"
    cli-truncate: "npm:^4.0.0"
    code-excerpt: "npm:^4.0.0"
    common-path-prefix: "npm:^3.0.0"
    concordance: "npm:^5.0.4"
    currently-unhandled: "npm:^0.4.1"
    debug: "npm:^4.4.1"
    emittery: "npm:^1.2.0"
    figures: "npm:^6.1.0"
    globby: "npm:^14.1.0"
    ignore-by-default: "npm:^2.1.0"
    indent-string: "npm:^5.0.0"
    is-plain-object: "npm:^5.0.0"
    is-promise: "npm:^4.0.0"
    matcher: "npm:^5.0.0"
    memoize: "npm:^10.1.0"
    ms: "npm:^2.1.3"
    p-map: "npm:^7.0.3"
    package-config: "npm:^5.0.0"
    picomatch: "npm:^4.0.2"
    plur: "npm:^5.1.0"
    pretty-ms: "npm:^9.2.0"
    resolve-cwd: "npm:^3.0.0"
    stack-utils: "npm:^2.0.6"
    strip-ansi: "npm:^7.1.0"
    supertap: "npm:^3.0.1"
    temp-dir: "npm:^3.0.0"
    write-file-atomic: "npm:^6.0.0"
    yargs: "npm:^17.7.2"
  peerDependencies:
    "@ava/typescript": "*"
  peerDependenciesMeta:
    "@ava/typescript":
      optional: true
  bin:
    ava: entrypoints/cli.mjs
  checksum: 10c0/21972df1031ef46533ea1b7daa132a5fc66841c8a221b6901163d12d2a1cac39bfd8a6d3459da7eb9344fa90fc02f237f2fe2aac8785d04bf5894fa43625be28
  languageName: node
  linkType: hard

"balanced-match@npm:^1.0.0":
  version: 1.0.2
  resolution: "balanced-match@npm:1.0.2"
  checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee
  languageName: node
  linkType: hard

"before-after-hook@npm:^4.0.0":
  version: 4.0.0
  resolution: "before-after-hook@npm:4.0.0"
  checksum: 10c0/9f8ae8d1b06142bcfb9ef6625226b5e50348bb11210f266660eddcf9734e0db6f9afc4cb48397ee3f5ac0a3728f3ae401cdeea88413f7bed748a71db84657be2
  languageName: node
  linkType: hard

"bindings@npm:^1.4.0":
  version: 1.5.0
  resolution: "bindings@npm:1.5.0"
  dependencies:
    file-uri-to-path: "npm:1.0.0"
  checksum: 10c0/3dab2491b4bb24124252a91e656803eac24292473e56554e35bbfe3cc1875332cfa77600c3bac7564049dc95075bf6fcc63a4609920ff2d64d0fe405fcf0d4ba
  languageName: node
  linkType: hard

"blueimp-md5@npm:^2.10.0":
  version: 2.19.0
  resolution: "blueimp-md5@npm:2.19.0"
  checksum: 10c0/85d04343537dd99a288c62450341dcce7380d3454c81f8e5a971ddd80307d6f9ef51b5b92ad7d48aaaa92fd6d3a1f6b2f4fada068faae646887f7bfabc17a346
  languageName: node
  linkType: hard

"brace-expansion@npm:^2.0.1":
  version: 2.0.2
  resolution: "brace-expansion@npm:2.0.2"
  dependencies:
    balanced-match: "npm:^1.0.0"
  checksum: 10c0/6d117a4c793488af86b83172deb6af143e94c17bc53b0b3cec259733923b4ca84679d506ac261f4ba3c7ed37c46018e2ff442f9ce453af8643ecd64f4a54e6cf
  languageName: node
  linkType: hard

"braces@npm:^3.0.3":
  version: 3.0.3
  resolution: "braces@npm:3.0.3"
  dependencies:
    fill-range: "npm:^7.1.1"
  checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04
  languageName: node
  linkType: hard

"callsites@npm:^4.2.0":
  version: 4.2.0
  resolution: "callsites@npm:4.2.0"
  checksum: 10c0/8f7e269ec09fc0946bb22d838a8bc7932e1909ab4a833b964749f4d0e8bdeaa1f253287c4f911f61781f09620b6925ccd19a5ea4897489c4e59442c660c312a3
  languageName: node
  linkType: hard

"cbor@npm:^10.0.9":
  version: 10.0.11
  resolution: "cbor@npm:10.0.11"
  dependencies:
    nofilter: "npm:^3.0.2"
  checksum: 10c0/0cb6fb3d5e98c7af4443200ff107049f6132b5649b8a0e586940ca811e5ab5622bf3d0a36f154f43107acfd9685cc462e6eac77876ef4c060bcec96c71b90d8a
  languageName: node
  linkType: hard

"chalk@npm:^5.4.1, chalk@npm:^5.6.2":
  version: 5.6.2
  resolution: "chalk@npm:5.6.2"
  checksum: 10c0/99a4b0f0e7991796b1e7e3f52dceb9137cae2a9dfc8fc0784a550dc4c558e15ab32ed70b14b21b52beb2679b4892b41a0aa44249bcb996f01e125d58477c6976
  languageName: node
  linkType: hard

"chardet@npm:^2.1.1":
  version: 2.1.1
  resolution: "chardet@npm:2.1.1"
  checksum: 10c0/d8391dd412338442b3de0d3a488aa9327f8bcf74b62b8723d6bd0b85c4084d50b731320e0a7c710edb1d44de75969995d2784b80e4c13b004a6c7a0db4c6e793
  languageName: node
  linkType: hard

"chownr@npm:^3.0.0":
  version: 3.0.0
  resolution: "chownr@npm:3.0.0"
  checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10
  languageName: node
  linkType: hard

"chunkd@npm:^2.0.1":
  version: 2.0.1
  resolution: "chunkd@npm:2.0.1"
  checksum: 10c0/4e0c5aac6048ecedfa4cd0a5f6c4f010c70a7b7645aeca7bfeb47cb0733c3463054f0ced3f2667b2e0e67edd75d68a8e05481b01115ba3f8a952a93026254504
  languageName: node
  linkType: hard

"ci-info@npm:^4.3.0":
  version: 4.3.1
  resolution: "ci-info@npm:4.3.1"
  checksum: 10c0/7dd82000f514d76ddfe7775e4cb0d66e5c638f5fa0e2a3be29557e898da0d32ac04f231217d414d07fb968b1fbc6d980ee17ddde0d2c516f23da9cfff608f6c1
  languageName: node
  linkType: hard

"ci-parallel-vars@npm:^1.0.1":
  version: 1.0.1
  resolution: "ci-parallel-vars@npm:1.0.1"
  checksum: 10c0/80952f699cbbc146092b077b4f3e28d085620eb4e6be37f069b4dbb3db0ee70e8eec3beef4ebe70ff60631e9fc743b9d0869678489f167442cac08b260e5ac08
  languageName: node
  linkType: hard

"cli-cursor@npm:^5.0.0":
  version: 5.0.0
  resolution: "cli-cursor@npm:5.0.0"
  dependencies:
    restore-cursor: "npm:^5.0.0"
  checksum: 10c0/7ec62f69b79f6734ab209a3e4dbdc8af7422d44d360a7cb1efa8a0887bbe466a6e625650c466fe4359aee44dbe2dc0b6994b583d40a05d0808a5cb193641d220
  languageName: node
  linkType: hard

"cli-truncate@npm:^4.0.0":
  version: 4.0.0
  resolution: "cli-truncate@npm:4.0.0"
  dependencies:
    slice-ansi: "npm:^5.0.0"
    string-width: "npm:^7.0.0"
  checksum: 10c0/d7f0b73e3d9b88cb496e6c086df7410b541b56a43d18ade6a573c9c18bd001b1c3fba1ad578f741a4218fdc794d042385f8ac02c25e1c295a2d8b9f3cb86eb4c
  languageName: node
  linkType: hard

"cli-truncate@npm:^5.0.0":
  version: 5.1.1
  resolution: "cli-truncate@npm:5.1.1"
  dependencies:
    slice-ansi: "npm:^7.1.0"
    string-width: "npm:^8.0.0"
  checksum: 10c0/3842920829a62f3e041ce39199050c42706c3c9c756a4efc8b86d464e102d1fa031d8b1b9b2e3bb36e1017c763558275472d031bdc884c1eff22a2f20e4f6b0a
  languageName: node
  linkType: hard

"cli-width@npm:^4.1.0":
  version: 4.1.0
  resolution: "cli-width@npm:4.1.0"
  checksum: 10c0/1fbd56413578f6117abcaf858903ba1f4ad78370a4032f916745fa2c7e390183a9d9029cf837df320b0fdce8137668e522f60a30a5f3d6529ff3872d265a955f
  languageName: node
  linkType: hard

"clipanion@npm:^4.0.0-rc.4":
  version: 4.0.0-rc.4
  resolution: "clipanion@npm:4.0.0-rc.4"
  dependencies:
    typanion: "npm:^3.8.0"
  peerDependencies:
    typanion: "*"
  checksum: 10c0/047b415b59a5e9777d00690fba563ccc850eca6bf27790a88d1deea3ecc8a89840ae9aed554ff284cc698a9f3f20256e43c25ff4a7c4c90a71e5e7d9dca61dd1
  languageName: node
  linkType: hard

"cliui@npm:^8.0.1":
  version: 8.0.1
  resolution: "cliui@npm:8.0.1"
  dependencies:
    string-width: "npm:^4.2.0"
    strip-ansi: "npm:^6.0.1"
    wrap-ansi: "npm:^7.0.0"
  checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5
  languageName: node
  linkType: hard

"code-excerpt@npm:^4.0.0":
  version: 4.0.0
  resolution: "code-excerpt@npm:4.0.0"
  dependencies:
    convert-to-spaces: "npm:^2.0.1"
  checksum: 10c0/b6c5a06e039cecd2ab6a0e10ee0831de8362107d1f298ca3558b5f9004cb8e0260b02dd6c07f57b9a0e346c76864d2873311ee1989809fdeb05bd5fbbadde773
  languageName: node
  linkType: hard

"color-convert@npm:^2.0.1":
  version: 2.0.1
  resolution: "color-convert@npm:2.0.1"
  dependencies:
    color-name: "npm:~1.1.4"
  checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7
  languageName: node
  linkType: hard

"color-name@npm:~1.1.4":
  version: 1.1.4
  resolution: "color-name@npm:1.1.4"
  checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95
  languageName: node
  linkType: hard

"colorette@npm:^2.0.20":
  version: 2.0.20
  resolution: "colorette@npm:2.0.20"
  checksum: 10c0/e94116ff33b0ff56f3b83b9ace895e5bf87c2a7a47b3401b8c3f3226e050d5ef76cf4072fb3325f9dc24d1698f9b730baf4e05eeaf861d74a1883073f4c98a40
  languageName: node
  linkType: hard

"commander@npm:^14.0.2":
  version: 14.0.2
  resolution: "commander@npm:14.0.2"
  checksum: 10c0/245abd1349dbad5414cb6517b7b5c584895c02c4f7836ff5395f301192b8566f9796c82d7bd6c92d07eba8775fe4df86602fca5d86d8d10bcc2aded1e21c2aeb
  languageName: node
  linkType: hard

"common-path-prefix@npm:^3.0.0":
  version: 3.0.0
  resolution: "common-path-prefix@npm:3.0.0"
  checksum: 10c0/c4a74294e1b1570f4a8ab435285d185a03976c323caa16359053e749db4fde44e3e6586c29cd051100335e11895767cbbd27ea389108e327d62f38daf4548fdb
  languageName: node
  linkType: hard

"concordance@npm:^5.0.4":
  version: 5.0.4
  resolution: "concordance@npm:5.0.4"
  dependencies:
    date-time: "npm:^3.1.0"
    esutils: "npm:^2.0.3"
    fast-diff: "npm:^1.2.0"
    js-string-escape: "npm:^1.0.1"
    lodash: "npm:^4.17.15"
    md5-hex: "npm:^3.0.1"
    semver: "npm:^7.3.2"
    well-known-symbols: "npm:^2.0.0"
  checksum: 10c0/59b440f330df3a7c9aa148ba588b3e99aed86acab225b4f01ffcea34ace4cf11f817e31153254e8f38ed48508998dad40b9106951a743c334d751f7ab21afb8a
  languageName: node
  linkType: hard

"consola@npm:^3.2.3":
  version: 3.4.2
  resolution: "consola@npm:3.4.2"
  checksum: 10c0/7cebe57ecf646ba74b300bcce23bff43034ed6fbec9f7e39c27cee1dc00df8a21cd336b466ad32e304ea70fba04ec9e890c200270de9a526ce021ba8a7e4c11a
  languageName: node
  linkType: hard

"convert-to-spaces@npm:^2.0.1":
  version: 2.0.1
  resolution: "convert-to-spaces@npm:2.0.1"
  checksum: 10c0/d90aa0e3b6a27f9d5265a8d32def3c5c855b3e823a9db1f26d772f8146d6b91020a2fdfd905ce8048a73fad3aaf836fef8188c67602c374405e2ae8396c4ac46
  languageName: node
  linkType: hard

"cross-spawn@npm:^7.0.6":
  version: 7.0.6
  resolution: "cross-spawn@npm:7.0.6"
  dependencies:
    path-key: "npm:^3.1.0"
    shebang-command: "npm:^2.0.0"
    which: "npm:^2.0.1"
  checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1
  languageName: node
  linkType: hard

"currently-unhandled@npm:^0.4.1":
  version: 0.4.1
  resolution: "currently-unhandled@npm:0.4.1"
  dependencies:
    array-find-index: "npm:^1.0.1"
  checksum: 10c0/32d197689ec32f035910202c1abb0dc6424dce01d7b51779c685119b380d98535c110ffff67a262fc7e367612a7dfd30d3d3055f9a6634b5a9dd1302de7ef11c
  languageName: node
  linkType: hard

"date-time@npm:^3.1.0":
  version: 3.1.0
  resolution: "date-time@npm:3.1.0"
  dependencies:
    time-zone: "npm:^1.0.0"
  checksum: 10c0/aa3e2e930d74b0b9e90f69de7a16d3376e30f21f1f4ce9a2311d8fec32d760e776efea752dafad0ce188187265235229013036202be053fc2d7979813bfb6ded
  languageName: node
  linkType: hard

"debug@npm:4, debug@npm:^4.4.1":
  version: 4.4.3
  resolution: "debug@npm:4.4.3"
  dependencies:
    ms: "npm:^2.1.3"
  peerDependenciesMeta:
    supports-color:
      optional: true
  checksum: 10c0/d79136ec6c83ecbefd0f6a5593da6a9c91ec4d7ddc4b54c883d6e71ec9accb5f67a1a5e96d00a328196b5b5c86d365e98d8a3a70856aaf16b4e7b1985e67f5a6
  languageName: node
  linkType: hard

"detect-libc@npm:^2.0.0":
  version: 2.1.2
  resolution: "detect-libc@npm:2.1.2"
  checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4
  languageName: node
  linkType: hard

"eastasianwidth@npm:^0.2.0":
  version: 0.2.0
  resolution: "eastasianwidth@npm:0.2.0"
  checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39
  languageName: node
  linkType: hard

"emittery@npm:^1.2.0":
  version: 1.2.0
  resolution: "emittery@npm:1.2.0"
  checksum: 10c0/3b16d67b2cbbc19d44fa124684039956dc94c376cefa8c7b29f4c934d9d370e6819f642cddaa343b83b1fc03fda554a1498e12f5861caf9d6f6394ff4b6e808a
  languageName: node
  linkType: hard

"emnapi@npm:^1.7.1":
  version: 1.8.1
  resolution: "emnapi@npm:1.8.1"
  peerDependencies:
    node-addon-api: ">= 6.1.0"
  peerDependenciesMeta:
    node-addon-api:
      optional: true
  checksum: 10c0/a95b167083ee485a84a06202b693f9588bc32080dba82b5752bf805959e97005db1e0cb82ebfe9f35129858b7325f7161c63e97dc78e756a8d6a61443eca79bc
  languageName: node
  linkType: hard

"emoji-regex@npm:^10.3.0":
  version: 10.6.0
  resolution: "emoji-regex@npm:10.6.0"
  checksum: 10c0/1e4aa097bb007301c3b4b1913879ae27327fdc48e93eeefefe3b87e495eb33c5af155300be951b4349ff6ac084f4403dc9eff970acba7c1c572d89396a9a32d7
  languageName: node
  linkType: hard

"emoji-regex@npm:^8.0.0":
  version: 8.0.0
  resolution: "emoji-regex@npm:8.0.0"
  checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010
  languageName: node
  linkType: hard

"emoji-regex@npm:^9.2.2":
  version: 9.2.2
  resolution: "emoji-regex@npm:9.2.2"
  checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639
  languageName: node
  linkType: hard

"environment@npm:^1.0.0":
  version: 1.1.0
  resolution: "environment@npm:1.1.0"
  checksum: 10c0/fb26434b0b581ab397039e51ff3c92b34924a98b2039dcb47e41b7bca577b9dbf134a8eadb364415c74464b682e2d3afe1a4c0eb9873dc44ea814c5d3103331d
  languageName: node
  linkType: hard

"es-toolkit@npm:^1.41.0":
  version: 1.43.0
  resolution: "es-toolkit@npm:1.43.0"
  dependenciesMeta:
    "@trivago/prettier-plugin-sort-imports@4.3.0":
      unplugged: true
    prettier-plugin-sort-re-exports@0.0.1:
      unplugged: true
  checksum: 10c0/bbff0b591fd01be9f37a34dad7964b590e4952fc594c1230140771687f05136caa6ab21962a6e9cde7c4b529a149171ed5179d6379d4a8e656dbf7e8d126999c
  languageName: node
  linkType: hard

"escalade@npm:^3.1.1":
  version: 3.2.0
  resolution: "escalade@npm:3.2.0"
  checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65
  languageName: node
  linkType: hard

"escape-string-regexp@npm:^2.0.0":
  version: 2.0.0
  resolution: "escape-string-regexp@npm:2.0.0"
  checksum: 10c0/2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507
  languageName: node
  linkType: hard

"escape-string-regexp@npm:^5.0.0":
  version: 5.0.0
  resolution: "escape-string-regexp@npm:5.0.0"
  checksum: 10c0/6366f474c6f37a802800a435232395e04e9885919873e382b157ab7e8f0feb8fed71497f84a6f6a81a49aab41815522f5839112bd38026d203aea0c91622df95
  languageName: node
  linkType: hard

"esprima@npm:^4.0.0":
  version: 4.0.1
  resolution: "esprima@npm:4.0.1"
  bin:
    esparse: ./bin/esparse.js
    esvalidate: ./bin/esvalidate.js
  checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3
  languageName: node
  linkType: hard

"estree-walker@npm:2.0.2, estree-walker@npm:^2.0.2":
  version: 2.0.2
  resolution: "estree-walker@npm:2.0.2"
  checksum: 10c0/53a6c54e2019b8c914dc395890153ffdc2322781acf4bd7d1a32d7aedc1710807bdcd866ac133903d5629ec601fbb50abe8c2e5553c7f5a0afdd9b6af6c945af
  languageName: node
  linkType: hard

"esutils@npm:^2.0.3":
  version: 2.0.3
  resolution: "esutils@npm:2.0.3"
  checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7
  languageName: node
  linkType: hard

"eventemitter3@npm:^5.0.1":
  version: 5.0.1
  resolution: "eventemitter3@npm:5.0.1"
  checksum: 10c0/4ba5c00c506e6c786b4d6262cfbce90ddc14c10d4667e5c83ae993c9de88aa856033994dd2b35b83e8dc1170e224e66a319fa80adc4c32adcd2379bbc75da814
  languageName: node
  linkType: hard

"fast-content-type-parse@npm:^3.0.0":
  version: 3.0.0
  resolution: "fast-content-type-parse@npm:3.0.0"
  checksum: 10c0/06251880c83b7118af3a5e66e8bcee60d44f48b39396fc60acc2b4630bd5f3e77552b999b5c8e943d45a818854360e5e97164c374ec4b562b4df96a2cdf2e188
  languageName: node
  linkType: hard

"fast-diff@npm:^1.2.0":
  version: 1.3.0
  resolution: "fast-diff@npm:1.3.0"
  checksum: 10c0/5c19af237edb5d5effda008c891a18a585f74bf12953be57923f17a3a4d0979565fc64dbc73b9e20926b9d895f5b690c618cbb969af0cf022e3222471220ad29
  languageName: node
  linkType: hard

"fast-glob@npm:^3.3.3":
  version: 3.3.3
  resolution: "fast-glob@npm:3.3.3"
  dependencies:
    "@nodelib/fs.stat": "npm:^2.0.2"
    "@nodelib/fs.walk": "npm:^1.2.3"
    glob-parent: "npm:^5.1.2"
    merge2: "npm:^1.3.0"
    micromatch: "npm:^4.0.8"
  checksum: 10c0/f6aaa141d0d3384cf73cbcdfc52f475ed293f6d5b65bfc5def368b09163a9f7e5ec2b3014d80f733c405f58e470ee0cc451c2937685045cddcdeaa24199c43fe
  languageName: node
  linkType: hard

"fastq@npm:^1.6.0":
  version: 1.20.1
  resolution: "fastq@npm:1.20.1"
  dependencies:
    reusify: "npm:^1.0.4"
  checksum: 10c0/e5dd725884decb1f11e5c822221d76136f239d0236f176fab80b7b8f9e7619ae57e6b4e5b73defc21e6b9ef99437ee7b545cff8e6c2c337819633712fa9d352e
  languageName: node
  linkType: hard

"figures@npm:^6.1.0":
  version: 6.1.0
  resolution: "figures@npm:6.1.0"
  dependencies:
    is-unicode-supported: "npm:^2.0.0"
  checksum: 10c0/9159df4264d62ef447a3931537de92f5012210cf5135c35c010df50a2169377581378149abfe1eb238bd6acbba1c0d547b1f18e0af6eee49e30363cedaffcfe4
  languageName: node
  linkType: hard

"file-uri-to-path@npm:1.0.0":
  version: 1.0.0
  resolution: "file-uri-to-path@npm:1.0.0"
  checksum: 10c0/3b545e3a341d322d368e880e1c204ef55f1d45cdea65f7efc6c6ce9e0c4d22d802d5629320eb779d006fe59624ac17b0e848d83cc5af7cd101f206cb704f5519
  languageName: node
  linkType: hard

"fill-range@npm:^7.1.1":
  version: 7.1.1
  resolution: "fill-range@npm:7.1.1"
  dependencies:
    to-regex-range: "npm:^5.0.1"
  checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018
  languageName: node
  linkType: hard

"find-up-simple@npm:^1.0.0":
  version: 1.0.1
  resolution: "find-up-simple@npm:1.0.1"
  checksum: 10c0/ad34de157b7db925d50ff78302fefb28e309f3bc947c93ffca0f9b0bccf9cf1a2dc57d805d5c94ec9fc60f4838f5dbdfd2a48ecd77c23015fa44c6dd5f60bc40
  languageName: node
  linkType: hard

"foreground-child@npm:^3.1.0":
  version: 3.3.1
  resolution: "foreground-child@npm:3.3.1"
  dependencies:
    cross-spawn: "npm:^7.0.6"
    signal-exit: "npm:^4.0.1"
  checksum: 10c0/8986e4af2430896e65bc2788d6679067294d6aee9545daefc84923a0a4b399ad9c7a3ea7bd8c0b2b80fdf4a92de4c69df3f628233ff3224260e9c1541a9e9ed3
  languageName: node
  linkType: hard

"get-caller-file@npm:^2.0.5":
  version: 2.0.5
  resolution: "get-caller-file@npm:2.0.5"
  checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde
  languageName: node
  linkType: hard

"get-east-asian-width@npm:^1.0.0, get-east-asian-width@npm:^1.3.0, get-east-asian-width@npm:^1.3.1":
  version: 1.4.0
  resolution: "get-east-asian-width@npm:1.4.0"
  checksum: 10c0/4e481d418e5a32061c36fbb90d1b225a254cc5b2df5f0b25da215dcd335a3c111f0c2023ffda43140727a9cafb62dac41d022da82c08f31083ee89f714ee3b83
  languageName: node
  linkType: hard

"glob-parent@npm:^5.1.2":
  version: 5.1.2
  resolution: "glob-parent@npm:5.1.2"
  dependencies:
    is-glob: "npm:^4.0.1"
  checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee
  languageName: node
  linkType: hard

"glob@npm:^10.4.5":
  version: 10.5.0
  resolution: "glob@npm:10.5.0"
  dependencies:
    foreground-child: "npm:^3.1.0"
    jackspeak: "npm:^3.1.2"
    minimatch: "npm:^9.0.4"
    minipass: "npm:^7.1.2"
    package-json-from-dist: "npm:^1.0.0"
    path-scurry: "npm:^1.11.1"
  bin:
    glob: dist/esm/bin.mjs
  checksum: 10c0/100705eddbde6323e7b35e1d1ac28bcb58322095bd8e63a7d0bef1a2cdafe0d0f7922a981b2b48369a4f8c1b077be5c171804534c3509dfe950dde15fbe6d828
  languageName: node
  linkType: hard

"globby@npm:^14.1.0":
  version: 14.1.0
  resolution: "globby@npm:14.1.0"
  dependencies:
    "@sindresorhus/merge-streams": "npm:^2.1.0"
    fast-glob: "npm:^3.3.3"
    ignore: "npm:^7.0.3"
    path-type: "npm:^6.0.0"
    slash: "npm:^5.1.0"
    unicorn-magic: "npm:^0.3.0"
  checksum: 10c0/527a1063c5958255969620c6fa4444a2b2e9278caddd571d46dfbfa307cb15977afb746e84d682ba5b6c94fc081e8997f80ff05dd235441ba1cb16f86153e58e
  languageName: node
  linkType: hard

"graceful-fs@npm:^4.2.9":
  version: 4.2.11
  resolution: "graceful-fs@npm:4.2.11"
  checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
  languageName: node
  linkType: hard

"https-proxy-agent@npm:^7.0.5":
  version: 7.0.6
  resolution: "https-proxy-agent@npm:7.0.6"
  dependencies:
    agent-base: "npm:^7.1.2"
    debug: "npm:4"
  checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac
  languageName: node
  linkType: hard

"husky@npm:^9.1.7":
  version: 9.1.7
  resolution: "husky@npm:9.1.7"
  bin:
    husky: bin.js
  checksum: 10c0/35bb110a71086c48906aa7cd3ed4913fb913823715359d65e32e0b964cb1e255593b0ae8014a5005c66a68e6fa66c38dcfa8056dbbdfb8b0187c0ffe7ee3a58f
  languageName: node
  linkType: hard

"iconv-lite@npm:^0.7.2":
  version: 0.7.2
  resolution: "iconv-lite@npm:0.7.2"
  dependencies:
    safer-buffer: "npm:>= 2.1.2 < 3.0.0"
  checksum: 10c0/3c228920f3bd307f56bf8363706a776f4a060eb042f131cd23855ceca962951b264d0997ab38a1ad340e1c5df8499ed26e1f4f0db6b2a2ad9befaff22f14b722
  languageName: node
  linkType: hard

"ignore-by-default@npm:^2.1.0":
  version: 2.1.0
  resolution: "ignore-by-default@npm:2.1.0"
  checksum: 10c0/3a6040dac25ed9da39dee73bf1634fdd1e15b0eb7cf52a6bdec81c310565782d8811c104ce40acb3d690d61c5fc38a91c78e6baee830a8a2232424dbc6b66981
  languageName: node
  linkType: hard

"ignore@npm:^7.0.3":
  version: 7.0.5
  resolution: "ignore@npm:7.0.5"
  checksum: 10c0/ae00db89fe873064a093b8999fe4cc284b13ef2a178636211842cceb650b9c3e390d3339191acb145d81ed5379d2074840cf0c33a20bdbd6f32821f79eb4ad5d
  languageName: node
  linkType: hard

"imurmurhash@npm:^0.1.4":
  version: 0.1.4
  resolution: "imurmurhash@npm:0.1.4"
  checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6
  languageName: node
  linkType: hard

"indent-string@npm:^5.0.0":
  version: 5.0.0
  resolution: "indent-string@npm:5.0.0"
  checksum: 10c0/8ee77b57d92e71745e133f6f444d6fa3ed503ad0e1bcd7e80c8da08b42375c07117128d670589725ed07b1978065803fa86318c309ba45415b7fe13e7f170220
  languageName: node
  linkType: hard

"irregular-plurals@npm:^3.3.0":
  version: 3.5.0
  resolution: "irregular-plurals@npm:3.5.0"
  checksum: 10c0/7c033bbe7325e5a6e0a26949cc6863b6ce273403d4cd5b93bd99b33fecb6605b0884097c4259c23ed0c52c2133bf7d1cdcdd7a0630e8c325161fe269b3447918
  languageName: node
  linkType: hard

"is-extglob@npm:^2.1.1":
  version: 2.1.1
  resolution: "is-extglob@npm:2.1.1"
  checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912
  languageName: node
  linkType: hard

"is-fullwidth-code-point@npm:^3.0.0":
  version: 3.0.0
  resolution: "is-fullwidth-code-point@npm:3.0.0"
  checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc
  languageName: node
  linkType: hard

"is-fullwidth-code-point@npm:^4.0.0":
  version: 4.0.0
  resolution: "is-fullwidth-code-point@npm:4.0.0"
  checksum: 10c0/df2a717e813567db0f659c306d61f2f804d480752526886954a2a3e2246c7745fd07a52b5fecf2b68caf0a6c79dcdace6166fdf29cc76ed9975cc334f0a018b8
  languageName: node
  linkType: hard

"is-fullwidth-code-point@npm:^5.0.0":
  version: 5.1.0
  resolution: "is-fullwidth-code-point@npm:5.1.0"
  dependencies:
    get-east-asian-width: "npm:^1.3.1"
  checksum: 10c0/c1172c2e417fb73470c56c431851681591f6a17233603a9e6f94b7ba870b2e8a5266506490573b607fb1081318589372034aa436aec07b465c2029c0bc7f07a4
  languageName: node
  linkType: hard

"is-glob@npm:^4.0.1":
  version: 4.0.3
  resolution: "is-glob@npm:4.0.3"
  dependencies:
    is-extglob: "npm:^2.1.1"
  checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a
  languageName: node
  linkType: hard

"is-number@npm:^7.0.0":
  version: 7.0.0
  resolution: "is-number@npm:7.0.0"
  checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811
  languageName: node
  linkType: hard

"is-plain-object@npm:^5.0.0":
  version: 5.0.0
  resolution: "is-plain-object@npm:5.0.0"
  checksum: 10c0/893e42bad832aae3511c71fd61c0bf61aa3a6d853061c62a307261842727d0d25f761ce9379f7ba7226d6179db2a3157efa918e7fe26360f3bf0842d9f28942c
  languageName: node
  linkType: hard

"is-promise@npm:^4.0.0":
  version: 4.0.0
  resolution: "is-promise@npm:4.0.0"
  checksum: 10c0/ebd5c672d73db781ab33ccb155fb9969d6028e37414d609b115cc534654c91ccd061821d5b987eefaa97cf4c62f0b909bb2f04db88306de26e91bfe8ddc01503
  languageName: node
  linkType: hard

"is-unicode-supported@npm:^2.0.0":
  version: 2.1.0
  resolution: "is-unicode-supported@npm:2.1.0"
  checksum: 10c0/a0f53e9a7c1fdbcf2d2ef6e40d4736fdffff1c9f8944c75e15425118ff3610172c87bf7bc6c34d3903b04be59790bb2212ddbe21ee65b5a97030fc50370545a5
  languageName: node
  linkType: hard

"isexe@npm:^2.0.0":
  version: 2.0.0
  resolution: "isexe@npm:2.0.0"
  checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d
  languageName: node
  linkType: hard

"isexe@npm:^3.1.1":
  version: 3.1.1
  resolution: "isexe@npm:3.1.1"
  checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7
  languageName: node
  linkType: hard

"jackspeak@npm:^3.1.2":
  version: 3.4.3
  resolution: "jackspeak@npm:3.4.3"
  dependencies:
    "@isaacs/cliui": "npm:^8.0.2"
    "@pkgjs/parseargs": "npm:^0.11.0"
  dependenciesMeta:
    "@pkgjs/parseargs":
      optional: true
  checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9
  languageName: node
  linkType: hard

"js-string-escape@npm:^1.0.1":
  version: 1.0.1
  resolution: "js-string-escape@npm:1.0.1"
  checksum: 10c0/2c33b9ff1ba6b84681c51ca0997e7d5a1639813c95d5b61cb7ad47e55cc28fa4a0b1935c3d218710d8e6bcee5d0cd8c44755231e3a4e45fc604534d9595a3628
  languageName: node
  linkType: hard

"js-yaml@npm:^3.14.1":
  version: 3.14.2
  resolution: "js-yaml@npm:3.14.2"
  dependencies:
    argparse: "npm:^1.0.7"
    esprima: "npm:^4.0.0"
  bin:
    js-yaml: bin/js-yaml.js
  checksum: 10c0/3261f25912f5dd76605e5993d0a126c2b6c346311885d3c483706cd722efe34f697ea0331f654ce27c00a42b426e524518ec89d65ed02ea47df8ad26dcc8ce69
  languageName: node
  linkType: hard

"js-yaml@npm:^4.1.0":
  version: 4.1.1
  resolution: "js-yaml@npm:4.1.1"
  dependencies:
    argparse: "npm:^2.0.1"
  bin:
    js-yaml: bin/js-yaml.js
  checksum: 10c0/561c7d7088c40a9bb53cc75becbfb1df6ae49b34b5e6e5a81744b14ae8667ec564ad2527709d1a6e7d5e5fa6d483aa0f373a50ad98d42fde368ec4a190d4fae7
  languageName: node
  linkType: hard

"json-parse-even-better-errors@npm:^4.0.0":
  version: 4.0.0
  resolution: "json-parse-even-better-errors@npm:4.0.0"
  checksum: 10c0/84cd9304a97e8fb2af3937bf53acb91c026aeb859703c332684e688ea60db27fc2242aa532a84e1883fdcbe1e5c1fb57c2bef38e312021aa1cd300defc63cf16
  languageName: node
  linkType: hard

"lint-staged@npm:^16.1.6":
  version: 16.2.7
  resolution: "lint-staged@npm:16.2.7"
  dependencies:
    commander: "npm:^14.0.2"
    listr2: "npm:^9.0.5"
    micromatch: "npm:^4.0.8"
    nano-spawn: "npm:^2.0.0"
    pidtree: "npm:^0.6.0"
    string-argv: "npm:^0.3.2"
    yaml: "npm:^2.8.1"
  bin:
    lint-staged: bin/lint-staged.js
  checksum: 10c0/9a677c21a8112d823ae5bc565ba2c9e7b803786f2a021c46827a55fe44ed59def96edb24fc99c06a2545cdbbf366022ad82addcb3bf60c712f3b98ef92069717
  languageName: node
  linkType: hard

"listr2@npm:^9.0.5":
  version: 9.0.5
  resolution: "listr2@npm:9.0.5"
  dependencies:
    cli-truncate: "npm:^5.0.0"
    colorette: "npm:^2.0.20"
    eventemitter3: "npm:^5.0.1"
    log-update: "npm:^6.1.0"
    rfdc: "npm:^1.4.1"
    wrap-ansi: "npm:^9.0.0"
  checksum: 10c0/46448d1ba0addc9d71aeafd05bb8e86ded9641ccad930ac302c2bd2ad71580375604743e18586fcb8f11906edf98e8e17fca75ba0759947bf275d381f68e311d
  languageName: node
  linkType: hard

"load-json-file@npm:^7.0.1":
  version: 7.0.1
  resolution: "load-json-file@npm:7.0.1"
  checksum: 10c0/7117459608a0b6329c7f78e6e1f541b3162dd901c29dd5af721fec8b270177d2e3d7999c971f344fff04daac368d052732e2c7146014bc84d15e0b636975e19a
  languageName: node
  linkType: hard

"lodash@npm:^4.17.15":
  version: 4.17.21
  resolution: "lodash@npm:4.17.21"
  checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c
  languageName: node
  linkType: hard

"log-update@npm:^6.1.0":
  version: 6.1.0
  resolution: "log-update@npm:6.1.0"
  dependencies:
    ansi-escapes: "npm:^7.0.0"
    cli-cursor: "npm:^5.0.0"
    slice-ansi: "npm:^7.1.0"
    strip-ansi: "npm:^7.1.0"
    wrap-ansi: "npm:^9.0.0"
  checksum: 10c0/4b350c0a83d7753fea34dcac6cd797d1dc9603291565de009baa4aa91c0447eab0d3815a05c8ec9ac04fdfffb43c82adcdb03ec1fceafd8518e1a8c1cff4ff89
  languageName: node
  linkType: hard

"lru-cache@npm:^10.2.0":
  version: 10.4.3
  resolution: "lru-cache@npm:10.4.3"
  checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb
  languageName: node
  linkType: hard

"matcher@npm:^5.0.0":
  version: 5.0.0
  resolution: "matcher@npm:5.0.0"
  dependencies:
    escape-string-regexp: "npm:^5.0.0"
  checksum: 10c0/eda5471fc9d5b7264d63c81727824adc3585ddb5cfdc5fce5a9b7c86f946ff181610735d330b1c37a84811df872d1290bf4e9401d2be2a414204343701144b18
  languageName: node
  linkType: hard

"md5-hex@npm:^3.0.1":
  version: 3.0.1
  resolution: "md5-hex@npm:3.0.1"
  dependencies:
    blueimp-md5: "npm:^2.10.0"
  checksum: 10c0/ee2b4d8da16b527b3a3fe4d7a96720f43afd07b46a82d49421208b5a126235fb75cfb30b80d4029514772c8844273f940bddfbf4155c787f968f3be4060d01e4
  languageName: node
  linkType: hard

"memoize@npm:^10.1.0":
  version: 10.2.0
  resolution: "memoize@npm:10.2.0"
  dependencies:
    mimic-function: "npm:^5.0.1"
  checksum: 10c0/8a5891f313e8db82bab4bb9694752aab40c11ce3bf9b8cc32228ebaf87e14e8109a23b37ceef32baadbedc09af2c4dd0d361a93e9e591bb0ed9e23f728e1ce9f
  languageName: node
  linkType: hard

"memorystream@npm:^0.3.1":
  version: 0.3.1
  resolution: "memorystream@npm:0.3.1"
  checksum: 10c0/4bd164657711d9747ff5edb0508b2944414da3464b7fe21ac5c67cf35bba975c4b446a0124bd0f9a8be54cfc18faf92e92bd77563a20328b1ccf2ff04e9f39b9
  languageName: node
  linkType: hard

"merge2@npm:^1.3.0":
  version: 1.4.1
  resolution: "merge2@npm:1.4.1"
  checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb
  languageName: node
  linkType: hard

"micromatch@npm:^4.0.8":
  version: 4.0.8
  resolution: "micromatch@npm:4.0.8"
  dependencies:
    braces: "npm:^3.0.3"
    picomatch: "npm:^2.3.1"
  checksum: 10c0/166fa6eb926b9553f32ef81f5f531d27b4ce7da60e5baf8c021d043b27a388fb95e46a8038d5045877881e673f8134122b59624d5cecbd16eb50a42e7a6b5ca8
  languageName: node
  linkType: hard

"mimic-function@npm:^5.0.0, mimic-function@npm:^5.0.1":
  version: 5.0.1
  resolution: "mimic-function@npm:5.0.1"
  checksum: 10c0/f3d9464dd1816ecf6bdf2aec6ba32c0728022039d992f178237d8e289b48764fee4131319e72eedd4f7f094e22ded0af836c3187a7edc4595d28dd74368fd81d
  languageName: node
  linkType: hard

"minimatch@npm:^9.0.4":
  version: 9.0.5
  resolution: "minimatch@npm:9.0.5"
  dependencies:
    brace-expansion: "npm:^2.0.1"
  checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed
  languageName: node
  linkType: hard

"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.4, minipass@npm:^7.1.2":
  version: 7.1.2
  resolution: "minipass@npm:7.1.2"
  checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557
  languageName: node
  linkType: hard

"minizlib@npm:^3.1.0":
  version: 3.1.0
  resolution: "minizlib@npm:3.1.0"
  dependencies:
    minipass: "npm:^7.1.2"
  checksum: 10c0/5aad75ab0090b8266069c9aabe582c021ae53eb33c6c691054a13a45db3b4f91a7fb1bd79151e6b4e9e9a86727b522527c0a06ec7d45206b745d54cd3097bcec
  languageName: node
  linkType: hard

"ms@npm:^2.1.3":
  version: 2.1.3
  resolution: "ms@npm:2.1.3"
  checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48
  languageName: node
  linkType: hard

"mute-stream@npm:^3.0.0":
  version: 3.0.0
  resolution: "mute-stream@npm:3.0.0"
  checksum: 10c0/12cdb36a101694c7a6b296632e6d93a30b74401873cf7507c88861441a090c71c77a58f213acadad03bc0c8fa186639dec99d68a14497773a8744320c136e701
  languageName: node
  linkType: hard

"nano-spawn@npm:^2.0.0":
  version: 2.0.0
  resolution: "nano-spawn@npm:2.0.0"
  checksum: 10c0/d00f9b5739f86e28cb732ffd774793e110810cded246b8393c75c4f22674af47f98ee37b19f022ada2d8c9425f800e841caa0662fbff4c0930a10e39339fb366
  languageName: node
  linkType: hard

"node-fetch@npm:^2.6.7":
  version: 2.7.0
  resolution: "node-fetch@npm:2.7.0"
  dependencies:
    whatwg-url: "npm:^5.0.0"
  peerDependencies:
    encoding: ^0.1.0
  peerDependenciesMeta:
    encoding:
      optional: true
  checksum: 10c0/b55786b6028208e6fbe594ccccc213cab67a72899c9234eb59dba51062a299ea853210fcf526998eaa2867b0963ad72338824450905679ff0fa304b8c5093ae8
  languageName: node
  linkType: hard

"node-gyp-build@npm:^4.2.2":
  version: 4.8.4
  resolution: "node-gyp-build@npm:4.8.4"
  bin:
    node-gyp-build: bin.js
    node-gyp-build-optional: optional.js
    node-gyp-build-test: build-test.js
  checksum: 10c0/444e189907ece2081fe60e75368784f7782cfddb554b60123743dfb89509df89f1f29c03bbfa16b3a3e0be3f48799a4783f487da6203245fa5bed239ba7407e1
  languageName: node
  linkType: hard

"nofilter@npm:^3.0.2":
  version: 3.1.0
  resolution: "nofilter@npm:3.1.0"
  checksum: 10c0/92459f3864a067b347032263f0b536223cbfc98153913b5dce350cb39c8470bc1813366e41993f22c33cc6400c0f392aa324a4b51e24c22040635c1cdb046499
  languageName: node
  linkType: hard

"nopt@npm:^8.0.0":
  version: 8.1.0
  resolution: "nopt@npm:8.1.0"
  dependencies:
    abbrev: "npm:^3.0.0"
  bin:
    nopt: bin/nopt.js
  checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef
  languageName: node
  linkType: hard

"npm-normalize-package-bin@npm:^4.0.0":
  version: 4.0.0
  resolution: "npm-normalize-package-bin@npm:4.0.0"
  checksum: 10c0/1fa546fcae8eaab61ef9b9ec237b6c795008da50e1883eae030e9e38bb04ffa32c5aabcef9a0400eae3dc1f91809bcfa85e437ce80d677c69b419d1d9cacf0ab
  languageName: node
  linkType: hard

"npm-run-all2@npm:^8.0.4":
  version: 8.0.4
  resolution: "npm-run-all2@npm:8.0.4"
  dependencies:
    ansi-styles: "npm:^6.2.1"
    cross-spawn: "npm:^7.0.6"
    memorystream: "npm:^0.3.1"
    picomatch: "npm:^4.0.2"
    pidtree: "npm:^0.6.0"
    read-package-json-fast: "npm:^4.0.0"
    shell-quote: "npm:^1.7.3"
    which: "npm:^5.0.0"
  bin:
    npm-run-all: bin/npm-run-all/index.js
    npm-run-all2: bin/npm-run-all/index.js
    run-p: bin/run-p/index.js
    run-s: bin/run-s/index.js
  checksum: 10c0/cfc2987df224e55456629301991b5fa6980cc644d1836fe3c22d74a4508512737d30389795b759bb5d659103e54281c59741ecdc0241cfd2615cb9bffbf7cceb
  languageName: node
  linkType: hard

"obug@npm:^2.0.0":
  version: 2.1.1
  resolution: "obug@npm:2.1.1"
  checksum: 10c0/59dccd7de72a047e08f8649e94c1015ec72f94eefb6ddb57fb4812c4b425a813bc7e7cd30c9aca20db3c59abc3c85cc7a62bb656a968741d770f4e8e02bc2e78
  languageName: node
  linkType: hard

"onetime@npm:^7.0.0":
  version: 7.0.0
  resolution: "onetime@npm:7.0.0"
  dependencies:
    mimic-function: "npm:^5.0.0"
  checksum: 10c0/5cb9179d74b63f52a196a2e7037ba2b9a893245a5532d3f44360012005c9cadb60851d56716ebff18a6f47129dab7168022445df47c2aff3b276d92585ed1221
  languageName: node
  linkType: hard

"oxlint@npm:^1.14.0":
  version: 1.39.0
  resolution: "oxlint@npm:1.39.0"
  dependencies:
    "@oxlint/darwin-arm64": "npm:1.39.0"
    "@oxlint/darwin-x64": "npm:1.39.0"
    "@oxlint/linux-arm64-gnu": "npm:1.39.0"
    "@oxlint/linux-arm64-musl": "npm:1.39.0"
    "@oxlint/linux-x64-gnu": "npm:1.39.0"
    "@oxlint/linux-x64-musl": "npm:1.39.0"
    "@oxlint/win32-arm64": "npm:1.39.0"
    "@oxlint/win32-x64": "npm:1.39.0"
  peerDependencies:
    oxlint-tsgolint: ">=0.10.0"
  dependenciesMeta:
    "@oxlint/darwin-arm64":
      optional: true
    "@oxlint/darwin-x64":
      optional: true
    "@oxlint/linux-arm64-gnu":
      optional: true
    "@oxlint/linux-arm64-musl":
      optional: true
    "@oxlint/linux-x64-gnu":
      optional: true
    "@oxlint/linux-x64-musl":
      optional: true
    "@oxlint/win32-arm64":
      optional: true
    "@oxlint/win32-x64":
      optional: true
  peerDependenciesMeta:
    oxlint-tsgolint:
      optional: true
  bin:
    oxlint: bin/oxlint
  checksum: 10c0/ef1e0d940332c6523228641b222d77bd67eae92185f8d82bda4feb26d0d195a62c73299896ddf87cceafb1e7089479128c0de416db05456b22c71badddfc0660
  languageName: node
  linkType: hard

"p-map@npm:^7.0.3":
  version: 7.0.4
  resolution: "p-map@npm:7.0.4"
  checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd
  languageName: node
  linkType: hard

"package-config@npm:^5.0.0":
  version: 5.0.0
  resolution: "package-config@npm:5.0.0"
  dependencies:
    find-up-simple: "npm:^1.0.0"
    load-json-file: "npm:^7.0.1"
  checksum: 10c0/f6c48930700b73a41d839bf2898b628d23665827488a4f34aed2d05e4a99d7a70a70ada115c3546765947fbc8accff94c0779da21ea084b25df47cb774531eeb
  languageName: node
  linkType: hard

"package-json-from-dist@npm:^1.0.0":
  version: 1.0.1
  resolution: "package-json-from-dist@npm:1.0.1"
  checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b
  languageName: node
  linkType: hard

"parse-ms@npm:^4.0.0":
  version: 4.0.0
  resolution: "parse-ms@npm:4.0.0"
  checksum: 10c0/a7900f4f1ebac24cbf5e9708c16fb2fd482517fad353aecd7aefb8c2ba2f85ce017913ccb8925d231770404780df46244ea6fec598b3bde6490882358b4d2d16
  languageName: node
  linkType: hard

"path-key@npm:^3.1.0":
  version: 3.1.1
  resolution: "path-key@npm:3.1.1"
  checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c
  languageName: node
  linkType: hard

"path-scurry@npm:^1.11.1":
  version: 1.11.1
  resolution: "path-scurry@npm:1.11.1"
  dependencies:
    lru-cache: "npm:^10.2.0"
    minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0"
  checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d
  languageName: node
  linkType: hard

"path-type@npm:^6.0.0":
  version: 6.0.0
  resolution: "path-type@npm:6.0.0"
  checksum: 10c0/55baa8b1187d6dc683d5a9cfcc866168d6adff58e5db91126795376d818eee46391e00b2a4d53e44d844c7524a7d96aa68cc68f4f3e500d3d069a39e6535481c
  languageName: node
  linkType: hard

"picomatch@npm:^2.3.1":
  version: 2.3.1
  resolution: "picomatch@npm:2.3.1"
  checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be
  languageName: node
  linkType: hard

"picomatch@npm:^4.0.2":
  version: 4.0.3
  resolution: "picomatch@npm:4.0.3"
  checksum: 10c0/9582c951e95eebee5434f59e426cddd228a7b97a0161a375aed4be244bd3fe8e3a31b846808ea14ef2c8a2527a6eeab7b3946a67d5979e81694654f939473ae2
  languageName: node
  linkType: hard

"pidtree@npm:^0.6.0":
  version: 0.6.0
  resolution: "pidtree@npm:0.6.0"
  bin:
    pidtree: bin/pidtree.js
  checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9
  languageName: node
  linkType: hard

"pirates@npm:^4.0.7":
  version: 4.0.7
  resolution: "pirates@npm:4.0.7"
  checksum: 10c0/a51f108dd811beb779d58a76864bbd49e239fa40c7984cd11596c75a121a8cc789f1c8971d8bb15f0dbf9d48b76c05bb62fcbce840f89b688c0fa64b37e8478a
  languageName: node
  linkType: hard

"plur@npm:^5.1.0":
  version: 5.1.0
  resolution: "plur@npm:5.1.0"
  dependencies:
    irregular-plurals: "npm:^3.3.0"
  checksum: 10c0/26bb622b8545fcfd47bbf56fbcca66c08693708a232e403fa3589e00003c56c14231ac57c7588ca5db83ef4be1f61383402c4ea954000768f779f8aef6eb6da8
  languageName: node
  linkType: hard

"prettier@npm:^3.6.2":
  version: 3.8.0
  resolution: "prettier@npm:3.8.0"
  bin:
    prettier: bin/prettier.cjs
  checksum: 10c0/8926e9c9941a293b76c2d799089d038e9f6d84fb37702fc370bedd03b3c70d7fcf507e2e3c4f151f222d81820a3b74cac5e692c955cfafe34dd0d02616ce8327
  languageName: node
  linkType: hard

"pretty-ms@npm:^9.2.0":
  version: 9.3.0
  resolution: "pretty-ms@npm:9.3.0"
  dependencies:
    parse-ms: "npm:^4.0.0"
  checksum: 10c0/555ea39a1de48a30601938aedb76d682871d33b6dee015281c37108921514b11e1792928b1648c2e5589acc73c8ef0fb5e585fb4c718e340a28b86799e90fb34
  languageName: node
  linkType: hard

"queue-microtask@npm:^1.2.2":
  version: 1.2.3
  resolution: "queue-microtask@npm:1.2.3"
  checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102
  languageName: node
  linkType: hard

"read-package-json-fast@npm:^4.0.0":
  version: 4.0.0
  resolution: "read-package-json-fast@npm:4.0.0"
  dependencies:
    json-parse-even-better-errors: "npm:^4.0.0"
    npm-normalize-package-bin: "npm:^4.0.0"
  checksum: 10c0/8a03509ae8e852f1abc4b109c1be571dd90ac9ea65d55433b2fe287e409113441a9b00df698288fe48aa786c1a2550569d47b5ab01ed83ada073d691d5aff582
  languageName: node
  linkType: hard

"require-directory@npm:^2.1.1":
  version: 2.1.1
  resolution: "require-directory@npm:2.1.1"
  checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99
  languageName: node
  linkType: hard

"resolve-cwd@npm:^3.0.0":
  version: 3.0.0
  resolution: "resolve-cwd@npm:3.0.0"
  dependencies:
    resolve-from: "npm:^5.0.0"
  checksum: 10c0/e608a3ebd15356264653c32d7ecbc8fd702f94c6703ea4ac2fb81d9c359180cba0ae2e6b71faa446631ed6145454d5a56b227efc33a2d40638ac13f8beb20ee4
  languageName: node
  linkType: hard

"resolve-from@npm:^5.0.0":
  version: 5.0.0
  resolution: "resolve-from@npm:5.0.0"
  checksum: 10c0/b21cb7f1fb746de8107b9febab60095187781137fd803e6a59a76d421444b1531b641bba5857f5dc011974d8a5c635d61cec49e6bd3b7fc20e01f0fafc4efbf2
  languageName: node
  linkType: hard

"restore-cursor@npm:^5.0.0":
  version: 5.1.0
  resolution: "restore-cursor@npm:5.1.0"
  dependencies:
    onetime: "npm:^7.0.0"
    signal-exit: "npm:^4.1.0"
  checksum: 10c0/c2ba89131eea791d1b25205bdfdc86699767e2b88dee2a590b1a6caa51737deac8bad0260a5ded2f7c074b7db2f3a626bcf1fcf3cdf35974cbeea5e2e6764f60
  languageName: node
  linkType: hard

"reusify@npm:^1.0.4":
  version: 1.1.0
  resolution: "reusify@npm:1.1.0"
  checksum: 10c0/4eff0d4a5f9383566c7d7ec437b671cc51b25963bd61bf127c3f3d3f68e44a026d99b8d2f1ad344afff8d278a8fe70a8ea092650a716d22287e8bef7126bb2fa
  languageName: node
  linkType: hard

"rfdc@npm:^1.4.1":
  version: 1.4.1
  resolution: "rfdc@npm:1.4.1"
  checksum: 10c0/4614e4292356cafade0b6031527eea9bc90f2372a22c012313be1dcc69a3b90c7338158b414539be863fa95bfcb2ddcd0587be696841af4e6679d85e62c060c7
  languageName: node
  linkType: hard

"run-parallel@npm:^1.1.9":
  version: 1.2.0
  resolution: "run-parallel@npm:1.2.0"
  dependencies:
    queue-microtask: "npm:^1.2.2"
  checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39
  languageName: node
  linkType: hard

"safer-buffer@npm:>= 2.1.2 < 3.0.0":
  version: 2.1.2
  resolution: "safer-buffer@npm:2.1.2"
  checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4
  languageName: node
  linkType: hard

"semver@npm:^7.3.2, semver@npm:^7.5.3, semver@npm:^7.7.3":
  version: 7.7.3
  resolution: "semver@npm:7.7.3"
  bin:
    semver: bin/semver.js
  checksum: 10c0/4afe5c986567db82f44c8c6faef8fe9df2a9b1d98098fc1721f57c696c4c21cebd572f297fc21002f81889492345b8470473bc6f4aff5fb032a6ea59ea2bc45e
  languageName: node
  linkType: hard

"serialize-error@npm:^7.0.1":
  version: 7.0.1
  resolution: "serialize-error@npm:7.0.1"
  dependencies:
    type-fest: "npm:^0.13.1"
  checksum: 10c0/7982937d578cd901276c8ab3e2c6ed8a4c174137730f1fb0402d005af209a0e84d04acc874e317c936724c7b5b26c7a96ff7e4b8d11a469f4924a4b0ea814c05
  languageName: node
  linkType: hard

"shebang-command@npm:^2.0.0":
  version: 2.0.0
  resolution: "shebang-command@npm:2.0.0"
  dependencies:
    shebang-regex: "npm:^3.0.0"
  checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e
  languageName: node
  linkType: hard

"shebang-regex@npm:^3.0.0":
  version: 3.0.0
  resolution: "shebang-regex@npm:3.0.0"
  checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690
  languageName: node
  linkType: hard

"shell-quote@npm:^1.7.3":
  version: 1.8.3
  resolution: "shell-quote@npm:1.8.3"
  checksum: 10c0/bee87c34e1e986cfb4c30846b8e6327d18874f10b535699866f368ade11ea4ee45433d97bf5eada22c4320c27df79c3a6a7eb1bf3ecfc47f2c997d9e5e2672fd
  languageName: node
  linkType: hard

"signal-exit@npm:^4.0.1, signal-exit@npm:^4.1.0":
  version: 4.1.0
  resolution: "signal-exit@npm:4.1.0"
  checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83
  languageName: node
  linkType: hard

"slash@npm:^5.1.0":
  version: 5.1.0
  resolution: "slash@npm:5.1.0"
  checksum: 10c0/eb48b815caf0bdc390d0519d41b9e0556a14380f6799c72ba35caf03544d501d18befdeeef074bc9c052acf69654bc9e0d79d7f1de0866284137a40805299eb3
  languageName: node
  linkType: hard

"slice-ansi@npm:^5.0.0":
  version: 5.0.0
  resolution: "slice-ansi@npm:5.0.0"
  dependencies:
    ansi-styles: "npm:^6.0.0"
    is-fullwidth-code-point: "npm:^4.0.0"
  checksum: 10c0/2d4d40b2a9d5cf4e8caae3f698fe24ae31a4d778701724f578e984dcb485ec8c49f0c04dab59c401821e80fcdfe89cace9c66693b0244e40ec485d72e543914f
  languageName: node
  linkType: hard

"slice-ansi@npm:^7.1.0":
  version: 7.1.2
  resolution: "slice-ansi@npm:7.1.2"
  dependencies:
    ansi-styles: "npm:^6.2.1"
    is-fullwidth-code-point: "npm:^5.0.0"
  checksum: 10c0/36742f2eb0c03e2e81a38ed14d13a64f7b732fe38c3faf96cce0599788a345011e840db35f1430ca606ea3f8db2abeb92a8d25c2753a819e3babaa10c2e289a2
  languageName: node
  linkType: hard

"sprintf-js@npm:~1.0.2":
  version: 1.0.3
  resolution: "sprintf-js@npm:1.0.3"
  checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb
  languageName: node
  linkType: hard

"stack-utils@npm:^2.0.6":
  version: 2.0.6
  resolution: "stack-utils@npm:2.0.6"
  dependencies:
    escape-string-regexp: "npm:^2.0.0"
  checksum: 10c0/651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a
  languageName: node
  linkType: hard

"string-argv@npm:^0.3.2":
  version: 0.3.2
  resolution: "string-argv@npm:0.3.2"
  checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82
  languageName: node
  linkType: hard

"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3":
  version: 4.2.3
  resolution: "string-width@npm:4.2.3"
  dependencies:
    emoji-regex: "npm:^8.0.0"
    is-fullwidth-code-point: "npm:^3.0.0"
    strip-ansi: "npm:^6.0.1"
  checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b
  languageName: node
  linkType: hard

"string-width@npm:^5.0.1, string-width@npm:^5.1.2":
  version: 5.1.2
  resolution: "string-width@npm:5.1.2"
  dependencies:
    eastasianwidth: "npm:^0.2.0"
    emoji-regex: "npm:^9.2.2"
    strip-ansi: "npm:^7.0.1"
  checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca
  languageName: node
  linkType: hard

"string-width@npm:^7.0.0":
  version: 7.2.0
  resolution: "string-width@npm:7.2.0"
  dependencies:
    emoji-regex: "npm:^10.3.0"
    get-east-asian-width: "npm:^1.0.0"
    strip-ansi: "npm:^7.1.0"
  checksum: 10c0/eb0430dd43f3199c7a46dcbf7a0b34539c76fe3aa62763d0b0655acdcbdf360b3f66f3d58ca25ba0205f42ea3491fa00f09426d3b7d3040e506878fc7664c9b9
  languageName: node
  linkType: hard

"string-width@npm:^8.0.0":
  version: 8.1.0
  resolution: "string-width@npm:8.1.0"
  dependencies:
    get-east-asian-width: "npm:^1.3.0"
    strip-ansi: "npm:^7.1.0"
  checksum: 10c0/749b5d0dab2532b4b6b801064230f4da850f57b3891287023117ab63a464ad79dd208f42f793458f48f3ad121fe2e1f01dd525ff27ead957ed9f205e27406593
  languageName: node
  linkType: hard

"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
  version: 6.0.1
  resolution: "strip-ansi@npm:6.0.1"
  dependencies:
    ansi-regex: "npm:^5.0.1"
  checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952
  languageName: node
  linkType: hard

"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0":
  version: 7.1.2
  resolution: "strip-ansi@npm:7.1.2"
  dependencies:
    ansi-regex: "npm:^6.0.1"
  checksum: 10c0/0d6d7a023de33368fd042aab0bf48f4f4077abdfd60e5393e73c7c411e85e1b3a83507c11af2e656188511475776215df9ca589b4da2295c9455cc399ce1858b
  languageName: node
  linkType: hard

"supertap@npm:^3.0.1":
  version: 3.0.1
  resolution: "supertap@npm:3.0.1"
  dependencies:
    indent-string: "npm:^5.0.0"
    js-yaml: "npm:^3.14.1"
    serialize-error: "npm:^7.0.1"
    strip-ansi: "npm:^7.0.1"
  checksum: 10c0/8164674f2e280cab875f0fef5bb36c15553c13e29697ff92f4e0d6bc62149f0303a89eee47535413ed145ea72e14a24d065bab233059d48a499ec5ebb4566b0f
  languageName: node
  linkType: hard

"tar@npm:^7.4.0":
  version: 7.5.2
  resolution: "tar@npm:7.5.2"
  dependencies:
    "@isaacs/fs-minipass": "npm:^4.0.0"
    chownr: "npm:^3.0.0"
    minipass: "npm:^7.1.2"
    minizlib: "npm:^3.1.0"
    yallist: "npm:^5.0.0"
  checksum: 10c0/a7d8b801139b52f93a7e34830db0de54c5aa45487c7cb551f6f3d44a112c67f1cb8ffdae856b05fd4f17b1749911f1c26f1e3a23bbe0279e17fd96077f13f467
  languageName: node
  linkType: hard

"temp-dir@npm:^3.0.0":
  version: 3.0.0
  resolution: "temp-dir@npm:3.0.0"
  checksum: 10c0/a86978a400984cd5f315b77ebf3fe53bb58c61f192278cafcb1f3fb32d584a21dc8e08b93171d7874b7cc972234d3455c467306cc1bfc4524b622e5ad3bfd671
  languageName: node
  linkType: hard

"time-zone@npm:^1.0.0":
  version: 1.0.0
  resolution: "time-zone@npm:1.0.0"
  checksum: 10c0/d00ebd885039109011b6e2423ebbf225160927333c2ade6d833e9cc4676db20759f1f3855fafde00d1bd668c243a6aa68938ce71fe58aab0d514e820d59c1d81
  languageName: node
  linkType: hard

"tinybench@npm:^6.0.0":
  version: 6.0.0
  resolution: "tinybench@npm:6.0.0"
  checksum: 10c0/d0a0c3cf53881d227e8bdeae03e456e6ad0abc362440d296efc8fa14f8acdb97304c547bae90db2c56d18697432f359785f5866ff35ed2ae539380f8f5d4eb19
  languageName: node
  linkType: hard

"to-regex-range@npm:^5.0.1":
  version: 5.0.1
  resolution: "to-regex-range@npm:5.0.1"
  dependencies:
    is-number: "npm:^7.0.0"
  checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892
  languageName: node
  linkType: hard

"tr46@npm:~0.0.3":
  version: 0.0.3
  resolution: "tr46@npm:0.0.3"
  checksum: 10c0/047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11
  languageName: node
  linkType: hard

"tslib@npm:^2.4.0":
  version: 2.8.1
  resolution: "tslib@npm:2.8.1"
  checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
  languageName: node
  linkType: hard

"typanion@npm:^3.14.0, typanion@npm:^3.8.0":
  version: 3.14.0
  resolution: "typanion@npm:3.14.0"
  checksum: 10c0/8b03b19844e6955bfd906c31dc781bae6d7f1fb3ce4fe24b7501557013d4889ae5cefe671dafe98d87ead0adceb8afcb8bc16df7dc0bd2b7331bac96f3a7cae2
  languageName: node
  linkType: hard

"type-fest@npm:^0.13.1":
  version: 0.13.1
  resolution: "type-fest@npm:0.13.1"
  checksum: 10c0/0c0fa07ae53d4e776cf4dac30d25ad799443e9eef9226f9fddbb69242db86b08584084a99885cfa5a9dfe4c063ebdc9aa7b69da348e735baede8d43f1aeae93b
  languageName: node
  linkType: hard

"typescript@npm:^5.9.2":
  version: 5.9.3
  resolution: "typescript@npm:5.9.3"
  bin:
    tsc: bin/tsc
    tsserver: bin/tsserver
  checksum: 10c0/6bd7552ce39f97e711db5aa048f6f9995b53f1c52f7d8667c1abdc1700c68a76a308f579cd309ce6b53646deb4e9a1be7c813a93baaf0a28ccd536a30270e1c5
  languageName: node
  linkType: hard

"typescript@patch:typescript@npm%3A^5.9.2#optional!builtin<compat/typescript>":
  version: 5.9.3
  resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin<compat/typescript>::version=5.9.3&hash=5786d5"
  bin:
    tsc: bin/tsc
    tsserver: bin/tsserver
  checksum: 10c0/ad09fdf7a756814dce65bc60c1657b40d44451346858eea230e10f2e95a289d9183b6e32e5c11e95acc0ccc214b4f36289dcad4bf1886b0adb84d711d336a430
  languageName: node
  linkType: hard

"unicorn-magic@npm:^0.3.0":
  version: 0.3.0
  resolution: "unicorn-magic@npm:0.3.0"
  checksum: 10c0/0a32a997d6c15f1c2a077a15b1c4ca6f268d574cf5b8975e778bb98e6f8db4ef4e86dfcae4e158cd4c7e38fb4dd383b93b13eefddc7f178dea13d3ac8a603271
  languageName: node
  linkType: hard

"universal-user-agent@npm:^7.0.0, universal-user-agent@npm:^7.0.2":
  version: 7.0.3
  resolution: "universal-user-agent@npm:7.0.3"
  checksum: 10c0/6043be466a9bb96c0ce82392842d9fddf4c37e296f7bacc2cb25f47123990eb436c82df824644f9c5070a94dbdb117be17f66d54599ab143648ec57ef93dbcc8
  languageName: node
  linkType: hard

"webidl-conversions@npm:^3.0.0":
  version: 3.0.1
  resolution: "webidl-conversions@npm:3.0.1"
  checksum: 10c0/5612d5f3e54760a797052eb4927f0ddc01383550f542ccd33d5238cfd65aeed392a45ad38364970d0a0f4fea32e1f4d231b3d8dac4a3bdd385e5cf802ae097db
  languageName: node
  linkType: hard

"well-known-symbols@npm:^2.0.0":
  version: 2.0.0
  resolution: "well-known-symbols@npm:2.0.0"
  checksum: 10c0/cb6c12e98877e8952ec28d13ae6f4fdb54ae1cb49b16a728720276dadd76c930e6cb0e174af3a4620054dd2752546f842540122920c6e31410208abd4958ee6b
  languageName: node
  linkType: hard

"whatwg-url@npm:^5.0.0":
  version: 5.0.0
  resolution: "whatwg-url@npm:5.0.0"
  dependencies:
    tr46: "npm:~0.0.3"
    webidl-conversions: "npm:^3.0.0"
  checksum: 10c0/1588bed84d10b72d5eec1d0faa0722ba1962f1821e7539c535558fb5398d223b0c50d8acab950b8c488b4ba69043fd833cc2697056b167d8ad46fac3995a55d5
  languageName: node
  linkType: hard

"which@npm:^2.0.1":
  version: 2.0.2
  resolution: "which@npm:2.0.2"
  dependencies:
    isexe: "npm:^2.0.0"
  bin:
    node-which: ./bin/node-which
  checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f
  languageName: node
  linkType: hard

"which@npm:^5.0.0":
  version: 5.0.0
  resolution: "which@npm:5.0.0"
  dependencies:
    isexe: "npm:^3.1.1"
  bin:
    node-which: bin/which.js
  checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b
  languageName: node
  linkType: hard

"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0":
  version: 7.0.0
  resolution: "wrap-ansi@npm:7.0.0"
  dependencies:
    ansi-styles: "npm:^4.0.0"
    string-width: "npm:^4.1.0"
    strip-ansi: "npm:^6.0.0"
  checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da
  languageName: node
  linkType: hard

"wrap-ansi@npm:^8.1.0":
  version: 8.1.0
  resolution: "wrap-ansi@npm:8.1.0"
  dependencies:
    ansi-styles: "npm:^6.1.0"
    string-width: "npm:^5.0.1"
    strip-ansi: "npm:^7.0.1"
  checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60
  languageName: node
  linkType: hard

"wrap-ansi@npm:^9.0.0, wrap-ansi@npm:^9.0.2":
  version: 9.0.2
  resolution: "wrap-ansi@npm:9.0.2"
  dependencies:
    ansi-styles: "npm:^6.2.1"
    string-width: "npm:^7.0.0"
    strip-ansi: "npm:^7.1.0"
  checksum: 10c0/3305839b9a0d6fb930cb63a52f34d3936013d8b0682ff3ec133c9826512620f213800ffa19ea22904876d5b7e9a3c1f40682f03597d986a4ca881fa7b033688c
  languageName: node
  linkType: hard

"write-file-atomic@npm:^6.0.0":
  version: 6.0.0
  resolution: "write-file-atomic@npm:6.0.0"
  dependencies:
    imurmurhash: "npm:^0.1.4"
    signal-exit: "npm:^4.0.1"
  checksum: 10c0/ae2f1c27474758a9aca92037df6c1dd9cb94c4e4983451210bd686bfe341f142662f6aa5913095e572ab037df66b1bfe661ed4ce4c0369ed0e8219e28e141786
  languageName: node
  linkType: hard

"y18n@npm:^5.0.5":
  version: 5.0.8
  resolution: "y18n@npm:5.0.8"
  checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249
  languageName: node
  linkType: hard

"yallist@npm:^5.0.0":
  version: 5.0.0
  resolution: "yallist@npm:5.0.0"
  checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416
  languageName: node
  linkType: hard

"yaml@npm:^2.8.1":
  version: 2.8.2
  resolution: "yaml@npm:2.8.2"
  bin:
    yaml: bin.mjs
  checksum: 10c0/703e4dc1e34b324aa66876d63618dcacb9ed49f7e7fe9b70f1e703645be8d640f68ab84f12b86df8ac960bac37acf5513e115de7c970940617ce0343c8c9cd96
  languageName: node
  linkType: hard

"yargs-parser@npm:^21.1.1":
  version: 21.1.1
  resolution: "yargs-parser@npm:21.1.1"
  checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2
  languageName: node
  linkType: hard

"yargs@npm:^17.7.2":
  version: 17.7.2
  resolution: "yargs@npm:17.7.2"
  dependencies:
    cliui: "npm:^8.0.1"
    escalade: "npm:^3.1.1"
    get-caller-file: "npm:^2.0.5"
    require-directory: "npm:^2.1.1"
    string-width: "npm:^4.2.3"
    y18n: "npm:^5.0.5"
    yargs-parser: "npm:^21.1.1"
  checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05
  languageName: node
  linkType: hard