pnpm-lock.yaml 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843
  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.1
  15. version: 2.18.1
  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.1
  30. version: 7.0.1
  31. domain-alive:
  32. specifier: ^0.1.23
  33. version: 0.1.23
  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.8
  72. version: 7.4.8
  73. tldts-experimental:
  74. specifier: ^7.4.8
  75. version: 7.4.8
  76. undici:
  77. specifier: ^8.7.0
  78. version: 8.7.0
  79. undici-cache-store-better-sqlite3:
  80. specifier: ^1.1.0
  81. version: 1.1.0(undici@8.7.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.5
  97. version: 8.13.5(eslint@10.7.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.5
  115. version: 25.9.5
  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.7.0
  127. version: 10.7.0(supports-color@8.1.1)
  128. eslint-config-sukka:
  129. specifier: ^8.13.5
  130. version: 8.13.5(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  131. eslint-formatter-sukka:
  132. specifier: ^8.13.5
  133. version: 8.13.5(eslint@10.7.0(supports-color@8.1.1))
  134. foxts:
  135. specifier: ^5.8.0
  136. version: 5.8.0
  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.5':
  177. resolution: {integrity: sha512-aDxNWxbshXXNKA7t2njsu9hpKg6zJQ109xTRe1Hv5LfP7DtM4N9eO7ik3sI1BDJlARdsj4O2uDqRqLZpxAoBow==}
  178. peerDependencies:
  179. eslint: '*'
  180. '@eslint-sukka/eslint-plugin-sukka-full@8.13.5':
  181. resolution: {integrity: sha512-DWr7z8kygyO5jArOhOXIEY+6Mn8s9PMaNSz1gn1lMTId4D00dnluUMbU3dTU8RfCo9J9/9qYwM9H+g6BZB2ZIQ==}
  182. peerDependencies:
  183. eslint: '*'
  184. typescript: '*'
  185. peerDependenciesMeta:
  186. typescript:
  187. optional: true
  188. '@eslint-sukka/node@8.13.5':
  189. resolution: {integrity: sha512-A6+IKe6heqe6TiOkvmS2LWqKlnTJ1rIFtayL1TFyAfWFfCaxU3JNgNNsHj0Ngp6g0GL8Pp0fWzpaJLLVoQoW+A==}
  190. '@eslint-sukka/shared@8.13.5':
  191. resolution: {integrity: sha512-IkXF6Vy8RPOn82yxPZX0l/WGhP2cmgqujhljsUJXnRC702A/oL2MPAgE+xIGvfWUHnBiXIL6VRlE0CUp4+KexQ==}
  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.1':
  218. resolution: {integrity: sha512-7OwXvqssrSqceXDMccq1SG2LEp0P899TWv0J52kA4PCjCgdsffdj7wMO98LbiVWEKJ9e00X4V2ZptC4VGYsX/w==}
  219. '@ghostery/adblocker-extended-selectors@2.18.1':
  220. resolution: {integrity: sha512-FruZMMUhdi0KG8GTTS9hs4njeQu1FyrzVtm9p3JKY6GpCNspy3kioP48JU3ASNzSDYZb5Xu8xbwPoSHJ4RQBeg==}
  221. '@ghostery/adblocker@2.18.1':
  222. resolution: {integrity: sha512-pWMJqpXpuqIlcF3ZZQ2E7ixnC7xhtYn/bpOn3N69vFrAm4wrZCIbKzz1+xSxKWCmJvDT4fg7rN2R6jQwFXm5BA==}
  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.5':
  556. resolution: {integrity: sha512-OScDchr2fwuUmWdf4kZ9h7PcJiYDVInhJizG/biAq3cAvqwYktuy/TYGGdZNMtNTFUP7rnb0NU4TUdm82kt4Rg==}
  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.63.0':
  568. resolution: {integrity: sha512-rvwSgqT+DHpWdzfSzPatRLm02a0GlESt++9iy3hLCDY4BgkaLcl8LBi9Yh7XGFBpwcBE/K3024QuXWTpbz4FfQ==}
  569. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  570. peerDependencies:
  571. '@typescript-eslint/parser': ^8.63.0
  572. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  573. typescript: '>=4.8.4 <6.1.0'
  574. '@typescript-eslint/parser@8.63.0':
  575. resolution: {integrity: sha512-gwh4gvvlaVDKKxyfxMG+Gnu1u9X0OQBwyGLkbwB65dIzBKnxeRiJlNFqlI3zwVhNXJIs6qV7mlFCn/BIajlVig==}
  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.63.0':
  581. resolution: {integrity: sha512-e5dh0/UI0ok53AlZ5wRkXCB32z/f2jUZqPR/ygAw5WYaSw8j9EoJWlS7wQjr/dmOaqWjnPIn2m+HhVPCMWGZVQ==}
  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.63.0':
  586. resolution: {integrity: sha512-uUyfMWCnDSN8bCpcrY8nGP2BLkQ9Xn0GsipcONcpIDWhwhO4ZSyHvyS14U3X75mzxWxL3I2UZIrenTzdzcJO8A==}
  587. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  588. '@typescript-eslint/tsconfig-utils@8.63.0':
  589. resolution: {integrity: sha512-sUAbkulqBAsncKnbRP3+7CtQFRKicexnj7ZwNC6ddCR7EmrXvjvdCYMJbUIqMd6lwoEriZjwLo08aS5tSjVMHg==}
  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.63.0':
  594. resolution: {integrity: sha512-Nzzh/OGxVCOjObjaj1CQF2RUasyYy2Jfuh+zZ3PjLzG2fYRriAiZLib9UKtO+CpQAS3YHiAS+ckZDclwqI1TPA==}
  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.63.0':
  600. resolution: {integrity: sha512-xyLtl9DUBBFrcJS4x2pIqGLH68/tC2uOa4Z7pUteW09D3bXnnXUom4dyPikzWgB7llmIc1zoeI3aoUdC4rPK/Q==}
  601. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  602. '@typescript-eslint/typescript-estree@8.63.0':
  603. resolution: {integrity: sha512-ygBkU+B7ex5UI/gKhaqexWev79uISfIv7XQCRNYO/jmD8rGLPyWLAb3KMRT6nd8Gt9bmUBi9+iX6tBdYfOY81Q==}
  604. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  605. peerDependencies:
  606. typescript: '>=4.8.4 <6.1.0'
  607. '@typescript-eslint/utils@8.63.0':
  608. resolution: {integrity: sha512-fUKaeAvrTuQg/Tgt3nliAUSZHJM6DlCcfyEmxCvlX8kieWSStBX+5O5Fnidtc3i2JrH+9c/GL4RY2iasd/GPTA==}
  609. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  610. peerDependencies:
  611. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  612. typescript: '>=4.8.4 <6.1.0'
  613. '@typescript-eslint/visitor-keys@8.63.0':
  614. resolution: {integrity: sha512-UexrHGnGTpbuQHct2ExOc2ZcFbGUS9FOesCxxqdBGcpI1BxYu/LZ6U8Aq6/72XtF/qRBk9nhuGHFJIXXMhPMdw==}
  615. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  616. '@ungap/structured-clone@1.3.0':
  617. resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
  618. deprecated: Potential CWE-502 - Update to 1.3.1 or higher
  619. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  620. resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
  621. cpu: [arm]
  622. os: [android]
  623. '@unrs/resolver-binding-android-arm64@1.11.1':
  624. resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
  625. cpu: [arm64]
  626. os: [android]
  627. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  628. resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
  629. cpu: [arm64]
  630. os: [darwin]
  631. '@unrs/resolver-binding-darwin-x64@1.11.1':
  632. resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
  633. cpu: [x64]
  634. os: [darwin]
  635. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  636. resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
  637. cpu: [x64]
  638. os: [freebsd]
  639. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  640. resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
  641. cpu: [arm]
  642. os: [linux]
  643. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  644. resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
  645. cpu: [arm]
  646. os: [linux]
  647. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  648. resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
  649. cpu: [arm64]
  650. os: [linux]
  651. libc: [glibc]
  652. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  653. resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
  654. cpu: [arm64]
  655. os: [linux]
  656. libc: [musl]
  657. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  658. resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
  659. cpu: [ppc64]
  660. os: [linux]
  661. libc: [glibc]
  662. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  663. resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
  664. cpu: [riscv64]
  665. os: [linux]
  666. libc: [glibc]
  667. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  668. resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
  669. cpu: [riscv64]
  670. os: [linux]
  671. libc: [musl]
  672. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  673. resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
  674. cpu: [s390x]
  675. os: [linux]
  676. libc: [glibc]
  677. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  678. resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
  679. cpu: [x64]
  680. os: [linux]
  681. libc: [glibc]
  682. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  683. resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
  684. cpu: [x64]
  685. os: [linux]
  686. libc: [musl]
  687. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  688. resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
  689. engines: {node: '>=14.0.0'}
  690. cpu: [wasm32]
  691. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  692. resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
  693. cpu: [arm64]
  694. os: [win32]
  695. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  696. resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
  697. cpu: [ia32]
  698. os: [win32]
  699. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  700. resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
  701. cpu: [x64]
  702. os: [win32]
  703. acorn-jsx@5.3.2:
  704. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  705. peerDependencies:
  706. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  707. acorn@8.16.0:
  708. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  709. engines: {node: '>=0.4.0'}
  710. hasBin: true
  711. ajv@6.14.0:
  712. resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
  713. ansi-regex@5.0.1:
  714. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  715. engines: {node: '>=8'}
  716. ansi-regex@6.2.0:
  717. resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
  718. engines: {node: '>=12'}
  719. ansi-styles@4.3.0:
  720. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  721. engines: {node: '>=8'}
  722. ansi-styles@6.2.1:
  723. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  724. engines: {node: '>=12'}
  725. argparse@2.0.1:
  726. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  727. async-mutex@0.3.2:
  728. resolution: {integrity: sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==}
  729. b4a@1.6.7:
  730. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  731. balanced-match@1.0.2:
  732. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  733. balanced-match@4.0.4:
  734. resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
  735. engines: {node: 18 || 20 || >=22}
  736. bare-events@2.6.1:
  737. resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
  738. bare-fs@4.2.1:
  739. resolution: {integrity: sha512-mELROzV0IhqilFgsl1gyp48pnZsaV9xhQapHLDsvn4d4ZTfbFhcghQezl7FTEDNBcGqLUnNI3lUlm6ecrLWdFA==}
  740. engines: {bare: '>=1.16.0'}
  741. peerDependencies:
  742. bare-buffer: '*'
  743. peerDependenciesMeta:
  744. bare-buffer:
  745. optional: true
  746. bare-os@3.6.2:
  747. resolution: {integrity: sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==}
  748. engines: {bare: '>=1.14.0'}
  749. bare-path@3.0.0:
  750. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  751. bare-stream@2.7.0:
  752. resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==}
  753. peerDependencies:
  754. bare-buffer: '*'
  755. bare-events: '*'
  756. peerDependenciesMeta:
  757. bare-buffer:
  758. optional: true
  759. bare-events:
  760. optional: true
  761. base64-js@1.5.1:
  762. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  763. better-sqlite3@12.11.1:
  764. resolution: {integrity: sha512-dq9AtApgg5PGFtBzPFSBl3HZQjHok5gaQCM6zh2Yk0aSmDCs1CbnVI8/HgASQkNKsWFpseIO9beg5xxpYhbIfA==}
  765. engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x || 26.x}
  766. big-integer@1.6.52:
  767. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  768. engines: {node: '>=0.6'}
  769. bindings@1.5.0:
  770. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  771. bl@4.1.0:
  772. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  773. brace-expansion@2.0.2:
  774. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  775. brace-expansion@5.0.3:
  776. resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
  777. engines: {node: 18 || 20 || >=22}
  778. browser-stdout@1.3.1:
  779. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  780. buffer-from@1.1.2:
  781. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  782. buffer@5.7.1:
  783. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  784. buffer@6.0.3:
  785. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  786. bufferutil@4.0.9:
  787. resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
  788. engines: {node: '>=6.14.2'}
  789. camelcase@6.3.0:
  790. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  791. engines: {node: '>=10'}
  792. chalk@4.1.2:
  793. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  794. engines: {node: '>=10'}
  795. chokidar@4.0.3:
  796. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  797. engines: {node: '>= 14.16.0'}
  798. chownr@1.1.4:
  799. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  800. ci-info@4.4.0:
  801. resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
  802. engines: {node: '>=8'}
  803. cli-progress@3.12.0:
  804. resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
  805. engines: {node: '>=4'}
  806. cliui@8.0.1:
  807. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  808. engines: {node: '>=12'}
  809. color-convert@2.0.1:
  810. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  811. engines: {node: '>=7.0.0'}
  812. color-name@1.1.4:
  813. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  814. colorette@2.0.20:
  815. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  816. comment-parser@1.4.1:
  817. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  818. engines: {node: '>= 12.0.0'}
  819. cross-spawn@7.0.6:
  820. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  821. engines: {node: '>= 8'}
  822. csv-parse@7.0.1:
  823. resolution: {integrity: sha512-+2z7Ar0APQ7Uu6fX4cn+pitRmxjZ1WPBcGmZFKmA74FCyi7Et/XZx8cjNQ5CjbZ4HCOxXCOpRBYvYH08Qa003A==}
  824. d@1.0.2:
  825. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  826. engines: {node: '>=0.12'}
  827. debug@2.6.9:
  828. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  829. peerDependencies:
  830. supports-color: '*'
  831. peerDependenciesMeta:
  832. supports-color:
  833. optional: true
  834. debug@4.4.1:
  835. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  836. engines: {node: '>=6.0'}
  837. peerDependencies:
  838. supports-color: '*'
  839. peerDependenciesMeta:
  840. supports-color:
  841. optional: true
  842. debug@4.4.3:
  843. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  844. engines: {node: '>=6.0'}
  845. peerDependencies:
  846. supports-color: '*'
  847. peerDependenciesMeta:
  848. supports-color:
  849. optional: true
  850. decamelize@4.0.0:
  851. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  852. engines: {node: '>=10'}
  853. decompress-response@6.0.0:
  854. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  855. engines: {node: '>=10'}
  856. deep-extend@0.6.0:
  857. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  858. engines: {node: '>=4.0.0'}
  859. deep-is@0.1.4:
  860. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  861. defu@6.1.7:
  862. resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
  863. detect-libc@2.1.2:
  864. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  865. engines: {node: '>=8'}
  866. diff-sequences@29.6.3:
  867. resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
  868. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  869. diff@7.0.0:
  870. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  871. engines: {node: '>=0.3.1'}
  872. dom-serializer@1.4.1:
  873. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  874. domain-alive@0.1.23:
  875. resolution: {integrity: sha512-tbnnnf8t8LhNcWNzQusV9k95yi5JnvPIngduEDsYlvQFMwvFTAUAivSJPJhFAGRotBA/q1E7mCaZqu2ttygwfg==}
  876. domelementtype@2.3.0:
  877. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  878. domhandler@4.3.1:
  879. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  880. engines: {node: '>= 4'}
  881. domutils@2.8.0:
  882. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  883. earl@2.0.0:
  884. resolution: {integrity: sha512-je2x7VWHNN3kN5zqcUUeEEokHoL7HWwiOxCdlLi66LkMqUnLECVZGePdgBtrqLrUg25bHLFrM+bkBXwcI7f+EQ==}
  885. eastasianwidth@0.2.0:
  886. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  887. emoji-regex@8.0.0:
  888. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  889. emoji-regex@9.2.2:
  890. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  891. end-of-stream@1.4.5:
  892. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  893. enhanced-resolve@5.24.2:
  894. resolution: {integrity: sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==}
  895. engines: {node: '>=10.13.0'}
  896. entities@2.2.0:
  897. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  898. error-stack-parser@2.1.4:
  899. resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
  900. es5-ext@0.10.64:
  901. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  902. engines: {node: '>=0.10'}
  903. es6-iterator@2.0.3:
  904. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  905. es6-symbol@3.1.4:
  906. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  907. engines: {node: '>=0.12'}
  908. escalade@3.2.0:
  909. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  910. engines: {node: '>=6'}
  911. escape-string-regexp@4.0.0:
  912. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  913. engines: {node: '>=10'}
  914. eslint-compat-utils@0.5.1:
  915. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  916. engines: {node: '>=12'}
  917. peerDependencies:
  918. eslint: '>=6.0.0'
  919. eslint-config-sukka@8.13.5:
  920. resolution: {integrity: sha512-xu0ucep6Y/mtfo7N9I4eU26nQ+M+PN8Oau1CX+JD/eyowDvu0YSimoFZYwhfEjMp6/+eaZYBXHItSjvG9q+LQA==}
  921. eslint-formatter-sukka@8.13.5:
  922. resolution: {integrity: sha512-pdvAb+xpOzhkJIZ5qlcIyEjrgVgZAEj5UtZbKDnI5Rf0IGMfCBVZPPxGXOPDroJzMARvw51unjw/RhSdTkZKGg==}
  923. peerDependencies:
  924. eslint: '*'
  925. eslint-import-context@0.1.9:
  926. resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
  927. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  928. peerDependencies:
  929. unrs-resolver: ^1.0.0
  930. peerDependenciesMeta:
  931. unrs-resolver:
  932. optional: true
  933. eslint-import-resolver-typescript@4.4.5:
  934. resolution: {integrity: sha512-nbE5XLph6TLtGYcu/U6e6ZVXyKBhbDWK5cLGk76eJ7NdZpwf1P9EFkpt1Z01mNZNrrilsAYWKH6zUkL4reoXbw==}
  935. engines: {node: ^16.17.0 || >=18.6.0}
  936. peerDependencies:
  937. eslint: '*'
  938. eslint-plugin-import: '*'
  939. eslint-plugin-import-x: '*'
  940. peerDependenciesMeta:
  941. eslint-plugin-import:
  942. optional: true
  943. eslint-plugin-import-x:
  944. optional: true
  945. eslint-json-compat-utils@0.2.3:
  946. resolution: {integrity: sha512-RbBmDFyu7FqnjE8F0ZxPNzx5UaptdeS9Uu50r7A+D7s/+FCX+ybiyViYEgFUaFIFqSWJgZRTpL5d8Kanxxl2lQ==}
  947. engines: {node: '>=12'}
  948. peerDependencies:
  949. '@eslint/json': '*'
  950. eslint: '*'
  951. jsonc-eslint-parser: ^2.4.0 || ^3.0.0
  952. peerDependenciesMeta:
  953. '@eslint/json':
  954. optional: true
  955. eslint-plugin-es-x@7.8.0:
  956. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  957. engines: {node: ^14.18.0 || >=16.0.0}
  958. peerDependencies:
  959. eslint: '>=8'
  960. eslint-plugin-import-x@4.17.1:
  961. resolution: {integrity: sha512-4cdstYkKCyjumM2Q9NSI03K8D2a9F4Ssz33K2lv2hQa4KmR9jPLwk3uWGtNvclfqBrPGfGuMBwsGMbe6dMRbfg==}
  962. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  963. peerDependencies:
  964. '@typescript-eslint/utils': ^8.56.0
  965. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  966. eslint-import-resolver-node: '*'
  967. peerDependenciesMeta:
  968. '@typescript-eslint/utils':
  969. optional: true
  970. eslint-import-resolver-node:
  971. optional: true
  972. eslint-plugin-jsonc@3.3.0:
  973. resolution: {integrity: sha512-CsTR8aDcShDg6A71ZppLaWiPoSo2J1Ivjm5/c4Mnb9sxgwWq+WG2PgeoAnj7SwzDPJB75tlHvLrGy6ntooIitg==}
  974. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  975. peerDependencies:
  976. eslint: '>=9.38.0'
  977. eslint-plugin-n@17.24.0:
  978. resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
  979. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  980. peerDependencies:
  981. eslint: '>=8.23.0'
  982. eslint-plugin-promise@7.3.0:
  983. resolution: {integrity: sha512-6uGiOR0INuujr6PEQmeSSP7GbIMJ/ebEXXiEzb/nOj68LknH5Pxzb/AbZivmr6VE6TkTE8rTjRK9zhKpK6HsRA==}
  984. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  985. peerDependencies:
  986. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
  987. eslint-plugin-regexp@3.1.1:
  988. resolution: {integrity: sha512-MxR5nqoQCtVWmJwia0D2+NlXX1xzdpkslsVOZLEYQ4PQWEaL65PCZXURxaBc3lPnkNFpNxzMIRmYVxdl8giXRA==}
  989. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  990. peerDependencies:
  991. eslint: '>=9.38.0'
  992. eslint-plugin-sukka@9.15.0:
  993. resolution: {integrity: sha512-nXCgOos2HxypWgNr0kDZuzWZYR8GyJ3kxmT1dlMh1yh8DhMX7desX2mTHg/218cDq1VZgR1hGYceDSdvnZNc5A==}
  994. peerDependencies:
  995. eslint: '>=9.29.0'
  996. typescript: '*'
  997. eslint-plugin-unused-imports@4.4.1:
  998. resolution: {integrity: sha512-oZGYUz1X3sRMGUB+0cZyK2VcvRX5lm/vB56PgNNcU+7ficUCKm66oZWKUubXWnOuPjQ8PvmXtCViXBMONPe7tQ==}
  999. peerDependencies:
  1000. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  1001. eslint: ^10.0.0 || ^9.0.0 || ^8.0.0
  1002. peerDependenciesMeta:
  1003. '@typescript-eslint/eslint-plugin':
  1004. optional: true
  1005. eslint-scope@9.1.2:
  1006. resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
  1007. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1008. eslint-visitor-keys@3.4.3:
  1009. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  1010. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1011. eslint-visitor-keys@5.0.1:
  1012. resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
  1013. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1014. eslint@10.7.0:
  1015. resolution: {integrity: sha512-GVTD7s1vdIl6UYvAfriOPeY1Df8LIZjfofLvHwde+erDHGGuHyuM6xoxRxmHiebhYuD2p1vN4wWh0XzPARSGDQ==}
  1016. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1017. hasBin: true
  1018. peerDependencies:
  1019. jiti: '*'
  1020. peerDependenciesMeta:
  1021. jiti:
  1022. optional: true
  1023. esniff@2.0.1:
  1024. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  1025. engines: {node: '>=0.10'}
  1026. espree@11.2.0:
  1027. resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
  1028. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1029. esquery@1.7.0:
  1030. resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
  1031. engines: {node: '>=0.10'}
  1032. esrecurse@4.3.0:
  1033. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1034. engines: {node: '>=4.0'}
  1035. estraverse@5.3.0:
  1036. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1037. engines: {node: '>=4.0'}
  1038. esutils@2.0.3:
  1039. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1040. engines: {node: '>=0.10.0'}
  1041. event-emitter@0.3.5:
  1042. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  1043. expand-template@2.0.3:
  1044. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  1045. engines: {node: '>=6'}
  1046. ext@1.7.0:
  1047. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  1048. fast-cidr-tools@0.3.4:
  1049. resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
  1050. engines: {node: '>=16'}
  1051. fast-deep-equal@3.1.3:
  1052. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1053. fast-escape-html@1.1.0:
  1054. resolution: {integrity: sha512-nRvjfywv8gzIBs0fM/ht6S5scNUamm+o+91p/69cYYNWODb7b/UiQfjFx+6n8NMtdHs6K80kh+hW1dPNS/opIA==}
  1055. fast-escape-regexp@1.0.1:
  1056. resolution: {integrity: sha512-VSnAgWEYHdyyVegVfN/TUCa6hDQ7PIxdIJVWq4RWqyegkG9zFwNb21uykT0hAyvKlKnFR+zOu/25434pHBXtLA==}
  1057. fast-fifo@1.3.2:
  1058. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  1059. fast-json-stable-stringify@2.1.0:
  1060. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1061. fast-levenshtein@2.0.6:
  1062. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1063. fast-uri@4.1.0:
  1064. resolution: {integrity: sha512-ZodJ2cRiLVWGi9IgPb3mbgSqM4CD3LexCHkuv0FfBXHJI1ADfucTD06m6clO2Cy5RZYsw/SiCVl/dyrFI/SYWA==}
  1065. fdir@6.5.0:
  1066. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1067. engines: {node: '>=12.0.0'}
  1068. peerDependencies:
  1069. picomatch: ^3 || ^4
  1070. peerDependenciesMeta:
  1071. picomatch:
  1072. optional: true
  1073. file-entry-cache@8.0.0:
  1074. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1075. engines: {node: '>=16.0.0'}
  1076. file-uri-to-path@1.0.0:
  1077. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1078. find-up@5.0.0:
  1079. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1080. engines: {node: '>=10'}
  1081. flat-cache@4.0.1:
  1082. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1083. engines: {node: '>=16'}
  1084. flat@5.0.2:
  1085. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1086. hasBin: true
  1087. flatted@3.3.3:
  1088. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1089. foreground-child@3.3.1:
  1090. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1091. engines: {node: '>=14'}
  1092. foxts@4.6.0:
  1093. resolution: {integrity: sha512-Sq6k7CDUAz1/MOiwRiV59tblzsaWGOQitYxvF/l7H5Z/9gZNBvWKWsRcXLS7T7FLKRKO0LmETiefkVUm5omESg==}
  1094. foxts@5.8.0:
  1095. resolution: {integrity: sha512-lVNbi34bVy2ECGNzH8BZ/LGT+ROh0xPBAQsXuuq4HiJ57rKSWiTYWEGNY+eObJWdA38aa51xIFXntMeiMRyYKQ==}
  1096. fs-constants@1.0.0:
  1097. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1098. get-caller-file@2.0.5:
  1099. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1100. engines: {node: 6.* || 8.* || >= 10.*}
  1101. get-tsconfig@4.12.0:
  1102. resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
  1103. github-from-package@0.0.0:
  1104. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1105. glob-parent@6.0.2:
  1106. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1107. engines: {node: '>=10.13.0'}
  1108. glob@10.4.5:
  1109. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1110. 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
  1111. hasBin: true
  1112. globals@15.15.0:
  1113. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  1114. engines: {node: '>=18'}
  1115. globrex@0.1.2:
  1116. resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
  1117. graceful-fs@4.2.11:
  1118. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1119. has-flag@4.0.0:
  1120. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1121. engines: {node: '>=8'}
  1122. hash-wasm@4.12.0:
  1123. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1124. he@1.2.0:
  1125. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1126. hasBin: true
  1127. hntrie@1.0.1:
  1128. resolution: {integrity: sha512-k3OIFupPUGL1WrAiZ0Xa5on/vE/MKlub7ZQtEH0AfzfskMqq4/H6xgSqMeCXzVgNDWruP/Ff+9O5mHRzL4XZyg==}
  1129. htmlparser2@6.1.0:
  1130. resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
  1131. ieee754@1.2.1:
  1132. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1133. ignore@5.3.2:
  1134. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1135. engines: {node: '>= 4'}
  1136. ignore@7.0.5:
  1137. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1138. engines: {node: '>= 4'}
  1139. imurmurhash@0.1.4:
  1140. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1141. engines: {node: '>=0.8.19'}
  1142. inherits@2.0.4:
  1143. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1144. ini@1.3.8:
  1145. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1146. ip-address@10.0.1:
  1147. resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
  1148. engines: {node: '>= 12'}
  1149. is-bun-module@2.0.0:
  1150. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1151. is-extglob@2.1.1:
  1152. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1153. engines: {node: '>=0.10.0'}
  1154. is-fullwidth-code-point@3.0.0:
  1155. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1156. engines: {node: '>=8'}
  1157. is-glob@4.0.3:
  1158. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1159. engines: {node: '>=0.10.0'}
  1160. is-it-type@5.1.3:
  1161. resolution: {integrity: sha512-AX2uU0HW+TxagTgQXOJY7+2fbFHemC7YFBwN1XqD8qQMKdtfbOC8OC3fUb4s5NU59a3662Dzwto8tWDdZYRXxg==}
  1162. engines: {node: '>=12'}
  1163. is-path-inside@3.0.3:
  1164. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1165. engines: {node: '>=8'}
  1166. is-plain-obj@2.1.0:
  1167. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1168. engines: {node: '>=8'}
  1169. is-typedarray@1.0.0:
  1170. resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
  1171. is-unicode-supported@0.1.0:
  1172. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1173. engines: {node: '>=10'}
  1174. isexe@2.0.0:
  1175. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1176. jackspeak@3.4.3:
  1177. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1178. jest-regex-util@30.4.0:
  1179. resolution: {integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==}
  1180. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1181. jest-util@30.4.1:
  1182. resolution: {integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==}
  1183. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1184. jest-worker@30.4.1:
  1185. resolution: {integrity: sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==}
  1186. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1187. js-yaml@4.1.0:
  1188. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1189. hasBin: true
  1190. jsdoc-type-pratt-parser@7.1.1:
  1191. resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
  1192. engines: {node: '>=20.0.0'}
  1193. json-buffer@3.0.1:
  1194. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1195. json-schema-traverse@0.4.1:
  1196. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1197. json-stable-stringify-without-jsonify@1.0.1:
  1198. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1199. json-stringify-pretty-compact@4.0.0:
  1200. resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==}
  1201. jsonc-eslint-parser@3.1.0:
  1202. resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==}
  1203. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1204. keyv@4.5.4:
  1205. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1206. levn@0.4.1:
  1207. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1208. engines: {node: '>= 0.8.0'}
  1209. locate-path@6.0.0:
  1210. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1211. engines: {node: '>=10'}
  1212. log-symbols@4.1.0:
  1213. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1214. engines: {node: '>=10'}
  1215. lru-cache@10.4.3:
  1216. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1217. merge-stream@2.0.0:
  1218. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1219. mime@3.0.0:
  1220. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1221. engines: {node: '>=10.0.0'}
  1222. hasBin: true
  1223. mimic-response@3.1.0:
  1224. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1225. engines: {node: '>=10'}
  1226. minimatch@10.2.4:
  1227. resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
  1228. engines: {node: 18 || 20 || >=22}
  1229. minimatch@9.0.5:
  1230. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1231. engines: {node: '>=16 || 14 >=14.17'}
  1232. minimist@1.2.8:
  1233. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1234. minipass@7.1.2:
  1235. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1236. engines: {node: '>=16 || 14 >=14.17'}
  1237. mitata@1.0.34:
  1238. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1239. mkdirp-classic@0.5.3:
  1240. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1241. mocha@11.7.6:
  1242. resolution: {integrity: sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA==}
  1243. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1244. hasBin: true
  1245. ms@2.0.0:
  1246. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1247. ms@2.1.3:
  1248. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1249. napi-build-utils@2.0.0:
  1250. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1251. napi-postinstall@0.3.4:
  1252. resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
  1253. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  1254. hasBin: true
  1255. natural-compare@1.4.0:
  1256. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1257. next-tick@1.1.0:
  1258. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1259. node-abi@3.94.0:
  1260. resolution: {integrity: sha512-W5ZNO5KRPB5TkYmGVD9F6YqhsglXJzE6etpbmT+f6EQElhiX/UTG551cnsRGvLG3fyZEg9HwaDmNmj5nwJ4z9g==}
  1261. engines: {node: '>=10'}
  1262. node-gyp-build@4.8.4:
  1263. resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
  1264. hasBin: true
  1265. node-localstorage@2.2.1:
  1266. resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
  1267. engines: {node: '>=0.12'}
  1268. null-prototype-object@1.2.7:
  1269. resolution: {integrity: sha512-pSZWCUew0zed2gxCerA4zdXRGg8ezLiWwvE8RvncezTcROXL0uz3PjSZXl5NsI04Egz0Uu46o1wyX6qr3u/ZWA==}
  1270. engines: {node: '>= 20'}
  1271. once@1.4.0:
  1272. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1273. optionator@0.9.4:
  1274. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1275. engines: {node: '>= 0.8.0'}
  1276. oxc-resolver@11.20.0:
  1277. resolution: {integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==}
  1278. p-limit@3.1.0:
  1279. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1280. engines: {node: '>=10'}
  1281. p-locate@5.0.0:
  1282. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1283. engines: {node: '>=10'}
  1284. package-json-from-dist@1.0.1:
  1285. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1286. package-manager-detector@1.5.0:
  1287. resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==}
  1288. pako@2.1.0:
  1289. resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
  1290. path-browserify@1.0.1:
  1291. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1292. path-exists@4.0.0:
  1293. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1294. engines: {node: '>=8'}
  1295. path-key@3.1.1:
  1296. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1297. engines: {node: '>=8'}
  1298. path-scurry@1.11.1:
  1299. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1300. engines: {node: '>=16 || 14 >=14.18'}
  1301. picocolors@1.1.1:
  1302. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1303. picomatch@4.0.4:
  1304. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  1305. engines: {node: '>=12'}
  1306. pirates@4.0.7:
  1307. resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
  1308. engines: {node: '>= 6'}
  1309. prebuild-install@7.1.3:
  1310. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1311. engines: {node: '>=10'}
  1312. deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
  1313. hasBin: true
  1314. prelude-ls@1.2.1:
  1315. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1316. engines: {node: '>= 0.8.0'}
  1317. pump@3.0.3:
  1318. resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
  1319. punycode@2.3.1:
  1320. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1321. engines: {node: '>=6'}
  1322. randombytes@2.1.0:
  1323. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1324. rc@1.2.8:
  1325. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1326. hasBin: true
  1327. readable-stream@3.6.2:
  1328. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1329. engines: {node: '>= 6'}
  1330. readdirp@4.1.2:
  1331. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1332. engines: {node: '>= 14.18.0'}
  1333. real-cancellable-promise@1.2.3:
  1334. resolution: {integrity: sha512-hBI5Gy/55VEeeMtImMgEirD7eq5UmqJf1J8dFZtbJZA/3rB0pYFZ7PayMGueb6v4UtUtpKpP+05L0VwyE1hI9Q==}
  1335. refa@0.12.1:
  1336. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1337. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1338. regexp-ast-analysis@0.7.1:
  1339. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1340. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1341. require-directory@2.1.1:
  1342. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1343. engines: {node: '>=0.10.0'}
  1344. resolve-pkg-maps@1.0.0:
  1345. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1346. scslre@0.3.0:
  1347. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1348. engines: {node: ^14.0.0 || >=16.0.0}
  1349. semver@7.7.3:
  1350. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  1351. engines: {node: '>=10'}
  1352. hasBin: true
  1353. serialize-javascript@6.0.2:
  1354. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1355. shebang-command@2.0.0:
  1356. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1357. engines: {node: '>=8'}
  1358. shebang-regex@3.0.0:
  1359. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1360. engines: {node: '>=8'}
  1361. signal-exit@4.1.0:
  1362. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1363. engines: {node: '>=14'}
  1364. simple-concat@1.0.1:
  1365. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1366. simple-get@4.0.1:
  1367. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1368. simple-invariant@2.0.1:
  1369. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1370. engines: {node: '>=10'}
  1371. slide@1.1.6:
  1372. resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
  1373. smart-buffer@4.2.0:
  1374. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  1375. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  1376. socks@2.8.7:
  1377. resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
  1378. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  1379. source-map-support@0.5.21:
  1380. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1381. source-map@0.6.1:
  1382. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1383. engines: {node: '>=0.10.0'}
  1384. stable-hash-x@0.2.0:
  1385. resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
  1386. engines: {node: '>=12.0.0'}
  1387. stackframe@1.3.4:
  1388. resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
  1389. store2@2.14.4:
  1390. resolution: {integrity: sha512-srTItn1GOvyvOycgxjAnPA63FZNwy0PTyUBFMHRM+hVFltAeoh0LmNBz9SZqUS9mMqGk8rfyWyXn3GH5ReJ8Zw==}
  1391. streamx@2.22.1:
  1392. resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
  1393. string-width@4.2.3:
  1394. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1395. engines: {node: '>=8'}
  1396. string-width@5.1.2:
  1397. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1398. engines: {node: '>=12'}
  1399. string_decoder@1.3.0:
  1400. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1401. strip-ansi@6.0.1:
  1402. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1403. engines: {node: '>=8'}
  1404. strip-ansi@7.1.0:
  1405. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1406. engines: {node: '>=12'}
  1407. strip-json-comments@2.0.1:
  1408. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1409. engines: {node: '>=0.10.0'}
  1410. strip-json-comments@3.1.1:
  1411. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1412. engines: {node: '>=8'}
  1413. supports-color@7.2.0:
  1414. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1415. engines: {node: '>=8'}
  1416. supports-color@8.1.1:
  1417. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1418. engines: {node: '>=10'}
  1419. synckit@0.11.12:
  1420. resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
  1421. engines: {node: ^14.18.0 || >=16.0.0}
  1422. tapable@2.3.3:
  1423. resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
  1424. engines: {node: '>=6'}
  1425. tar-fs@2.1.5:
  1426. resolution: {integrity: sha512-OboTd8mmMhZDNPV+UjQcK9yKAatXu2aJ+r1w4im1Otd4M4fl2hwvdoXUxIYHFTHWK/3y3FarBP70v3vwmGlOxw==}
  1427. tar-fs@3.1.3:
  1428. resolution: {integrity: sha512-/hU4AXnIdZu+Gvl1pk0oI5f5HxWsCJRtY2aFaJdk9VvyL48DWU6iU5WAIPG+wIi1YvWA6eTJvIviP/tMAZZNwQ==}
  1429. tar-stream@2.2.0:
  1430. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1431. engines: {node: '>=6'}
  1432. tar-stream@3.1.7:
  1433. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1434. telegram@2.26.22:
  1435. resolution: {integrity: sha512-EIj7Yrjiu0Yosa3FZ/7EyPg9s6UiTi/zDQrFmR/2Mg7pIUU+XjAit1n1u9OU9h2oRnRM5M+67/fxzQluZpaJJg==}
  1436. text-decoder@1.2.3:
  1437. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1438. tinyexec@1.2.4:
  1439. resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==}
  1440. engines: {node: '>=18'}
  1441. tinyglobby@0.2.17:
  1442. resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
  1443. engines: {node: '>=12.0.0'}
  1444. tldts-core@7.4.8:
  1445. resolution: {integrity: sha512-c1P7u0EhACHj7lPy4MJm8iTFEU8+nB0LCtddH0fhP7noaVoXAqafMtOOeX+ulpuPBqnrRgRhw494RICT3mbhnw==}
  1446. tldts-experimental@7.4.8:
  1447. resolution: {integrity: sha512-BhnfwjtvAhq2ea0vglBojLEvn2QtZFZenstPQt75O8RtSqf8Xgh2vh7ksD4afpKwqjUNKg9ze2f18C8KbmSy7A==}
  1448. tldts@7.4.8:
  1449. resolution: {integrity: sha512-htwgN/8KRB3z3vnC0BOETVh2m499g5GmyTK9Wq5JBLX3FNz6tSBveAd+fQhzy9hkjif8vy2jwDMR1sGhLtZl2A==}
  1450. hasBin: true
  1451. ts-api-utils@2.5.0:
  1452. resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
  1453. engines: {node: '>=18.12'}
  1454. peerDependencies:
  1455. typescript: '>=4.8.4'
  1456. ts-custom-error@3.3.1:
  1457. resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==}
  1458. engines: {node: '>=14.0.0'}
  1459. ts-declaration-location@1.0.7:
  1460. resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
  1461. peerDependencies:
  1462. typescript: '>=4.0.0'
  1463. tslib@2.8.1:
  1464. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1465. tunnel-agent@0.6.0:
  1466. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1467. type-check@0.4.0:
  1468. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1469. engines: {node: '>= 0.8.0'}
  1470. type@2.7.3:
  1471. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  1472. typedarray-to-buffer@3.1.5:
  1473. resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
  1474. typescript-eslint@8.63.0:
  1475. resolution: {integrity: sha512-xgwXyzG4sK9ALkBxbyGkTMMOS+imnW65iPhxCQMK83KhxyoDNW7l+IDqEf9vMdoUidHpOoS967RCq4eMiTexwQ==}
  1476. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1477. peerDependencies:
  1478. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  1479. typescript: '>=4.8.4 <6.1.0'
  1480. typescript@6.0.3:
  1481. resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
  1482. engines: {node: '>=14.17'}
  1483. hasBin: true
  1484. undici-cache-store-better-sqlite3@1.1.0:
  1485. resolution: {integrity: sha512-8x10TW1i+fp3oNX4r3Yg1Kxc5H0LH+C9ax1f807s/5kmq1Ynt4ihMipddag+rT6Z5km4v0MMgE2/4vNwmUFamQ==}
  1486. peerDependencies:
  1487. undici: '>=7.0.0'
  1488. undici-types@7.24.6:
  1489. resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
  1490. undici@8.7.0:
  1491. resolution: {integrity: sha512-N7iQtfyLhIMOFgQubvmLV26svHpO0bqKnAiWotTQCVKCmWrcGbBotPuW1x+xwYZ2VHdSTVUfPQQnlEt1/LouTQ==}
  1492. engines: {node: '>=22.19.0'}
  1493. unrs-resolver@1.11.1:
  1494. resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
  1495. uri-js@4.4.1:
  1496. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1497. utf-8-validate@5.0.10:
  1498. resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
  1499. engines: {node: '>=6.14.2'}
  1500. util-deprecate@1.0.2:
  1501. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1502. websocket@1.0.35:
  1503. resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
  1504. engines: {node: '>=4.0.0'}
  1505. which@2.0.2:
  1506. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1507. engines: {node: '>= 8'}
  1508. hasBin: true
  1509. why-is-node-running@3.2.2:
  1510. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1511. engines: {node: '>=20.11'}
  1512. hasBin: true
  1513. word-wrap@1.2.5:
  1514. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1515. engines: {node: '>=0.10.0'}
  1516. workerpool@9.3.3:
  1517. resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
  1518. wrap-ansi@7.0.0:
  1519. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1520. engines: {node: '>=10'}
  1521. wrap-ansi@8.1.0:
  1522. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1523. engines: {node: '>=12'}
  1524. wrappy@1.0.2:
  1525. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1526. write-file-atomic@1.3.4:
  1527. resolution: {integrity: sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==}
  1528. xbits@0.2.0:
  1529. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1530. y18n@5.0.8:
  1531. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1532. engines: {node: '>=10'}
  1533. yaeti@0.0.6:
  1534. resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
  1535. engines: {node: '>=0.10.32'}
  1536. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1537. yaml@2.9.0:
  1538. resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
  1539. engines: {node: '>= 14.6'}
  1540. hasBin: true
  1541. yargs-parser@21.1.1:
  1542. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1543. engines: {node: '>=12'}
  1544. yargs-unparser@2.0.0:
  1545. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1546. engines: {node: '>=10'}
  1547. yargs@17.7.2:
  1548. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1549. engines: {node: '>=12'}
  1550. yauzl-promise@4.0.0:
  1551. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1552. engines: {node: '>=16'}
  1553. yocto-queue@0.1.0:
  1554. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1555. engines: {node: '>=10'}
  1556. snapshots:
  1557. '@antfu/install-pkg@1.1.0':
  1558. dependencies:
  1559. package-manager-detector: 1.5.0
  1560. tinyexec: 1.2.4
  1561. '@cryptography/aes@0.1.1': {}
  1562. '@emnapi/core@1.10.0':
  1563. dependencies:
  1564. '@emnapi/wasi-threads': 1.2.1
  1565. tslib: 2.8.1
  1566. optional: true
  1567. '@emnapi/runtime@1.10.0':
  1568. dependencies:
  1569. tslib: 2.8.1
  1570. optional: true
  1571. '@emnapi/wasi-threads@1.2.1':
  1572. dependencies:
  1573. tslib: 2.8.1
  1574. optional: true
  1575. '@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.7.0(supports-color@8.1.1))':
  1576. dependencies:
  1577. escape-string-regexp: 4.0.0
  1578. eslint: 10.7.0(supports-color@8.1.1)
  1579. ignore: 7.0.5
  1580. '@eslint-community/eslint-utils@4.9.1(eslint@10.7.0(supports-color@8.1.1))':
  1581. dependencies:
  1582. eslint: 10.7.0(supports-color@8.1.1)
  1583. eslint-visitor-keys: 3.4.3
  1584. '@eslint-community/regexpp@4.12.2': {}
  1585. '@eslint-sukka/eslint-plugin-stylistic@8.13.5(eslint@10.7.0(supports-color@8.1.1))':
  1586. dependencies:
  1587. eslint: 10.7.0(supports-color@8.1.1)
  1588. '@eslint-sukka/eslint-plugin-sukka-full@8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)':
  1589. dependencies:
  1590. eslint: 10.7.0(supports-color@8.1.1)
  1591. eslint-plugin-sukka: 9.15.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1592. optionalDependencies:
  1593. typescript: 6.0.3
  1594. transitivePeerDependencies:
  1595. - supports-color
  1596. '@eslint-sukka/node@8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)':
  1597. dependencies:
  1598. '@eslint-sukka/eslint-plugin-sukka-full': 8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1599. '@eslint-sukka/shared': 8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1600. eslint-plugin-n: 17.24.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1601. transitivePeerDependencies:
  1602. - eslint
  1603. - supports-color
  1604. - typescript
  1605. '@eslint-sukka/shared@8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)':
  1606. dependencies:
  1607. '@package-json/types': 0.0.13
  1608. '@typescript-eslint/utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1609. enhanced-resolve: 5.24.2
  1610. eslint: 10.7.0(supports-color@8.1.1)
  1611. foxts: 5.8.0
  1612. transitivePeerDependencies:
  1613. - supports-color
  1614. - typescript
  1615. '@eslint/config-array@0.23.5(supports-color@8.1.1)':
  1616. dependencies:
  1617. '@eslint/object-schema': 3.0.5
  1618. debug: 4.4.3(supports-color@8.1.1)
  1619. minimatch: 10.2.4
  1620. transitivePeerDependencies:
  1621. - supports-color
  1622. '@eslint/config-helpers@0.6.0':
  1623. dependencies:
  1624. '@eslint/core': 1.2.1
  1625. '@eslint/core@1.2.1':
  1626. dependencies:
  1627. '@types/json-schema': 7.0.15
  1628. '@eslint/js@10.0.1(eslint@10.7.0(supports-color@8.1.1))':
  1629. optionalDependencies:
  1630. eslint: 10.7.0(supports-color@8.1.1)
  1631. '@eslint/object-schema@3.0.5': {}
  1632. '@eslint/plugin-kit@0.7.2':
  1633. dependencies:
  1634. '@eslint/core': 1.2.1
  1635. levn: 0.4.1
  1636. '@ghostery/adblocker-content@2.18.1':
  1637. dependencies:
  1638. '@ghostery/adblocker-extended-selectors': 2.18.1
  1639. '@ghostery/adblocker-extended-selectors@2.18.1': {}
  1640. '@ghostery/adblocker@2.18.1':
  1641. dependencies:
  1642. '@ghostery/adblocker-content': 2.18.1
  1643. '@ghostery/adblocker-extended-selectors': 2.18.1
  1644. '@ghostery/url-parser': 1.3.1
  1645. '@remusao/guess-url-type': 2.1.0
  1646. '@remusao/small': 2.1.0
  1647. '@remusao/smaz': 2.2.0
  1648. tldts-experimental: 7.4.8
  1649. '@ghostery/url-parser@1.3.1':
  1650. dependencies:
  1651. tldts-experimental: 7.4.8
  1652. '@henrygd/queue@1.2.0': {}
  1653. '@humanfs/core@0.19.1': {}
  1654. '@humanfs/node@0.16.6':
  1655. dependencies:
  1656. '@humanfs/core': 0.19.1
  1657. '@humanwhocodes/retry': 0.3.1
  1658. '@humanwhocodes/module-importer@1.0.1': {}
  1659. '@humanwhocodes/retry@0.3.1': {}
  1660. '@humanwhocodes/retry@0.4.3': {}
  1661. '@isaacs/cliui@8.0.2':
  1662. dependencies:
  1663. string-width: 5.1.2
  1664. string-width-cjs: string-width@4.2.3
  1665. strip-ansi: 7.1.0
  1666. strip-ansi-cjs: strip-ansi@6.0.1
  1667. wrap-ansi: 8.1.0
  1668. wrap-ansi-cjs: wrap-ansi@7.0.0
  1669. '@jest/pattern@30.4.0':
  1670. dependencies:
  1671. '@types/node': 25.9.5
  1672. jest-regex-util: 30.4.0
  1673. '@jest/schemas@30.4.1':
  1674. dependencies:
  1675. '@sinclair/typebox': 0.34.49
  1676. '@jest/types@30.4.1':
  1677. dependencies:
  1678. '@jest/pattern': 30.4.0
  1679. '@jest/schemas': 30.4.1
  1680. '@types/istanbul-lib-coverage': 2.0.6
  1681. '@types/istanbul-reports': 3.0.4
  1682. '@types/node': 25.9.5
  1683. '@types/yargs': 17.0.35
  1684. chalk: 4.1.2
  1685. '@mitata/counters@0.0.8': {}
  1686. '@napi-rs/wasm-runtime@0.2.12':
  1687. dependencies:
  1688. '@emnapi/core': 1.10.0
  1689. '@emnapi/runtime': 1.10.0
  1690. '@tybys/wasm-util': 0.10.2
  1691. optional: true
  1692. '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
  1693. dependencies:
  1694. '@emnapi/core': 1.10.0
  1695. '@emnapi/runtime': 1.10.0
  1696. '@tybys/wasm-util': 0.10.2
  1697. optional: true
  1698. '@node-rs/crc32-android-arm-eabi@1.10.6':
  1699. optional: true
  1700. '@node-rs/crc32-android-arm64@1.10.6':
  1701. optional: true
  1702. '@node-rs/crc32-darwin-arm64@1.10.6':
  1703. optional: true
  1704. '@node-rs/crc32-darwin-x64@1.10.6':
  1705. optional: true
  1706. '@node-rs/crc32-freebsd-x64@1.10.6':
  1707. optional: true
  1708. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  1709. optional: true
  1710. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  1711. optional: true
  1712. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  1713. optional: true
  1714. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  1715. optional: true
  1716. '@node-rs/crc32-linux-x64-musl@1.10.6':
  1717. optional: true
  1718. '@node-rs/crc32-wasm32-wasi@1.10.6':
  1719. dependencies:
  1720. '@napi-rs/wasm-runtime': 0.2.12
  1721. optional: true
  1722. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  1723. optional: true
  1724. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  1725. optional: true
  1726. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  1727. optional: true
  1728. '@node-rs/crc32@1.10.6':
  1729. optionalDependencies:
  1730. '@node-rs/crc32-android-arm-eabi': 1.10.6
  1731. '@node-rs/crc32-android-arm64': 1.10.6
  1732. '@node-rs/crc32-darwin-arm64': 1.10.6
  1733. '@node-rs/crc32-darwin-x64': 1.10.6
  1734. '@node-rs/crc32-freebsd-x64': 1.10.6
  1735. '@node-rs/crc32-linux-arm-gnueabihf': 1.10.6
  1736. '@node-rs/crc32-linux-arm64-gnu': 1.10.6
  1737. '@node-rs/crc32-linux-arm64-musl': 1.10.6
  1738. '@node-rs/crc32-linux-x64-gnu': 1.10.6
  1739. '@node-rs/crc32-linux-x64-musl': 1.10.6
  1740. '@node-rs/crc32-wasm32-wasi': 1.10.6
  1741. '@node-rs/crc32-win32-arm64-msvc': 1.10.6
  1742. '@node-rs/crc32-win32-ia32-msvc': 1.10.6
  1743. '@node-rs/crc32-win32-x64-msvc': 1.10.6
  1744. '@nolyfill/globalthis@1.0.44':
  1745. dependencies:
  1746. '@nolyfill/shared': 1.0.44
  1747. '@nolyfill/safe-buffer@1.0.44': {}
  1748. '@nolyfill/shared@1.0.44': {}
  1749. '@ota-meshi/ast-token-store@0.3.0': {}
  1750. '@oxc-resolver/binding-android-arm-eabi@11.20.0':
  1751. optional: true
  1752. '@oxc-resolver/binding-android-arm64@11.20.0':
  1753. optional: true
  1754. '@oxc-resolver/binding-darwin-arm64@11.20.0':
  1755. optional: true
  1756. '@oxc-resolver/binding-darwin-x64@11.20.0':
  1757. optional: true
  1758. '@oxc-resolver/binding-freebsd-x64@11.20.0':
  1759. optional: true
  1760. '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
  1761. optional: true
  1762. '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
  1763. optional: true
  1764. '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
  1765. optional: true
  1766. '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
  1767. optional: true
  1768. '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
  1769. optional: true
  1770. '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
  1771. optional: true
  1772. '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
  1773. optional: true
  1774. '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
  1775. optional: true
  1776. '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
  1777. optional: true
  1778. '@oxc-resolver/binding-linux-x64-musl@11.20.0':
  1779. optional: true
  1780. '@oxc-resolver/binding-openharmony-arm64@11.20.0':
  1781. optional: true
  1782. '@oxc-resolver/binding-wasm32-wasi@11.20.0':
  1783. dependencies:
  1784. '@emnapi/core': 1.10.0
  1785. '@emnapi/runtime': 1.10.0
  1786. '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
  1787. optional: true
  1788. '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
  1789. optional: true
  1790. '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
  1791. optional: true
  1792. '@package-json/types@0.0.13': {}
  1793. '@pkgjs/parseargs@0.11.0':
  1794. optional: true
  1795. '@pkgr/core@0.2.9': {}
  1796. '@remusao/guess-url-type@2.1.0': {}
  1797. '@remusao/small@2.1.0': {}
  1798. '@remusao/smaz-compress@2.2.0':
  1799. dependencies:
  1800. '@remusao/trie': 2.1.0
  1801. '@remusao/smaz-decompress@2.2.0': {}
  1802. '@remusao/smaz@2.2.0':
  1803. dependencies:
  1804. '@remusao/smaz-compress': 2.2.0
  1805. '@remusao/smaz-decompress': 2.2.0
  1806. '@remusao/trie@2.1.0': {}
  1807. '@sinclair/typebox@0.34.49': {}
  1808. '@swc-node/core@1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)':
  1809. dependencies:
  1810. '@swc/core': 1.13.5
  1811. '@swc/types': 0.1.25
  1812. '@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)':
  1813. dependencies:
  1814. '@swc-node/core': 1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)
  1815. '@swc-node/sourcemap-support': 0.6.1
  1816. '@swc/core': 1.13.5
  1817. colorette: 2.0.20
  1818. debug: 4.4.3(supports-color@8.1.1)
  1819. oxc-resolver: 11.20.0
  1820. pirates: 4.0.7
  1821. tslib: 2.8.1
  1822. typescript: 6.0.3
  1823. transitivePeerDependencies:
  1824. - '@swc/types'
  1825. - supports-color
  1826. '@swc-node/sourcemap-support@0.6.1':
  1827. dependencies:
  1828. source-map-support: 0.5.21
  1829. tslib: 2.8.1
  1830. '@swc/core-darwin-arm64@1.13.5':
  1831. optional: true
  1832. '@swc/core-darwin-x64@1.13.5':
  1833. optional: true
  1834. '@swc/core-linux-arm-gnueabihf@1.13.5':
  1835. optional: true
  1836. '@swc/core-linux-arm64-gnu@1.13.5':
  1837. optional: true
  1838. '@swc/core-linux-arm64-musl@1.13.5':
  1839. optional: true
  1840. '@swc/core-linux-x64-gnu@1.13.5':
  1841. optional: true
  1842. '@swc/core-linux-x64-musl@1.13.5':
  1843. optional: true
  1844. '@swc/core-win32-arm64-msvc@1.13.5':
  1845. optional: true
  1846. '@swc/core-win32-ia32-msvc@1.13.5':
  1847. optional: true
  1848. '@swc/core-win32-x64-msvc@1.13.5':
  1849. optional: true
  1850. '@swc/core@1.13.5':
  1851. dependencies:
  1852. '@swc/counter': 0.1.3
  1853. '@swc/types': 0.1.25
  1854. optionalDependencies:
  1855. '@swc/core-darwin-arm64': 1.13.5
  1856. '@swc/core-darwin-x64': 1.13.5
  1857. '@swc/core-linux-arm-gnueabihf': 1.13.5
  1858. '@swc/core-linux-arm64-gnu': 1.13.5
  1859. '@swc/core-linux-arm64-musl': 1.13.5
  1860. '@swc/core-linux-x64-gnu': 1.13.5
  1861. '@swc/core-linux-x64-musl': 1.13.5
  1862. '@swc/core-win32-arm64-msvc': 1.13.5
  1863. '@swc/core-win32-ia32-msvc': 1.13.5
  1864. '@swc/core-win32-x64-msvc': 1.13.5
  1865. '@swc/counter@0.1.3': {}
  1866. '@swc/types@0.1.25':
  1867. dependencies:
  1868. '@swc/counter': 0.1.3
  1869. '@tybys/wasm-util@0.10.2':
  1870. dependencies:
  1871. tslib: 2.8.1
  1872. optional: true
  1873. '@types/better-sqlite3@7.6.13':
  1874. dependencies:
  1875. '@types/node': 25.9.5
  1876. '@types/cli-progress@3.11.6':
  1877. dependencies:
  1878. '@types/node': 25.9.5
  1879. '@types/esrecurse@4.3.1': {}
  1880. '@types/estree@1.0.8': {}
  1881. '@types/istanbul-lib-coverage@2.0.6': {}
  1882. '@types/istanbul-lib-report@3.0.3':
  1883. dependencies:
  1884. '@types/istanbul-lib-coverage': 2.0.6
  1885. '@types/istanbul-reports@3.0.4':
  1886. dependencies:
  1887. '@types/istanbul-lib-report': 3.0.3
  1888. '@types/json-schema@7.0.15': {}
  1889. '@types/mocha@10.0.10': {}
  1890. '@types/node@25.9.5':
  1891. dependencies:
  1892. undici-types: 7.24.6
  1893. '@types/tar-fs@2.0.4':
  1894. dependencies:
  1895. '@types/node': 25.9.5
  1896. '@types/tar-stream': 3.1.4
  1897. '@types/tar-stream@3.1.4':
  1898. dependencies:
  1899. '@types/node': 25.9.5
  1900. '@types/yargs-parser@21.0.3': {}
  1901. '@types/yargs@17.0.35':
  1902. dependencies:
  1903. '@types/yargs-parser': 21.0.3
  1904. '@types/yauzl-promise@4.0.1':
  1905. dependencies:
  1906. '@types/node': 25.9.5
  1907. '@typescript-eslint/eslint-plugin@8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
  1908. dependencies:
  1909. '@eslint-community/regexpp': 4.12.2
  1910. '@typescript-eslint/parser': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  1911. '@typescript-eslint/scope-manager': 8.63.0
  1912. '@typescript-eslint/type-utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  1913. '@typescript-eslint/utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1914. '@typescript-eslint/visitor-keys': 8.63.0
  1915. eslint: 10.7.0(supports-color@8.1.1)
  1916. ignore: 7.0.5
  1917. natural-compare: 1.4.0
  1918. ts-api-utils: 2.5.0(typescript@6.0.3)
  1919. typescript: 6.0.3
  1920. transitivePeerDependencies:
  1921. - supports-color
  1922. '@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
  1923. dependencies:
  1924. '@typescript-eslint/scope-manager': 8.63.0
  1925. '@typescript-eslint/types': 8.63.0
  1926. '@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
  1927. '@typescript-eslint/visitor-keys': 8.63.0
  1928. debug: 4.4.3(supports-color@8.1.1)
  1929. eslint: 10.7.0(supports-color@8.1.1)
  1930. typescript: 6.0.3
  1931. transitivePeerDependencies:
  1932. - supports-color
  1933. '@typescript-eslint/project-service@8.63.0(typescript@6.0.3)':
  1934. dependencies:
  1935. '@typescript-eslint/tsconfig-utils': 8.63.0(typescript@6.0.3)
  1936. '@typescript-eslint/types': 8.63.0
  1937. debug: 4.4.3(supports-color@8.1.1)
  1938. typescript: 6.0.3
  1939. transitivePeerDependencies:
  1940. - supports-color
  1941. '@typescript-eslint/scope-manager@8.63.0':
  1942. dependencies:
  1943. '@typescript-eslint/types': 8.63.0
  1944. '@typescript-eslint/visitor-keys': 8.63.0
  1945. '@typescript-eslint/tsconfig-utils@8.63.0(typescript@6.0.3)':
  1946. dependencies:
  1947. typescript: 6.0.3
  1948. '@typescript-eslint/type-utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
  1949. dependencies:
  1950. '@typescript-eslint/types': 8.63.0
  1951. '@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
  1952. '@typescript-eslint/utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  1953. debug: 4.4.3(supports-color@8.1.1)
  1954. eslint: 10.7.0(supports-color@8.1.1)
  1955. ts-api-utils: 2.5.0(typescript@6.0.3)
  1956. typescript: 6.0.3
  1957. transitivePeerDependencies:
  1958. - supports-color
  1959. '@typescript-eslint/types@8.63.0': {}
  1960. '@typescript-eslint/typescript-estree@8.63.0(typescript@6.0.3)':
  1961. dependencies:
  1962. '@typescript-eslint/project-service': 8.63.0(typescript@6.0.3)
  1963. '@typescript-eslint/tsconfig-utils': 8.63.0(typescript@6.0.3)
  1964. '@typescript-eslint/types': 8.63.0
  1965. '@typescript-eslint/visitor-keys': 8.63.0
  1966. debug: 4.4.3(supports-color@8.1.1)
  1967. minimatch: 10.2.4
  1968. semver: 7.7.3
  1969. tinyglobby: 0.2.17
  1970. ts-api-utils: 2.5.0(typescript@6.0.3)
  1971. typescript: 6.0.3
  1972. transitivePeerDependencies:
  1973. - supports-color
  1974. '@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)':
  1975. dependencies:
  1976. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  1977. '@typescript-eslint/scope-manager': 8.63.0
  1978. '@typescript-eslint/types': 8.63.0
  1979. '@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
  1980. eslint: 10.7.0(supports-color@8.1.1)
  1981. typescript: 6.0.3
  1982. transitivePeerDependencies:
  1983. - supports-color
  1984. '@typescript-eslint/visitor-keys@8.63.0':
  1985. dependencies:
  1986. '@typescript-eslint/types': 8.63.0
  1987. eslint-visitor-keys: 5.0.1
  1988. '@ungap/structured-clone@1.3.0': {}
  1989. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  1990. optional: true
  1991. '@unrs/resolver-binding-android-arm64@1.11.1':
  1992. optional: true
  1993. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  1994. optional: true
  1995. '@unrs/resolver-binding-darwin-x64@1.11.1':
  1996. optional: true
  1997. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  1998. optional: true
  1999. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  2000. optional: true
  2001. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  2002. optional: true
  2003. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  2004. optional: true
  2005. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  2006. optional: true
  2007. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  2008. optional: true
  2009. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  2010. optional: true
  2011. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  2012. optional: true
  2013. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  2014. optional: true
  2015. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  2016. optional: true
  2017. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  2018. optional: true
  2019. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  2020. dependencies:
  2021. '@napi-rs/wasm-runtime': 0.2.12
  2022. optional: true
  2023. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  2024. optional: true
  2025. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  2026. optional: true
  2027. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  2028. optional: true
  2029. acorn-jsx@5.3.2(acorn@8.16.0):
  2030. dependencies:
  2031. acorn: 8.16.0
  2032. acorn@8.16.0: {}
  2033. ajv@6.14.0:
  2034. dependencies:
  2035. fast-deep-equal: 3.1.3
  2036. fast-json-stable-stringify: 2.1.0
  2037. json-schema-traverse: 0.4.1
  2038. uri-js: 4.4.1
  2039. ansi-regex@5.0.1: {}
  2040. ansi-regex@6.2.0: {}
  2041. ansi-styles@4.3.0:
  2042. dependencies:
  2043. color-convert: 2.0.1
  2044. ansi-styles@6.2.1: {}
  2045. argparse@2.0.1: {}
  2046. async-mutex@0.3.2:
  2047. dependencies:
  2048. tslib: 2.8.1
  2049. b4a@1.6.7: {}
  2050. balanced-match@1.0.2: {}
  2051. balanced-match@4.0.4: {}
  2052. bare-events@2.6.1:
  2053. optional: true
  2054. bare-fs@4.2.1:
  2055. dependencies:
  2056. bare-events: 2.6.1
  2057. bare-path: 3.0.0
  2058. bare-stream: 2.7.0(bare-events@2.6.1)
  2059. optional: true
  2060. bare-os@3.6.2:
  2061. optional: true
  2062. bare-path@3.0.0:
  2063. dependencies:
  2064. bare-os: 3.6.2
  2065. optional: true
  2066. bare-stream@2.7.0(bare-events@2.6.1):
  2067. dependencies:
  2068. streamx: 2.22.1
  2069. optionalDependencies:
  2070. bare-events: 2.6.1
  2071. optional: true
  2072. base64-js@1.5.1: {}
  2073. better-sqlite3@12.11.1:
  2074. dependencies:
  2075. bindings: 1.5.0
  2076. prebuild-install: 7.1.3
  2077. big-integer@1.6.52: {}
  2078. bindings@1.5.0:
  2079. dependencies:
  2080. file-uri-to-path: 1.0.0
  2081. bl@4.1.0:
  2082. dependencies:
  2083. buffer: 5.7.1
  2084. inherits: 2.0.4
  2085. readable-stream: 3.6.2
  2086. brace-expansion@2.0.2:
  2087. dependencies:
  2088. balanced-match: 1.0.2
  2089. brace-expansion@5.0.3:
  2090. dependencies:
  2091. balanced-match: 4.0.4
  2092. browser-stdout@1.3.1: {}
  2093. buffer-from@1.1.2: {}
  2094. buffer@5.7.1:
  2095. dependencies:
  2096. base64-js: 1.5.1
  2097. ieee754: 1.2.1
  2098. buffer@6.0.3:
  2099. dependencies:
  2100. base64-js: 1.5.1
  2101. ieee754: 1.2.1
  2102. bufferutil@4.0.9:
  2103. dependencies:
  2104. node-gyp-build: 4.8.4
  2105. camelcase@6.3.0: {}
  2106. chalk@4.1.2:
  2107. dependencies:
  2108. ansi-styles: 4.3.0
  2109. supports-color: 7.2.0
  2110. chokidar@4.0.3:
  2111. dependencies:
  2112. readdirp: 4.1.2
  2113. chownr@1.1.4: {}
  2114. ci-info@4.4.0: {}
  2115. cli-progress@3.12.0:
  2116. dependencies:
  2117. string-width: 4.2.3
  2118. cliui@8.0.1:
  2119. dependencies:
  2120. string-width: 4.2.3
  2121. strip-ansi: 6.0.1
  2122. wrap-ansi: 7.0.0
  2123. color-convert@2.0.1:
  2124. dependencies:
  2125. color-name: 1.1.4
  2126. color-name@1.1.4: {}
  2127. colorette@2.0.20: {}
  2128. comment-parser@1.4.1: {}
  2129. cross-spawn@7.0.6:
  2130. dependencies:
  2131. path-key: 3.1.1
  2132. shebang-command: 2.0.0
  2133. which: 2.0.2
  2134. csv-parse@7.0.1: {}
  2135. d@1.0.2:
  2136. dependencies:
  2137. es5-ext: 0.10.64
  2138. type: 2.7.3
  2139. debug@2.6.9:
  2140. dependencies:
  2141. ms: 2.0.0
  2142. debug@4.4.1:
  2143. dependencies:
  2144. ms: 2.1.3
  2145. debug@4.4.3(supports-color@8.1.1):
  2146. dependencies:
  2147. ms: 2.1.3
  2148. optionalDependencies:
  2149. supports-color: 8.1.1
  2150. decamelize@4.0.0: {}
  2151. decompress-response@6.0.0:
  2152. dependencies:
  2153. mimic-response: 3.1.0
  2154. deep-extend@0.6.0: {}
  2155. deep-is@0.1.4: {}
  2156. defu@6.1.7: {}
  2157. detect-libc@2.1.2: {}
  2158. diff-sequences@29.6.3: {}
  2159. diff@7.0.0: {}
  2160. dom-serializer@1.4.1:
  2161. dependencies:
  2162. domelementtype: 2.3.0
  2163. domhandler: 4.3.1
  2164. entities: 2.2.0
  2165. domain-alive@0.1.23:
  2166. dependencies:
  2167. debug: 4.4.1
  2168. foxts: 5.8.0
  2169. tldts: 7.4.8
  2170. transitivePeerDependencies:
  2171. - supports-color
  2172. domelementtype@2.3.0: {}
  2173. domhandler@4.3.1:
  2174. dependencies:
  2175. domelementtype: 2.3.0
  2176. domutils@2.8.0:
  2177. dependencies:
  2178. dom-serializer: 1.4.1
  2179. domelementtype: 2.3.0
  2180. domhandler: 4.3.1
  2181. earl@2.0.0:
  2182. dependencies:
  2183. error-stack-parser: 2.1.4
  2184. eastasianwidth@0.2.0: {}
  2185. emoji-regex@8.0.0: {}
  2186. emoji-regex@9.2.2: {}
  2187. end-of-stream@1.4.5:
  2188. dependencies:
  2189. once: 1.4.0
  2190. enhanced-resolve@5.24.2:
  2191. dependencies:
  2192. graceful-fs: 4.2.11
  2193. tapable: 2.3.3
  2194. entities@2.2.0: {}
  2195. error-stack-parser@2.1.4:
  2196. dependencies:
  2197. stackframe: 1.3.4
  2198. es5-ext@0.10.64:
  2199. dependencies:
  2200. es6-iterator: 2.0.3
  2201. es6-symbol: 3.1.4
  2202. esniff: 2.0.1
  2203. next-tick: 1.1.0
  2204. es6-iterator@2.0.3:
  2205. dependencies:
  2206. d: 1.0.2
  2207. es5-ext: 0.10.64
  2208. es6-symbol: 3.1.4
  2209. es6-symbol@3.1.4:
  2210. dependencies:
  2211. d: 1.0.2
  2212. ext: 1.7.0
  2213. escalade@3.2.0: {}
  2214. escape-string-regexp@4.0.0: {}
  2215. eslint-compat-utils@0.5.1(eslint@10.7.0(supports-color@8.1.1)):
  2216. dependencies:
  2217. eslint: 10.7.0(supports-color@8.1.1)
  2218. semver: 7.7.3
  2219. eslint-config-sukka@8.13.5(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3):
  2220. dependencies:
  2221. '@antfu/install-pkg': 1.1.0
  2222. '@eslint-community/eslint-plugin-eslint-comments': 4.7.2(eslint@10.7.0(supports-color@8.1.1))
  2223. '@eslint-sukka/eslint-plugin-stylistic': 8.13.5(eslint@10.7.0(supports-color@8.1.1))
  2224. '@eslint-sukka/eslint-plugin-sukka-full': 8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  2225. '@eslint-sukka/shared': 8.13.5(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  2226. '@eslint/config-helpers': 0.6.0
  2227. '@eslint/js': 10.0.1(eslint@10.7.0(supports-color@8.1.1))
  2228. '@typescript-eslint/eslint-plugin': 8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2229. '@typescript-eslint/parser': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2230. ci-info: 4.4.0
  2231. defu: 6.1.7
  2232. eslint-import-resolver-typescript: 4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)
  2233. eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)
  2234. eslint-plugin-jsonc: 3.3.0(eslint@10.7.0(supports-color@8.1.1))
  2235. eslint-plugin-promise: 7.3.0(eslint@10.7.0(supports-color@8.1.1))
  2236. eslint-plugin-regexp: 3.1.1(eslint@10.7.0(supports-color@8.1.1))
  2237. eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))
  2238. foxts: 5.8.0
  2239. jsonc-eslint-parser: 3.1.0
  2240. picocolors: 1.1.1
  2241. typescript-eslint: 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  2242. transitivePeerDependencies:
  2243. - '@eslint/json'
  2244. - '@typescript-eslint/utils'
  2245. - eslint
  2246. - eslint-import-resolver-node
  2247. - eslint-plugin-import
  2248. - supports-color
  2249. - typescript
  2250. eslint-formatter-sukka@8.13.5(eslint@10.7.0(supports-color@8.1.1)):
  2251. dependencies:
  2252. ci-info: 4.4.0
  2253. eslint: 10.7.0(supports-color@8.1.1)
  2254. foxts: 5.8.0
  2255. picocolors: 1.1.1
  2256. eslint-import-context@0.1.9(unrs-resolver@1.11.1):
  2257. dependencies:
  2258. get-tsconfig: 4.12.0
  2259. stable-hash-x: 0.2.0
  2260. optionalDependencies:
  2261. unrs-resolver: 1.11.1
  2262. eslint-import-resolver-typescript@4.4.5(eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1):
  2263. dependencies:
  2264. debug: 4.4.3(supports-color@8.1.1)
  2265. eslint: 10.7.0(supports-color@8.1.1)
  2266. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2267. get-tsconfig: 4.12.0
  2268. is-bun-module: 2.0.0
  2269. stable-hash-x: 0.2.0
  2270. tinyglobby: 0.2.17
  2271. unrs-resolver: 1.11.1
  2272. optionalDependencies:
  2273. eslint-plugin-import-x: 4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)
  2274. transitivePeerDependencies:
  2275. - supports-color
  2276. eslint-json-compat-utils@0.2.3(eslint@10.7.0(supports-color@8.1.1))(jsonc-eslint-parser@3.1.0):
  2277. dependencies:
  2278. eslint: 10.7.0(supports-color@8.1.1)
  2279. esquery: 1.7.0
  2280. jsonc-eslint-parser: 3.1.0
  2281. eslint-plugin-es-x@7.8.0(eslint@10.7.0(supports-color@8.1.1)):
  2282. dependencies:
  2283. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  2284. '@eslint-community/regexpp': 4.12.2
  2285. eslint: 10.7.0(supports-color@8.1.1)
  2286. eslint-compat-utils: 0.5.1(eslint@10.7.0(supports-color@8.1.1))
  2287. eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1):
  2288. dependencies:
  2289. '@typescript-eslint/types': 8.63.0
  2290. comment-parser: 1.4.1
  2291. debug: 4.4.3(supports-color@8.1.1)
  2292. eslint: 10.7.0(supports-color@8.1.1)
  2293. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2294. is-glob: 4.0.3
  2295. minimatch: 10.2.4
  2296. semver: 7.7.3
  2297. stable-hash-x: 0.2.0
  2298. unrs-resolver: 1.11.1
  2299. optionalDependencies:
  2300. '@typescript-eslint/utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  2301. transitivePeerDependencies:
  2302. - supports-color
  2303. eslint-plugin-jsonc@3.3.0(eslint@10.7.0(supports-color@8.1.1)):
  2304. dependencies:
  2305. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  2306. '@eslint/core': 1.2.1
  2307. '@eslint/plugin-kit': 0.7.2
  2308. '@ota-meshi/ast-token-store': 0.3.0
  2309. diff-sequences: 29.6.3
  2310. eslint: 10.7.0(supports-color@8.1.1)
  2311. eslint-json-compat-utils: 0.2.3(eslint@10.7.0(supports-color@8.1.1))(jsonc-eslint-parser@3.1.0)
  2312. jsonc-eslint-parser: 3.1.0
  2313. natural-compare: 1.4.0
  2314. synckit: 0.11.12
  2315. transitivePeerDependencies:
  2316. - '@eslint/json'
  2317. eslint-plugin-n@17.24.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3):
  2318. dependencies:
  2319. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  2320. enhanced-resolve: 5.24.2
  2321. eslint: 10.7.0(supports-color@8.1.1)
  2322. eslint-plugin-es-x: 7.8.0(eslint@10.7.0(supports-color@8.1.1))
  2323. get-tsconfig: 4.12.0
  2324. globals: 15.15.0
  2325. globrex: 0.1.2
  2326. ignore: 5.3.2
  2327. semver: 7.7.3
  2328. ts-declaration-location: 1.0.7(typescript@6.0.3)
  2329. transitivePeerDependencies:
  2330. - typescript
  2331. eslint-plugin-promise@7.3.0(eslint@10.7.0(supports-color@8.1.1)):
  2332. dependencies:
  2333. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  2334. eslint: 10.7.0(supports-color@8.1.1)
  2335. eslint-plugin-regexp@3.1.1(eslint@10.7.0(supports-color@8.1.1)):
  2336. dependencies:
  2337. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  2338. '@eslint-community/regexpp': 4.12.2
  2339. comment-parser: 1.4.1
  2340. eslint: 10.7.0(supports-color@8.1.1)
  2341. jsdoc-type-pratt-parser: 7.1.1
  2342. refa: 0.12.1
  2343. regexp-ast-analysis: 0.7.1
  2344. scslre: 0.3.0
  2345. eslint-plugin-sukka@9.15.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3):
  2346. dependencies:
  2347. '@typescript-eslint/types': 8.63.0
  2348. '@typescript-eslint/utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  2349. eslint: 10.7.0(supports-color@8.1.1)
  2350. foxts: 5.8.0
  2351. typescript: 6.0.3
  2352. transitivePeerDependencies:
  2353. - supports-color
  2354. eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1)):
  2355. dependencies:
  2356. eslint: 10.7.0(supports-color@8.1.1)
  2357. optionalDependencies:
  2358. '@typescript-eslint/eslint-plugin': 8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2359. eslint-scope@9.1.2:
  2360. dependencies:
  2361. '@types/esrecurse': 4.3.1
  2362. '@types/estree': 1.0.8
  2363. esrecurse: 4.3.0
  2364. estraverse: 5.3.0
  2365. eslint-visitor-keys@3.4.3: {}
  2366. eslint-visitor-keys@5.0.1: {}
  2367. eslint@10.7.0(supports-color@8.1.1):
  2368. dependencies:
  2369. '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(supports-color@8.1.1))
  2370. '@eslint-community/regexpp': 4.12.2
  2371. '@eslint/config-array': 0.23.5(supports-color@8.1.1)
  2372. '@eslint/config-helpers': 0.6.0
  2373. '@eslint/core': 1.2.1
  2374. '@eslint/plugin-kit': 0.7.2
  2375. '@humanfs/node': 0.16.6
  2376. '@humanwhocodes/module-importer': 1.0.1
  2377. '@humanwhocodes/retry': 0.4.3
  2378. '@types/estree': 1.0.8
  2379. ajv: 6.14.0
  2380. cross-spawn: 7.0.6
  2381. debug: 4.4.3(supports-color@8.1.1)
  2382. escape-string-regexp: 4.0.0
  2383. eslint-scope: 9.1.2
  2384. eslint-visitor-keys: 5.0.1
  2385. espree: 11.2.0
  2386. esquery: 1.7.0
  2387. esutils: 2.0.3
  2388. fast-deep-equal: 3.1.3
  2389. file-entry-cache: 8.0.0
  2390. find-up: 5.0.0
  2391. glob-parent: 6.0.2
  2392. ignore: 5.3.2
  2393. imurmurhash: 0.1.4
  2394. is-glob: 4.0.3
  2395. json-stable-stringify-without-jsonify: 1.0.1
  2396. minimatch: 10.2.4
  2397. natural-compare: 1.4.0
  2398. optionator: 0.9.4
  2399. transitivePeerDependencies:
  2400. - supports-color
  2401. esniff@2.0.1:
  2402. dependencies:
  2403. d: 1.0.2
  2404. es5-ext: 0.10.64
  2405. event-emitter: 0.3.5
  2406. type: 2.7.3
  2407. espree@11.2.0:
  2408. dependencies:
  2409. acorn: 8.16.0
  2410. acorn-jsx: 5.3.2(acorn@8.16.0)
  2411. eslint-visitor-keys: 5.0.1
  2412. esquery@1.7.0:
  2413. dependencies:
  2414. estraverse: 5.3.0
  2415. esrecurse@4.3.0:
  2416. dependencies:
  2417. estraverse: 5.3.0
  2418. estraverse@5.3.0: {}
  2419. esutils@2.0.3: {}
  2420. event-emitter@0.3.5:
  2421. dependencies:
  2422. d: 1.0.2
  2423. es5-ext: 0.10.64
  2424. expand-template@2.0.3: {}
  2425. ext@1.7.0:
  2426. dependencies:
  2427. type: 2.7.3
  2428. fast-cidr-tools@0.3.4:
  2429. dependencies:
  2430. foxts: 4.6.0
  2431. fast-deep-equal@3.1.3: {}
  2432. fast-escape-html@1.1.0: {}
  2433. fast-escape-regexp@1.0.1: {}
  2434. fast-fifo@1.3.2: {}
  2435. fast-json-stable-stringify@2.1.0: {}
  2436. fast-levenshtein@2.0.6: {}
  2437. fast-uri@4.1.0: {}
  2438. fdir@6.5.0(picomatch@4.0.4):
  2439. optionalDependencies:
  2440. picomatch: 4.0.4
  2441. file-entry-cache@8.0.0:
  2442. dependencies:
  2443. flat-cache: 4.0.1
  2444. file-uri-to-path@1.0.0: {}
  2445. find-up@5.0.0:
  2446. dependencies:
  2447. locate-path: 6.0.0
  2448. path-exists: 4.0.0
  2449. flat-cache@4.0.1:
  2450. dependencies:
  2451. flatted: 3.3.3
  2452. keyv: 4.5.4
  2453. flat@5.0.2: {}
  2454. flatted@3.3.3: {}
  2455. foreground-child@3.3.1:
  2456. dependencies:
  2457. cross-spawn: 7.0.6
  2458. signal-exit: 4.1.0
  2459. foxts@4.6.0:
  2460. dependencies:
  2461. fast-escape-html: 1.1.0
  2462. fast-escape-regexp: 1.0.1
  2463. foxts@5.8.0: {}
  2464. fs-constants@1.0.0: {}
  2465. get-caller-file@2.0.5: {}
  2466. get-tsconfig@4.12.0:
  2467. dependencies:
  2468. resolve-pkg-maps: 1.0.0
  2469. github-from-package@0.0.0: {}
  2470. glob-parent@6.0.2:
  2471. dependencies:
  2472. is-glob: 4.0.3
  2473. glob@10.4.5:
  2474. dependencies:
  2475. foreground-child: 3.3.1
  2476. jackspeak: 3.4.3
  2477. minimatch: 9.0.5
  2478. minipass: 7.1.2
  2479. package-json-from-dist: 1.0.1
  2480. path-scurry: 1.11.1
  2481. globals@15.15.0: {}
  2482. globrex@0.1.2: {}
  2483. graceful-fs@4.2.11: {}
  2484. has-flag@4.0.0: {}
  2485. hash-wasm@4.12.0: {}
  2486. he@1.2.0: {}
  2487. hntrie@1.0.1:
  2488. dependencies:
  2489. foxts: 5.8.0
  2490. htmlparser2@6.1.0:
  2491. dependencies:
  2492. domelementtype: 2.3.0
  2493. domhandler: 4.3.1
  2494. domutils: 2.8.0
  2495. entities: 2.2.0
  2496. ieee754@1.2.1: {}
  2497. ignore@5.3.2: {}
  2498. ignore@7.0.5: {}
  2499. imurmurhash@0.1.4: {}
  2500. inherits@2.0.4: {}
  2501. ini@1.3.8: {}
  2502. ip-address@10.0.1: {}
  2503. is-bun-module@2.0.0:
  2504. dependencies:
  2505. semver: 7.7.3
  2506. is-extglob@2.1.1: {}
  2507. is-fullwidth-code-point@3.0.0: {}
  2508. is-glob@4.0.3:
  2509. dependencies:
  2510. is-extglob: 2.1.1
  2511. is-it-type@5.1.3:
  2512. dependencies:
  2513. globalthis: '@nolyfill/globalthis@1.0.44'
  2514. is-path-inside@3.0.3: {}
  2515. is-plain-obj@2.1.0: {}
  2516. is-typedarray@1.0.0: {}
  2517. is-unicode-supported@0.1.0: {}
  2518. isexe@2.0.0: {}
  2519. jackspeak@3.4.3:
  2520. dependencies:
  2521. '@isaacs/cliui': 8.0.2
  2522. optionalDependencies:
  2523. '@pkgjs/parseargs': 0.11.0
  2524. jest-regex-util@30.4.0: {}
  2525. jest-util@30.4.1:
  2526. dependencies:
  2527. '@jest/types': 30.4.1
  2528. '@types/node': 25.9.5
  2529. chalk: 4.1.2
  2530. ci-info: 4.4.0
  2531. graceful-fs: 4.2.11
  2532. picomatch: 4.0.4
  2533. jest-worker@30.4.1:
  2534. dependencies:
  2535. '@types/node': 25.9.5
  2536. '@ungap/structured-clone': 1.3.0
  2537. jest-util: 30.4.1
  2538. merge-stream: 2.0.0
  2539. supports-color: 8.1.1
  2540. js-yaml@4.1.0:
  2541. dependencies:
  2542. argparse: 2.0.1
  2543. jsdoc-type-pratt-parser@7.1.1: {}
  2544. json-buffer@3.0.1: {}
  2545. json-schema-traverse@0.4.1: {}
  2546. json-stable-stringify-without-jsonify@1.0.1: {}
  2547. json-stringify-pretty-compact@4.0.0: {}
  2548. jsonc-eslint-parser@3.1.0:
  2549. dependencies:
  2550. acorn: 8.16.0
  2551. eslint-visitor-keys: 5.0.1
  2552. semver: 7.7.3
  2553. keyv@4.5.4:
  2554. dependencies:
  2555. json-buffer: 3.0.1
  2556. levn@0.4.1:
  2557. dependencies:
  2558. prelude-ls: 1.2.1
  2559. type-check: 0.4.0
  2560. locate-path@6.0.0:
  2561. dependencies:
  2562. p-locate: 5.0.0
  2563. log-symbols@4.1.0:
  2564. dependencies:
  2565. chalk: 4.1.2
  2566. is-unicode-supported: 0.1.0
  2567. lru-cache@10.4.3: {}
  2568. merge-stream@2.0.0: {}
  2569. mime@3.0.0: {}
  2570. mimic-response@3.1.0: {}
  2571. minimatch@10.2.4:
  2572. dependencies:
  2573. brace-expansion: 5.0.3
  2574. minimatch@9.0.5:
  2575. dependencies:
  2576. brace-expansion: 2.0.2
  2577. minimist@1.2.8: {}
  2578. minipass@7.1.2: {}
  2579. mitata@1.0.34: {}
  2580. mkdirp-classic@0.5.3: {}
  2581. mocha@11.7.6:
  2582. dependencies:
  2583. browser-stdout: 1.3.1
  2584. chokidar: 4.0.3
  2585. debug: 4.4.3(supports-color@8.1.1)
  2586. diff: 7.0.0
  2587. escape-string-regexp: 4.0.0
  2588. find-up: 5.0.0
  2589. glob: 10.4.5
  2590. he: 1.2.0
  2591. is-path-inside: 3.0.3
  2592. js-yaml: 4.1.0
  2593. log-symbols: 4.1.0
  2594. minimatch: 9.0.5
  2595. ms: 2.1.3
  2596. picocolors: 1.1.1
  2597. serialize-javascript: 6.0.2
  2598. strip-json-comments: 3.1.1
  2599. supports-color: 8.1.1
  2600. workerpool: 9.3.3
  2601. yargs: 17.7.2
  2602. yargs-parser: 21.1.1
  2603. yargs-unparser: 2.0.0
  2604. ms@2.0.0: {}
  2605. ms@2.1.3: {}
  2606. napi-build-utils@2.0.0: {}
  2607. napi-postinstall@0.3.4: {}
  2608. natural-compare@1.4.0: {}
  2609. next-tick@1.1.0: {}
  2610. node-abi@3.94.0:
  2611. dependencies:
  2612. semver: 7.7.3
  2613. node-gyp-build@4.8.4: {}
  2614. node-localstorage@2.2.1:
  2615. dependencies:
  2616. write-file-atomic: 1.3.4
  2617. null-prototype-object@1.2.7: {}
  2618. once@1.4.0:
  2619. dependencies:
  2620. wrappy: 1.0.2
  2621. optionator@0.9.4:
  2622. dependencies:
  2623. deep-is: 0.1.4
  2624. fast-levenshtein: 2.0.6
  2625. levn: 0.4.1
  2626. prelude-ls: 1.2.1
  2627. type-check: 0.4.0
  2628. word-wrap: 1.2.5
  2629. oxc-resolver@11.20.0:
  2630. optionalDependencies:
  2631. '@oxc-resolver/binding-android-arm-eabi': 11.20.0
  2632. '@oxc-resolver/binding-android-arm64': 11.20.0
  2633. '@oxc-resolver/binding-darwin-arm64': 11.20.0
  2634. '@oxc-resolver/binding-darwin-x64': 11.20.0
  2635. '@oxc-resolver/binding-freebsd-x64': 11.20.0
  2636. '@oxc-resolver/binding-linux-arm-gnueabihf': 11.20.0
  2637. '@oxc-resolver/binding-linux-arm-musleabihf': 11.20.0
  2638. '@oxc-resolver/binding-linux-arm64-gnu': 11.20.0
  2639. '@oxc-resolver/binding-linux-arm64-musl': 11.20.0
  2640. '@oxc-resolver/binding-linux-ppc64-gnu': 11.20.0
  2641. '@oxc-resolver/binding-linux-riscv64-gnu': 11.20.0
  2642. '@oxc-resolver/binding-linux-riscv64-musl': 11.20.0
  2643. '@oxc-resolver/binding-linux-s390x-gnu': 11.20.0
  2644. '@oxc-resolver/binding-linux-x64-gnu': 11.20.0
  2645. '@oxc-resolver/binding-linux-x64-musl': 11.20.0
  2646. '@oxc-resolver/binding-openharmony-arm64': 11.20.0
  2647. '@oxc-resolver/binding-wasm32-wasi': 11.20.0
  2648. '@oxc-resolver/binding-win32-arm64-msvc': 11.20.0
  2649. '@oxc-resolver/binding-win32-x64-msvc': 11.20.0
  2650. p-limit@3.1.0:
  2651. dependencies:
  2652. yocto-queue: 0.1.0
  2653. p-locate@5.0.0:
  2654. dependencies:
  2655. p-limit: 3.1.0
  2656. package-json-from-dist@1.0.1: {}
  2657. package-manager-detector@1.5.0: {}
  2658. pako@2.1.0: {}
  2659. path-browserify@1.0.1: {}
  2660. path-exists@4.0.0: {}
  2661. path-key@3.1.1: {}
  2662. path-scurry@1.11.1:
  2663. dependencies:
  2664. lru-cache: 10.4.3
  2665. minipass: 7.1.2
  2666. picocolors@1.1.1: {}
  2667. picomatch@4.0.4: {}
  2668. pirates@4.0.7: {}
  2669. prebuild-install@7.1.3:
  2670. dependencies:
  2671. detect-libc: 2.1.2
  2672. expand-template: 2.0.3
  2673. github-from-package: 0.0.0
  2674. minimist: 1.2.8
  2675. mkdirp-classic: 0.5.3
  2676. napi-build-utils: 2.0.0
  2677. node-abi: 3.94.0
  2678. pump: 3.0.3
  2679. rc: 1.2.8
  2680. simple-get: 4.0.1
  2681. tar-fs: 2.1.5
  2682. tunnel-agent: 0.6.0
  2683. prelude-ls@1.2.1: {}
  2684. pump@3.0.3:
  2685. dependencies:
  2686. end-of-stream: 1.4.5
  2687. once: 1.4.0
  2688. punycode@2.3.1: {}
  2689. randombytes@2.1.0:
  2690. dependencies:
  2691. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2692. rc@1.2.8:
  2693. dependencies:
  2694. deep-extend: 0.6.0
  2695. ini: 1.3.8
  2696. minimist: 1.2.8
  2697. strip-json-comments: 2.0.1
  2698. readable-stream@3.6.2:
  2699. dependencies:
  2700. inherits: 2.0.4
  2701. string_decoder: 1.3.0
  2702. util-deprecate: 1.0.2
  2703. readdirp@4.1.2: {}
  2704. real-cancellable-promise@1.2.3: {}
  2705. refa@0.12.1:
  2706. dependencies:
  2707. '@eslint-community/regexpp': 4.12.2
  2708. regexp-ast-analysis@0.7.1:
  2709. dependencies:
  2710. '@eslint-community/regexpp': 4.12.2
  2711. refa: 0.12.1
  2712. require-directory@2.1.1: {}
  2713. resolve-pkg-maps@1.0.0: {}
  2714. scslre@0.3.0:
  2715. dependencies:
  2716. '@eslint-community/regexpp': 4.12.2
  2717. refa: 0.12.1
  2718. regexp-ast-analysis: 0.7.1
  2719. semver@7.7.3: {}
  2720. serialize-javascript@6.0.2:
  2721. dependencies:
  2722. randombytes: 2.1.0
  2723. shebang-command@2.0.0:
  2724. dependencies:
  2725. shebang-regex: 3.0.0
  2726. shebang-regex@3.0.0: {}
  2727. signal-exit@4.1.0: {}
  2728. simple-concat@1.0.1: {}
  2729. simple-get@4.0.1:
  2730. dependencies:
  2731. decompress-response: 6.0.0
  2732. once: 1.4.0
  2733. simple-concat: 1.0.1
  2734. simple-invariant@2.0.1: {}
  2735. slide@1.1.6: {}
  2736. smart-buffer@4.2.0: {}
  2737. socks@2.8.7:
  2738. dependencies:
  2739. ip-address: 10.0.1
  2740. smart-buffer: 4.2.0
  2741. source-map-support@0.5.21:
  2742. dependencies:
  2743. buffer-from: 1.1.2
  2744. source-map: 0.6.1
  2745. source-map@0.6.1: {}
  2746. stable-hash-x@0.2.0: {}
  2747. stackframe@1.3.4: {}
  2748. store2@2.14.4: {}
  2749. streamx@2.22.1:
  2750. dependencies:
  2751. fast-fifo: 1.3.2
  2752. text-decoder: 1.2.3
  2753. optionalDependencies:
  2754. bare-events: 2.6.1
  2755. string-width@4.2.3:
  2756. dependencies:
  2757. emoji-regex: 8.0.0
  2758. is-fullwidth-code-point: 3.0.0
  2759. strip-ansi: 6.0.1
  2760. string-width@5.1.2:
  2761. dependencies:
  2762. eastasianwidth: 0.2.0
  2763. emoji-regex: 9.2.2
  2764. strip-ansi: 7.1.0
  2765. string_decoder@1.3.0:
  2766. dependencies:
  2767. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2768. strip-ansi@6.0.1:
  2769. dependencies:
  2770. ansi-regex: 5.0.1
  2771. strip-ansi@7.1.0:
  2772. dependencies:
  2773. ansi-regex: 6.2.0
  2774. strip-json-comments@2.0.1: {}
  2775. strip-json-comments@3.1.1: {}
  2776. supports-color@7.2.0:
  2777. dependencies:
  2778. has-flag: 4.0.0
  2779. supports-color@8.1.1:
  2780. dependencies:
  2781. has-flag: 4.0.0
  2782. synckit@0.11.12:
  2783. dependencies:
  2784. '@pkgr/core': 0.2.9
  2785. tapable@2.3.3: {}
  2786. tar-fs@2.1.5:
  2787. dependencies:
  2788. chownr: 1.1.4
  2789. mkdirp-classic: 0.5.3
  2790. pump: 3.0.3
  2791. tar-stream: 2.2.0
  2792. tar-fs@3.1.3:
  2793. dependencies:
  2794. pump: 3.0.3
  2795. tar-stream: 3.1.7
  2796. optionalDependencies:
  2797. bare-fs: 4.2.1
  2798. bare-path: 3.0.0
  2799. transitivePeerDependencies:
  2800. - bare-buffer
  2801. tar-stream@2.2.0:
  2802. dependencies:
  2803. bl: 4.1.0
  2804. end-of-stream: 1.4.5
  2805. fs-constants: 1.0.0
  2806. inherits: 2.0.4
  2807. readable-stream: 3.6.2
  2808. tar-stream@3.1.7:
  2809. dependencies:
  2810. b4a: 1.6.7
  2811. fast-fifo: 1.3.2
  2812. streamx: 2.22.1
  2813. telegram@2.26.22:
  2814. dependencies:
  2815. '@cryptography/aes': 0.1.1
  2816. async-mutex: 0.3.2
  2817. big-integer: 1.6.52
  2818. buffer: 6.0.3
  2819. htmlparser2: 6.1.0
  2820. mime: 3.0.0
  2821. node-localstorage: 2.2.1
  2822. pako: 2.1.0
  2823. path-browserify: 1.0.1
  2824. real-cancellable-promise: 1.2.3
  2825. socks: 2.8.7
  2826. store2: 2.14.4
  2827. ts-custom-error: 3.3.1
  2828. websocket: 1.0.35
  2829. optionalDependencies:
  2830. bufferutil: 4.0.9
  2831. utf-8-validate: 5.0.10
  2832. transitivePeerDependencies:
  2833. - supports-color
  2834. text-decoder@1.2.3:
  2835. dependencies:
  2836. b4a: 1.6.7
  2837. tinyexec@1.2.4: {}
  2838. tinyglobby@0.2.17:
  2839. dependencies:
  2840. fdir: 6.5.0(picomatch@4.0.4)
  2841. picomatch: 4.0.4
  2842. tldts-core@7.4.8: {}
  2843. tldts-experimental@7.4.8:
  2844. dependencies:
  2845. tldts-core: 7.4.8
  2846. tldts@7.4.8:
  2847. dependencies:
  2848. tldts-core: 7.4.8
  2849. ts-api-utils@2.5.0(typescript@6.0.3):
  2850. dependencies:
  2851. typescript: 6.0.3
  2852. ts-custom-error@3.3.1: {}
  2853. ts-declaration-location@1.0.7(typescript@6.0.3):
  2854. dependencies:
  2855. picomatch: 4.0.4
  2856. typescript: 6.0.3
  2857. tslib@2.8.1: {}
  2858. tunnel-agent@0.6.0:
  2859. dependencies:
  2860. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2861. type-check@0.4.0:
  2862. dependencies:
  2863. prelude-ls: 1.2.1
  2864. type@2.7.3: {}
  2865. typedarray-to-buffer@3.1.5:
  2866. dependencies:
  2867. is-typedarray: 1.0.0
  2868. typescript-eslint@8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3):
  2869. dependencies:
  2870. '@typescript-eslint/eslint-plugin': 8.63.0(@typescript-eslint/parser@8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2871. '@typescript-eslint/parser': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
  2872. '@typescript-eslint/typescript-estree': 8.63.0(typescript@6.0.3)
  2873. '@typescript-eslint/utils': 8.63.0(eslint@10.7.0(supports-color@8.1.1))(typescript@6.0.3)
  2874. eslint: 10.7.0(supports-color@8.1.1)
  2875. typescript: 6.0.3
  2876. transitivePeerDependencies:
  2877. - supports-color
  2878. typescript@6.0.3: {}
  2879. undici-cache-store-better-sqlite3@1.1.0(undici@8.7.0):
  2880. dependencies:
  2881. better-sqlite3: 12.11.1
  2882. foxts: 5.8.0
  2883. undici: 8.7.0
  2884. undici-types@7.24.6: {}
  2885. undici@8.7.0: {}
  2886. unrs-resolver@1.11.1:
  2887. dependencies:
  2888. napi-postinstall: 0.3.4
  2889. optionalDependencies:
  2890. '@unrs/resolver-binding-android-arm-eabi': 1.11.1
  2891. '@unrs/resolver-binding-android-arm64': 1.11.1
  2892. '@unrs/resolver-binding-darwin-arm64': 1.11.1
  2893. '@unrs/resolver-binding-darwin-x64': 1.11.1
  2894. '@unrs/resolver-binding-freebsd-x64': 1.11.1
  2895. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
  2896. '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
  2897. '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
  2898. '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
  2899. '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
  2900. '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
  2901. '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
  2902. '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
  2903. '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
  2904. '@unrs/resolver-binding-linux-x64-musl': 1.11.1
  2905. '@unrs/resolver-binding-wasm32-wasi': 1.11.1
  2906. '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
  2907. '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
  2908. '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
  2909. uri-js@4.4.1:
  2910. dependencies:
  2911. punycode: 2.3.1
  2912. utf-8-validate@5.0.10:
  2913. dependencies:
  2914. node-gyp-build: 4.8.4
  2915. util-deprecate@1.0.2: {}
  2916. websocket@1.0.35:
  2917. dependencies:
  2918. bufferutil: 4.0.9
  2919. debug: 2.6.9
  2920. es5-ext: 0.10.64
  2921. typedarray-to-buffer: 3.1.5
  2922. utf-8-validate: 5.0.10
  2923. yaeti: 0.0.6
  2924. transitivePeerDependencies:
  2925. - supports-color
  2926. which@2.0.2:
  2927. dependencies:
  2928. isexe: 2.0.0
  2929. why-is-node-running@3.2.2: {}
  2930. word-wrap@1.2.5: {}
  2931. workerpool@9.3.3: {}
  2932. wrap-ansi@7.0.0:
  2933. dependencies:
  2934. ansi-styles: 4.3.0
  2935. string-width: 4.2.3
  2936. strip-ansi: 6.0.1
  2937. wrap-ansi@8.1.0:
  2938. dependencies:
  2939. ansi-styles: 6.2.1
  2940. string-width: 5.1.2
  2941. strip-ansi: 7.1.0
  2942. wrappy@1.0.2: {}
  2943. write-file-atomic@1.3.4:
  2944. dependencies:
  2945. graceful-fs: 4.2.11
  2946. imurmurhash: 0.1.4
  2947. slide: 1.1.6
  2948. xbits@0.2.0: {}
  2949. y18n@5.0.8: {}
  2950. yaeti@0.0.6: {}
  2951. yaml@2.9.0: {}
  2952. yargs-parser@21.1.1: {}
  2953. yargs-unparser@2.0.0:
  2954. dependencies:
  2955. camelcase: 6.3.0
  2956. decamelize: 4.0.0
  2957. flat: 5.0.2
  2958. is-plain-obj: 2.1.0
  2959. yargs@17.7.2:
  2960. dependencies:
  2961. cliui: 8.0.1
  2962. escalade: 3.2.0
  2963. get-caller-file: 2.0.5
  2964. require-directory: 2.1.1
  2965. string-width: 4.2.3
  2966. y18n: 5.0.8
  2967. yargs-parser: 21.1.1
  2968. yauzl-promise@4.0.0:
  2969. dependencies:
  2970. '@node-rs/crc32': 1.10.6
  2971. is-it-type: 5.1.3
  2972. simple-invariant: 2.0.1
  2973. yocto-queue@0.1.0: {}