macroforge_ts 0.1.77

TypeScript macro expansion engine - write compile-time macros in Rust
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
{
    "name": "macroforge",
    "version": "0.1.75",
    "lockfileVersion": 3,
    "requires": true,
    "packages": {
        "": {
            "name": "macroforge",
            "version": "0.1.75",
            "license": "MIT",
            "dependencies": {
                "@napi-rs/cli": "^3.5.1"
            },
            "engines": {
                "node": ">= 18"
            },
            "optionalDependencies": {
                "@macroforge/bin-darwin-arm64": "0.1.75",
                "@macroforge/bin-darwin-x64": "0.1.75",
                "@macroforge/bin-linux-arm64-gnu": "0.1.75",
                "@macroforge/bin-linux-x64-gnu": "0.1.75",
                "@macroforge/bin-win32-arm64-msvc": "0.1.75",
                "@macroforge/bin-win32-x64-msvc": "0.1.75"
            }
        },
        "node_modules/@emnapi/core": {
            "version": "1.8.1",
            "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
            "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "@emnapi/wasi-threads": "1.1.0",
                "tslib": "^2.4.0"
            }
        },
        "node_modules/@emnapi/runtime": {
            "version": "1.8.1",
            "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
            "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "tslib": "^2.4.0"
            }
        },
        "node_modules/@emnapi/wasi-threads": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz",
            "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==",
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "tslib": "^2.4.0"
            }
        },
        "node_modules/@inquirer/ansi": {
            "version": "2.0.3",
            "resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.3.tgz",
            "integrity": "sha512-g44zhR3NIKVs0zUesa4iMzExmZpLUdTLRMCStqX3GE5NT6VkPcxQGJ+uC8tDgBUC/vB1rUhUd55cOf++4NZcmw==",
            "license": "MIT",
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            }
        },
        "node_modules/@inquirer/checkbox": {
            "version": "5.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-5.0.7.tgz",
            "integrity": "sha512-OGJykc3mpe4kiNXwXlDlP4MFqZso5QOoXJaJrmTJI+Y+gq68wxTyCUIFv34qgwZTHnGGeqwUKGOi4oxptTe+ZQ==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/ansi": "^2.0.3",
                "@inquirer/core": "^11.1.4",
                "@inquirer/figures": "^2.0.3",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/confirm": {
            "version": "6.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.0.7.tgz",
            "integrity": "sha512-lKdNloHLnGoBUUwprxKFd+SpkAnyQTBrZACFPtxDq9GiLICD2t+CaeJ1Ku4goZsGPyBIFc2YYpmDSJLEXoc16g==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/core": {
            "version": "11.1.4",
            "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.1.4.tgz",
            "integrity": "sha512-1HvwyASF0tE/7W8geTTn0ydiWb463pq4SBIpaWcVabTrw55+CiRmytV9eZoqt3ohchsPw4Vv60jfNiI6YljVUg==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/ansi": "^2.0.3",
                "@inquirer/figures": "^2.0.3",
                "@inquirer/type": "^4.0.3",
                "cli-width": "^4.1.0",
                "fast-wrap-ansi": "^0.2.0",
                "mute-stream": "^3.0.0",
                "signal-exit": "^4.1.0"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/editor": {
            "version": "5.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-5.0.7.tgz",
            "integrity": "sha512-d36tisyvmxH7H+LICTeTofrKmJ+R1jAYV8q0VTYh96cm8mP2BdGh9TAIqbCGcciX8/dr0fJW+VJq3jAnco5xfg==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/external-editor": "^2.0.3",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/expand": {
            "version": "5.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-5.0.7.tgz",
            "integrity": "sha512-h2RRFzDdeXOXLrJOUAaHzyR1HbiZlrl/NxorOAgNrzhiSThbwEFVOf88lJzbF5WXGrQ2RwqK2h0xAE7eo8QP5w==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/external-editor": {
            "version": "2.0.3",
            "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-2.0.3.tgz",
            "integrity": "sha512-LgyI7Agbda74/cL5MvA88iDpvdXI2KuMBCGRkbCl2Dg1vzHeOgs+s0SDcXV7b+WZJrv2+ERpWSM65Fpi9VfY3w==",
            "license": "MIT",
            "dependencies": {
                "chardet": "^2.1.1",
                "iconv-lite": "^0.7.2"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/figures": {
            "version": "2.0.3",
            "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.3.tgz",
            "integrity": "sha512-y09iGt3JKoOCBQ3w4YrSJdokcD8ciSlMIWsD+auPu+OZpfxLuyz+gICAQ6GCBOmJJt4KEQGHuZSVff2jiNOy7g==",
            "license": "MIT",
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            }
        },
        "node_modules/@inquirer/input": {
            "version": "5.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-5.0.7.tgz",
            "integrity": "sha512-b+eKk/eUvKLQ6c+rDu9u4I1+twdjOfrEaw9NURDpCrWYJTWL1/JQEudZi0AeqXDGcn0tMdhlfpEfjcqr33B/qw==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/number": {
            "version": "4.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-4.0.7.tgz",
            "integrity": "sha512-/l5KxcLFFexzOwh8DcVOI7zgVQCwcBt/9yHWtvMdYvaYLMK5J31BSR/fO3Z9WauA21qwAkDGRvYNHIG4vR6JwA==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/password": {
            "version": "5.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-5.0.7.tgz",
            "integrity": "sha512-h3Rgzb8nFMxgK6X5246MtwTX/rXs5Z58DbeuUKI6W5dQ+CZusEunNeT7rosdB+Upn79BkfZJO0AaiH8MIi9v1A==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/ansi": "^2.0.3",
                "@inquirer/core": "^11.1.4",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/prompts": {
            "version": "8.2.1",
            "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-8.2.1.tgz",
            "integrity": "sha512-76knJFW2oXdI6If5YRmEoT5u7l+QroXYrMiINFcb97LsyECgsbO9m6iWlPuhBtaFgNITPHQCk3wbex38q8gsjg==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/checkbox": "^5.0.5",
                "@inquirer/confirm": "^6.0.5",
                "@inquirer/editor": "^5.0.5",
                "@inquirer/expand": "^5.0.5",
                "@inquirer/input": "^5.0.5",
                "@inquirer/number": "^4.0.5",
                "@inquirer/password": "^5.0.5",
                "@inquirer/rawlist": "^5.2.1",
                "@inquirer/search": "^4.1.1",
                "@inquirer/select": "^5.0.5"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/rawlist": {
            "version": "5.2.3",
            "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-5.2.3.tgz",
            "integrity": "sha512-EuvV6N/T3xDmRVihAOqfnbmtHGdu26TocRKANvcX/7nLLD8QO0c22Dtlc5C15+V433d9v0E0SSyqywdNCIXfLg==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/search": {
            "version": "4.1.3",
            "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-4.1.3.tgz",
            "integrity": "sha512-6BE8MqVMakEiLDRtrwj9fbx6AYhuj7McW3GOkOoEiQ5Qkh6v6f5HCoYNqSRE4j6nT+u+73518iUQPE+mZYlAjA==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/core": "^11.1.4",
                "@inquirer/figures": "^2.0.3",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/select": {
            "version": "5.0.7",
            "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-5.0.7.tgz",
            "integrity": "sha512-1JUJIR+Z2PsvwP6VWty7aE0aCPaT2cy2c4Vp3LPhL2Pi3+aXewAld/AyJ/CW9XWx1JbKxmdElfvls/G/7jG7ZQ==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/ansi": "^2.0.3",
                "@inquirer/core": "^11.1.4",
                "@inquirer/figures": "^2.0.3",
                "@inquirer/type": "^4.0.3"
            },
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@inquirer/type": {
            "version": "4.0.3",
            "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.3.tgz",
            "integrity": "sha512-cKZN7qcXOpj1h+1eTTcGDVLaBIHNMT1Rz9JqJP5MnEJ0JhgVWllx7H/tahUp5YEK1qaByH2Itb8wLG/iScD5kw==",
            "license": "MIT",
            "engines": {
                "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
            },
            "peerDependencies": {
                "@types/node": ">=18"
            },
            "peerDependenciesMeta": {
                "@types/node": {
                    "optional": true
                }
            }
        },
        "node_modules/@macroforge/bin-darwin-arm64": {
            "version": "0.1.75",
            "resolved": "https://registry.npmjs.org/@macroforge/bin-darwin-arm64/-/bin-darwin-arm64-0.1.75.tgz",
            "integrity": "sha512-WETsgo1SGbE84wsBMQE5xoNGHB96309YR0vEe7PyfPAqhugB+UqM5ljPjRp9BUUdFw7D0NkOudYRmIo7CSDKRQ==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 18"
            }
        },
        "node_modules/@macroforge/bin-darwin-x64": {
            "version": "0.1.75",
            "resolved": "https://registry.npmjs.org/@macroforge/bin-darwin-x64/-/bin-darwin-x64-0.1.75.tgz",
            "integrity": "sha512-EOJCgMzzdKFTCteCiWJSFsO/vor3/oTMfoL/AAACHpIOja3abnDJE5Qd/8e5+2pegUvMBpgdV/MGL53peS8Glg==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 18"
            }
        },
        "node_modules/@macroforge/bin-linux-arm64-gnu": {
            "version": "0.1.75",
            "resolved": "https://registry.npmjs.org/@macroforge/bin-linux-arm64-gnu/-/bin-linux-arm64-gnu-0.1.75.tgz",
            "integrity": "sha512-OdLsrIHy6OdvHML9pQSgLy0OK0GCy6z97KFUhW2Iy+C6JIx1z5EnQY4EP5Iam8+8tZoVQpeZxK2QP8APAdemOw==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 18"
            }
        },
        "node_modules/@macroforge/bin-linux-x64-gnu": {
            "version": "0.1.75",
            "resolved": "https://registry.npmjs.org/@macroforge/bin-linux-x64-gnu/-/bin-linux-x64-gnu-0.1.75.tgz",
            "integrity": "sha512-elMD14ML3flFEz818X/YNRNCE2aA9ue/VIuXy6p5Q9/bVcS7Ad9vKQuuvb80Y2X7xQvJ5K16jyk/DmKHGAo0SQ==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 18"
            }
        },
        "node_modules/@macroforge/bin-win32-arm64-msvc": {
            "version": "0.1.75",
            "resolved": "https://registry.npmjs.org/@macroforge/bin-win32-arm64-msvc/-/bin-win32-arm64-msvc-0.1.75.tgz",
            "integrity": "sha512-W/nqMl1xvnzXD2jcF/0FADVtfChZHSSgur8mipSgAw8Di5eWg3e1S3oEWYqH0qBIMBnhG2EzkcIc/MtMnMVmeA==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 18"
            }
        },
        "node_modules/@macroforge/bin-win32-x64-msvc": {
            "version": "0.1.75",
            "resolved": "https://registry.npmjs.org/@macroforge/bin-win32-x64-msvc/-/bin-win32-x64-msvc-0.1.75.tgz",
            "integrity": "sha512-MOeh0z0HW56s4hoe+TL3hUzSXAtO6d/22Tysz4Gt08l64e8Cx/nCTMpzOmXwX8H0El8pMNLfr84Rp6cASj6WCg==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 18"
            }
        },
        "node_modules/@napi-rs/cli": {
            "version": "3.5.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/cli/-/cli-3.5.1.tgz",
            "integrity": "sha512-XBfLQRDcB3qhu6bazdMJsecWW55kR85l5/k0af9BIBELXQSsCFU0fzug7PX8eQp6vVdm7W/U3z6uP5WmITB2Gw==",
            "license": "MIT",
            "dependencies": {
                "@inquirer/prompts": "^8.0.0",
                "@napi-rs/cross-toolchain": "^1.0.3",
                "@napi-rs/wasm-tools": "^1.0.1",
                "@octokit/rest": "^22.0.1",
                "clipanion": "^4.0.0-rc.4",
                "colorette": "^2.0.20",
                "emnapi": "^1.7.1",
                "es-toolkit": "^1.41.0",
                "js-yaml": "^4.1.0",
                "obug": "^2.0.0",
                "semver": "^7.7.3",
                "typanion": "^3.14.0"
            },
            "bin": {
                "napi": "dist/cli.js",
                "napi-raw": "cli.mjs"
            },
            "engines": {
                "node": ">= 16"
            },
            "funding": {
                "type": "github",
                "url": "https://github.com/sponsors/Brooooooklyn"
            },
            "peerDependencies": {
                "@emnapi/runtime": "^1.7.1"
            },
            "peerDependenciesMeta": {
                "@emnapi/runtime": {
                    "optional": true
                }
            }
        },
        "node_modules/@napi-rs/cross-toolchain": {
            "version": "1.0.3",
            "resolved": "https://registry.npmjs.org/@napi-rs/cross-toolchain/-/cross-toolchain-1.0.3.tgz",
            "integrity": "sha512-ENPfLe4937bsKVTDA6zdABx4pq9w0tHqRrJHyaGxgaPq03a2Bd1unD5XSKjXJjebsABJ+MjAv1A2OvCgK9yehg==",
            "license": "MIT",
            "workspaces": [
                ".",
                "arm64/*",
                "x64/*"
            ],
            "dependencies": {
                "@napi-rs/lzma": "^1.4.5",
                "@napi-rs/tar": "^1.1.0",
                "debug": "^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
                }
            }
        },
        "node_modules/@napi-rs/lzma": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma/-/lzma-1.4.5.tgz",
            "integrity": "sha512-zS5LuN1OBPAyZpda2ZZgYOEDC+xecUdAGnrvbYzjnLXkrq/OBC3B9qcRvlxbDR3k5H/gVfvef1/jyUqPknqjbg==",
            "license": "MIT",
            "engines": {
                "node": ">= 10"
            },
            "funding": {
                "type": "github",
                "url": "https://github.com/sponsors/Brooooooklyn"
            },
            "optionalDependencies": {
                "@napi-rs/lzma-android-arm-eabi": "1.4.5",
                "@napi-rs/lzma-android-arm64": "1.4.5",
                "@napi-rs/lzma-darwin-arm64": "1.4.5",
                "@napi-rs/lzma-darwin-x64": "1.4.5",
                "@napi-rs/lzma-freebsd-x64": "1.4.5",
                "@napi-rs/lzma-linux-arm-gnueabihf": "1.4.5",
                "@napi-rs/lzma-linux-arm64-gnu": "1.4.5",
                "@napi-rs/lzma-linux-arm64-musl": "1.4.5",
                "@napi-rs/lzma-linux-ppc64-gnu": "1.4.5",
                "@napi-rs/lzma-linux-riscv64-gnu": "1.4.5",
                "@napi-rs/lzma-linux-s390x-gnu": "1.4.5",
                "@napi-rs/lzma-linux-x64-gnu": "1.4.5",
                "@napi-rs/lzma-linux-x64-musl": "1.4.5",
                "@napi-rs/lzma-wasm32-wasi": "1.4.5",
                "@napi-rs/lzma-win32-arm64-msvc": "1.4.5",
                "@napi-rs/lzma-win32-ia32-msvc": "1.4.5",
                "@napi-rs/lzma-win32-x64-msvc": "1.4.5"
            }
        },
        "node_modules/@napi-rs/lzma-android-arm-eabi": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-android-arm-eabi/-/lzma-android-arm-eabi-1.4.5.tgz",
            "integrity": "sha512-Up4gpyw2SacmyKWWEib06GhiDdF+H+CCU0LAV8pnM4aJIDqKKd5LHSlBht83Jut6frkB0vwEPmAkv4NjQ5u//Q==",
            "cpu": [
                "arm"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "android"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-android-arm64": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-android-arm64/-/lzma-android-arm64-1.4.5.tgz",
            "integrity": "sha512-uwa8sLlWEzkAM0MWyoZJg0JTD3BkPknvejAFG2acUA1raXM8jLrqujWCdOStisXhqQjZ2nDMp3FV6cs//zjfuQ==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "android"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-darwin-arm64": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-darwin-arm64/-/lzma-darwin-arm64-1.4.5.tgz",
            "integrity": "sha512-0Y0TQLQ2xAjVabrMDem1NhIssOZzF/y/dqetc6OT8mD3xMTDtF8u5BqZoX3MyPc9FzpsZw4ksol+w7DsxHrpMA==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-darwin-x64": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-darwin-x64/-/lzma-darwin-x64-1.4.5.tgz",
            "integrity": "sha512-vR2IUyJY3En+V1wJkwmbGWcYiT8pHloTAWdW4pG24+51GIq+intst6Uf6D/r46citObGZrlX0QvMarOkQeHWpw==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-freebsd-x64": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-freebsd-x64/-/lzma-freebsd-x64-1.4.5.tgz",
            "integrity": "sha512-XpnYQC5SVovO35tF0xGkbHYjsS6kqyNCjuaLQ2dbEblFRr5cAZVvsJ/9h7zj/5FluJPJRDojVNxGyRhTp4z2lw==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "freebsd"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-arm-gnueabihf": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-arm-gnueabihf/-/lzma-linux-arm-gnueabihf-1.4.5.tgz",
            "integrity": "sha512-ic1ZZMoRfRMwtSwxkyw4zIlbDZGC6davC9r+2oX6x9QiF247BRqqT94qGeL5ZP4Vtz0Hyy7TEViWhx5j6Bpzvw==",
            "cpu": [
                "arm"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-arm64-gnu": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-arm64-gnu/-/lzma-linux-arm64-gnu-1.4.5.tgz",
            "integrity": "sha512-asEp7FPd7C1Yi6DQb45a3KPHKOFBSfGuJWXcAd4/bL2Fjetb2n/KK2z14yfW8YC/Fv6x3rBM0VAZKmJuz4tysg==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-arm64-musl": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-arm64-musl/-/lzma-linux-arm64-musl-1.4.5.tgz",
            "integrity": "sha512-yWjcPDgJ2nIL3KNvi4536dlT/CcCWO0DUyEOlBs/SacG7BeD6IjGh6yYzd3/X1Y3JItCbZoDoLUH8iB1lTXo3w==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-ppc64-gnu": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-ppc64-gnu/-/lzma-linux-ppc64-gnu-1.4.5.tgz",
            "integrity": "sha512-0XRhKuIU/9ZjT4WDIG/qnX7Xz7mSQHYZo9Gb3MP2gcvBgr6BA4zywQ9k3gmQaPn9ECE+CZg2V7DV7kT+x2pUMQ==",
            "cpu": [
                "ppc64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-riscv64-gnu": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-riscv64-gnu/-/lzma-linux-riscv64-gnu-1.4.5.tgz",
            "integrity": "sha512-QrqDIPEUUB23GCpyQj/QFyMlr8SGxxyExeZz9OWFnHfb70kXdTLWrHS/hEI1Ru+lSbQ/6xRqeoGyQ4Aqdg+/RA==",
            "cpu": [
                "riscv64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-s390x-gnu": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-s390x-gnu/-/lzma-linux-s390x-gnu-1.4.5.tgz",
            "integrity": "sha512-k8RVM5aMhW86E9H0QXdquwojew4H3SwPxbRVbl49/COJQWCUjGi79X6mYruMnMPEznZinUiT1jgKbFo2A00NdA==",
            "cpu": [
                "s390x"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-x64-gnu": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.4.5.tgz",
            "integrity": "sha512-6rMtBgnIq2Wcl1rQdZsnM+rtCcVCbws1nF8S2NzaUsVaZv8bjrPiAa0lwg4Eqnn1d9lgwqT+cZgm5m+//K08Kw==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-linux-x64-musl": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-x64-musl/-/lzma-linux-x64-musl-1.4.5.tgz",
            "integrity": "sha512-eiadGBKi7Vd0bCArBUOO/qqRYPHt/VQVvGyYvDFt6C2ZSIjlD+HuOl+2oS1sjf4CFjK4eDIog6EdXnL0NE6iyQ==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-wasm32-wasi": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-wasm32-wasi/-/lzma-wasm32-wasi-1.4.5.tgz",
            "integrity": "sha512-+VyHHlr68dvey6fXc2hehw9gHVFIW3TtGF1XkcbAu65qVXsA9D/T+uuoRVqhE+JCyFHFrO0ixRbZDRK1XJt1sA==",
            "cpu": [
                "wasm32"
            ],
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "@napi-rs/wasm-runtime": "^1.0.3"
            },
            "engines": {
                "node": ">=14.0.0"
            }
        },
        "node_modules/@napi-rs/lzma-win32-arm64-msvc": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-win32-arm64-msvc/-/lzma-win32-arm64-msvc-1.4.5.tgz",
            "integrity": "sha512-eewnqvIyyhHi3KaZtBOJXohLvwwN27gfS2G/YDWdfHlbz1jrmfeHAmzMsP5qv8vGB+T80TMHNkro4kYjeh6Deg==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-win32-ia32-msvc": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-win32-ia32-msvc/-/lzma-win32-ia32-msvc-1.4.5.tgz",
            "integrity": "sha512-OeacFVRCJOKNU/a0ephUfYZ2Yt+NvaHze/4TgOwJ0J0P4P7X1mHzN+ig9Iyd74aQDXYqc7kaCXA2dpAOcH87Cg==",
            "cpu": [
                "ia32"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/lzma-win32-x64-msvc": {
            "version": "1.4.5",
            "resolved": "https://registry.npmjs.org/@napi-rs/lzma-win32-x64-msvc/-/lzma-win32-x64-msvc-1.4.5.tgz",
            "integrity": "sha512-T4I1SamdSmtyZgDXGAGP+y5LEK5vxHUFwe8mz6D4R7Sa5/WCxTcCIgPJ9BD7RkpO17lzhlaM2vmVvMy96Lvk9Q==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar/-/tar-1.1.0.tgz",
            "integrity": "sha512-7cmzIu+Vbupriudo7UudoMRH2OA3cTw67vva8MxeoAe5S7vPFI7z0vp0pMXiA25S8IUJefImQ90FeJjl8fjEaQ==",
            "license": "MIT",
            "engines": {
                "node": ">= 10"
            },
            "optionalDependencies": {
                "@napi-rs/tar-android-arm-eabi": "1.1.0",
                "@napi-rs/tar-android-arm64": "1.1.0",
                "@napi-rs/tar-darwin-arm64": "1.1.0",
                "@napi-rs/tar-darwin-x64": "1.1.0",
                "@napi-rs/tar-freebsd-x64": "1.1.0",
                "@napi-rs/tar-linux-arm-gnueabihf": "1.1.0",
                "@napi-rs/tar-linux-arm64-gnu": "1.1.0",
                "@napi-rs/tar-linux-arm64-musl": "1.1.0",
                "@napi-rs/tar-linux-ppc64-gnu": "1.1.0",
                "@napi-rs/tar-linux-s390x-gnu": "1.1.0",
                "@napi-rs/tar-linux-x64-gnu": "1.1.0",
                "@napi-rs/tar-linux-x64-musl": "1.1.0",
                "@napi-rs/tar-wasm32-wasi": "1.1.0",
                "@napi-rs/tar-win32-arm64-msvc": "1.1.0",
                "@napi-rs/tar-win32-ia32-msvc": "1.1.0",
                "@napi-rs/tar-win32-x64-msvc": "1.1.0"
            }
        },
        "node_modules/@napi-rs/tar-android-arm-eabi": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-android-arm-eabi/-/tar-android-arm-eabi-1.1.0.tgz",
            "integrity": "sha512-h2Ryndraj/YiKgMV/r5by1cDusluYIRT0CaE0/PekQ4u+Wpy2iUVqvzVU98ZPnhXaNeYxEvVJHNGafpOfaD0TA==",
            "cpu": [
                "arm"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "android"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-android-arm64": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-android-arm64/-/tar-android-arm64-1.1.0.tgz",
            "integrity": "sha512-DJFyQHr1ZxNZorm/gzc1qBNLF/FcKzcH0V0Vwan5P+o0aE2keQIGEjJ09FudkF9v6uOuJjHCVDdK6S6uHtShAw==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "android"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-darwin-arm64": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-darwin-arm64/-/tar-darwin-arm64-1.1.0.tgz",
            "integrity": "sha512-Zz2sXRzjIX4e532zD6xm2SjXEym6MkvfCvL2RMpG2+UwNVDVscHNcz3d47Pf3sysP2e2af7fBB3TIoK2f6trPw==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-darwin-x64": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-darwin-x64/-/tar-darwin-x64-1.1.0.tgz",
            "integrity": "sha512-EI+CptIMNweT0ms9S3mkP/q+J6FNZ1Q6pvpJOEcWglRfyfQpLqjlC0O+dptruTPE8VamKYuqdjxfqD8hifZDOA==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-freebsd-x64": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-freebsd-x64/-/tar-freebsd-x64-1.1.0.tgz",
            "integrity": "sha512-J0PIqX+pl6lBIAckL/c87gpodLbjZB1OtIK+RDscKC9NLdpVv6VGOxzUV/fYev/hctcE8EfkLbgFOfpmVQPg2g==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "freebsd"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-arm-gnueabihf": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-arm-gnueabihf/-/tar-linux-arm-gnueabihf-1.1.0.tgz",
            "integrity": "sha512-SLgIQo3f3EjkZ82ZwvrEgFvMdDAhsxCYjyoSuWfHCz0U16qx3SuGCp8+FYOPYCECHN3ZlGjXnoAIt9ERd0dEUg==",
            "cpu": [
                "arm"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-arm64-gnu": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-arm64-gnu/-/tar-linux-arm64-gnu-1.1.0.tgz",
            "integrity": "sha512-d014cdle52EGaH6GpYTQOP9Py7glMO1zz/+ynJPjjzYFSxvdYx0byrjumZk2UQdIyGZiJO2MEFpCkEEKFSgPYA==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-arm64-musl": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-arm64-musl/-/tar-linux-arm64-musl-1.1.0.tgz",
            "integrity": "sha512-L/y1/26q9L/uBqiW/JdOb/Dc94egFvNALUZV2WCGKQXc6UByPBMgdiEyW2dtoYxYYYYc+AKD+jr+wQPcvX2vrQ==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-ppc64-gnu": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-ppc64-gnu/-/tar-linux-ppc64-gnu-1.1.0.tgz",
            "integrity": "sha512-EPE1K/80RQvPbLRJDJs1QmCIcH+7WRi0F73+oTe1582y9RtfGRuzAkzeBuAGRXAQEjRQw/RjtNqr6UTJ+8UuWQ==",
            "cpu": [
                "ppc64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-s390x-gnu": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-s390x-gnu/-/tar-linux-s390x-gnu-1.1.0.tgz",
            "integrity": "sha512-B2jhWiB1ffw1nQBqLUP1h4+J1ovAxBOoe5N2IqDMOc63fsPZKNqF1PvO/dIem8z7LL4U4bsfmhy3gBfu547oNQ==",
            "cpu": [
                "s390x"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-x64-gnu": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-x64-gnu/-/tar-linux-x64-gnu-1.1.0.tgz",
            "integrity": "sha512-tbZDHnb9617lTnsDMGo/eAMZxnsQFnaRe+MszRqHguKfMwkisc9CCJnks/r1o84u5fECI+J/HOrKXgczq/3Oww==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-linux-x64-musl": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-linux-x64-musl/-/tar-linux-x64-musl-1.1.0.tgz",
            "integrity": "sha512-dV6cODlzbO8u6Anmv2N/ilQHq/AWz0xyltuXoLU3yUyXbZcnWYZuB2rL8OBGPmqNcD+x9NdScBNXh7vWN0naSQ==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-wasm32-wasi": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-wasm32-wasi/-/tar-wasm32-wasi-1.1.0.tgz",
            "integrity": "sha512-jIa9nb2HzOrfH0F8QQ9g3WE4aMH5vSI5/1NYVNm9ysCmNjCCtMXCAhlI3WKCdm/DwHf0zLqdrrtDFXODcNaqMw==",
            "cpu": [
                "wasm32"
            ],
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "@napi-rs/wasm-runtime": "^1.0.3"
            },
            "engines": {
                "node": ">=14.0.0"
            }
        },
        "node_modules/@napi-rs/tar-win32-arm64-msvc": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-win32-arm64-msvc/-/tar-win32-arm64-msvc-1.1.0.tgz",
            "integrity": "sha512-vfpG71OB0ijtjemp3WTdmBKJm9R70KM8vsSExMsIQtV0lVzP07oM1CW6JbNRPXNLhRoue9ofYLiUDk8bE0Hckg==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-win32-ia32-msvc": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-win32-ia32-msvc/-/tar-win32-ia32-msvc-1.1.0.tgz",
            "integrity": "sha512-hGPyPW60YSpOSgzfy68DLBHgi6HxkAM+L59ZZZPMQ0TOXjQg+p2EW87+TjZfJOkSpbYiEkULwa/f4a2hcVjsqQ==",
            "cpu": [
                "ia32"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/tar-win32-x64-msvc": {
            "version": "1.1.0",
            "resolved": "https://registry.npmjs.org/@napi-rs/tar-win32-x64-msvc/-/tar-win32-x64-msvc-1.1.0.tgz",
            "integrity": "sha512-L6Ed1DxXK9YSCMyvpR8MiNAyKNkQLjsHsHK9E0qnHa8NzLFqzDKhvs5LfnWxM2kJ+F7m/e5n9zPm24kHb3LsVw==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-runtime": {
            "version": "1.1.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
            "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "@emnapi/core": "^1.7.1",
                "@emnapi/runtime": "^1.7.1",
                "@tybys/wasm-util": "^0.10.1"
            },
            "funding": {
                "type": "github",
                "url": "https://github.com/sponsors/Brooooooklyn"
            }
        },
        "node_modules/@napi-rs/wasm-tools": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools/-/wasm-tools-1.0.1.tgz",
            "integrity": "sha512-enkZYyuCdo+9jneCPE/0fjIta4wWnvVN9hBo2HuiMpRF0q3lzv1J6b/cl7i0mxZUKhBrV3aCKDBQnCOhwKbPmQ==",
            "license": "MIT",
            "engines": {
                "node": ">= 10"
            },
            "optionalDependencies": {
                "@napi-rs/wasm-tools-android-arm-eabi": "1.0.1",
                "@napi-rs/wasm-tools-android-arm64": "1.0.1",
                "@napi-rs/wasm-tools-darwin-arm64": "1.0.1",
                "@napi-rs/wasm-tools-darwin-x64": "1.0.1",
                "@napi-rs/wasm-tools-freebsd-x64": "1.0.1",
                "@napi-rs/wasm-tools-linux-arm64-gnu": "1.0.1",
                "@napi-rs/wasm-tools-linux-arm64-musl": "1.0.1",
                "@napi-rs/wasm-tools-linux-x64-gnu": "1.0.1",
                "@napi-rs/wasm-tools-linux-x64-musl": "1.0.1",
                "@napi-rs/wasm-tools-wasm32-wasi": "1.0.1",
                "@napi-rs/wasm-tools-win32-arm64-msvc": "1.0.1",
                "@napi-rs/wasm-tools-win32-ia32-msvc": "1.0.1",
                "@napi-rs/wasm-tools-win32-x64-msvc": "1.0.1"
            }
        },
        "node_modules/@napi-rs/wasm-tools-android-arm-eabi": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-android-arm-eabi/-/wasm-tools-android-arm-eabi-1.0.1.tgz",
            "integrity": "sha512-lr07E/l571Gft5v4aA1dI8koJEmF1F0UigBbsqg9OWNzg80H3lDPO+auv85y3T/NHE3GirDk7x/D3sLO57vayw==",
            "cpu": [
                "arm"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "android"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-android-arm64": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-android-arm64/-/wasm-tools-android-arm64-1.0.1.tgz",
            "integrity": "sha512-WDR7S+aRLV6LtBJAg5fmjKkTZIdrEnnQxgdsb7Cf8pYiMWBHLU+LC49OUVppQ2YSPY0+GeYm9yuZWW3kLjJ7Bg==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "android"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-darwin-arm64": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-darwin-arm64/-/wasm-tools-darwin-arm64-1.0.1.tgz",
            "integrity": "sha512-qWTI+EEkiN0oIn/N2gQo7+TVYil+AJ20jjuzD2vATS6uIjVz+Updeqmszi7zq7rdFTLp6Ea3/z4kDKIfZwmR9g==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-darwin-x64": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-darwin-x64/-/wasm-tools-darwin-x64-1.0.1.tgz",
            "integrity": "sha512-bA6hubqtHROR5UI3tToAF/c6TDmaAgF0SWgo4rADHtQ4wdn0JeogvOk50gs2TYVhKPE2ZD2+qqt7oBKB+sxW3A==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "darwin"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-freebsd-x64": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-freebsd-x64/-/wasm-tools-freebsd-x64-1.0.1.tgz",
            "integrity": "sha512-90+KLBkD9hZEjPQW1MDfwSt5J1L46EUKacpCZWyRuL6iIEO5CgWU0V/JnEgFsDOGyyYtiTvHc5bUdUTWd4I9Vg==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "freebsd"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-linux-arm64-gnu": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-linux-arm64-gnu/-/wasm-tools-linux-arm64-gnu-1.0.1.tgz",
            "integrity": "sha512-rG0QlS65x9K/u3HrKafDf8cFKj5wV2JHGfl8abWgKew0GVPyp6vfsDweOwHbWAjcHtp2LHi6JHoW80/MTHm52Q==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-linux-arm64-musl": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-linux-arm64-musl/-/wasm-tools-linux-arm64-musl-1.0.1.tgz",
            "integrity": "sha512-jAasbIvjZXCgX0TCuEFQr+4D6Lla/3AAVx2LmDuMjgG4xoIXzjKWl7c4chuaD+TI+prWT0X6LJcdzFT+ROKGHQ==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-linux-x64-gnu": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-linux-x64-gnu/-/wasm-tools-linux-x64-gnu-1.0.1.tgz",
            "integrity": "sha512-Plgk5rPqqK2nocBGajkMVbGm010Z7dnUgq0wtnYRZbzWWxwWcXfZMPa8EYxrK4eE8SzpI7VlZP1tdVsdjgGwMw==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-linux-x64-musl": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-linux-x64-musl/-/wasm-tools-linux-x64-musl-1.0.1.tgz",
            "integrity": "sha512-GW7AzGuWxtQkyHknHWYFdR0CHmW6is8rG2Rf4V6GNmMpmwtXt/ItWYWtBe4zqJWycMNazpfZKSw/BpT7/MVCXQ==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "linux"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-wasm32-wasi": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-wasm32-wasi/-/wasm-tools-wasm32-wasi-1.0.1.tgz",
            "integrity": "sha512-/nQVSTrqSsn7YdAc2R7Ips/tnw5SPUcl3D7QrXCNGPqjbatIspnaexvaOYNyKMU6xPu+pc0BTnKVmqhlJJCPLA==",
            "cpu": [
                "wasm32"
            ],
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "@napi-rs/wasm-runtime": "^1.0.3"
            },
            "engines": {
                "node": ">=14.0.0"
            }
        },
        "node_modules/@napi-rs/wasm-tools-win32-arm64-msvc": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-win32-arm64-msvc/-/wasm-tools-win32-arm64-msvc-1.0.1.tgz",
            "integrity": "sha512-PFi7oJIBu5w7Qzh3dwFea3sHRO3pojMsaEnUIy22QvsW+UJfNQwJCryVrpoUt8m4QyZXI+saEq/0r4GwdoHYFQ==",
            "cpu": [
                "arm64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-win32-ia32-msvc": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-win32-ia32-msvc/-/wasm-tools-win32-ia32-msvc-1.0.1.tgz",
            "integrity": "sha512-gXkuYzxQsgkj05Zaq+KQTkHIN83dFAwMcTKa2aQcpYPRImFm2AQzEyLtpXmyCWzJ0F9ZYAOmbSyrNew8/us6bw==",
            "cpu": [
                "ia32"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@napi-rs/wasm-tools-win32-x64-msvc": {
            "version": "1.0.1",
            "resolved": "https://registry.npmjs.org/@napi-rs/wasm-tools-win32-x64-msvc/-/wasm-tools-win32-x64-msvc-1.0.1.tgz",
            "integrity": "sha512-rEAf05nol3e3eei2sRButmgXP+6ATgm0/38MKhz9Isne82T4rPIMYsCIFj0kOisaGeVwoi2fnm7O9oWp5YVnYQ==",
            "cpu": [
                "x64"
            ],
            "license": "MIT",
            "optional": true,
            "os": [
                "win32"
            ],
            "engines": {
                "node": ">= 10"
            }
        },
        "node_modules/@octokit/auth-token": {
            "version": "6.0.0",
            "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-6.0.0.tgz",
            "integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==",
            "license": "MIT",
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/core": {
            "version": "7.0.6",
            "resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.6.tgz",
            "integrity": "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==",
            "license": "MIT",
            "dependencies": {
                "@octokit/auth-token": "^6.0.0",
                "@octokit/graphql": "^9.0.3",
                "@octokit/request": "^10.0.6",
                "@octokit/request-error": "^7.0.2",
                "@octokit/types": "^16.0.0",
                "before-after-hook": "^4.0.0",
                "universal-user-agent": "^7.0.0"
            },
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/endpoint": {
            "version": "11.0.3",
            "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.3.tgz",
            "integrity": "sha512-FWFlNxghg4HrXkD3ifYbS/IdL/mDHjh9QcsNyhQjN8dplUoZbejsdpmuqdA76nxj2xoWPs7p8uX2SNr9rYu0Ag==",
            "license": "MIT",
            "dependencies": {
                "@octokit/types": "^16.0.0",
                "universal-user-agent": "^7.0.2"
            },
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/graphql": {
            "version": "9.0.3",
            "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.3.tgz",
            "integrity": "sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA==",
            "license": "MIT",
            "dependencies": {
                "@octokit/request": "^10.0.6",
                "@octokit/types": "^16.0.0",
                "universal-user-agent": "^7.0.0"
            },
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/openapi-types": {
            "version": "27.0.0",
            "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-27.0.0.tgz",
            "integrity": "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA==",
            "license": "MIT"
        },
        "node_modules/@octokit/plugin-paginate-rest": {
            "version": "14.0.0",
            "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-14.0.0.tgz",
            "integrity": "sha512-fNVRE7ufJiAA3XUrha2omTA39M6IXIc6GIZLvlbsm8QOQCYvpq/LkMNGyFlB1d8hTDzsAXa3OKtybdMAYsV/fw==",
            "license": "MIT",
            "dependencies": {
                "@octokit/types": "^16.0.0"
            },
            "engines": {
                "node": ">= 20"
            },
            "peerDependencies": {
                "@octokit/core": ">=6"
            }
        },
        "node_modules/@octokit/plugin-request-log": {
            "version": "6.0.0",
            "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-6.0.0.tgz",
            "integrity": "sha512-UkOzeEN3W91/eBq9sPZNQ7sUBvYCqYbrrD8gTbBuGtHEuycE4/awMXcYvx6sVYo7LypPhmQwwpUe4Yyu4QZN5Q==",
            "license": "MIT",
            "engines": {
                "node": ">= 20"
            },
            "peerDependencies": {
                "@octokit/core": ">=6"
            }
        },
        "node_modules/@octokit/plugin-rest-endpoint-methods": {
            "version": "17.0.0",
            "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-17.0.0.tgz",
            "integrity": "sha512-B5yCyIlOJFPqUUeiD0cnBJwWJO8lkJs5d8+ze9QDP6SvfiXSz1BF+91+0MeI1d2yxgOhU/O+CvtiZ9jSkHhFAw==",
            "license": "MIT",
            "dependencies": {
                "@octokit/types": "^16.0.0"
            },
            "engines": {
                "node": ">= 20"
            },
            "peerDependencies": {
                "@octokit/core": ">=6"
            }
        },
        "node_modules/@octokit/request": {
            "version": "10.0.8",
            "resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.8.tgz",
            "integrity": "sha512-SJZNwY9pur9Agf7l87ywFi14W+Hd9Jg6Ifivsd33+/bGUQIjNujdFiXII2/qSlN2ybqUHfp5xpekMEjIBTjlSw==",
            "license": "MIT",
            "dependencies": {
                "@octokit/endpoint": "^11.0.3",
                "@octokit/request-error": "^7.0.2",
                "@octokit/types": "^16.0.0",
                "fast-content-type-parse": "^3.0.0",
                "json-with-bigint": "^3.5.3",
                "universal-user-agent": "^7.0.2"
            },
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/request-error": {
            "version": "7.1.0",
            "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.1.0.tgz",
            "integrity": "sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==",
            "license": "MIT",
            "dependencies": {
                "@octokit/types": "^16.0.0"
            },
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/rest": {
            "version": "22.0.1",
            "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-22.0.1.tgz",
            "integrity": "sha512-Jzbhzl3CEexhnivb1iQ0KJ7s5vvjMWcmRtq5aUsKmKDrRW6z3r84ngmiFKFvpZjpiU/9/S6ITPFRpn5s/3uQJw==",
            "license": "MIT",
            "dependencies": {
                "@octokit/core": "^7.0.6",
                "@octokit/plugin-paginate-rest": "^14.0.0",
                "@octokit/plugin-request-log": "^6.0.0",
                "@octokit/plugin-rest-endpoint-methods": "^17.0.0"
            },
            "engines": {
                "node": ">= 20"
            }
        },
        "node_modules/@octokit/types": {
            "version": "16.0.0",
            "resolved": "https://registry.npmjs.org/@octokit/types/-/types-16.0.0.tgz",
            "integrity": "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==",
            "license": "MIT",
            "dependencies": {
                "@octokit/openapi-types": "^27.0.0"
            }
        },
        "node_modules/@tybys/wasm-util": {
            "version": "0.10.1",
            "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
            "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
            "license": "MIT",
            "optional": true,
            "dependencies": {
                "tslib": "^2.4.0"
            }
        },
        "node_modules/argparse": {
            "version": "2.0.1",
            "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
            "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
            "license": "Python-2.0"
        },
        "node_modules/before-after-hook": {
            "version": "4.0.0",
            "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-4.0.0.tgz",
            "integrity": "sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==",
            "license": "Apache-2.0"
        },
        "node_modules/chardet": {
            "version": "2.1.1",
            "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.1.tgz",
            "integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==",
            "license": "MIT"
        },
        "node_modules/cli-width": {
            "version": "4.1.0",
            "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
            "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
            "license": "ISC",
            "engines": {
                "node": ">= 12"
            }
        },
        "node_modules/clipanion": {
            "version": "4.0.0-rc.4",
            "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-4.0.0-rc.4.tgz",
            "integrity": "sha512-CXkMQxU6s9GklO/1f714dkKBMu1lopS1WFF0B8o4AxPykR1hpozxSiUZ5ZUeBjfPgCWqbcNOtZVFhB8Lkfp1+Q==",
            "license": "MIT",
            "workspaces": [
                "website"
            ],
            "dependencies": {
                "typanion": "^3.8.0"
            },
            "peerDependencies": {
                "typanion": "*"
            }
        },
        "node_modules/colorette": {
            "version": "2.0.20",
            "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
            "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
            "license": "MIT"
        },
        "node_modules/debug": {
            "version": "4.4.3",
            "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
            "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
            "license": "MIT",
            "dependencies": {
                "ms": "^2.1.3"
            },
            "engines": {
                "node": ">=6.0"
            },
            "peerDependenciesMeta": {
                "supports-color": {
                    "optional": true
                }
            }
        },
        "node_modules/emnapi": {
            "version": "1.8.1",
            "resolved": "https://registry.npmjs.org/emnapi/-/emnapi-1.8.1.tgz",
            "integrity": "sha512-34i2BbgHx1LnEO4JCGQYo6h6s4e4KrdWtdTHfllBNLbXSHPmdIHplxKejfabsRK+ukNciqVdalB+fxMibqHdaQ==",
            "license": "MIT",
            "peerDependencies": {
                "node-addon-api": ">= 6.1.0"
            },
            "peerDependenciesMeta": {
                "node-addon-api": {
                    "optional": true
                }
            }
        },
        "node_modules/es-toolkit": {
            "version": "1.44.0",
            "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.44.0.tgz",
            "integrity": "sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==",
            "license": "MIT",
            "workspaces": [
                "docs",
                "benchmarks"
            ]
        },
        "node_modules/fast-content-type-parse": {
            "version": "3.0.0",
            "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-3.0.0.tgz",
            "integrity": "sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==",
            "funding": [
                {
                    "type": "github",
                    "url": "https://github.com/sponsors/fastify"
                },
                {
                    "type": "opencollective",
                    "url": "https://opencollective.com/fastify"
                }
            ],
            "license": "MIT"
        },
        "node_modules/fast-string-truncated-width": {
            "version": "3.0.3",
            "resolved": "https://registry.npmjs.org/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz",
            "integrity": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==",
            "license": "MIT"
        },
        "node_modules/fast-string-width": {
            "version": "3.0.2",
            "resolved": "https://registry.npmjs.org/fast-string-width/-/fast-string-width-3.0.2.tgz",
            "integrity": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==",
            "license": "MIT",
            "dependencies": {
                "fast-string-truncated-width": "^3.0.2"
            }
        },
        "node_modules/fast-wrap-ansi": {
            "version": "0.2.0",
            "resolved": "https://registry.npmjs.org/fast-wrap-ansi/-/fast-wrap-ansi-0.2.0.tgz",
            "integrity": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==",
            "license": "MIT",
            "dependencies": {
                "fast-string-width": "^3.0.2"
            }
        },
        "node_modules/iconv-lite": {
            "version": "0.7.2",
            "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
            "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
            "license": "MIT",
            "dependencies": {
                "safer-buffer": ">= 2.1.2 < 3.0.0"
            },
            "engines": {
                "node": ">=0.10.0"
            },
            "funding": {
                "type": "opencollective",
                "url": "https://opencollective.com/express"
            }
        },
        "node_modules/js-yaml": {
            "version": "4.1.1",
            "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
            "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
            "license": "MIT",
            "dependencies": {
                "argparse": "^2.0.1"
            },
            "bin": {
                "js-yaml": "bin/js-yaml.js"
            }
        },
        "node_modules/json-with-bigint": {
            "version": "3.5.3",
            "resolved": "https://registry.npmjs.org/json-with-bigint/-/json-with-bigint-3.5.3.tgz",
            "integrity": "sha512-QObKu6nxy7NsxqR0VK4rkXnsNr5L9ElJaGEg+ucJ6J7/suoKZ0n+p76cu9aCqowytxEbwYNzvrMerfMkXneF5A==",
            "license": "MIT"
        },
        "node_modules/ms": {
            "version": "2.1.3",
            "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
            "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
            "license": "MIT"
        },
        "node_modules/mute-stream": {
            "version": "3.0.0",
            "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
            "integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
            "license": "ISC",
            "engines": {
                "node": "^20.17.0 || >=22.9.0"
            }
        },
        "node_modules/obug": {
            "version": "2.1.1",
            "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
            "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
            "funding": [
                "https://github.com/sponsors/sxzz",
                "https://opencollective.com/debug"
            ],
            "license": "MIT"
        },
        "node_modules/safer-buffer": {
            "version": "2.1.2",
            "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
            "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
            "license": "MIT"
        },
        "node_modules/semver": {
            "version": "7.7.4",
            "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
            "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
            "license": "ISC",
            "bin": {
                "semver": "bin/semver.js"
            },
            "engines": {
                "node": ">=10"
            }
        },
        "node_modules/signal-exit": {
            "version": "4.1.0",
            "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
            "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
            "license": "ISC",
            "engines": {
                "node": ">=14"
            },
            "funding": {
                "url": "https://github.com/sponsors/isaacs"
            }
        },
        "node_modules/tslib": {
            "version": "2.8.1",
            "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
            "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
            "license": "0BSD",
            "optional": true
        },
        "node_modules/typanion": {
            "version": "3.14.0",
            "resolved": "https://registry.npmjs.org/typanion/-/typanion-3.14.0.tgz",
            "integrity": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==",
            "license": "MIT",
            "workspaces": [
                "website"
            ]
        },
        "node_modules/universal-user-agent": {
            "version": "7.0.3",
            "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
            "integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==",
            "license": "ISC"
        }
    }
}