pnpm-lock.yaml 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. overrides:
  6. eslint>chalk: npm:picocolors@^1.1.1
  7. globalthis: npm:@nolyfill/globalthis@^1.0.44
  8. has: npm:@nolyfill/has@^1.0.44
  9. safe-buffer: npm:@nolyfill/safe-buffer@^1.0.44
  10. importers:
  11. .:
  12. dependencies:
  13. '@ghostery/adblocker':
  14. specifier: ^2.18.0
  15. version: 2.18.0
  16. '@henrygd/queue':
  17. specifier: ^1.2.0
  18. version: 1.2.0
  19. '@mitata/counters':
  20. specifier: ^0.0.8
  21. version: 0.0.8
  22. ci-info:
  23. specifier: ^4.4.0
  24. version: 4.4.0
  25. cli-progress:
  26. specifier: ^3.12.0
  27. version: 3.12.0
  28. csv-parse:
  29. specifier: ^7.0.0
  30. version: 7.0.0
  31. domain-alive:
  32. specifier: ^0.1.22
  33. version: 0.1.22
  34. fast-cidr-tools:
  35. specifier: ^0.3.4
  36. version: 0.3.4
  37. fast-escape-regexp:
  38. specifier: ^1.0.1
  39. version: 1.0.1
  40. fast-uri:
  41. specifier: ^4.1.0
  42. version: 4.1.0
  43. fdir:
  44. specifier: ^6.5.0
  45. version: 6.5.0(picomatch@4.0.4)
  46. hash-wasm:
  47. specifier: ^4.12.0
  48. version: 4.12.0
  49. hntrie:
  50. specifier: ^1.0.1
  51. version: 1.0.1
  52. json-stringify-pretty-compact:
  53. specifier: 4.0.0
  54. version: 4.0.0
  55. null-prototype-object:
  56. specifier: ^1.2.7
  57. version: 1.2.7
  58. picocolors:
  59. specifier: ^1.1.1
  60. version: 1.1.1
  61. tar-fs:
  62. specifier: ^3.1.3
  63. version: 3.1.3
  64. telegram:
  65. specifier: ^2.26.22
  66. version: 2.26.22
  67. tinyglobby:
  68. specifier: ^0.2.17
  69. version: 0.2.17
  70. tldts:
  71. specifier: ^7.4.5
  72. version: 7.4.5
  73. tldts-experimental:
  74. specifier: ^7.4.5
  75. version: 7.4.5
  76. undici:
  77. specifier: ^8.5.0
  78. version: 8.5.0
  79. undici-cache-store-better-sqlite3:
  80. specifier: ^1.0.1
  81. version: 1.0.1(undici@8.5.0)
  82. why-is-node-running:
  83. specifier: ^3.2.2
  84. version: 3.2.2
  85. xbits:
  86. specifier: ^0.2.0
  87. version: 0.2.0
  88. yaml:
  89. specifier: ^2.9.0
  90. version: 2.9.0
  91. yauzl-promise:
  92. specifier: ^4.0.0
  93. version: 4.0.0
  94. devDependencies:
  95. '@eslint-sukka/node':
  96. specifier: ^8.13.2
  97. version: 8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  98. '@swc-node/register':
  99. specifier: ^1.11.1
  100. version: 1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(supports-color@8.1.1)(typescript@6.0.3)
  101. '@swc/core':
  102. specifier: 1.13.5
  103. version: 1.13.5
  104. '@types/better-sqlite3':
  105. specifier: ^7.6.13
  106. version: 7.6.13
  107. '@types/cli-progress':
  108. specifier: ^3.11.6
  109. version: 3.11.6
  110. '@types/mocha':
  111. specifier: ^10.0.10
  112. version: 10.0.10
  113. '@types/node':
  114. specifier: ^25.9.4
  115. version: 25.9.4
  116. '@types/tar-fs':
  117. specifier: ^2.0.4
  118. version: 2.0.4
  119. '@types/yauzl-promise':
  120. specifier: ^4.0.1
  121. version: 4.0.1
  122. earl:
  123. specifier: ^2.0.0
  124. version: 2.0.0
  125. eslint:
  126. specifier: ^10.6.0
  127. version: 10.6.0(supports-color@8.1.1)
  128. eslint-config-sukka:
  129. specifier: ^8.13.2
  130. version: 8.13.2(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  131. eslint-formatter-sukka:
  132. specifier: ^8.13.2
  133. version: 8.13.2(eslint@10.6.0(supports-color@8.1.1))
  134. foxts:
  135. specifier: ^5.5.1
  136. version: 5.5.1
  137. jest-worker:
  138. specifier: ^30.4.1
  139. version: 30.4.1
  140. mitata:
  141. specifier: ^1.0.34
  142. version: 1.0.34
  143. mocha:
  144. specifier: ^11.7.6
  145. version: 11.7.6
  146. tinyexec:
  147. specifier: ^1.2.4
  148. version: 1.2.4
  149. typescript:
  150. specifier: ^6.0.3
  151. version: 6.0.3
  152. packages:
  153. '@antfu/install-pkg@1.1.0':
  154. resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
  155. '@cryptography/aes@0.1.1':
  156. resolution: {integrity: sha512-PcYz4FDGblO6tM2kSC+VzhhK62vml6k6/YAkiWtyPvrgJVfnDRoHGDtKn5UiaRRUrvUTTocBpvc2rRgTCqxjsg==}
  157. '@emnapi/core@1.10.0':
  158. resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
  159. '@emnapi/runtime@1.10.0':
  160. resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
  161. '@emnapi/wasi-threads@1.2.1':
  162. resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
  163. '@eslint-community/eslint-plugin-eslint-comments@4.7.2':
  164. resolution: {integrity: sha512-LF03qURSwEWm2dz5wtdDCzNk+7Opl0X7q6I3undsaIuNsEiNvRV3BCtqu14Q/6Pzg1tBj44LcxpW2EpSLZStZw==}
  165. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  166. peerDependencies:
  167. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
  168. '@eslint-community/eslint-utils@4.9.1':
  169. resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
  170. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  171. peerDependencies:
  172. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  173. '@eslint-community/regexpp@4.12.2':
  174. resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
  175. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  176. '@eslint-sukka/eslint-plugin-stylistic@8.13.2':
  177. resolution: {integrity: sha512-tueeZ09vgO4nQH4EdiWleA/96H9BY7LyB6INnIglMdkS5BqyxpSdXpdXcPUXV0b1vI/VFb4Z6Xt/7ZUycVzFHQ==}
  178. peerDependencies:
  179. eslint: '*'
  180. '@eslint-sukka/eslint-plugin-sukka-full@8.13.2':
  181. resolution: {integrity: sha512-VrHXLlD4GIXrU0fbqLf1jJ0rl+BHUhDc2kAeWAcnHWrgrhsMXrqH2/OwT6be7oJtgco7sOWx1891lmSJHEo2jA==}
  182. peerDependencies:
  183. eslint: '*'
  184. typescript: '*'
  185. peerDependenciesMeta:
  186. typescript:
  187. optional: true
  188. '@eslint-sukka/node@8.13.2':
  189. resolution: {integrity: sha512-1UpBhnk58hXRmAKaRYSzKeyJmmcHD9WduFJpOjzku8iq8im85f6sUyaJEIkcMf9JpFaEd41ll8b2j7QQALXDlg==}
  190. '@eslint-sukka/shared@8.13.2':
  191. resolution: {integrity: sha512-WnUeyRqAJJiHR2ypIyL3oFXHiDVyfTkMQ/IBPTT+NGHbtpMY4b+8DuOGVwerJixu57cGXYzi6Pecs0/hLNG3uw==}
  192. peerDependencies:
  193. eslint: '*'
  194. '@eslint/config-array@0.23.5':
  195. resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
  196. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  197. '@eslint/config-helpers@0.6.0':
  198. resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==}
  199. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  200. '@eslint/core@1.2.1':
  201. resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
  202. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  203. '@eslint/js@10.0.1':
  204. resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
  205. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  206. peerDependencies:
  207. eslint: ^10.0.0
  208. peerDependenciesMeta:
  209. eslint:
  210. optional: true
  211. '@eslint/object-schema@3.0.5':
  212. resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
  213. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  214. '@eslint/plugin-kit@0.7.2':
  215. resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==}
  216. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  217. '@ghostery/adblocker-content@2.18.0':
  218. resolution: {integrity: sha512-hO+SHBKzx8PBqppjO6Haj0d4h+4RUQ+0tpVZjs9wUgxLKZlvvYzlQ9sAHilzIT5ixSn+8LSlrYm+ngf2ugH9XQ==}
  219. '@ghostery/adblocker-extended-selectors@2.18.0':
  220. resolution: {integrity: sha512-oeSb/1liYplCq76rrPDmR7A69kNB6WsWjPfcsJFkrPip+WUd83Xbc+I5fnZ36Id3IOyegozZG1ucr3ywwC7OyQ==}
  221. '@ghostery/adblocker@2.18.0':
  222. resolution: {integrity: sha512-u0XWX+kZtBTqjfa+saNXMI2ZLzaoeT3tASjDuBqQ3WYKquLh15Z3nCBIPruT63nMRr41MZLwB8F6jZPIhsM3dA==}
  223. '@ghostery/url-parser@1.3.1':
  224. resolution: {integrity: sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==}
  225. '@henrygd/queue@1.2.0':
  226. resolution: {integrity: sha512-jW/BLSTpcvExDhqJGxtIPgGr2O0IFF8XUNDwEbfCfhrXT8a4xztQ9Lv6U/vbYzYC0xVWn+3zv6YnLUh3bEFUKA==}
  227. '@humanfs/core@0.19.1':
  228. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  229. engines: {node: '>=18.18.0'}
  230. '@humanfs/node@0.16.6':
  231. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  232. engines: {node: '>=18.18.0'}
  233. '@humanwhocodes/module-importer@1.0.1':
  234. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  235. engines: {node: '>=12.22'}
  236. '@humanwhocodes/retry@0.3.1':
  237. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  238. engines: {node: '>=18.18'}
  239. '@humanwhocodes/retry@0.4.3':
  240. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  241. engines: {node: '>=18.18'}
  242. '@isaacs/cliui@8.0.2':
  243. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  244. engines: {node: '>=12'}
  245. '@jest/pattern@30.4.0':
  246. resolution: {integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==}
  247. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  248. '@jest/schemas@30.4.1':
  249. resolution: {integrity: sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==}
  250. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  251. '@jest/types@30.4.1':
  252. resolution: {integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==}
  253. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  254. '@mitata/counters@0.0.8':
  255. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  256. '@napi-rs/wasm-runtime@0.2.12':
  257. resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
  258. '@napi-rs/wasm-runtime@1.1.5':
  259. resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==}
  260. peerDependencies:
  261. '@emnapi/core': ^1.7.1
  262. '@emnapi/runtime': ^1.7.1
  263. '@node-rs/crc32-android-arm-eabi@1.10.6':
  264. resolution: {integrity: sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==}
  265. engines: {node: '>= 10'}
  266. cpu: [arm]
  267. os: [android]
  268. '@node-rs/crc32-android-arm64@1.10.6':
  269. resolution: {integrity: sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==}
  270. engines: {node: '>= 10'}
  271. cpu: [arm64]
  272. os: [android]
  273. '@node-rs/crc32-darwin-arm64@1.10.6':
  274. resolution: {integrity: sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==}
  275. engines: {node: '>= 10'}
  276. cpu: [arm64]
  277. os: [darwin]
  278. '@node-rs/crc32-darwin-x64@1.10.6':
  279. resolution: {integrity: sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==}
  280. engines: {node: '>= 10'}
  281. cpu: [x64]
  282. os: [darwin]
  283. '@node-rs/crc32-freebsd-x64@1.10.6':
  284. resolution: {integrity: sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==}
  285. engines: {node: '>= 10'}
  286. cpu: [x64]
  287. os: [freebsd]
  288. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  289. resolution: {integrity: sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==}
  290. engines: {node: '>= 10'}
  291. cpu: [arm]
  292. os: [linux]
  293. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  294. resolution: {integrity: sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==}
  295. engines: {node: '>= 10'}
  296. cpu: [arm64]
  297. os: [linux]
  298. libc: [glibc]
  299. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  300. resolution: {integrity: sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==}
  301. engines: {node: '>= 10'}
  302. cpu: [arm64]
  303. os: [linux]
  304. libc: [musl]
  305. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  306. resolution: {integrity: sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==}
  307. engines: {node: '>= 10'}
  308. cpu: [x64]
  309. os: [linux]
  310. libc: [glibc]
  311. '@node-rs/crc32-linux-x64-musl@1.10.6':
  312. resolution: {integrity: sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==}
  313. engines: {node: '>= 10'}
  314. cpu: [x64]
  315. os: [linux]
  316. libc: [musl]
  317. '@node-rs/crc32-wasm32-wasi@1.10.6':
  318. resolution: {integrity: sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==}
  319. engines: {node: '>=14.0.0'}
  320. cpu: [wasm32]
  321. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  322. resolution: {integrity: sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==}
  323. engines: {node: '>= 10'}
  324. cpu: [arm64]
  325. os: [win32]
  326. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  327. resolution: {integrity: sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==}
  328. engines: {node: '>= 10'}
  329. cpu: [ia32]
  330. os: [win32]
  331. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  332. resolution: {integrity: sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==}
  333. engines: {node: '>= 10'}
  334. cpu: [x64]
  335. os: [win32]
  336. '@node-rs/crc32@1.10.6':
  337. resolution: {integrity: sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==}
  338. engines: {node: '>= 10'}
  339. '@nolyfill/globalthis@1.0.44':
  340. resolution: {integrity: sha512-PXEAAubKN6zy9AVSrjzYdEaOaPdoFTMxuiDyc2BYGgrvFQ+NiqZD4Q4JHuR9tPKQyZifQ3MnG8SA/8f21+FIrQ==}
  341. engines: {node: '>=12.4.0'}
  342. '@nolyfill/safe-buffer@1.0.44':
  343. resolution: {integrity: sha512-SqlKXtlhNTDMeZKey9jnnuPhi8YTl1lJuEcY9zbm5i4Pqe79UJJ8IJ9oiD6DhgI8KjYc+HtLzpQJNRdNYqb/hw==}
  344. engines: {node: '>=12.4.0'}
  345. '@nolyfill/shared@1.0.44':
  346. resolution: {integrity: sha512-NI1zxDh4LYL7PYlKKCwojjuc5CEZslywrOTKBNyodjmWjRiZ4AlCMs3Gp+zDoPQPNkYCSQp/luNojHmJWWfCbw==}
  347. '@ota-meshi/ast-token-store@0.3.0':
  348. resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==}
  349. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  350. '@oxc-resolver/binding-android-arm-eabi@11.20.0':
  351. resolution: {integrity: sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg==}
  352. cpu: [arm]
  353. os: [android]
  354. '@oxc-resolver/binding-android-arm64@11.20.0':
  355. resolution: {integrity: sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q==}
  356. cpu: [arm64]
  357. os: [android]
  358. '@oxc-resolver/binding-darwin-arm64@11.20.0':
  359. resolution: {integrity: sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ==}
  360. cpu: [arm64]
  361. os: [darwin]
  362. '@oxc-resolver/binding-darwin-x64@11.20.0':
  363. resolution: {integrity: sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg==}
  364. cpu: [x64]
  365. os: [darwin]
  366. '@oxc-resolver/binding-freebsd-x64@11.20.0':
  367. resolution: {integrity: sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ==}
  368. cpu: [x64]
  369. os: [freebsd]
  370. '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
  371. resolution: {integrity: sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg==}
  372. cpu: [arm]
  373. os: [linux]
  374. '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
  375. resolution: {integrity: sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg==}
  376. cpu: [arm]
  377. os: [linux]
  378. '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
  379. resolution: {integrity: sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg==}
  380. cpu: [arm64]
  381. os: [linux]
  382. libc: [glibc]
  383. '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
  384. resolution: {integrity: sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw==}
  385. cpu: [arm64]
  386. os: [linux]
  387. libc: [musl]
  388. '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
  389. resolution: {integrity: sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ==}
  390. cpu: [ppc64]
  391. os: [linux]
  392. libc: [glibc]
  393. '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
  394. resolution: {integrity: sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw==}
  395. cpu: [riscv64]
  396. os: [linux]
  397. libc: [glibc]
  398. '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
  399. resolution: {integrity: sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg==}
  400. cpu: [riscv64]
  401. os: [linux]
  402. libc: [musl]
  403. '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
  404. resolution: {integrity: sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g==}
  405. cpu: [s390x]
  406. os: [linux]
  407. libc: [glibc]
  408. '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
  409. resolution: {integrity: sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g==}
  410. cpu: [x64]
  411. os: [linux]
  412. libc: [glibc]
  413. '@oxc-resolver/binding-linux-x64-musl@11.20.0':
  414. resolution: {integrity: sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ==}
  415. cpu: [x64]
  416. os: [linux]
  417. libc: [musl]
  418. '@oxc-resolver/binding-openharmony-arm64@11.20.0':
  419. resolution: {integrity: sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ==}
  420. cpu: [arm64]
  421. os: [openharmony]
  422. '@oxc-resolver/binding-wasm32-wasi@11.20.0':
  423. resolution: {integrity: sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg==}
  424. engines: {node: '>=14.0.0'}
  425. cpu: [wasm32]
  426. '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
  427. resolution: {integrity: sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA==}
  428. cpu: [arm64]
  429. os: [win32]
  430. '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
  431. resolution: {integrity: sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw==}
  432. cpu: [x64]
  433. os: [win32]
  434. '@package-json/types@0.0.13':
  435. resolution: {integrity: sha512-QL0MO8uptW+EdqK2Un6imfaN9gQ1G5pUEUlvPfHmNrgRTJTGVraKnRbDN5d4N/Z3cWTPDHjiEDJPDEpppldr4g==}
  436. '@pkgjs/parseargs@0.11.0':
  437. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  438. engines: {node: '>=14'}
  439. '@pkgr/core@0.2.9':
  440. resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
  441. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  442. '@remusao/guess-url-type@2.1.0':
  443. resolution: {integrity: sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==}
  444. '@remusao/small@2.1.0':
  445. resolution: {integrity: sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==}
  446. '@remusao/smaz-compress@2.2.0':
  447. resolution: {integrity: sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==}
  448. '@remusao/smaz-decompress@2.2.0':
  449. resolution: {integrity: sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==}
  450. '@remusao/smaz@2.2.0':
  451. resolution: {integrity: sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==}
  452. '@remusao/trie@2.1.0':
  453. resolution: {integrity: sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==}
  454. '@sinclair/typebox@0.34.49':
  455. resolution: {integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==}
  456. '@swc-node/core@1.14.1':
  457. resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==}
  458. engines: {node: '>= 10'}
  459. peerDependencies:
  460. '@swc/core': '>= 1.13.3'
  461. '@swc/types': '>= 0.1'
  462. '@swc-node/register@1.11.1':
  463. resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==}
  464. peerDependencies:
  465. '@swc/core': '>= 1.4.13'
  466. typescript: '>= 4.3'
  467. '@swc-node/sourcemap-support@0.6.1':
  468. resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==}
  469. '@swc/core-darwin-arm64@1.13.5':
  470. resolution: {integrity: sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ==}
  471. engines: {node: '>=10'}
  472. cpu: [arm64]
  473. os: [darwin]
  474. '@swc/core-darwin-x64@1.13.5':
  475. resolution: {integrity: sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng==}
  476. engines: {node: '>=10'}
  477. cpu: [x64]
  478. os: [darwin]
  479. '@swc/core-linux-arm-gnueabihf@1.13.5':
  480. resolution: {integrity: sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ==}
  481. engines: {node: '>=10'}
  482. cpu: [arm]
  483. os: [linux]
  484. '@swc/core-linux-arm64-gnu@1.13.5':
  485. resolution: {integrity: sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw==}
  486. engines: {node: '>=10'}
  487. cpu: [arm64]
  488. os: [linux]
  489. libc: [glibc]
  490. '@swc/core-linux-arm64-musl@1.13.5':
  491. resolution: {integrity: sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ==}
  492. engines: {node: '>=10'}
  493. cpu: [arm64]
  494. os: [linux]
  495. libc: [musl]
  496. '@swc/core-linux-x64-gnu@1.13.5':
  497. resolution: {integrity: sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA==}
  498. engines: {node: '>=10'}
  499. cpu: [x64]
  500. os: [linux]
  501. libc: [glibc]
  502. '@swc/core-linux-x64-musl@1.13.5':
  503. resolution: {integrity: sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q==}
  504. engines: {node: '>=10'}
  505. cpu: [x64]
  506. os: [linux]
  507. libc: [musl]
  508. '@swc/core-win32-arm64-msvc@1.13.5':
  509. resolution: {integrity: sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw==}
  510. engines: {node: '>=10'}
  511. cpu: [arm64]
  512. os: [win32]
  513. '@swc/core-win32-ia32-msvc@1.13.5':
  514. resolution: {integrity: sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw==}
  515. engines: {node: '>=10'}
  516. cpu: [ia32]
  517. os: [win32]
  518. '@swc/core-win32-x64-msvc@1.13.5':
  519. resolution: {integrity: sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q==}
  520. engines: {node: '>=10'}
  521. cpu: [x64]
  522. os: [win32]
  523. '@swc/core@1.13.5':
  524. resolution: {integrity: sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ==}
  525. engines: {node: '>=10'}
  526. peerDependencies:
  527. '@swc/helpers': '>=0.5.17'
  528. peerDependenciesMeta:
  529. '@swc/helpers':
  530. optional: true
  531. '@swc/counter@0.1.3':
  532. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  533. '@swc/types@0.1.25':
  534. resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
  535. '@tybys/wasm-util@0.10.2':
  536. resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
  537. '@types/better-sqlite3@7.6.13':
  538. resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
  539. '@types/cli-progress@3.11.6':
  540. resolution: {integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==}
  541. '@types/esrecurse@4.3.1':
  542. resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
  543. '@types/estree@1.0.8':
  544. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  545. '@types/istanbul-lib-coverage@2.0.6':
  546. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  547. '@types/istanbul-lib-report@3.0.3':
  548. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  549. '@types/istanbul-reports@3.0.4':
  550. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  551. '@types/json-schema@7.0.15':
  552. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  553. '@types/mocha@10.0.10':
  554. resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
  555. '@types/node@25.9.4':
  556. resolution: {integrity: sha512-dszCsrKb5U7ZsVZBWiHFklTloVl0mSEnWH/iZXfZUlI4rzCUnsvGmgqfuVRHL54ugE7/wRuxEIXRa2iMZ+BG6g==}
  557. '@types/tar-fs@2.0.4':
  558. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  559. '@types/tar-stream@3.1.4':
  560. resolution: {integrity: sha512-921gW0+g29mCJX0fRvqeHzBlE/XclDaAG0Ousy1LCghsOhvaKacDeRGEVzQP9IPfKn8Vysy7FEXAIxycpc/CMg==}
  561. '@types/yargs-parser@21.0.3':
  562. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  563. '@types/yargs@17.0.35':
  564. resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
  565. '@types/yauzl-promise@4.0.1':
  566. resolution: {integrity: sha512-qYEC3rJwqiJpdQ9b+bPNeuSY0c3JUM8vIuDy08qfuVN7xHm3ZDsHn2kGphUIB0ruEXrPGNXZ64nMUcu4fDjViQ==}
  567. '@typescript-eslint/eslint-plugin@8.62.1':
  568. resolution: {integrity: sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==}
  569. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  570. peerDependencies:
  571. '@typescript-eslint/parser': ^8.62.1
  572. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  573. typescript: '>=4.8.4 <6.1.0'
  574. '@typescript-eslint/parser@8.62.1':
  575. resolution: {integrity: sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==}
  576. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  577. peerDependencies:
  578. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  579. typescript: '>=4.8.4 <6.1.0'
  580. '@typescript-eslint/project-service@8.62.1':
  581. resolution: {integrity: sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==}
  582. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  583. peerDependencies:
  584. typescript: '>=4.8.4 <6.1.0'
  585. '@typescript-eslint/scope-manager@8.62.1':
  586. resolution: {integrity: sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==}
  587. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  588. '@typescript-eslint/tsconfig-utils@8.62.1':
  589. resolution: {integrity: sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==}
  590. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  591. peerDependencies:
  592. typescript: '>=4.8.4 <6.1.0'
  593. '@typescript-eslint/type-utils@8.62.1':
  594. resolution: {integrity: sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==}
  595. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  596. peerDependencies:
  597. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  598. typescript: '>=4.8.4 <6.1.0'
  599. '@typescript-eslint/types@8.61.0':
  600. resolution: {integrity: sha512-9QTQpZ5Iin4CdIodfbDQFSeiSJKidgYJYug1P9CC2xWgUTvlmixViqDZNciMjwLBZyJnG4tGmPl97rVAFb1AJg==}
  601. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  602. '@typescript-eslint/types@8.62.1':
  603. resolution: {integrity: sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==}
  604. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  605. '@typescript-eslint/typescript-estree@8.62.1':
  606. resolution: {integrity: sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==}
  607. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  608. peerDependencies:
  609. typescript: '>=4.8.4 <6.1.0'
  610. '@typescript-eslint/utils@8.62.1':
  611. resolution: {integrity: sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==}
  612. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  613. peerDependencies:
  614. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  615. typescript: '>=4.8.4 <6.1.0'
  616. '@typescript-eslint/visitor-keys@8.62.1':
  617. resolution: {integrity: sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==}
  618. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  619. '@ungap/structured-clone@1.3.0':
  620. resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
  621. deprecated: Potential CWE-502 - Update to 1.3.1 or higher
  622. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  623. resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
  624. cpu: [arm]
  625. os: [android]
  626. '@unrs/resolver-binding-android-arm64@1.11.1':
  627. resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
  628. cpu: [arm64]
  629. os: [android]
  630. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  631. resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
  632. cpu: [arm64]
  633. os: [darwin]
  634. '@unrs/resolver-binding-darwin-x64@1.11.1':
  635. resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
  636. cpu: [x64]
  637. os: [darwin]
  638. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  639. resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
  640. cpu: [x64]
  641. os: [freebsd]
  642. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  643. resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
  644. cpu: [arm]
  645. os: [linux]
  646. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  647. resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
  648. cpu: [arm]
  649. os: [linux]
  650. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  651. resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
  652. cpu: [arm64]
  653. os: [linux]
  654. libc: [glibc]
  655. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  656. resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
  657. cpu: [arm64]
  658. os: [linux]
  659. libc: [musl]
  660. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  661. resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
  662. cpu: [ppc64]
  663. os: [linux]
  664. libc: [glibc]
  665. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  666. resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
  667. cpu: [riscv64]
  668. os: [linux]
  669. libc: [glibc]
  670. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  671. resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
  672. cpu: [riscv64]
  673. os: [linux]
  674. libc: [musl]
  675. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  676. resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
  677. cpu: [s390x]
  678. os: [linux]
  679. libc: [glibc]
  680. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  681. resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
  682. cpu: [x64]
  683. os: [linux]
  684. libc: [glibc]
  685. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  686. resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
  687. cpu: [x64]
  688. os: [linux]
  689. libc: [musl]
  690. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  691. resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
  692. engines: {node: '>=14.0.0'}
  693. cpu: [wasm32]
  694. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  695. resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
  696. cpu: [arm64]
  697. os: [win32]
  698. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  699. resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
  700. cpu: [ia32]
  701. os: [win32]
  702. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  703. resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
  704. cpu: [x64]
  705. os: [win32]
  706. acorn-jsx@5.3.2:
  707. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  708. peerDependencies:
  709. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  710. acorn@8.16.0:
  711. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  712. engines: {node: '>=0.4.0'}
  713. hasBin: true
  714. ajv@6.14.0:
  715. resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
  716. ansi-regex@5.0.1:
  717. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  718. engines: {node: '>=8'}
  719. ansi-regex@6.2.0:
  720. resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
  721. engines: {node: '>=12'}
  722. ansi-styles@4.3.0:
  723. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  724. engines: {node: '>=8'}
  725. ansi-styles@6.2.1:
  726. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  727. engines: {node: '>=12'}
  728. argparse@2.0.1:
  729. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  730. async-mutex@0.3.2:
  731. resolution: {integrity: sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==}
  732. b4a@1.6.7:
  733. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  734. balanced-match@1.0.2:
  735. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  736. balanced-match@4.0.4:
  737. resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
  738. engines: {node: 18 || 20 || >=22}
  739. bare-events@2.6.1:
  740. resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
  741. bare-fs@4.2.1:
  742. resolution: {integrity: sha512-mELROzV0IhqilFgsl1gyp48pnZsaV9xhQapHLDsvn4d4ZTfbFhcghQezl7FTEDNBcGqLUnNI3lUlm6ecrLWdFA==}
  743. engines: {bare: '>=1.16.0'}
  744. peerDependencies:
  745. bare-buffer: '*'
  746. peerDependenciesMeta:
  747. bare-buffer:
  748. optional: true
  749. bare-os@3.6.2:
  750. resolution: {integrity: sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==}
  751. engines: {bare: '>=1.14.0'}
  752. bare-path@3.0.0:
  753. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  754. bare-stream@2.7.0:
  755. resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==}
  756. peerDependencies:
  757. bare-buffer: '*'
  758. bare-events: '*'
  759. peerDependenciesMeta:
  760. bare-buffer:
  761. optional: true
  762. bare-events:
  763. optional: true
  764. base64-js@1.5.1:
  765. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  766. better-sqlite3@12.8.0:
  767. resolution: {integrity: sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==}
  768. engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x}
  769. big-integer@1.6.52:
  770. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  771. engines: {node: '>=0.6'}
  772. bindings@1.5.0:
  773. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  774. bl@4.1.0:
  775. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  776. brace-expansion@2.0.2:
  777. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  778. brace-expansion@5.0.3:
  779. resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
  780. engines: {node: 18 || 20 || >=22}
  781. browser-stdout@1.3.1:
  782. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  783. buffer-from@1.1.2:
  784. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  785. buffer@5.7.1:
  786. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  787. buffer@6.0.3:
  788. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  789. bufferutil@4.0.9:
  790. resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
  791. engines: {node: '>=6.14.2'}
  792. camelcase@6.3.0:
  793. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  794. engines: {node: '>=10'}
  795. chalk@4.1.2:
  796. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  797. engines: {node: '>=10'}
  798. chokidar@4.0.3:
  799. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  800. engines: {node: '>= 14.16.0'}
  801. chownr@1.1.4:
  802. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  803. ci-info@4.4.0:
  804. resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
  805. engines: {node: '>=8'}
  806. cli-progress@3.12.0:
  807. resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
  808. engines: {node: '>=4'}
  809. cliui@8.0.1:
  810. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  811. engines: {node: '>=12'}
  812. color-convert@2.0.1:
  813. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  814. engines: {node: '>=7.0.0'}
  815. color-name@1.1.4:
  816. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  817. colorette@2.0.20:
  818. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  819. comment-parser@1.4.1:
  820. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  821. engines: {node: '>= 12.0.0'}
  822. cross-spawn@7.0.6:
  823. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  824. engines: {node: '>= 8'}
  825. csv-parse@7.0.0:
  826. resolution: {integrity: sha512-CSssqPAK5us09FhMI9juM0jnqXUJP+rtWeIfivTYBLNH/8rnxkQlZvoRemF6MAyfNov9XU8mN2wwF/pP68sxTA==}
  827. d@1.0.2:
  828. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  829. engines: {node: '>=0.12'}
  830. debug@2.6.9:
  831. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  832. peerDependencies:
  833. supports-color: '*'
  834. peerDependenciesMeta:
  835. supports-color:
  836. optional: true
  837. debug@4.4.1:
  838. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  839. engines: {node: '>=6.0'}
  840. peerDependencies:
  841. supports-color: '*'
  842. peerDependenciesMeta:
  843. supports-color:
  844. optional: true
  845. debug@4.4.3:
  846. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  847. engines: {node: '>=6.0'}
  848. peerDependencies:
  849. supports-color: '*'
  850. peerDependenciesMeta:
  851. supports-color:
  852. optional: true
  853. decamelize@4.0.0:
  854. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  855. engines: {node: '>=10'}
  856. decompress-response@6.0.0:
  857. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  858. engines: {node: '>=10'}
  859. deep-extend@0.6.0:
  860. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  861. engines: {node: '>=4.0.0'}
  862. deep-is@0.1.4:
  863. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  864. defu@6.1.7:
  865. resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
  866. detect-libc@2.0.4:
  867. resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
  868. engines: {node: '>=8'}
  869. diff-sequences@29.6.3:
  870. resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
  871. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  872. diff@7.0.0:
  873. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  874. engines: {node: '>=0.3.1'}
  875. dom-serializer@1.4.1:
  876. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  877. domain-alive@0.1.22:
  878. resolution: {integrity: sha512-jmGCN6EOuLs7BwitNEUVhqF5tTFGvFtXAhhANbKR60tLCCWNuER72+YSiSCsO8OVXgXV1jL/zQ6RyrBUPmogaA==}
  879. domelementtype@2.3.0:
  880. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  881. domhandler@4.3.1:
  882. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  883. engines: {node: '>= 4'}
  884. domutils@2.8.0:
  885. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  886. earl@2.0.0:
  887. resolution: {integrity: sha512-je2x7VWHNN3kN5zqcUUeEEokHoL7HWwiOxCdlLi66LkMqUnLECVZGePdgBtrqLrUg25bHLFrM+bkBXwcI7f+EQ==}
  888. eastasianwidth@0.2.0:
  889. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  890. emoji-regex@8.0.0:
  891. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  892. emoji-regex@9.2.2:
  893. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  894. end-of-stream@1.4.5:
  895. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  896. enhanced-resolve@5.18.3:
  897. resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
  898. engines: {node: '>=10.13.0'}
  899. enhanced-resolve@5.24.1:
  900. resolution: {integrity: sha512-7DdUaTjmNwMcH2gLr1qycesKII3BK4RLy/mdAb7x10Lq7bR4aNKHt1BR1ZALSv0rPM/hF5wYF0PhGop/rJm8vw==}
  901. engines: {node: '>=10.13.0'}
  902. entities@2.2.0:
  903. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  904. error-stack-parser@2.1.4:
  905. resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
  906. es5-ext@0.10.64:
  907. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  908. engines: {node: '>=0.10'}
  909. es6-iterator@2.0.3:
  910. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  911. es6-symbol@3.1.4:
  912. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  913. engines: {node: '>=0.12'}
  914. escalade@3.2.0:
  915. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  916. engines: {node: '>=6'}
  917. escape-string-regexp@4.0.0:
  918. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  919. engines: {node: '>=10'}
  920. eslint-compat-utils@0.5.1:
  921. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  922. engines: {node: '>=12'}
  923. peerDependencies:
  924. eslint: '>=6.0.0'
  925. eslint-config-sukka@8.13.2:
  926. resolution: {integrity: sha512-4S/7JSA96Z/DIqTRFqZ/lrVXwg7IgBUmIwd/QZGBnQvYr6SYwFM9RcoZvcRquS2GpAzQKLgNo4PNQ3IR6NjyiQ==}
  927. eslint-formatter-sukka@8.13.2:
  928. resolution: {integrity: sha512-3n3O8eX9IjpUJMCeMWKPfm8XANTPlje8hupOqYAegEbyBfb/BGwRVCy3kQ+zLjoXbJqKro2RgiGWKAFFLZFd3w==}
  929. peerDependencies:
  930. eslint: '*'
  931. eslint-import-context@0.1.9:
  932. resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
  933. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  934. peerDependencies:
  935. unrs-resolver: ^1.0.0
  936. peerDependenciesMeta:
  937. unrs-resolver:
  938. optional: true
  939. eslint-import-resolver-typescript@4.4.5:
  940. resolution: {integrity: sha512-nbE5XLph6TLtGYcu/U6e6ZVXyKBhbDWK5cLGk76eJ7NdZpwf1P9EFkpt1Z01mNZNrrilsAYWKH6zUkL4reoXbw==}
  941. engines: {node: ^16.17.0 || >=18.6.0}
  942. peerDependencies:
  943. eslint: '*'
  944. eslint-plugin-import: '*'
  945. eslint-plugin-import-x: '*'
  946. peerDependenciesMeta:
  947. eslint-plugin-import:
  948. optional: true
  949. eslint-plugin-import-x:
  950. optional: true
  951. eslint-json-compat-utils@0.2.3:
  952. resolution: {integrity: sha512-RbBmDFyu7FqnjE8F0ZxPNzx5UaptdeS9Uu50r7A+D7s/+FCX+ybiyViYEgFUaFIFqSWJgZRTpL5d8Kanxxl2lQ==}
  953. engines: {node: '>=12'}
  954. peerDependencies:
  955. '@eslint/json': '*'
  956. eslint: '*'
  957. jsonc-eslint-parser: ^2.4.0 || ^3.0.0
  958. peerDependenciesMeta:
  959. '@eslint/json':
  960. optional: true
  961. eslint-plugin-es-x@7.8.0:
  962. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  963. engines: {node: ^14.18.0 || >=16.0.0}
  964. peerDependencies:
  965. eslint: '>=8'
  966. eslint-plugin-import-x@4.17.1:
  967. resolution: {integrity: sha512-4cdstYkKCyjumM2Q9NSI03K8D2a9F4Ssz33K2lv2hQa4KmR9jPLwk3uWGtNvclfqBrPGfGuMBwsGMbe6dMRbfg==}
  968. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  969. peerDependencies:
  970. '@typescript-eslint/utils': ^8.56.0
  971. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  972. eslint-import-resolver-node: '*'
  973. peerDependenciesMeta:
  974. '@typescript-eslint/utils':
  975. optional: true
  976. eslint-import-resolver-node:
  977. optional: true
  978. eslint-plugin-jsonc@3.2.0:
  979. resolution: {integrity: sha512-eQSxJypkpNycQAFE/ph/j+bDD2MiCcojxNb+7nugYzuQZvELYg4YO1Cv1y/8MbjPIEw5u3Lx0VPOTlqJJIhPPw==}
  980. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  981. peerDependencies:
  982. eslint: '>=9.38.0'
  983. eslint-plugin-n@17.24.0:
  984. resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
  985. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  986. peerDependencies:
  987. eslint: '>=8.23.0'
  988. eslint-plugin-promise@7.3.0:
  989. resolution: {integrity: sha512-6uGiOR0INuujr6PEQmeSSP7GbIMJ/ebEXXiEzb/nOj68LknH5Pxzb/AbZivmr6VE6TkTE8rTjRK9zhKpK6HsRA==}
  990. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  991. peerDependencies:
  992. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
  993. eslint-plugin-regexp@3.1.1:
  994. resolution: {integrity: sha512-MxR5nqoQCtVWmJwia0D2+NlXX1xzdpkslsVOZLEYQ4PQWEaL65PCZXURxaBc3lPnkNFpNxzMIRmYVxdl8giXRA==}
  995. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  996. peerDependencies:
  997. eslint: '>=9.38.0'
  998. eslint-plugin-sukka@9.11.0:
  999. resolution: {integrity: sha512-jLm2QKYBfaaprnGiz/IIz/u04E1dh9FxYHx92FIZjuNqwIoG16A4s/q0dKBoUnXpl2EpeMB4R/Pq3lhPeh830Q==}
  1000. peerDependencies:
  1001. eslint: '>=9.29.0'
  1002. typescript: '*'
  1003. eslint-plugin-unused-imports@4.4.1:
  1004. resolution: {integrity: sha512-oZGYUz1X3sRMGUB+0cZyK2VcvRX5lm/vB56PgNNcU+7ficUCKm66oZWKUubXWnOuPjQ8PvmXtCViXBMONPe7tQ==}
  1005. peerDependencies:
  1006. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  1007. eslint: ^10.0.0 || ^9.0.0 || ^8.0.0
  1008. peerDependenciesMeta:
  1009. '@typescript-eslint/eslint-plugin':
  1010. optional: true
  1011. eslint-scope@9.1.2:
  1012. resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
  1013. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1014. eslint-visitor-keys@3.4.3:
  1015. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  1016. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1017. eslint-visitor-keys@5.0.1:
  1018. resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
  1019. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1020. eslint@10.6.0:
  1021. resolution: {integrity: sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==}
  1022. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1023. hasBin: true
  1024. peerDependencies:
  1025. jiti: '*'
  1026. peerDependenciesMeta:
  1027. jiti:
  1028. optional: true
  1029. esniff@2.0.1:
  1030. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  1031. engines: {node: '>=0.10'}
  1032. espree@11.2.0:
  1033. resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
  1034. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1035. esquery@1.7.0:
  1036. resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
  1037. engines: {node: '>=0.10'}
  1038. esrecurse@4.3.0:
  1039. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1040. engines: {node: '>=4.0'}
  1041. estraverse@5.3.0:
  1042. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1043. engines: {node: '>=4.0'}
  1044. esutils@2.0.3:
  1045. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1046. engines: {node: '>=0.10.0'}
  1047. event-emitter@0.3.5:
  1048. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  1049. expand-template@2.0.3:
  1050. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  1051. engines: {node: '>=6'}
  1052. ext@1.7.0:
  1053. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  1054. fast-cidr-tools@0.3.4:
  1055. resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
  1056. engines: {node: '>=16'}
  1057. fast-deep-equal@3.1.3:
  1058. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1059. fast-escape-html@1.1.0:
  1060. resolution: {integrity: sha512-nRvjfywv8gzIBs0fM/ht6S5scNUamm+o+91p/69cYYNWODb7b/UiQfjFx+6n8NMtdHs6K80kh+hW1dPNS/opIA==}
  1061. fast-escape-regexp@1.0.1:
  1062. resolution: {integrity: sha512-VSnAgWEYHdyyVegVfN/TUCa6hDQ7PIxdIJVWq4RWqyegkG9zFwNb21uykT0hAyvKlKnFR+zOu/25434pHBXtLA==}
  1063. fast-fifo@1.3.2:
  1064. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  1065. fast-json-stable-stringify@2.1.0:
  1066. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1067. fast-levenshtein@2.0.6:
  1068. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1069. fast-uri@4.1.0:
  1070. resolution: {integrity: sha512-ZodJ2cRiLVWGi9IgPb3mbgSqM4CD3LexCHkuv0FfBXHJI1ADfucTD06m6clO2Cy5RZYsw/SiCVl/dyrFI/SYWA==}
  1071. fdir@6.5.0:
  1072. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1073. engines: {node: '>=12.0.0'}
  1074. peerDependencies:
  1075. picomatch: ^3 || ^4
  1076. peerDependenciesMeta:
  1077. picomatch:
  1078. optional: true
  1079. file-entry-cache@8.0.0:
  1080. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1081. engines: {node: '>=16.0.0'}
  1082. file-uri-to-path@1.0.0:
  1083. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1084. find-up@5.0.0:
  1085. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1086. engines: {node: '>=10'}
  1087. flat-cache@4.0.1:
  1088. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1089. engines: {node: '>=16'}
  1090. flat@5.0.2:
  1091. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1092. hasBin: true
  1093. flatted@3.3.3:
  1094. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1095. foreground-child@3.3.1:
  1096. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1097. engines: {node: '>=14'}
  1098. foxts@4.6.0:
  1099. resolution: {integrity: sha512-Sq6k7CDUAz1/MOiwRiV59tblzsaWGOQitYxvF/l7H5Z/9gZNBvWKWsRcXLS7T7FLKRKO0LmETiefkVUm5omESg==}
  1100. foxts@5.5.1:
  1101. resolution: {integrity: sha512-jBm7lzO/D8CK2S/BhVHUbFb4n3NdjkCTRbvHgtqYitFzUYqK2iH6jEQNEI/Erde6WjLnrmZfdxAoIXbkm4pfxA==}
  1102. fs-constants@1.0.0:
  1103. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1104. get-caller-file@2.0.5:
  1105. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1106. engines: {node: 6.* || 8.* || >= 10.*}
  1107. get-tsconfig@4.12.0:
  1108. resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
  1109. github-from-package@0.0.0:
  1110. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1111. glob-parent@6.0.2:
  1112. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1113. engines: {node: '>=10.13.0'}
  1114. glob@10.4.5:
  1115. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1116. deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
  1117. hasBin: true
  1118. globals@15.15.0:
  1119. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  1120. engines: {node: '>=18'}
  1121. globrex@0.1.2:
  1122. resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
  1123. graceful-fs@4.2.11:
  1124. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1125. has-flag@4.0.0:
  1126. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1127. engines: {node: '>=8'}
  1128. hash-wasm@4.12.0:
  1129. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1130. he@1.2.0:
  1131. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1132. hasBin: true
  1133. hntrie@1.0.1:
  1134. resolution: {integrity: sha512-k3OIFupPUGL1WrAiZ0Xa5on/vE/MKlub7ZQtEH0AfzfskMqq4/H6xgSqMeCXzVgNDWruP/Ff+9O5mHRzL4XZyg==}
  1135. htmlparser2@6.1.0:
  1136. resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
  1137. ieee754@1.2.1:
  1138. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1139. ignore@5.3.2:
  1140. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1141. engines: {node: '>= 4'}
  1142. ignore@7.0.5:
  1143. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1144. engines: {node: '>= 4'}
  1145. imurmurhash@0.1.4:
  1146. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1147. engines: {node: '>=0.8.19'}
  1148. inherits@2.0.4:
  1149. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1150. ini@1.3.8:
  1151. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1152. ip-address@10.0.1:
  1153. resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
  1154. engines: {node: '>= 12'}
  1155. is-bun-module@2.0.0:
  1156. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1157. is-extglob@2.1.1:
  1158. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1159. engines: {node: '>=0.10.0'}
  1160. is-fullwidth-code-point@3.0.0:
  1161. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1162. engines: {node: '>=8'}
  1163. is-glob@4.0.3:
  1164. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1165. engines: {node: '>=0.10.0'}
  1166. is-it-type@5.1.3:
  1167. resolution: {integrity: sha512-AX2uU0HW+TxagTgQXOJY7+2fbFHemC7YFBwN1XqD8qQMKdtfbOC8OC3fUb4s5NU59a3662Dzwto8tWDdZYRXxg==}
  1168. engines: {node: '>=12'}
  1169. is-path-inside@3.0.3:
  1170. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1171. engines: {node: '>=8'}
  1172. is-plain-obj@2.1.0:
  1173. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1174. engines: {node: '>=8'}
  1175. is-typedarray@1.0.0:
  1176. resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
  1177. is-unicode-supported@0.1.0:
  1178. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1179. engines: {node: '>=10'}
  1180. isexe@2.0.0:
  1181. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1182. jackspeak@3.4.3:
  1183. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1184. jest-regex-util@30.4.0:
  1185. resolution: {integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==}
  1186. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1187. jest-util@30.4.1:
  1188. resolution: {integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==}
  1189. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1190. jest-worker@30.4.1:
  1191. resolution: {integrity: sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==}
  1192. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1193. js-yaml@4.1.0:
  1194. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1195. hasBin: true
  1196. jsdoc-type-pratt-parser@7.1.1:
  1197. resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
  1198. engines: {node: '>=20.0.0'}
  1199. json-buffer@3.0.1:
  1200. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1201. json-schema-traverse@0.4.1:
  1202. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1203. json-stable-stringify-without-jsonify@1.0.1:
  1204. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1205. json-stringify-pretty-compact@4.0.0:
  1206. resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==}
  1207. jsonc-eslint-parser@3.1.0:
  1208. resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==}
  1209. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1210. keyv@4.5.4:
  1211. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1212. levn@0.4.1:
  1213. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1214. engines: {node: '>= 0.8.0'}
  1215. locate-path@6.0.0:
  1216. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1217. engines: {node: '>=10'}
  1218. log-symbols@4.1.0:
  1219. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1220. engines: {node: '>=10'}
  1221. lru-cache@10.4.3:
  1222. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1223. merge-stream@2.0.0:
  1224. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1225. mime@3.0.0:
  1226. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1227. engines: {node: '>=10.0.0'}
  1228. hasBin: true
  1229. mimic-response@3.1.0:
  1230. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1231. engines: {node: '>=10'}
  1232. minimatch@10.2.4:
  1233. resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
  1234. engines: {node: 18 || 20 || >=22}
  1235. minimatch@9.0.5:
  1236. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1237. engines: {node: '>=16 || 14 >=14.17'}
  1238. minimist@1.2.8:
  1239. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1240. minipass@7.1.2:
  1241. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1242. engines: {node: '>=16 || 14 >=14.17'}
  1243. mitata@1.0.34:
  1244. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1245. mkdirp-classic@0.5.3:
  1246. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1247. mocha@11.7.6:
  1248. resolution: {integrity: sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA==}
  1249. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1250. hasBin: true
  1251. ms@2.0.0:
  1252. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1253. ms@2.1.3:
  1254. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1255. napi-build-utils@2.0.0:
  1256. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1257. napi-postinstall@0.3.4:
  1258. resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
  1259. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  1260. hasBin: true
  1261. natural-compare@1.4.0:
  1262. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1263. next-tick@1.1.0:
  1264. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1265. node-abi@3.75.0:
  1266. resolution: {integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==}
  1267. engines: {node: '>=10'}
  1268. node-gyp-build@4.8.4:
  1269. resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
  1270. hasBin: true
  1271. node-localstorage@2.2.1:
  1272. resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
  1273. engines: {node: '>=0.12'}
  1274. null-prototype-object@1.2.7:
  1275. resolution: {integrity: sha512-pSZWCUew0zed2gxCerA4zdXRGg8ezLiWwvE8RvncezTcROXL0uz3PjSZXl5NsI04Egz0Uu46o1wyX6qr3u/ZWA==}
  1276. engines: {node: '>= 20'}
  1277. once@1.4.0:
  1278. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1279. optionator@0.9.4:
  1280. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1281. engines: {node: '>= 0.8.0'}
  1282. oxc-resolver@11.20.0:
  1283. resolution: {integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==}
  1284. p-limit@3.1.0:
  1285. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1286. engines: {node: '>=10'}
  1287. p-locate@5.0.0:
  1288. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1289. engines: {node: '>=10'}
  1290. package-json-from-dist@1.0.1:
  1291. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1292. package-manager-detector@1.5.0:
  1293. resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==}
  1294. pako@2.1.0:
  1295. resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
  1296. path-browserify@1.0.1:
  1297. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1298. path-exists@4.0.0:
  1299. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1300. engines: {node: '>=8'}
  1301. path-key@3.1.1:
  1302. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1303. engines: {node: '>=8'}
  1304. path-scurry@1.11.1:
  1305. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1306. engines: {node: '>=16 || 14 >=14.18'}
  1307. picocolors@1.1.1:
  1308. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1309. picomatch@4.0.4:
  1310. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  1311. engines: {node: '>=12'}
  1312. pirates@4.0.7:
  1313. resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
  1314. engines: {node: '>= 6'}
  1315. prebuild-install@7.1.3:
  1316. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1317. engines: {node: '>=10'}
  1318. deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
  1319. hasBin: true
  1320. prelude-ls@1.2.1:
  1321. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1322. engines: {node: '>= 0.8.0'}
  1323. pump@3.0.3:
  1324. resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
  1325. punycode@2.3.1:
  1326. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1327. engines: {node: '>=6'}
  1328. randombytes@2.1.0:
  1329. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1330. rc@1.2.8:
  1331. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1332. hasBin: true
  1333. readable-stream@3.6.2:
  1334. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1335. engines: {node: '>= 6'}
  1336. readdirp@4.1.2:
  1337. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1338. engines: {node: '>= 14.18.0'}
  1339. real-cancellable-promise@1.2.3:
  1340. resolution: {integrity: sha512-hBI5Gy/55VEeeMtImMgEirD7eq5UmqJf1J8dFZtbJZA/3rB0pYFZ7PayMGueb6v4UtUtpKpP+05L0VwyE1hI9Q==}
  1341. refa@0.12.1:
  1342. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1343. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1344. regexp-ast-analysis@0.7.1:
  1345. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1346. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1347. require-directory@2.1.1:
  1348. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1349. engines: {node: '>=0.10.0'}
  1350. resolve-pkg-maps@1.0.0:
  1351. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1352. scslre@0.3.0:
  1353. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1354. engines: {node: ^14.0.0 || >=16.0.0}
  1355. semver@7.7.3:
  1356. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  1357. engines: {node: '>=10'}
  1358. hasBin: true
  1359. serialize-javascript@6.0.2:
  1360. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1361. shebang-command@2.0.0:
  1362. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1363. engines: {node: '>=8'}
  1364. shebang-regex@3.0.0:
  1365. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1366. engines: {node: '>=8'}
  1367. signal-exit@4.1.0:
  1368. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1369. engines: {node: '>=14'}
  1370. simple-concat@1.0.1:
  1371. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1372. simple-get@4.0.1:
  1373. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1374. simple-invariant@2.0.1:
  1375. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1376. engines: {node: '>=10'}
  1377. slide@1.1.6:
  1378. resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
  1379. smart-buffer@4.2.0:
  1380. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  1381. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  1382. socks@2.8.7:
  1383. resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
  1384. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  1385. source-map-support@0.5.21:
  1386. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1387. source-map@0.6.1:
  1388. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1389. engines: {node: '>=0.10.0'}
  1390. stable-hash-x@0.2.0:
  1391. resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
  1392. engines: {node: '>=12.0.0'}
  1393. stackframe@1.3.4:
  1394. resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
  1395. store2@2.14.4:
  1396. resolution: {integrity: sha512-srTItn1GOvyvOycgxjAnPA63FZNwy0PTyUBFMHRM+hVFltAeoh0LmNBz9SZqUS9mMqGk8rfyWyXn3GH5ReJ8Zw==}
  1397. streamx@2.22.1:
  1398. resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
  1399. string-width@4.2.3:
  1400. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1401. engines: {node: '>=8'}
  1402. string-width@5.1.2:
  1403. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1404. engines: {node: '>=12'}
  1405. string_decoder@1.3.0:
  1406. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1407. strip-ansi@6.0.1:
  1408. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1409. engines: {node: '>=8'}
  1410. strip-ansi@7.1.0:
  1411. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1412. engines: {node: '>=12'}
  1413. strip-json-comments@2.0.1:
  1414. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1415. engines: {node: '>=0.10.0'}
  1416. strip-json-comments@3.1.1:
  1417. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1418. engines: {node: '>=8'}
  1419. supports-color@7.2.0:
  1420. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1421. engines: {node: '>=8'}
  1422. supports-color@8.1.1:
  1423. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1424. engines: {node: '>=10'}
  1425. synckit@0.11.12:
  1426. resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
  1427. engines: {node: ^14.18.0 || >=16.0.0}
  1428. tapable@2.3.0:
  1429. resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
  1430. engines: {node: '>=6'}
  1431. tapable@2.3.3:
  1432. resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
  1433. engines: {node: '>=6'}
  1434. tar-fs@2.1.3:
  1435. resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==}
  1436. tar-fs@3.1.3:
  1437. resolution: {integrity: sha512-/hU4AXnIdZu+Gvl1pk0oI5f5HxWsCJRtY2aFaJdk9VvyL48DWU6iU5WAIPG+wIi1YvWA6eTJvIviP/tMAZZNwQ==}
  1438. tar-stream@2.2.0:
  1439. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1440. engines: {node: '>=6'}
  1441. tar-stream@3.1.7:
  1442. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1443. telegram@2.26.22:
  1444. resolution: {integrity: sha512-EIj7Yrjiu0Yosa3FZ/7EyPg9s6UiTi/zDQrFmR/2Mg7pIUU+XjAit1n1u9OU9h2oRnRM5M+67/fxzQluZpaJJg==}
  1445. text-decoder@1.2.3:
  1446. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1447. tinyexec@1.2.4:
  1448. resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==}
  1449. engines: {node: '>=18'}
  1450. tinyglobby@0.2.17:
  1451. resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
  1452. engines: {node: '>=12.0.0'}
  1453. tldts-core@7.4.5:
  1454. resolution: {integrity: sha512-pGrwzZDvPwKe+7NNUqAunb6rqTfynr0VOUhCMdqbu5xlvNiszsAJygRzwvpVycdzejlbpY+SWJOn+s75Og7FEA==}
  1455. tldts-experimental@7.4.5:
  1456. resolution: {integrity: sha512-bwtTTTg5YJVFwpoxqO1Xtggkmia84oKfXCGMvz6ta1JEJ5S+MJ5n7hyYFzXVNh9GFg6zisd90iPTFzhe5bMQwg==}
  1457. tldts@7.4.5:
  1458. resolution: {integrity: sha512-RfEzKWcq5fHUOFq7J3rl3Oz6ylKGtcHqUznzj4EcXsxLSIjJcvpbXAQtWGeJQ0xKnimR5e0Cn+cn9TssfMzm+g==}
  1459. hasBin: true
  1460. ts-api-utils@2.5.0:
  1461. resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
  1462. engines: {node: '>=18.12'}
  1463. peerDependencies:
  1464. typescript: '>=4.8.4'
  1465. ts-custom-error@3.3.1:
  1466. resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==}
  1467. engines: {node: '>=14.0.0'}
  1468. ts-declaration-location@1.0.7:
  1469. resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
  1470. peerDependencies:
  1471. typescript: '>=4.0.0'
  1472. tslib@2.8.1:
  1473. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1474. tunnel-agent@0.6.0:
  1475. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1476. type-check@0.4.0:
  1477. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1478. engines: {node: '>= 0.8.0'}
  1479. type@2.7.3:
  1480. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  1481. typedarray-to-buffer@3.1.5:
  1482. resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
  1483. typescript-eslint@8.62.1:
  1484. resolution: {integrity: sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==}
  1485. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1486. peerDependencies:
  1487. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  1488. typescript: '>=4.8.4 <6.1.0'
  1489. typescript@6.0.3:
  1490. resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
  1491. engines: {node: '>=14.17'}
  1492. hasBin: true
  1493. undici-cache-store-better-sqlite3@1.0.1:
  1494. resolution: {integrity: sha512-UHrN400SOCqM3Lq59VSNMGnjr2M3GpdTNZPaGVmATsjEBMaBaCjPXfYycM5Dz7P+0RsJ3T/RD+oLpFsV1e8qPg==}
  1495. peerDependencies:
  1496. undici: '>=7.0.0'
  1497. undici-types@7.24.6:
  1498. resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
  1499. undici@8.5.0:
  1500. resolution: {integrity: sha512-xamtWoB1EshgjpmlXd7GGm2VfdDtw1+rD8uhry8pSNW3If6S8E0m2T2+orSKeZXEn/aPJMviCpDBA65WJt8zhg==}
  1501. engines: {node: '>=22.19.0'}
  1502. unrs-resolver@1.11.1:
  1503. resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
  1504. uri-js@4.4.1:
  1505. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1506. utf-8-validate@5.0.10:
  1507. resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
  1508. engines: {node: '>=6.14.2'}
  1509. util-deprecate@1.0.2:
  1510. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1511. websocket@1.0.35:
  1512. resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
  1513. engines: {node: '>=4.0.0'}
  1514. which@2.0.2:
  1515. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1516. engines: {node: '>= 8'}
  1517. hasBin: true
  1518. why-is-node-running@3.2.2:
  1519. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1520. engines: {node: '>=20.11'}
  1521. hasBin: true
  1522. word-wrap@1.2.5:
  1523. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1524. engines: {node: '>=0.10.0'}
  1525. workerpool@9.3.3:
  1526. resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
  1527. wrap-ansi@7.0.0:
  1528. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1529. engines: {node: '>=10'}
  1530. wrap-ansi@8.1.0:
  1531. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1532. engines: {node: '>=12'}
  1533. wrappy@1.0.2:
  1534. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1535. write-file-atomic@1.3.4:
  1536. resolution: {integrity: sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==}
  1537. xbits@0.2.0:
  1538. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1539. y18n@5.0.8:
  1540. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1541. engines: {node: '>=10'}
  1542. yaeti@0.0.6:
  1543. resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
  1544. engines: {node: '>=0.10.32'}
  1545. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1546. yaml@2.9.0:
  1547. resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
  1548. engines: {node: '>= 14.6'}
  1549. hasBin: true
  1550. yargs-parser@21.1.1:
  1551. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1552. engines: {node: '>=12'}
  1553. yargs-unparser@2.0.0:
  1554. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1555. engines: {node: '>=10'}
  1556. yargs@17.7.2:
  1557. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1558. engines: {node: '>=12'}
  1559. yauzl-promise@4.0.0:
  1560. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1561. engines: {node: '>=16'}
  1562. yocto-queue@0.1.0:
  1563. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1564. engines: {node: '>=10'}
  1565. snapshots:
  1566. '@antfu/install-pkg@1.1.0':
  1567. dependencies:
  1568. package-manager-detector: 1.5.0
  1569. tinyexec: 1.2.4
  1570. '@cryptography/aes@0.1.1': {}
  1571. '@emnapi/core@1.10.0':
  1572. dependencies:
  1573. '@emnapi/wasi-threads': 1.2.1
  1574. tslib: 2.8.1
  1575. optional: true
  1576. '@emnapi/runtime@1.10.0':
  1577. dependencies:
  1578. tslib: 2.8.1
  1579. optional: true
  1580. '@emnapi/wasi-threads@1.2.1':
  1581. dependencies:
  1582. tslib: 2.8.1
  1583. optional: true
  1584. '@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.6.0(supports-color@8.1.1))':
  1585. dependencies:
  1586. escape-string-regexp: 4.0.0
  1587. eslint: 10.6.0(supports-color@8.1.1)
  1588. ignore: 7.0.5
  1589. '@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(supports-color@8.1.1))':
  1590. dependencies:
  1591. eslint: 10.6.0(supports-color@8.1.1)
  1592. eslint-visitor-keys: 3.4.3
  1593. '@eslint-community/regexpp@4.12.2': {}
  1594. '@eslint-sukka/eslint-plugin-stylistic@8.13.2(eslint@10.6.0(supports-color@8.1.1))':
  1595. dependencies:
  1596. eslint: 10.6.0(supports-color@8.1.1)
  1597. '@eslint-sukka/eslint-plugin-sukka-full@8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)':
  1598. dependencies:
  1599. eslint: 10.6.0(supports-color@8.1.1)
  1600. eslint-plugin-sukka: 9.11.0(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1601. optionalDependencies:
  1602. typescript: 6.0.3
  1603. transitivePeerDependencies:
  1604. - supports-color
  1605. '@eslint-sukka/node@8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)':
  1606. dependencies:
  1607. '@eslint-sukka/eslint-plugin-sukka-full': 8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1608. '@eslint-sukka/shared': 8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1609. eslint-plugin-n: 17.24.0(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1610. transitivePeerDependencies:
  1611. - eslint
  1612. - supports-color
  1613. - typescript
  1614. '@eslint-sukka/shared@8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)':
  1615. dependencies:
  1616. '@package-json/types': 0.0.13
  1617. '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1618. enhanced-resolve: 5.24.1
  1619. eslint: 10.6.0(supports-color@8.1.1)
  1620. foxts: 5.5.1
  1621. transitivePeerDependencies:
  1622. - supports-color
  1623. - typescript
  1624. '@eslint/config-array@0.23.5(supports-color@8.1.1)':
  1625. dependencies:
  1626. '@eslint/object-schema': 3.0.5
  1627. debug: 4.4.3(supports-color@8.1.1)
  1628. minimatch: 10.2.4
  1629. transitivePeerDependencies:
  1630. - supports-color
  1631. '@eslint/config-helpers@0.6.0':
  1632. dependencies:
  1633. '@eslint/core': 1.2.1
  1634. '@eslint/core@1.2.1':
  1635. dependencies:
  1636. '@types/json-schema': 7.0.15
  1637. '@eslint/js@10.0.1(eslint@10.6.0(supports-color@8.1.1))':
  1638. optionalDependencies:
  1639. eslint: 10.6.0(supports-color@8.1.1)
  1640. '@eslint/object-schema@3.0.5': {}
  1641. '@eslint/plugin-kit@0.7.2':
  1642. dependencies:
  1643. '@eslint/core': 1.2.1
  1644. levn: 0.4.1
  1645. '@ghostery/adblocker-content@2.18.0':
  1646. dependencies:
  1647. '@ghostery/adblocker-extended-selectors': 2.18.0
  1648. '@ghostery/adblocker-extended-selectors@2.18.0': {}
  1649. '@ghostery/adblocker@2.18.0':
  1650. dependencies:
  1651. '@ghostery/adblocker-content': 2.18.0
  1652. '@ghostery/adblocker-extended-selectors': 2.18.0
  1653. '@ghostery/url-parser': 1.3.1
  1654. '@remusao/guess-url-type': 2.1.0
  1655. '@remusao/small': 2.1.0
  1656. '@remusao/smaz': 2.2.0
  1657. tldts-experimental: 7.4.5
  1658. '@ghostery/url-parser@1.3.1':
  1659. dependencies:
  1660. tldts-experimental: 7.4.5
  1661. '@henrygd/queue@1.2.0': {}
  1662. '@humanfs/core@0.19.1': {}
  1663. '@humanfs/node@0.16.6':
  1664. dependencies:
  1665. '@humanfs/core': 0.19.1
  1666. '@humanwhocodes/retry': 0.3.1
  1667. '@humanwhocodes/module-importer@1.0.1': {}
  1668. '@humanwhocodes/retry@0.3.1': {}
  1669. '@humanwhocodes/retry@0.4.3': {}
  1670. '@isaacs/cliui@8.0.2':
  1671. dependencies:
  1672. string-width: 5.1.2
  1673. string-width-cjs: string-width@4.2.3
  1674. strip-ansi: 7.1.0
  1675. strip-ansi-cjs: strip-ansi@6.0.1
  1676. wrap-ansi: 8.1.0
  1677. wrap-ansi-cjs: wrap-ansi@7.0.0
  1678. '@jest/pattern@30.4.0':
  1679. dependencies:
  1680. '@types/node': 25.9.4
  1681. jest-regex-util: 30.4.0
  1682. '@jest/schemas@30.4.1':
  1683. dependencies:
  1684. '@sinclair/typebox': 0.34.49
  1685. '@jest/types@30.4.1':
  1686. dependencies:
  1687. '@jest/pattern': 30.4.0
  1688. '@jest/schemas': 30.4.1
  1689. '@types/istanbul-lib-coverage': 2.0.6
  1690. '@types/istanbul-reports': 3.0.4
  1691. '@types/node': 25.9.4
  1692. '@types/yargs': 17.0.35
  1693. chalk: 4.1.2
  1694. '@mitata/counters@0.0.8': {}
  1695. '@napi-rs/wasm-runtime@0.2.12':
  1696. dependencies:
  1697. '@emnapi/core': 1.10.0
  1698. '@emnapi/runtime': 1.10.0
  1699. '@tybys/wasm-util': 0.10.2
  1700. optional: true
  1701. '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
  1702. dependencies:
  1703. '@emnapi/core': 1.10.0
  1704. '@emnapi/runtime': 1.10.0
  1705. '@tybys/wasm-util': 0.10.2
  1706. optional: true
  1707. '@node-rs/crc32-android-arm-eabi@1.10.6':
  1708. optional: true
  1709. '@node-rs/crc32-android-arm64@1.10.6':
  1710. optional: true
  1711. '@node-rs/crc32-darwin-arm64@1.10.6':
  1712. optional: true
  1713. '@node-rs/crc32-darwin-x64@1.10.6':
  1714. optional: true
  1715. '@node-rs/crc32-freebsd-x64@1.10.6':
  1716. optional: true
  1717. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  1718. optional: true
  1719. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  1720. optional: true
  1721. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  1722. optional: true
  1723. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  1724. optional: true
  1725. '@node-rs/crc32-linux-x64-musl@1.10.6':
  1726. optional: true
  1727. '@node-rs/crc32-wasm32-wasi@1.10.6':
  1728. dependencies:
  1729. '@napi-rs/wasm-runtime': 0.2.12
  1730. optional: true
  1731. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  1732. optional: true
  1733. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  1734. optional: true
  1735. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  1736. optional: true
  1737. '@node-rs/crc32@1.10.6':
  1738. optionalDependencies:
  1739. '@node-rs/crc32-android-arm-eabi': 1.10.6
  1740. '@node-rs/crc32-android-arm64': 1.10.6
  1741. '@node-rs/crc32-darwin-arm64': 1.10.6
  1742. '@node-rs/crc32-darwin-x64': 1.10.6
  1743. '@node-rs/crc32-freebsd-x64': 1.10.6
  1744. '@node-rs/crc32-linux-arm-gnueabihf': 1.10.6
  1745. '@node-rs/crc32-linux-arm64-gnu': 1.10.6
  1746. '@node-rs/crc32-linux-arm64-musl': 1.10.6
  1747. '@node-rs/crc32-linux-x64-gnu': 1.10.6
  1748. '@node-rs/crc32-linux-x64-musl': 1.10.6
  1749. '@node-rs/crc32-wasm32-wasi': 1.10.6
  1750. '@node-rs/crc32-win32-arm64-msvc': 1.10.6
  1751. '@node-rs/crc32-win32-ia32-msvc': 1.10.6
  1752. '@node-rs/crc32-win32-x64-msvc': 1.10.6
  1753. '@nolyfill/globalthis@1.0.44':
  1754. dependencies:
  1755. '@nolyfill/shared': 1.0.44
  1756. '@nolyfill/safe-buffer@1.0.44': {}
  1757. '@nolyfill/shared@1.0.44': {}
  1758. '@ota-meshi/ast-token-store@0.3.0': {}
  1759. '@oxc-resolver/binding-android-arm-eabi@11.20.0':
  1760. optional: true
  1761. '@oxc-resolver/binding-android-arm64@11.20.0':
  1762. optional: true
  1763. '@oxc-resolver/binding-darwin-arm64@11.20.0':
  1764. optional: true
  1765. '@oxc-resolver/binding-darwin-x64@11.20.0':
  1766. optional: true
  1767. '@oxc-resolver/binding-freebsd-x64@11.20.0':
  1768. optional: true
  1769. '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
  1770. optional: true
  1771. '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
  1772. optional: true
  1773. '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
  1774. optional: true
  1775. '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
  1776. optional: true
  1777. '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
  1778. optional: true
  1779. '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
  1780. optional: true
  1781. '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
  1782. optional: true
  1783. '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
  1784. optional: true
  1785. '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
  1786. optional: true
  1787. '@oxc-resolver/binding-linux-x64-musl@11.20.0':
  1788. optional: true
  1789. '@oxc-resolver/binding-openharmony-arm64@11.20.0':
  1790. optional: true
  1791. '@oxc-resolver/binding-wasm32-wasi@11.20.0':
  1792. dependencies:
  1793. '@emnapi/core': 1.10.0
  1794. '@emnapi/runtime': 1.10.0
  1795. '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
  1796. optional: true
  1797. '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
  1798. optional: true
  1799. '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
  1800. optional: true
  1801. '@package-json/types@0.0.13': {}
  1802. '@pkgjs/parseargs@0.11.0':
  1803. optional: true
  1804. '@pkgr/core@0.2.9': {}
  1805. '@remusao/guess-url-type@2.1.0': {}
  1806. '@remusao/small@2.1.0': {}
  1807. '@remusao/smaz-compress@2.2.0':
  1808. dependencies:
  1809. '@remusao/trie': 2.1.0
  1810. '@remusao/smaz-decompress@2.2.0': {}
  1811. '@remusao/smaz@2.2.0':
  1812. dependencies:
  1813. '@remusao/smaz-compress': 2.2.0
  1814. '@remusao/smaz-decompress': 2.2.0
  1815. '@remusao/trie@2.1.0': {}
  1816. '@sinclair/typebox@0.34.49': {}
  1817. '@swc-node/core@1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)':
  1818. dependencies:
  1819. '@swc/core': 1.13.5
  1820. '@swc/types': 0.1.25
  1821. '@swc-node/register@1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(supports-color@8.1.1)(typescript@6.0.3)':
  1822. dependencies:
  1823. '@swc-node/core': 1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)
  1824. '@swc-node/sourcemap-support': 0.6.1
  1825. '@swc/core': 1.13.5
  1826. colorette: 2.0.20
  1827. debug: 4.4.3(supports-color@8.1.1)
  1828. oxc-resolver: 11.20.0
  1829. pirates: 4.0.7
  1830. tslib: 2.8.1
  1831. typescript: 6.0.3
  1832. transitivePeerDependencies:
  1833. - '@swc/types'
  1834. - supports-color
  1835. '@swc-node/sourcemap-support@0.6.1':
  1836. dependencies:
  1837. source-map-support: 0.5.21
  1838. tslib: 2.8.1
  1839. '@swc/core-darwin-arm64@1.13.5':
  1840. optional: true
  1841. '@swc/core-darwin-x64@1.13.5':
  1842. optional: true
  1843. '@swc/core-linux-arm-gnueabihf@1.13.5':
  1844. optional: true
  1845. '@swc/core-linux-arm64-gnu@1.13.5':
  1846. optional: true
  1847. '@swc/core-linux-arm64-musl@1.13.5':
  1848. optional: true
  1849. '@swc/core-linux-x64-gnu@1.13.5':
  1850. optional: true
  1851. '@swc/core-linux-x64-musl@1.13.5':
  1852. optional: true
  1853. '@swc/core-win32-arm64-msvc@1.13.5':
  1854. optional: true
  1855. '@swc/core-win32-ia32-msvc@1.13.5':
  1856. optional: true
  1857. '@swc/core-win32-x64-msvc@1.13.5':
  1858. optional: true
  1859. '@swc/core@1.13.5':
  1860. dependencies:
  1861. '@swc/counter': 0.1.3
  1862. '@swc/types': 0.1.25
  1863. optionalDependencies:
  1864. '@swc/core-darwin-arm64': 1.13.5
  1865. '@swc/core-darwin-x64': 1.13.5
  1866. '@swc/core-linux-arm-gnueabihf': 1.13.5
  1867. '@swc/core-linux-arm64-gnu': 1.13.5
  1868. '@swc/core-linux-arm64-musl': 1.13.5
  1869. '@swc/core-linux-x64-gnu': 1.13.5
  1870. '@swc/core-linux-x64-musl': 1.13.5
  1871. '@swc/core-win32-arm64-msvc': 1.13.5
  1872. '@swc/core-win32-ia32-msvc': 1.13.5
  1873. '@swc/core-win32-x64-msvc': 1.13.5
  1874. '@swc/counter@0.1.3': {}
  1875. '@swc/types@0.1.25':
  1876. dependencies:
  1877. '@swc/counter': 0.1.3
  1878. '@tybys/wasm-util@0.10.2':
  1879. dependencies:
  1880. tslib: 2.8.1
  1881. optional: true
  1882. '@types/better-sqlite3@7.6.13':
  1883. dependencies:
  1884. '@types/node': 25.9.4
  1885. '@types/cli-progress@3.11.6':
  1886. dependencies:
  1887. '@types/node': 25.9.4
  1888. '@types/esrecurse@4.3.1': {}
  1889. '@types/estree@1.0.8': {}
  1890. '@types/istanbul-lib-coverage@2.0.6': {}
  1891. '@types/istanbul-lib-report@3.0.3':
  1892. dependencies:
  1893. '@types/istanbul-lib-coverage': 2.0.6
  1894. '@types/istanbul-reports@3.0.4':
  1895. dependencies:
  1896. '@types/istanbul-lib-report': 3.0.3
  1897. '@types/json-schema@7.0.15': {}
  1898. '@types/mocha@10.0.10': {}
  1899. '@types/node@25.9.4':
  1900. dependencies:
  1901. undici-types: 7.24.6
  1902. '@types/tar-fs@2.0.4':
  1903. dependencies:
  1904. '@types/node': 25.9.4
  1905. '@types/tar-stream': 3.1.4
  1906. '@types/tar-stream@3.1.4':
  1907. dependencies:
  1908. '@types/node': 25.9.4
  1909. '@types/yargs-parser@21.0.3': {}
  1910. '@types/yargs@17.0.35':
  1911. dependencies:
  1912. '@types/yargs-parser': 21.0.3
  1913. '@types/yauzl-promise@4.0.1':
  1914. dependencies:
  1915. '@types/node': 25.9.4
  1916. '@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
  1917. dependencies:
  1918. '@eslint-community/regexpp': 4.12.2
  1919. '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  1920. '@typescript-eslint/scope-manager': 8.62.1
  1921. '@typescript-eslint/type-utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  1922. '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1923. '@typescript-eslint/visitor-keys': 8.62.1
  1924. eslint: 10.6.0(supports-color@8.1.1)
  1925. ignore: 7.0.5
  1926. natural-compare: 1.4.0
  1927. ts-api-utils: 2.5.0(typescript@6.0.3)
  1928. typescript: 6.0.3
  1929. transitivePeerDependencies:
  1930. - supports-color
  1931. '@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
  1932. dependencies:
  1933. '@typescript-eslint/scope-manager': 8.62.1
  1934. '@typescript-eslint/types': 8.62.1
  1935. '@typescript-eslint/typescript-estree': 8.62.1(typescript@6.0.3)
  1936. '@typescript-eslint/visitor-keys': 8.62.1
  1937. debug: 4.4.3(supports-color@8.1.1)
  1938. eslint: 10.6.0(supports-color@8.1.1)
  1939. typescript: 6.0.3
  1940. transitivePeerDependencies:
  1941. - supports-color
  1942. '@typescript-eslint/project-service@8.62.1(typescript@6.0.3)':
  1943. dependencies:
  1944. '@typescript-eslint/tsconfig-utils': 8.62.1(typescript@6.0.3)
  1945. '@typescript-eslint/types': 8.62.1
  1946. debug: 4.4.3(supports-color@8.1.1)
  1947. typescript: 6.0.3
  1948. transitivePeerDependencies:
  1949. - supports-color
  1950. '@typescript-eslint/scope-manager@8.62.1':
  1951. dependencies:
  1952. '@typescript-eslint/types': 8.62.1
  1953. '@typescript-eslint/visitor-keys': 8.62.1
  1954. '@typescript-eslint/tsconfig-utils@8.62.1(typescript@6.0.3)':
  1955. dependencies:
  1956. typescript: 6.0.3
  1957. '@typescript-eslint/type-utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
  1958. dependencies:
  1959. '@typescript-eslint/types': 8.62.1
  1960. '@typescript-eslint/typescript-estree': 8.62.1(typescript@6.0.3)
  1961. '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  1962. debug: 4.4.3(supports-color@8.1.1)
  1963. eslint: 10.6.0(supports-color@8.1.1)
  1964. ts-api-utils: 2.5.0(typescript@6.0.3)
  1965. typescript: 6.0.3
  1966. transitivePeerDependencies:
  1967. - supports-color
  1968. '@typescript-eslint/types@8.61.0': {}
  1969. '@typescript-eslint/types@8.62.1': {}
  1970. '@typescript-eslint/typescript-estree@8.62.1(typescript@6.0.3)':
  1971. dependencies:
  1972. '@typescript-eslint/project-service': 8.62.1(typescript@6.0.3)
  1973. '@typescript-eslint/tsconfig-utils': 8.62.1(typescript@6.0.3)
  1974. '@typescript-eslint/types': 8.62.1
  1975. '@typescript-eslint/visitor-keys': 8.62.1
  1976. debug: 4.4.3(supports-color@8.1.1)
  1977. minimatch: 10.2.4
  1978. semver: 7.7.3
  1979. tinyglobby: 0.2.17
  1980. ts-api-utils: 2.5.0(typescript@6.0.3)
  1981. typescript: 6.0.3
  1982. transitivePeerDependencies:
  1983. - supports-color
  1984. '@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)':
  1985. dependencies:
  1986. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  1987. '@typescript-eslint/scope-manager': 8.62.1
  1988. '@typescript-eslint/types': 8.62.1
  1989. '@typescript-eslint/typescript-estree': 8.62.1(typescript@6.0.3)
  1990. eslint: 10.6.0(supports-color@8.1.1)
  1991. typescript: 6.0.3
  1992. transitivePeerDependencies:
  1993. - supports-color
  1994. '@typescript-eslint/visitor-keys@8.62.1':
  1995. dependencies:
  1996. '@typescript-eslint/types': 8.62.1
  1997. eslint-visitor-keys: 5.0.1
  1998. '@ungap/structured-clone@1.3.0': {}
  1999. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  2000. optional: true
  2001. '@unrs/resolver-binding-android-arm64@1.11.1':
  2002. optional: true
  2003. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  2004. optional: true
  2005. '@unrs/resolver-binding-darwin-x64@1.11.1':
  2006. optional: true
  2007. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  2008. optional: true
  2009. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  2010. optional: true
  2011. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  2012. optional: true
  2013. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  2014. optional: true
  2015. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  2016. optional: true
  2017. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  2018. optional: true
  2019. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  2020. optional: true
  2021. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  2022. optional: true
  2023. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  2024. optional: true
  2025. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  2026. optional: true
  2027. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  2028. optional: true
  2029. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  2030. dependencies:
  2031. '@napi-rs/wasm-runtime': 0.2.12
  2032. optional: true
  2033. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  2034. optional: true
  2035. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  2036. optional: true
  2037. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  2038. optional: true
  2039. acorn-jsx@5.3.2(acorn@8.16.0):
  2040. dependencies:
  2041. acorn: 8.16.0
  2042. acorn@8.16.0: {}
  2043. ajv@6.14.0:
  2044. dependencies:
  2045. fast-deep-equal: 3.1.3
  2046. fast-json-stable-stringify: 2.1.0
  2047. json-schema-traverse: 0.4.1
  2048. uri-js: 4.4.1
  2049. ansi-regex@5.0.1: {}
  2050. ansi-regex@6.2.0: {}
  2051. ansi-styles@4.3.0:
  2052. dependencies:
  2053. color-convert: 2.0.1
  2054. ansi-styles@6.2.1: {}
  2055. argparse@2.0.1: {}
  2056. async-mutex@0.3.2:
  2057. dependencies:
  2058. tslib: 2.8.1
  2059. b4a@1.6.7: {}
  2060. balanced-match@1.0.2: {}
  2061. balanced-match@4.0.4: {}
  2062. bare-events@2.6.1:
  2063. optional: true
  2064. bare-fs@4.2.1:
  2065. dependencies:
  2066. bare-events: 2.6.1
  2067. bare-path: 3.0.0
  2068. bare-stream: 2.7.0(bare-events@2.6.1)
  2069. optional: true
  2070. bare-os@3.6.2:
  2071. optional: true
  2072. bare-path@3.0.0:
  2073. dependencies:
  2074. bare-os: 3.6.2
  2075. optional: true
  2076. bare-stream@2.7.0(bare-events@2.6.1):
  2077. dependencies:
  2078. streamx: 2.22.1
  2079. optionalDependencies:
  2080. bare-events: 2.6.1
  2081. optional: true
  2082. base64-js@1.5.1: {}
  2083. better-sqlite3@12.8.0:
  2084. dependencies:
  2085. bindings: 1.5.0
  2086. prebuild-install: 7.1.3
  2087. big-integer@1.6.52: {}
  2088. bindings@1.5.0:
  2089. dependencies:
  2090. file-uri-to-path: 1.0.0
  2091. bl@4.1.0:
  2092. dependencies:
  2093. buffer: 5.7.1
  2094. inherits: 2.0.4
  2095. readable-stream: 3.6.2
  2096. brace-expansion@2.0.2:
  2097. dependencies:
  2098. balanced-match: 1.0.2
  2099. brace-expansion@5.0.3:
  2100. dependencies:
  2101. balanced-match: 4.0.4
  2102. browser-stdout@1.3.1: {}
  2103. buffer-from@1.1.2: {}
  2104. buffer@5.7.1:
  2105. dependencies:
  2106. base64-js: 1.5.1
  2107. ieee754: 1.2.1
  2108. buffer@6.0.3:
  2109. dependencies:
  2110. base64-js: 1.5.1
  2111. ieee754: 1.2.1
  2112. bufferutil@4.0.9:
  2113. dependencies:
  2114. node-gyp-build: 4.8.4
  2115. camelcase@6.3.0: {}
  2116. chalk@4.1.2:
  2117. dependencies:
  2118. ansi-styles: 4.3.0
  2119. supports-color: 7.2.0
  2120. chokidar@4.0.3:
  2121. dependencies:
  2122. readdirp: 4.1.2
  2123. chownr@1.1.4: {}
  2124. ci-info@4.4.0: {}
  2125. cli-progress@3.12.0:
  2126. dependencies:
  2127. string-width: 4.2.3
  2128. cliui@8.0.1:
  2129. dependencies:
  2130. string-width: 4.2.3
  2131. strip-ansi: 6.0.1
  2132. wrap-ansi: 7.0.0
  2133. color-convert@2.0.1:
  2134. dependencies:
  2135. color-name: 1.1.4
  2136. color-name@1.1.4: {}
  2137. colorette@2.0.20: {}
  2138. comment-parser@1.4.1: {}
  2139. cross-spawn@7.0.6:
  2140. dependencies:
  2141. path-key: 3.1.1
  2142. shebang-command: 2.0.0
  2143. which: 2.0.2
  2144. csv-parse@7.0.0: {}
  2145. d@1.0.2:
  2146. dependencies:
  2147. es5-ext: 0.10.64
  2148. type: 2.7.3
  2149. debug@2.6.9:
  2150. dependencies:
  2151. ms: 2.0.0
  2152. debug@4.4.1:
  2153. dependencies:
  2154. ms: 2.1.3
  2155. debug@4.4.3(supports-color@8.1.1):
  2156. dependencies:
  2157. ms: 2.1.3
  2158. optionalDependencies:
  2159. supports-color: 8.1.1
  2160. decamelize@4.0.0: {}
  2161. decompress-response@6.0.0:
  2162. dependencies:
  2163. mimic-response: 3.1.0
  2164. deep-extend@0.6.0: {}
  2165. deep-is@0.1.4: {}
  2166. defu@6.1.7: {}
  2167. detect-libc@2.0.4: {}
  2168. diff-sequences@29.6.3: {}
  2169. diff@7.0.0: {}
  2170. dom-serializer@1.4.1:
  2171. dependencies:
  2172. domelementtype: 2.3.0
  2173. domhandler: 4.3.1
  2174. entities: 2.2.0
  2175. domain-alive@0.1.22:
  2176. dependencies:
  2177. debug: 4.4.1
  2178. foxts: 5.5.1
  2179. tldts: 7.4.5
  2180. transitivePeerDependencies:
  2181. - supports-color
  2182. domelementtype@2.3.0: {}
  2183. domhandler@4.3.1:
  2184. dependencies:
  2185. domelementtype: 2.3.0
  2186. domutils@2.8.0:
  2187. dependencies:
  2188. dom-serializer: 1.4.1
  2189. domelementtype: 2.3.0
  2190. domhandler: 4.3.1
  2191. earl@2.0.0:
  2192. dependencies:
  2193. error-stack-parser: 2.1.4
  2194. eastasianwidth@0.2.0: {}
  2195. emoji-regex@8.0.0: {}
  2196. emoji-regex@9.2.2: {}
  2197. end-of-stream@1.4.5:
  2198. dependencies:
  2199. once: 1.4.0
  2200. enhanced-resolve@5.18.3:
  2201. dependencies:
  2202. graceful-fs: 4.2.11
  2203. tapable: 2.3.0
  2204. enhanced-resolve@5.24.1:
  2205. dependencies:
  2206. graceful-fs: 4.2.11
  2207. tapable: 2.3.3
  2208. entities@2.2.0: {}
  2209. error-stack-parser@2.1.4:
  2210. dependencies:
  2211. stackframe: 1.3.4
  2212. es5-ext@0.10.64:
  2213. dependencies:
  2214. es6-iterator: 2.0.3
  2215. es6-symbol: 3.1.4
  2216. esniff: 2.0.1
  2217. next-tick: 1.1.0
  2218. es6-iterator@2.0.3:
  2219. dependencies:
  2220. d: 1.0.2
  2221. es5-ext: 0.10.64
  2222. es6-symbol: 3.1.4
  2223. es6-symbol@3.1.4:
  2224. dependencies:
  2225. d: 1.0.2
  2226. ext: 1.7.0
  2227. escalade@3.2.0: {}
  2228. escape-string-regexp@4.0.0: {}
  2229. eslint-compat-utils@0.5.1(eslint@10.6.0(supports-color@8.1.1)):
  2230. dependencies:
  2231. eslint: 10.6.0(supports-color@8.1.1)
  2232. semver: 7.7.3
  2233. eslint-config-sukka@8.13.2(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3):
  2234. dependencies:
  2235. '@antfu/install-pkg': 1.1.0
  2236. '@eslint-community/eslint-plugin-eslint-comments': 4.7.2(eslint@10.6.0(supports-color@8.1.1))
  2237. '@eslint-sukka/eslint-plugin-stylistic': 8.13.2(eslint@10.6.0(supports-color@8.1.1))
  2238. '@eslint-sukka/eslint-plugin-sukka-full': 8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  2239. '@eslint-sukka/shared': 8.13.2(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  2240. '@eslint/config-helpers': 0.6.0
  2241. '@eslint/js': 10.0.1(eslint@10.6.0(supports-color@8.1.1))
  2242. '@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2243. '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2244. ci-info: 4.4.0
  2245. defu: 6.1.7
  2246. eslint-import-resolver-typescript: 4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)
  2247. eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)
  2248. eslint-plugin-jsonc: 3.2.0(eslint@10.6.0(supports-color@8.1.1))
  2249. eslint-plugin-promise: 7.3.0(eslint@10.6.0(supports-color@8.1.1))
  2250. eslint-plugin-regexp: 3.1.1(eslint@10.6.0(supports-color@8.1.1))
  2251. eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))
  2252. foxts: 5.5.1
  2253. jsonc-eslint-parser: 3.1.0
  2254. picocolors: 1.1.1
  2255. typescript-eslint: 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  2256. transitivePeerDependencies:
  2257. - '@eslint/json'
  2258. - '@typescript-eslint/utils'
  2259. - eslint
  2260. - eslint-import-resolver-node
  2261. - eslint-plugin-import
  2262. - supports-color
  2263. - typescript
  2264. eslint-formatter-sukka@8.13.2(eslint@10.6.0(supports-color@8.1.1)):
  2265. dependencies:
  2266. ci-info: 4.4.0
  2267. eslint: 10.6.0(supports-color@8.1.1)
  2268. foxts: 5.5.1
  2269. picocolors: 1.1.1
  2270. eslint-import-context@0.1.9(unrs-resolver@1.11.1):
  2271. dependencies:
  2272. get-tsconfig: 4.12.0
  2273. stable-hash-x: 0.2.0
  2274. optionalDependencies:
  2275. unrs-resolver: 1.11.1
  2276. eslint-import-resolver-typescript@4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1):
  2277. dependencies:
  2278. debug: 4.4.3(supports-color@8.1.1)
  2279. eslint: 10.6.0(supports-color@8.1.1)
  2280. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2281. get-tsconfig: 4.12.0
  2282. is-bun-module: 2.0.0
  2283. stable-hash-x: 0.2.0
  2284. tinyglobby: 0.2.17
  2285. unrs-resolver: 1.11.1
  2286. optionalDependencies:
  2287. eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)
  2288. transitivePeerDependencies:
  2289. - supports-color
  2290. eslint-json-compat-utils@0.2.3(eslint@10.6.0(supports-color@8.1.1))(jsonc-eslint-parser@3.1.0):
  2291. dependencies:
  2292. eslint: 10.6.0(supports-color@8.1.1)
  2293. esquery: 1.7.0
  2294. jsonc-eslint-parser: 3.1.0
  2295. eslint-plugin-es-x@7.8.0(eslint@10.6.0(supports-color@8.1.1)):
  2296. dependencies:
  2297. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  2298. '@eslint-community/regexpp': 4.12.2
  2299. eslint: 10.6.0(supports-color@8.1.1)
  2300. eslint-compat-utils: 0.5.1(eslint@10.6.0(supports-color@8.1.1))
  2301. eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1):
  2302. dependencies:
  2303. '@typescript-eslint/types': 8.61.0
  2304. comment-parser: 1.4.1
  2305. debug: 4.4.3(supports-color@8.1.1)
  2306. eslint: 10.6.0(supports-color@8.1.1)
  2307. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2308. is-glob: 4.0.3
  2309. minimatch: 10.2.4
  2310. semver: 7.7.3
  2311. stable-hash-x: 0.2.0
  2312. unrs-resolver: 1.11.1
  2313. optionalDependencies:
  2314. '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  2315. transitivePeerDependencies:
  2316. - supports-color
  2317. eslint-plugin-jsonc@3.2.0(eslint@10.6.0(supports-color@8.1.1)):
  2318. dependencies:
  2319. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  2320. '@eslint/core': 1.2.1
  2321. '@eslint/plugin-kit': 0.7.2
  2322. '@ota-meshi/ast-token-store': 0.3.0
  2323. diff-sequences: 29.6.3
  2324. eslint: 10.6.0(supports-color@8.1.1)
  2325. eslint-json-compat-utils: 0.2.3(eslint@10.6.0(supports-color@8.1.1))(jsonc-eslint-parser@3.1.0)
  2326. jsonc-eslint-parser: 3.1.0
  2327. natural-compare: 1.4.0
  2328. synckit: 0.11.12
  2329. transitivePeerDependencies:
  2330. - '@eslint/json'
  2331. eslint-plugin-n@17.24.0(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3):
  2332. dependencies:
  2333. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  2334. enhanced-resolve: 5.18.3
  2335. eslint: 10.6.0(supports-color@8.1.1)
  2336. eslint-plugin-es-x: 7.8.0(eslint@10.6.0(supports-color@8.1.1))
  2337. get-tsconfig: 4.12.0
  2338. globals: 15.15.0
  2339. globrex: 0.1.2
  2340. ignore: 5.3.2
  2341. semver: 7.7.3
  2342. ts-declaration-location: 1.0.7(typescript@6.0.3)
  2343. transitivePeerDependencies:
  2344. - typescript
  2345. eslint-plugin-promise@7.3.0(eslint@10.6.0(supports-color@8.1.1)):
  2346. dependencies:
  2347. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  2348. eslint: 10.6.0(supports-color@8.1.1)
  2349. eslint-plugin-regexp@3.1.1(eslint@10.6.0(supports-color@8.1.1)):
  2350. dependencies:
  2351. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  2352. '@eslint-community/regexpp': 4.12.2
  2353. comment-parser: 1.4.1
  2354. eslint: 10.6.0(supports-color@8.1.1)
  2355. jsdoc-type-pratt-parser: 7.1.1
  2356. refa: 0.12.1
  2357. regexp-ast-analysis: 0.7.1
  2358. scslre: 0.3.0
  2359. eslint-plugin-sukka@9.11.0(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3):
  2360. dependencies:
  2361. '@typescript-eslint/types': 8.62.1
  2362. '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  2363. eslint: 10.6.0(supports-color@8.1.1)
  2364. foxts: 5.5.1
  2365. typescript: 6.0.3
  2366. transitivePeerDependencies:
  2367. - supports-color
  2368. eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1)):
  2369. dependencies:
  2370. eslint: 10.6.0(supports-color@8.1.1)
  2371. optionalDependencies:
  2372. '@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2373. eslint-scope@9.1.2:
  2374. dependencies:
  2375. '@types/esrecurse': 4.3.1
  2376. '@types/estree': 1.0.8
  2377. esrecurse: 4.3.0
  2378. estraverse: 5.3.0
  2379. eslint-visitor-keys@3.4.3: {}
  2380. eslint-visitor-keys@5.0.1: {}
  2381. eslint@10.6.0(supports-color@8.1.1):
  2382. dependencies:
  2383. '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(supports-color@8.1.1))
  2384. '@eslint-community/regexpp': 4.12.2
  2385. '@eslint/config-array': 0.23.5(supports-color@8.1.1)
  2386. '@eslint/config-helpers': 0.6.0
  2387. '@eslint/core': 1.2.1
  2388. '@eslint/plugin-kit': 0.7.2
  2389. '@humanfs/node': 0.16.6
  2390. '@humanwhocodes/module-importer': 1.0.1
  2391. '@humanwhocodes/retry': 0.4.3
  2392. '@types/estree': 1.0.8
  2393. ajv: 6.14.0
  2394. cross-spawn: 7.0.6
  2395. debug: 4.4.3(supports-color@8.1.1)
  2396. escape-string-regexp: 4.0.0
  2397. eslint-scope: 9.1.2
  2398. eslint-visitor-keys: 5.0.1
  2399. espree: 11.2.0
  2400. esquery: 1.7.0
  2401. esutils: 2.0.3
  2402. fast-deep-equal: 3.1.3
  2403. file-entry-cache: 8.0.0
  2404. find-up: 5.0.0
  2405. glob-parent: 6.0.2
  2406. ignore: 5.3.2
  2407. imurmurhash: 0.1.4
  2408. is-glob: 4.0.3
  2409. json-stable-stringify-without-jsonify: 1.0.1
  2410. minimatch: 10.2.4
  2411. natural-compare: 1.4.0
  2412. optionator: 0.9.4
  2413. transitivePeerDependencies:
  2414. - supports-color
  2415. esniff@2.0.1:
  2416. dependencies:
  2417. d: 1.0.2
  2418. es5-ext: 0.10.64
  2419. event-emitter: 0.3.5
  2420. type: 2.7.3
  2421. espree@11.2.0:
  2422. dependencies:
  2423. acorn: 8.16.0
  2424. acorn-jsx: 5.3.2(acorn@8.16.0)
  2425. eslint-visitor-keys: 5.0.1
  2426. esquery@1.7.0:
  2427. dependencies:
  2428. estraverse: 5.3.0
  2429. esrecurse@4.3.0:
  2430. dependencies:
  2431. estraverse: 5.3.0
  2432. estraverse@5.3.0: {}
  2433. esutils@2.0.3: {}
  2434. event-emitter@0.3.5:
  2435. dependencies:
  2436. d: 1.0.2
  2437. es5-ext: 0.10.64
  2438. expand-template@2.0.3: {}
  2439. ext@1.7.0:
  2440. dependencies:
  2441. type: 2.7.3
  2442. fast-cidr-tools@0.3.4:
  2443. dependencies:
  2444. foxts: 4.6.0
  2445. fast-deep-equal@3.1.3: {}
  2446. fast-escape-html@1.1.0: {}
  2447. fast-escape-regexp@1.0.1: {}
  2448. fast-fifo@1.3.2: {}
  2449. fast-json-stable-stringify@2.1.0: {}
  2450. fast-levenshtein@2.0.6: {}
  2451. fast-uri@4.1.0: {}
  2452. fdir@6.5.0(picomatch@4.0.4):
  2453. optionalDependencies:
  2454. picomatch: 4.0.4
  2455. file-entry-cache@8.0.0:
  2456. dependencies:
  2457. flat-cache: 4.0.1
  2458. file-uri-to-path@1.0.0: {}
  2459. find-up@5.0.0:
  2460. dependencies:
  2461. locate-path: 6.0.0
  2462. path-exists: 4.0.0
  2463. flat-cache@4.0.1:
  2464. dependencies:
  2465. flatted: 3.3.3
  2466. keyv: 4.5.4
  2467. flat@5.0.2: {}
  2468. flatted@3.3.3: {}
  2469. foreground-child@3.3.1:
  2470. dependencies:
  2471. cross-spawn: 7.0.6
  2472. signal-exit: 4.1.0
  2473. foxts@4.6.0:
  2474. dependencies:
  2475. fast-escape-html: 1.1.0
  2476. fast-escape-regexp: 1.0.1
  2477. foxts@5.5.1: {}
  2478. fs-constants@1.0.0: {}
  2479. get-caller-file@2.0.5: {}
  2480. get-tsconfig@4.12.0:
  2481. dependencies:
  2482. resolve-pkg-maps: 1.0.0
  2483. github-from-package@0.0.0: {}
  2484. glob-parent@6.0.2:
  2485. dependencies:
  2486. is-glob: 4.0.3
  2487. glob@10.4.5:
  2488. dependencies:
  2489. foreground-child: 3.3.1
  2490. jackspeak: 3.4.3
  2491. minimatch: 9.0.5
  2492. minipass: 7.1.2
  2493. package-json-from-dist: 1.0.1
  2494. path-scurry: 1.11.1
  2495. globals@15.15.0: {}
  2496. globrex@0.1.2: {}
  2497. graceful-fs@4.2.11: {}
  2498. has-flag@4.0.0: {}
  2499. hash-wasm@4.12.0: {}
  2500. he@1.2.0: {}
  2501. hntrie@1.0.1:
  2502. dependencies:
  2503. foxts: 5.5.1
  2504. htmlparser2@6.1.0:
  2505. dependencies:
  2506. domelementtype: 2.3.0
  2507. domhandler: 4.3.1
  2508. domutils: 2.8.0
  2509. entities: 2.2.0
  2510. ieee754@1.2.1: {}
  2511. ignore@5.3.2: {}
  2512. ignore@7.0.5: {}
  2513. imurmurhash@0.1.4: {}
  2514. inherits@2.0.4: {}
  2515. ini@1.3.8: {}
  2516. ip-address@10.0.1: {}
  2517. is-bun-module@2.0.0:
  2518. dependencies:
  2519. semver: 7.7.3
  2520. is-extglob@2.1.1: {}
  2521. is-fullwidth-code-point@3.0.0: {}
  2522. is-glob@4.0.3:
  2523. dependencies:
  2524. is-extglob: 2.1.1
  2525. is-it-type@5.1.3:
  2526. dependencies:
  2527. globalthis: '@nolyfill/globalthis@1.0.44'
  2528. is-path-inside@3.0.3: {}
  2529. is-plain-obj@2.1.0: {}
  2530. is-typedarray@1.0.0: {}
  2531. is-unicode-supported@0.1.0: {}
  2532. isexe@2.0.0: {}
  2533. jackspeak@3.4.3:
  2534. dependencies:
  2535. '@isaacs/cliui': 8.0.2
  2536. optionalDependencies:
  2537. '@pkgjs/parseargs': 0.11.0
  2538. jest-regex-util@30.4.0: {}
  2539. jest-util@30.4.1:
  2540. dependencies:
  2541. '@jest/types': 30.4.1
  2542. '@types/node': 25.9.4
  2543. chalk: 4.1.2
  2544. ci-info: 4.4.0
  2545. graceful-fs: 4.2.11
  2546. picomatch: 4.0.4
  2547. jest-worker@30.4.1:
  2548. dependencies:
  2549. '@types/node': 25.9.4
  2550. '@ungap/structured-clone': 1.3.0
  2551. jest-util: 30.4.1
  2552. merge-stream: 2.0.0
  2553. supports-color: 8.1.1
  2554. js-yaml@4.1.0:
  2555. dependencies:
  2556. argparse: 2.0.1
  2557. jsdoc-type-pratt-parser@7.1.1: {}
  2558. json-buffer@3.0.1: {}
  2559. json-schema-traverse@0.4.1: {}
  2560. json-stable-stringify-without-jsonify@1.0.1: {}
  2561. json-stringify-pretty-compact@4.0.0: {}
  2562. jsonc-eslint-parser@3.1.0:
  2563. dependencies:
  2564. acorn: 8.16.0
  2565. eslint-visitor-keys: 5.0.1
  2566. semver: 7.7.3
  2567. keyv@4.5.4:
  2568. dependencies:
  2569. json-buffer: 3.0.1
  2570. levn@0.4.1:
  2571. dependencies:
  2572. prelude-ls: 1.2.1
  2573. type-check: 0.4.0
  2574. locate-path@6.0.0:
  2575. dependencies:
  2576. p-locate: 5.0.0
  2577. log-symbols@4.1.0:
  2578. dependencies:
  2579. chalk: 4.1.2
  2580. is-unicode-supported: 0.1.0
  2581. lru-cache@10.4.3: {}
  2582. merge-stream@2.0.0: {}
  2583. mime@3.0.0: {}
  2584. mimic-response@3.1.0: {}
  2585. minimatch@10.2.4:
  2586. dependencies:
  2587. brace-expansion: 5.0.3
  2588. minimatch@9.0.5:
  2589. dependencies:
  2590. brace-expansion: 2.0.2
  2591. minimist@1.2.8: {}
  2592. minipass@7.1.2: {}
  2593. mitata@1.0.34: {}
  2594. mkdirp-classic@0.5.3: {}
  2595. mocha@11.7.6:
  2596. dependencies:
  2597. browser-stdout: 1.3.1
  2598. chokidar: 4.0.3
  2599. debug: 4.4.3(supports-color@8.1.1)
  2600. diff: 7.0.0
  2601. escape-string-regexp: 4.0.0
  2602. find-up: 5.0.0
  2603. glob: 10.4.5
  2604. he: 1.2.0
  2605. is-path-inside: 3.0.3
  2606. js-yaml: 4.1.0
  2607. log-symbols: 4.1.0
  2608. minimatch: 9.0.5
  2609. ms: 2.1.3
  2610. picocolors: 1.1.1
  2611. serialize-javascript: 6.0.2
  2612. strip-json-comments: 3.1.1
  2613. supports-color: 8.1.1
  2614. workerpool: 9.3.3
  2615. yargs: 17.7.2
  2616. yargs-parser: 21.1.1
  2617. yargs-unparser: 2.0.0
  2618. ms@2.0.0: {}
  2619. ms@2.1.3: {}
  2620. napi-build-utils@2.0.0: {}
  2621. napi-postinstall@0.3.4: {}
  2622. natural-compare@1.4.0: {}
  2623. next-tick@1.1.0: {}
  2624. node-abi@3.75.0:
  2625. dependencies:
  2626. semver: 7.7.3
  2627. node-gyp-build@4.8.4: {}
  2628. node-localstorage@2.2.1:
  2629. dependencies:
  2630. write-file-atomic: 1.3.4
  2631. null-prototype-object@1.2.7: {}
  2632. once@1.4.0:
  2633. dependencies:
  2634. wrappy: 1.0.2
  2635. optionator@0.9.4:
  2636. dependencies:
  2637. deep-is: 0.1.4
  2638. fast-levenshtein: 2.0.6
  2639. levn: 0.4.1
  2640. prelude-ls: 1.2.1
  2641. type-check: 0.4.0
  2642. word-wrap: 1.2.5
  2643. oxc-resolver@11.20.0:
  2644. optionalDependencies:
  2645. '@oxc-resolver/binding-android-arm-eabi': 11.20.0
  2646. '@oxc-resolver/binding-android-arm64': 11.20.0
  2647. '@oxc-resolver/binding-darwin-arm64': 11.20.0
  2648. '@oxc-resolver/binding-darwin-x64': 11.20.0
  2649. '@oxc-resolver/binding-freebsd-x64': 11.20.0
  2650. '@oxc-resolver/binding-linux-arm-gnueabihf': 11.20.0
  2651. '@oxc-resolver/binding-linux-arm-musleabihf': 11.20.0
  2652. '@oxc-resolver/binding-linux-arm64-gnu': 11.20.0
  2653. '@oxc-resolver/binding-linux-arm64-musl': 11.20.0
  2654. '@oxc-resolver/binding-linux-ppc64-gnu': 11.20.0
  2655. '@oxc-resolver/binding-linux-riscv64-gnu': 11.20.0
  2656. '@oxc-resolver/binding-linux-riscv64-musl': 11.20.0
  2657. '@oxc-resolver/binding-linux-s390x-gnu': 11.20.0
  2658. '@oxc-resolver/binding-linux-x64-gnu': 11.20.0
  2659. '@oxc-resolver/binding-linux-x64-musl': 11.20.0
  2660. '@oxc-resolver/binding-openharmony-arm64': 11.20.0
  2661. '@oxc-resolver/binding-wasm32-wasi': 11.20.0
  2662. '@oxc-resolver/binding-win32-arm64-msvc': 11.20.0
  2663. '@oxc-resolver/binding-win32-x64-msvc': 11.20.0
  2664. p-limit@3.1.0:
  2665. dependencies:
  2666. yocto-queue: 0.1.0
  2667. p-locate@5.0.0:
  2668. dependencies:
  2669. p-limit: 3.1.0
  2670. package-json-from-dist@1.0.1: {}
  2671. package-manager-detector@1.5.0: {}
  2672. pako@2.1.0: {}
  2673. path-browserify@1.0.1: {}
  2674. path-exists@4.0.0: {}
  2675. path-key@3.1.1: {}
  2676. path-scurry@1.11.1:
  2677. dependencies:
  2678. lru-cache: 10.4.3
  2679. minipass: 7.1.2
  2680. picocolors@1.1.1: {}
  2681. picomatch@4.0.4: {}
  2682. pirates@4.0.7: {}
  2683. prebuild-install@7.1.3:
  2684. dependencies:
  2685. detect-libc: 2.0.4
  2686. expand-template: 2.0.3
  2687. github-from-package: 0.0.0
  2688. minimist: 1.2.8
  2689. mkdirp-classic: 0.5.3
  2690. napi-build-utils: 2.0.0
  2691. node-abi: 3.75.0
  2692. pump: 3.0.3
  2693. rc: 1.2.8
  2694. simple-get: 4.0.1
  2695. tar-fs: 2.1.3
  2696. tunnel-agent: 0.6.0
  2697. prelude-ls@1.2.1: {}
  2698. pump@3.0.3:
  2699. dependencies:
  2700. end-of-stream: 1.4.5
  2701. once: 1.4.0
  2702. punycode@2.3.1: {}
  2703. randombytes@2.1.0:
  2704. dependencies:
  2705. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2706. rc@1.2.8:
  2707. dependencies:
  2708. deep-extend: 0.6.0
  2709. ini: 1.3.8
  2710. minimist: 1.2.8
  2711. strip-json-comments: 2.0.1
  2712. readable-stream@3.6.2:
  2713. dependencies:
  2714. inherits: 2.0.4
  2715. string_decoder: 1.3.0
  2716. util-deprecate: 1.0.2
  2717. readdirp@4.1.2: {}
  2718. real-cancellable-promise@1.2.3: {}
  2719. refa@0.12.1:
  2720. dependencies:
  2721. '@eslint-community/regexpp': 4.12.2
  2722. regexp-ast-analysis@0.7.1:
  2723. dependencies:
  2724. '@eslint-community/regexpp': 4.12.2
  2725. refa: 0.12.1
  2726. require-directory@2.1.1: {}
  2727. resolve-pkg-maps@1.0.0: {}
  2728. scslre@0.3.0:
  2729. dependencies:
  2730. '@eslint-community/regexpp': 4.12.2
  2731. refa: 0.12.1
  2732. regexp-ast-analysis: 0.7.1
  2733. semver@7.7.3: {}
  2734. serialize-javascript@6.0.2:
  2735. dependencies:
  2736. randombytes: 2.1.0
  2737. shebang-command@2.0.0:
  2738. dependencies:
  2739. shebang-regex: 3.0.0
  2740. shebang-regex@3.0.0: {}
  2741. signal-exit@4.1.0: {}
  2742. simple-concat@1.0.1: {}
  2743. simple-get@4.0.1:
  2744. dependencies:
  2745. decompress-response: 6.0.0
  2746. once: 1.4.0
  2747. simple-concat: 1.0.1
  2748. simple-invariant@2.0.1: {}
  2749. slide@1.1.6: {}
  2750. smart-buffer@4.2.0: {}
  2751. socks@2.8.7:
  2752. dependencies:
  2753. ip-address: 10.0.1
  2754. smart-buffer: 4.2.0
  2755. source-map-support@0.5.21:
  2756. dependencies:
  2757. buffer-from: 1.1.2
  2758. source-map: 0.6.1
  2759. source-map@0.6.1: {}
  2760. stable-hash-x@0.2.0: {}
  2761. stackframe@1.3.4: {}
  2762. store2@2.14.4: {}
  2763. streamx@2.22.1:
  2764. dependencies:
  2765. fast-fifo: 1.3.2
  2766. text-decoder: 1.2.3
  2767. optionalDependencies:
  2768. bare-events: 2.6.1
  2769. string-width@4.2.3:
  2770. dependencies:
  2771. emoji-regex: 8.0.0
  2772. is-fullwidth-code-point: 3.0.0
  2773. strip-ansi: 6.0.1
  2774. string-width@5.1.2:
  2775. dependencies:
  2776. eastasianwidth: 0.2.0
  2777. emoji-regex: 9.2.2
  2778. strip-ansi: 7.1.0
  2779. string_decoder@1.3.0:
  2780. dependencies:
  2781. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2782. strip-ansi@6.0.1:
  2783. dependencies:
  2784. ansi-regex: 5.0.1
  2785. strip-ansi@7.1.0:
  2786. dependencies:
  2787. ansi-regex: 6.2.0
  2788. strip-json-comments@2.0.1: {}
  2789. strip-json-comments@3.1.1: {}
  2790. supports-color@7.2.0:
  2791. dependencies:
  2792. has-flag: 4.0.0
  2793. supports-color@8.1.1:
  2794. dependencies:
  2795. has-flag: 4.0.0
  2796. synckit@0.11.12:
  2797. dependencies:
  2798. '@pkgr/core': 0.2.9
  2799. tapable@2.3.0: {}
  2800. tapable@2.3.3: {}
  2801. tar-fs@2.1.3:
  2802. dependencies:
  2803. chownr: 1.1.4
  2804. mkdirp-classic: 0.5.3
  2805. pump: 3.0.3
  2806. tar-stream: 2.2.0
  2807. tar-fs@3.1.3:
  2808. dependencies:
  2809. pump: 3.0.3
  2810. tar-stream: 3.1.7
  2811. optionalDependencies:
  2812. bare-fs: 4.2.1
  2813. bare-path: 3.0.0
  2814. transitivePeerDependencies:
  2815. - bare-buffer
  2816. tar-stream@2.2.0:
  2817. dependencies:
  2818. bl: 4.1.0
  2819. end-of-stream: 1.4.5
  2820. fs-constants: 1.0.0
  2821. inherits: 2.0.4
  2822. readable-stream: 3.6.2
  2823. tar-stream@3.1.7:
  2824. dependencies:
  2825. b4a: 1.6.7
  2826. fast-fifo: 1.3.2
  2827. streamx: 2.22.1
  2828. telegram@2.26.22:
  2829. dependencies:
  2830. '@cryptography/aes': 0.1.1
  2831. async-mutex: 0.3.2
  2832. big-integer: 1.6.52
  2833. buffer: 6.0.3
  2834. htmlparser2: 6.1.0
  2835. mime: 3.0.0
  2836. node-localstorage: 2.2.1
  2837. pako: 2.1.0
  2838. path-browserify: 1.0.1
  2839. real-cancellable-promise: 1.2.3
  2840. socks: 2.8.7
  2841. store2: 2.14.4
  2842. ts-custom-error: 3.3.1
  2843. websocket: 1.0.35
  2844. optionalDependencies:
  2845. bufferutil: 4.0.9
  2846. utf-8-validate: 5.0.10
  2847. transitivePeerDependencies:
  2848. - supports-color
  2849. text-decoder@1.2.3:
  2850. dependencies:
  2851. b4a: 1.6.7
  2852. tinyexec@1.2.4: {}
  2853. tinyglobby@0.2.17:
  2854. dependencies:
  2855. fdir: 6.5.0(picomatch@4.0.4)
  2856. picomatch: 4.0.4
  2857. tldts-core@7.4.5: {}
  2858. tldts-experimental@7.4.5:
  2859. dependencies:
  2860. tldts-core: 7.4.5
  2861. tldts@7.4.5:
  2862. dependencies:
  2863. tldts-core: 7.4.5
  2864. ts-api-utils@2.5.0(typescript@6.0.3):
  2865. dependencies:
  2866. typescript: 6.0.3
  2867. ts-custom-error@3.3.1: {}
  2868. ts-declaration-location@1.0.7(typescript@6.0.3):
  2869. dependencies:
  2870. picomatch: 4.0.4
  2871. typescript: 6.0.3
  2872. tslib@2.8.1: {}
  2873. tunnel-agent@0.6.0:
  2874. dependencies:
  2875. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2876. type-check@0.4.0:
  2877. dependencies:
  2878. prelude-ls: 1.2.1
  2879. type@2.7.3: {}
  2880. typedarray-to-buffer@3.1.5:
  2881. dependencies:
  2882. is-typedarray: 1.0.0
  2883. typescript-eslint@8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3):
  2884. dependencies:
  2885. '@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2886. '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2887. '@typescript-eslint/typescript-estree': 8.62.1(typescript@6.0.3)
  2888. '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(supports-color@8.1.1))(typescript@6.0.3)
  2889. eslint: 10.6.0(supports-color@8.1.1)
  2890. typescript: 6.0.3
  2891. transitivePeerDependencies:
  2892. - supports-color
  2893. typescript@6.0.3: {}
  2894. undici-cache-store-better-sqlite3@1.0.1(undici@8.5.0):
  2895. dependencies:
  2896. better-sqlite3: 12.8.0
  2897. foxts: 5.5.1
  2898. undici: 8.5.0
  2899. undici-types@7.24.6: {}
  2900. undici@8.5.0: {}
  2901. unrs-resolver@1.11.1:
  2902. dependencies:
  2903. napi-postinstall: 0.3.4
  2904. optionalDependencies:
  2905. '@unrs/resolver-binding-android-arm-eabi': 1.11.1
  2906. '@unrs/resolver-binding-android-arm64': 1.11.1
  2907. '@unrs/resolver-binding-darwin-arm64': 1.11.1
  2908. '@unrs/resolver-binding-darwin-x64': 1.11.1
  2909. '@unrs/resolver-binding-freebsd-x64': 1.11.1
  2910. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
  2911. '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
  2912. '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
  2913. '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
  2914. '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
  2915. '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
  2916. '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
  2917. '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
  2918. '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
  2919. '@unrs/resolver-binding-linux-x64-musl': 1.11.1
  2920. '@unrs/resolver-binding-wasm32-wasi': 1.11.1
  2921. '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
  2922. '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
  2923. '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
  2924. uri-js@4.4.1:
  2925. dependencies:
  2926. punycode: 2.3.1
  2927. utf-8-validate@5.0.10:
  2928. dependencies:
  2929. node-gyp-build: 4.8.4
  2930. util-deprecate@1.0.2: {}
  2931. websocket@1.0.35:
  2932. dependencies:
  2933. bufferutil: 4.0.9
  2934. debug: 2.6.9
  2935. es5-ext: 0.10.64
  2936. typedarray-to-buffer: 3.1.5
  2937. utf-8-validate: 5.0.10
  2938. yaeti: 0.0.6
  2939. transitivePeerDependencies:
  2940. - supports-color
  2941. which@2.0.2:
  2942. dependencies:
  2943. isexe: 2.0.0
  2944. why-is-node-running@3.2.2: {}
  2945. word-wrap@1.2.5: {}
  2946. workerpool@9.3.3: {}
  2947. wrap-ansi@7.0.0:
  2948. dependencies:
  2949. ansi-styles: 4.3.0
  2950. string-width: 4.2.3
  2951. strip-ansi: 6.0.1
  2952. wrap-ansi@8.1.0:
  2953. dependencies:
  2954. ansi-styles: 6.2.1
  2955. string-width: 5.1.2
  2956. strip-ansi: 7.1.0
  2957. wrappy@1.0.2: {}
  2958. write-file-atomic@1.3.4:
  2959. dependencies:
  2960. graceful-fs: 4.2.11
  2961. imurmurhash: 0.1.4
  2962. slide: 1.1.6
  2963. xbits@0.2.0: {}
  2964. y18n@5.0.8: {}
  2965. yaeti@0.0.6: {}
  2966. yaml@2.9.0: {}
  2967. yargs-parser@21.1.1: {}
  2968. yargs-unparser@2.0.0:
  2969. dependencies:
  2970. camelcase: 6.3.0
  2971. decamelize: 4.0.0
  2972. flat: 5.0.2
  2973. is-plain-obj: 2.1.0
  2974. yargs@17.7.2:
  2975. dependencies:
  2976. cliui: 8.0.1
  2977. escalade: 3.2.0
  2978. get-caller-file: 2.0.5
  2979. require-directory: 2.1.1
  2980. string-width: 4.2.3
  2981. y18n: 5.0.8
  2982. yargs-parser: 21.1.1
  2983. yauzl-promise@4.0.0:
  2984. dependencies:
  2985. '@node-rs/crc32': 1.10.6
  2986. is-it-type: 5.1.3
  2987. simple-invariant: 2.0.1
  2988. yocto-queue@0.1.0: {}