pnpm-lock.yaml 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918
  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.14.1
  15. version: 2.14.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: ^6.2.1
  30. version: 6.2.1
  31. domain-alive:
  32. specifier: ^0.1.17
  33. version: 0.1.17
  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: ^3.1.0
  42. version: 3.1.0
  43. fdir:
  44. specifier: ^6.5.0
  45. version: 6.5.0(picomatch@4.0.3)
  46. foxts:
  47. specifier: ^5.3.0
  48. version: 5.3.0
  49. hash-wasm:
  50. specifier: ^4.12.0
  51. version: 4.12.0
  52. json-stringify-pretty-compact:
  53. specifier: 4.0.0
  54. version: 4.0.0
  55. null-prototype-object:
  56. specifier: ^1.2.6
  57. version: 1.2.6
  58. picocolors:
  59. specifier: ^1.1.1
  60. version: 1.1.1
  61. tar-fs:
  62. specifier: ^3.1.2
  63. version: 3.1.2
  64. telegram:
  65. specifier: ^2.26.22
  66. version: 2.26.22
  67. tinyglobby:
  68. specifier: ^0.2.15
  69. version: 0.2.15
  70. tldts:
  71. specifier: ^7.0.27
  72. version: 7.0.27
  73. tldts-experimental:
  74. specifier: ^7.0.27
  75. version: 7.0.27
  76. undici:
  77. specifier: ^7.24.5
  78. version: 7.24.5
  79. undici-cache-store-better-sqlite3:
  80. specifier: ^1.0.1
  81. version: 1.0.1(undici@7.24.5)
  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.8.3
  90. version: 2.8.3
  91. yauzl-promise:
  92. specifier: ^4.0.0
  93. version: 4.0.0
  94. devDependencies:
  95. '@eslint-sukka/node':
  96. specifier: ^8.9.0
  97. version: 8.9.0(eslint@10.1.0)(typescript@5.9.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)(typescript@5.9.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: ^24.12.0
  115. version: 24.12.0
  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.1.0
  127. version: 10.1.0
  128. eslint-config-sukka:
  129. specifier: ^8.9.0
  130. version: 8.9.0(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0)(typescript@5.9.3)
  131. eslint-formatter-sukka:
  132. specifier: ^8.9.0
  133. version: 8.9.0(eslint@10.1.0)
  134. jest-worker:
  135. specifier: ^30.3.0
  136. version: 30.3.0
  137. mitata:
  138. specifier: ^1.0.34
  139. version: 1.0.34
  140. mocha:
  141. specifier: ^11.7.5
  142. version: 11.7.5
  143. tinyexec:
  144. specifier: ^1.0.4
  145. version: 1.0.4
  146. typescript:
  147. specifier: ^5.9.3
  148. version: 5.9.3
  149. packages:
  150. '@antfu/install-pkg@1.1.0':
  151. resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
  152. '@cryptography/aes@0.1.1':
  153. resolution: {integrity: sha512-PcYz4FDGblO6tM2kSC+VzhhK62vml6k6/YAkiWtyPvrgJVfnDRoHGDtKn5UiaRRUrvUTTocBpvc2rRgTCqxjsg==}
  154. '@emnapi/core@1.7.1':
  155. resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
  156. '@emnapi/runtime@1.7.1':
  157. resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
  158. '@emnapi/wasi-threads@1.1.0':
  159. resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
  160. '@eslint-community/eslint-plugin-eslint-comments@4.7.1':
  161. resolution: {integrity: sha512-Ql2nJFwA8wUGpILYGOQaT1glPsmvEwE0d+a+l7AALLzQvInqdbXJdx7aSu0DpUX9dB1wMVBMhm99/++S3MdEtQ==}
  162. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  163. peerDependencies:
  164. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
  165. '@eslint-community/eslint-utils@4.9.1':
  166. resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
  167. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  168. peerDependencies:
  169. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  170. '@eslint-community/regexpp@4.12.2':
  171. resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
  172. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  173. '@eslint-sukka/eslint-plugin-stylistic@8.9.0':
  174. resolution: {integrity: sha512-Ocvl2yS5wX2gJwXr5wq1pTQCbbjiDv/jCRcank3eU8gJrPRU9YinMCQwDweA5SLA9oCuDmxFC/k9ahgknXd1lg==}
  175. peerDependencies:
  176. eslint: '*'
  177. '@eslint-sukka/eslint-plugin-sukka-full@8.9.0':
  178. resolution: {integrity: sha512-spTkq7a14hhkE4gzA5S7lQ3/qza1buTKjJ53XJeuXlg3PZiZGkaesgdISINoXM5FnMQBXOBA7wQ4Jlv70Y/edg==}
  179. peerDependencies:
  180. eslint: '*'
  181. typescript: '*'
  182. peerDependenciesMeta:
  183. typescript:
  184. optional: true
  185. '@eslint-sukka/node@8.9.0':
  186. resolution: {integrity: sha512-nmld1dnaU12AXdnKKGK/QR1nM/POV1vfwExqd3Dj9Ue30eAS4TNpkf9wegsdOxCCQ2FRNMkN1V+9Oo7uxKJd6A==}
  187. '@eslint-sukka/shared@8.9.0':
  188. resolution: {integrity: sha512-DF0L+OGa1FKHkq54h0BF+JXxrpYIZlR6aNPb/pp1yIV9oWe78epc7vxl1huWH2s1lwqtaPdquQyWoYNlW0s91A==}
  189. peerDependencies:
  190. eslint: '*'
  191. '@eslint/config-array@0.23.3':
  192. resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==}
  193. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  194. '@eslint/config-helpers@0.5.3':
  195. resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==}
  196. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  197. '@eslint/core@1.1.1':
  198. resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==}
  199. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  200. '@eslint/js@10.0.1':
  201. resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
  202. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  203. peerDependencies:
  204. eslint: ^10.0.0
  205. peerDependenciesMeta:
  206. eslint:
  207. optional: true
  208. '@eslint/object-schema@3.0.3':
  209. resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==}
  210. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  211. '@eslint/plugin-kit@0.6.1':
  212. resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==}
  213. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  214. '@ghostery/adblocker-content@2.14.1':
  215. resolution: {integrity: sha512-hDE6RAL9xgQonJQiK1knOHy527PEwlAuvKaha4snE0XO6Vmtk0HThce1M2JFVRxGayWR3nTxoWbvEfGWXU7O/A==}
  216. '@ghostery/adblocker-extended-selectors@2.14.1':
  217. resolution: {integrity: sha512-3RARO2ukDrfwDqVEMD+HKZIwsM9QjjII+U1zqxhLXZ0dZRHjbtUHlZCsokqfjZ1JAa3ZVKcZrF0nZv5SA2LgyA==}
  218. '@ghostery/adblocker@2.14.1':
  219. resolution: {integrity: sha512-/cQTMJRd4/7zpgFHWqe+9wqiRPGTy+BhqfkxplvejPgq8d6spBjC6bSJV61rVHJZw5F4KOO5ReKOvuguaKG28A==}
  220. '@ghostery/url-parser@1.3.1':
  221. resolution: {integrity: sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==}
  222. '@henrygd/queue@1.2.0':
  223. resolution: {integrity: sha512-jW/BLSTpcvExDhqJGxtIPgGr2O0IFF8XUNDwEbfCfhrXT8a4xztQ9Lv6U/vbYzYC0xVWn+3zv6YnLUh3bEFUKA==}
  224. '@humanfs/core@0.19.1':
  225. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  226. engines: {node: '>=18.18.0'}
  227. '@humanfs/node@0.16.6':
  228. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  229. engines: {node: '>=18.18.0'}
  230. '@humanwhocodes/module-importer@1.0.1':
  231. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  232. engines: {node: '>=12.22'}
  233. '@humanwhocodes/retry@0.3.1':
  234. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  235. engines: {node: '>=18.18'}
  236. '@humanwhocodes/retry@0.4.3':
  237. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  238. engines: {node: '>=18.18'}
  239. '@isaacs/cliui@8.0.2':
  240. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  241. engines: {node: '>=12'}
  242. '@jest/pattern@30.0.1':
  243. resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
  244. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  245. '@jest/schemas@30.0.5':
  246. resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
  247. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  248. '@jest/types@30.3.0':
  249. resolution: {integrity: sha512-JHm87k7bA33hpBngtU8h6UBub/fqqA9uXfw+21j5Hmk7ooPHlboRNxHq0JcMtC+n8VJGP1mcfnD3Mk+XKe1oSw==}
  250. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  251. '@mitata/counters@0.0.8':
  252. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  253. '@napi-rs/wasm-runtime@0.2.12':
  254. resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
  255. '@napi-rs/wasm-runtime@1.1.1':
  256. resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
  257. '@node-rs/crc32-android-arm-eabi@1.10.6':
  258. resolution: {integrity: sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==}
  259. engines: {node: '>= 10'}
  260. cpu: [arm]
  261. os: [android]
  262. '@node-rs/crc32-android-arm64@1.10.6':
  263. resolution: {integrity: sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==}
  264. engines: {node: '>= 10'}
  265. cpu: [arm64]
  266. os: [android]
  267. '@node-rs/crc32-darwin-arm64@1.10.6':
  268. resolution: {integrity: sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==}
  269. engines: {node: '>= 10'}
  270. cpu: [arm64]
  271. os: [darwin]
  272. '@node-rs/crc32-darwin-x64@1.10.6':
  273. resolution: {integrity: sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==}
  274. engines: {node: '>= 10'}
  275. cpu: [x64]
  276. os: [darwin]
  277. '@node-rs/crc32-freebsd-x64@1.10.6':
  278. resolution: {integrity: sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==}
  279. engines: {node: '>= 10'}
  280. cpu: [x64]
  281. os: [freebsd]
  282. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  283. resolution: {integrity: sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==}
  284. engines: {node: '>= 10'}
  285. cpu: [arm]
  286. os: [linux]
  287. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  288. resolution: {integrity: sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==}
  289. engines: {node: '>= 10'}
  290. cpu: [arm64]
  291. os: [linux]
  292. libc: [glibc]
  293. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  294. resolution: {integrity: sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==}
  295. engines: {node: '>= 10'}
  296. cpu: [arm64]
  297. os: [linux]
  298. libc: [musl]
  299. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  300. resolution: {integrity: sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==}
  301. engines: {node: '>= 10'}
  302. cpu: [x64]
  303. os: [linux]
  304. libc: [glibc]
  305. '@node-rs/crc32-linux-x64-musl@1.10.6':
  306. resolution: {integrity: sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==}
  307. engines: {node: '>= 10'}
  308. cpu: [x64]
  309. os: [linux]
  310. libc: [musl]
  311. '@node-rs/crc32-wasm32-wasi@1.10.6':
  312. resolution: {integrity: sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==}
  313. engines: {node: '>=14.0.0'}
  314. cpu: [wasm32]
  315. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  316. resolution: {integrity: sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==}
  317. engines: {node: '>= 10'}
  318. cpu: [arm64]
  319. os: [win32]
  320. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  321. resolution: {integrity: sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==}
  322. engines: {node: '>= 10'}
  323. cpu: [ia32]
  324. os: [win32]
  325. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  326. resolution: {integrity: sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==}
  327. engines: {node: '>= 10'}
  328. cpu: [x64]
  329. os: [win32]
  330. '@node-rs/crc32@1.10.6':
  331. resolution: {integrity: sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==}
  332. engines: {node: '>= 10'}
  333. '@nolyfill/globalthis@1.0.44':
  334. resolution: {integrity: sha512-PXEAAubKN6zy9AVSrjzYdEaOaPdoFTMxuiDyc2BYGgrvFQ+NiqZD4Q4JHuR9tPKQyZifQ3MnG8SA/8f21+FIrQ==}
  335. engines: {node: '>=12.4.0'}
  336. '@nolyfill/safe-buffer@1.0.44':
  337. resolution: {integrity: sha512-SqlKXtlhNTDMeZKey9jnnuPhi8YTl1lJuEcY9zbm5i4Pqe79UJJ8IJ9oiD6DhgI8KjYc+HtLzpQJNRdNYqb/hw==}
  338. engines: {node: '>=12.4.0'}
  339. '@nolyfill/shared@1.0.44':
  340. resolution: {integrity: sha512-NI1zxDh4LYL7PYlKKCwojjuc5CEZslywrOTKBNyodjmWjRiZ4AlCMs3Gp+zDoPQPNkYCSQp/luNojHmJWWfCbw==}
  341. '@ota-meshi/ast-token-store@0.3.0':
  342. resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==}
  343. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  344. '@oxc-resolver/binding-android-arm-eabi@11.19.1':
  345. resolution: {integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==}
  346. cpu: [arm]
  347. os: [android]
  348. '@oxc-resolver/binding-android-arm64@11.19.1':
  349. resolution: {integrity: sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==}
  350. cpu: [arm64]
  351. os: [android]
  352. '@oxc-resolver/binding-darwin-arm64@11.19.1':
  353. resolution: {integrity: sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==}
  354. cpu: [arm64]
  355. os: [darwin]
  356. '@oxc-resolver/binding-darwin-x64@11.19.1':
  357. resolution: {integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==}
  358. cpu: [x64]
  359. os: [darwin]
  360. '@oxc-resolver/binding-freebsd-x64@11.19.1':
  361. resolution: {integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==}
  362. cpu: [x64]
  363. os: [freebsd]
  364. '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1':
  365. resolution: {integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==}
  366. cpu: [arm]
  367. os: [linux]
  368. '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1':
  369. resolution: {integrity: sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==}
  370. cpu: [arm]
  371. os: [linux]
  372. '@oxc-resolver/binding-linux-arm64-gnu@11.19.1':
  373. resolution: {integrity: sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==}
  374. cpu: [arm64]
  375. os: [linux]
  376. libc: [glibc]
  377. '@oxc-resolver/binding-linux-arm64-musl@11.19.1':
  378. resolution: {integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==}
  379. cpu: [arm64]
  380. os: [linux]
  381. libc: [musl]
  382. '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1':
  383. resolution: {integrity: sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==}
  384. cpu: [ppc64]
  385. os: [linux]
  386. libc: [glibc]
  387. '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1':
  388. resolution: {integrity: sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==}
  389. cpu: [riscv64]
  390. os: [linux]
  391. libc: [glibc]
  392. '@oxc-resolver/binding-linux-riscv64-musl@11.19.1':
  393. resolution: {integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==}
  394. cpu: [riscv64]
  395. os: [linux]
  396. libc: [musl]
  397. '@oxc-resolver/binding-linux-s390x-gnu@11.19.1':
  398. resolution: {integrity: sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==}
  399. cpu: [s390x]
  400. os: [linux]
  401. libc: [glibc]
  402. '@oxc-resolver/binding-linux-x64-gnu@11.19.1':
  403. resolution: {integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==}
  404. cpu: [x64]
  405. os: [linux]
  406. libc: [glibc]
  407. '@oxc-resolver/binding-linux-x64-musl@11.19.1':
  408. resolution: {integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==}
  409. cpu: [x64]
  410. os: [linux]
  411. libc: [musl]
  412. '@oxc-resolver/binding-openharmony-arm64@11.19.1':
  413. resolution: {integrity: sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==}
  414. cpu: [arm64]
  415. os: [openharmony]
  416. '@oxc-resolver/binding-wasm32-wasi@11.19.1':
  417. resolution: {integrity: sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==}
  418. engines: {node: '>=14.0.0'}
  419. cpu: [wasm32]
  420. '@oxc-resolver/binding-win32-arm64-msvc@11.19.1':
  421. resolution: {integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==}
  422. cpu: [arm64]
  423. os: [win32]
  424. '@oxc-resolver/binding-win32-ia32-msvc@11.19.1':
  425. resolution: {integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==}
  426. cpu: [ia32]
  427. os: [win32]
  428. '@oxc-resolver/binding-win32-x64-msvc@11.19.1':
  429. resolution: {integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==}
  430. cpu: [x64]
  431. os: [win32]
  432. '@package-json/types@0.0.12':
  433. resolution: {integrity: sha512-uu43FGU34B5VM9mCNjXCwLaGHYjXdNincqKLaraaCW+7S2+SmiBg1Nv8bPnmschrIfZmfKNY9f3fC376MRrObw==}
  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.1':
  536. resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
  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@24.12.0':
  556. resolution: {integrity: sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==}
  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.57.2':
  568. resolution: {integrity: sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==}
  569. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  570. peerDependencies:
  571. '@typescript-eslint/parser': ^8.57.2
  572. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  573. typescript: '>=4.8.4 <6.0.0'
  574. '@typescript-eslint/parser@8.57.2':
  575. resolution: {integrity: sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==}
  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.0.0'
  580. '@typescript-eslint/project-service@8.57.2':
  581. resolution: {integrity: sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==}
  582. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  583. peerDependencies:
  584. typescript: '>=4.8.4 <6.0.0'
  585. '@typescript-eslint/scope-manager@8.57.2':
  586. resolution: {integrity: sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==}
  587. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  588. '@typescript-eslint/tsconfig-utils@8.57.2':
  589. resolution: {integrity: sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==}
  590. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  591. peerDependencies:
  592. typescript: '>=4.8.4 <6.0.0'
  593. '@typescript-eslint/type-utils@8.57.2':
  594. resolution: {integrity: sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==}
  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.0.0'
  599. '@typescript-eslint/types@8.57.2':
  600. resolution: {integrity: sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==}
  601. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  602. '@typescript-eslint/typescript-estree@8.57.2':
  603. resolution: {integrity: sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==}
  604. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  605. peerDependencies:
  606. typescript: '>=4.8.4 <6.0.0'
  607. '@typescript-eslint/utils@8.57.2':
  608. resolution: {integrity: sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==}
  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.0.0'
  613. '@typescript-eslint/visitor-keys@8.57.2':
  614. resolution: {integrity: sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==}
  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. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  619. resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
  620. cpu: [arm]
  621. os: [android]
  622. '@unrs/resolver-binding-android-arm64@1.11.1':
  623. resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
  624. cpu: [arm64]
  625. os: [android]
  626. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  627. resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
  628. cpu: [arm64]
  629. os: [darwin]
  630. '@unrs/resolver-binding-darwin-x64@1.11.1':
  631. resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
  632. cpu: [x64]
  633. os: [darwin]
  634. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  635. resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
  636. cpu: [x64]
  637. os: [freebsd]
  638. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  639. resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
  640. cpu: [arm]
  641. os: [linux]
  642. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  643. resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
  644. cpu: [arm]
  645. os: [linux]
  646. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  647. resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
  648. cpu: [arm64]
  649. os: [linux]
  650. libc: [glibc]
  651. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  652. resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
  653. cpu: [arm64]
  654. os: [linux]
  655. libc: [musl]
  656. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  657. resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
  658. cpu: [ppc64]
  659. os: [linux]
  660. libc: [glibc]
  661. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  662. resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
  663. cpu: [riscv64]
  664. os: [linux]
  665. libc: [glibc]
  666. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  667. resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
  668. cpu: [riscv64]
  669. os: [linux]
  670. libc: [musl]
  671. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  672. resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
  673. cpu: [s390x]
  674. os: [linux]
  675. libc: [glibc]
  676. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  677. resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
  678. cpu: [x64]
  679. os: [linux]
  680. libc: [glibc]
  681. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  682. resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
  683. cpu: [x64]
  684. os: [linux]
  685. libc: [musl]
  686. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  687. resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
  688. engines: {node: '>=14.0.0'}
  689. cpu: [wasm32]
  690. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  691. resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
  692. cpu: [arm64]
  693. os: [win32]
  694. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  695. resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
  696. cpu: [ia32]
  697. os: [win32]
  698. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  699. resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
  700. cpu: [x64]
  701. os: [win32]
  702. acorn-jsx@5.3.2:
  703. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  704. peerDependencies:
  705. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  706. acorn@8.16.0:
  707. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  708. engines: {node: '>=0.4.0'}
  709. hasBin: true
  710. ajv@6.14.0:
  711. resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
  712. ansi-regex@5.0.1:
  713. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  714. engines: {node: '>=8'}
  715. ansi-regex@6.2.0:
  716. resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
  717. engines: {node: '>=12'}
  718. ansi-styles@4.3.0:
  719. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  720. engines: {node: '>=8'}
  721. ansi-styles@6.2.1:
  722. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  723. engines: {node: '>=12'}
  724. argparse@2.0.1:
  725. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  726. async-mutex@0.3.2:
  727. resolution: {integrity: sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==}
  728. b4a@1.6.7:
  729. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  730. balanced-match@1.0.2:
  731. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  732. balanced-match@4.0.4:
  733. resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
  734. engines: {node: 18 || 20 || >=22}
  735. bare-events@2.6.1:
  736. resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
  737. bare-fs@4.2.1:
  738. resolution: {integrity: sha512-mELROzV0IhqilFgsl1gyp48pnZsaV9xhQapHLDsvn4d4ZTfbFhcghQezl7FTEDNBcGqLUnNI3lUlm6ecrLWdFA==}
  739. engines: {bare: '>=1.16.0'}
  740. peerDependencies:
  741. bare-buffer: '*'
  742. peerDependenciesMeta:
  743. bare-buffer:
  744. optional: true
  745. bare-os@3.6.2:
  746. resolution: {integrity: sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==}
  747. engines: {bare: '>=1.14.0'}
  748. bare-path@3.0.0:
  749. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  750. bare-stream@2.7.0:
  751. resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==}
  752. peerDependencies:
  753. bare-buffer: '*'
  754. bare-events: '*'
  755. peerDependenciesMeta:
  756. bare-buffer:
  757. optional: true
  758. bare-events:
  759. optional: true
  760. base64-js@1.5.1:
  761. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  762. better-sqlite3@12.8.0:
  763. resolution: {integrity: sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==}
  764. engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x}
  765. big-integer@1.6.52:
  766. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  767. engines: {node: '>=0.6'}
  768. bindings@1.5.0:
  769. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  770. bl@4.1.0:
  771. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  772. brace-expansion@2.0.2:
  773. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  774. brace-expansion@5.0.3:
  775. resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
  776. engines: {node: 18 || 20 || >=22}
  777. browser-stdout@1.3.1:
  778. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  779. buffer-from@1.1.2:
  780. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  781. buffer@5.7.1:
  782. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  783. buffer@6.0.3:
  784. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  785. bufferutil@4.0.9:
  786. resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
  787. engines: {node: '>=6.14.2'}
  788. camelcase@6.3.0:
  789. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  790. engines: {node: '>=10'}
  791. chalk@4.1.2:
  792. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  793. engines: {node: '>=10'}
  794. chokidar@4.0.3:
  795. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  796. engines: {node: '>= 14.16.0'}
  797. chownr@1.1.4:
  798. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  799. ci-info@4.4.0:
  800. resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
  801. engines: {node: '>=8'}
  802. cli-progress@3.12.0:
  803. resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
  804. engines: {node: '>=4'}
  805. cliui@8.0.1:
  806. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  807. engines: {node: '>=12'}
  808. color-convert@2.0.1:
  809. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  810. engines: {node: '>=7.0.0'}
  811. color-name@1.1.4:
  812. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  813. colorette@2.0.20:
  814. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  815. comment-parser@1.4.1:
  816. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  817. engines: {node: '>= 12.0.0'}
  818. cross-spawn@7.0.6:
  819. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  820. engines: {node: '>= 8'}
  821. csv-parse@6.2.1:
  822. resolution: {integrity: sha512-LRLMV+UCyfMokp8Wb411duBf1gaBKJfOfBWU9eHMJ+b+cJYZsNu3AFmjJf3+yPGd59Exz1TsMjaSFyxnYB9+IQ==}
  823. d@1.0.2:
  824. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  825. engines: {node: '>=0.12'}
  826. debug@2.6.9:
  827. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  828. peerDependencies:
  829. supports-color: '*'
  830. peerDependenciesMeta:
  831. supports-color:
  832. optional: true
  833. debug@3.2.7:
  834. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  835. peerDependencies:
  836. supports-color: '*'
  837. peerDependenciesMeta:
  838. supports-color:
  839. optional: true
  840. debug@4.4.1:
  841. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  842. engines: {node: '>=6.0'}
  843. peerDependencies:
  844. supports-color: '*'
  845. peerDependenciesMeta:
  846. supports-color:
  847. optional: true
  848. debug@4.4.3:
  849. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  850. engines: {node: '>=6.0'}
  851. peerDependencies:
  852. supports-color: '*'
  853. peerDependenciesMeta:
  854. supports-color:
  855. optional: true
  856. decamelize@4.0.0:
  857. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  858. engines: {node: '>=10'}
  859. decompress-response@6.0.0:
  860. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  861. engines: {node: '>=10'}
  862. deep-extend@0.6.0:
  863. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  864. engines: {node: '>=4.0.0'}
  865. deep-is@0.1.4:
  866. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  867. defu@6.1.4:
  868. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  869. detect-libc@2.0.4:
  870. resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
  871. engines: {node: '>=8'}
  872. diff-sequences@29.6.3:
  873. resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
  874. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  875. diff@7.0.0:
  876. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  877. engines: {node: '>=0.3.1'}
  878. dom-serializer@1.4.1:
  879. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  880. domain-alive@0.1.17:
  881. resolution: {integrity: sha512-ACL2WVZ5lldyBnrFjD4Jb9FeJd4SS4vhiKoIfq2qQrWXfAxM+go1WjjykceyjlCj8zqby3Ss0Nh5hDyl1/SFzw==}
  882. domelementtype@2.3.0:
  883. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  884. domhandler@4.3.1:
  885. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  886. engines: {node: '>= 4'}
  887. domutils@2.8.0:
  888. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  889. earl@2.0.0:
  890. resolution: {integrity: sha512-je2x7VWHNN3kN5zqcUUeEEokHoL7HWwiOxCdlLi66LkMqUnLECVZGePdgBtrqLrUg25bHLFrM+bkBXwcI7f+EQ==}
  891. eastasianwidth@0.2.0:
  892. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  893. emoji-regex@8.0.0:
  894. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  895. emoji-regex@9.2.2:
  896. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  897. end-of-stream@1.4.5:
  898. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  899. enhanced-resolve@5.18.3:
  900. resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
  901. engines: {node: '>=10.13.0'}
  902. entities@2.2.0:
  903. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  904. error-stack-parser@2.1.4:
  905. resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
  906. es5-ext@0.10.64:
  907. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  908. engines: {node: '>=0.10'}
  909. es6-iterator@2.0.3:
  910. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  911. es6-symbol@3.1.4:
  912. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  913. engines: {node: '>=0.12'}
  914. escalade@3.2.0:
  915. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  916. engines: {node: '>=6'}
  917. escape-string-regexp@4.0.0:
  918. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  919. engines: {node: '>=10'}
  920. eslint-compat-utils@0.5.1:
  921. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  922. engines: {node: '>=12'}
  923. peerDependencies:
  924. eslint: '>=6.0.0'
  925. eslint-config-sukka@8.9.0:
  926. resolution: {integrity: sha512-fLEnXj6fivWYqcjkHVOUb561N8+1h5FnpxCEgbM0ZuI1RVIrd6f4nEKFaGQpkO0To6JXWr/JMP/EKXnGHQMQRw==}
  927. eslint-formatter-sukka@8.9.0:
  928. resolution: {integrity: sha512-VKOhorsmrzIx2qsroBlapTzE7/nN3PnYr5spWz3eIldBCMhHRxkLUXCpVN3tZjyl0g8vHM+ZOQdtWm7YuX3kWA==}
  929. peerDependencies:
  930. eslint: '*'
  931. eslint-import-context@0.1.9:
  932. resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
  933. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  934. peerDependencies:
  935. unrs-resolver: ^1.0.0
  936. peerDependenciesMeta:
  937. unrs-resolver:
  938. optional: true
  939. eslint-import-resolver-node@0.3.9:
  940. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  941. eslint-import-resolver-typescript@4.4.4:
  942. resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==}
  943. engines: {node: ^16.17.0 || >=18.6.0}
  944. peerDependencies:
  945. eslint: '*'
  946. eslint-plugin-import: '*'
  947. eslint-plugin-import-x: '*'
  948. peerDependenciesMeta:
  949. eslint-plugin-import:
  950. optional: true
  951. eslint-plugin-import-x:
  952. optional: true
  953. eslint-json-compat-utils@0.2.3:
  954. resolution: {integrity: sha512-RbBmDFyu7FqnjE8F0ZxPNzx5UaptdeS9Uu50r7A+D7s/+FCX+ybiyViYEgFUaFIFqSWJgZRTpL5d8Kanxxl2lQ==}
  955. engines: {node: '>=12'}
  956. peerDependencies:
  957. '@eslint/json': '*'
  958. eslint: '*'
  959. jsonc-eslint-parser: ^2.4.0 || ^3.0.0
  960. peerDependenciesMeta:
  961. '@eslint/json':
  962. optional: true
  963. eslint-plugin-es-x@7.8.0:
  964. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  965. engines: {node: ^14.18.0 || >=16.0.0}
  966. peerDependencies:
  967. eslint: '>=8'
  968. eslint-plugin-import-x@4.16.2:
  969. resolution: {integrity: sha512-rM9K8UBHcWKpzQzStn1YRN2T5NvdeIfSVoKu/lKF41znQXHAUcBbYXe5wd6GNjZjTrP7viQ49n1D83x/2gYgIw==}
  970. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  971. peerDependencies:
  972. '@typescript-eslint/utils': ^8.56.0
  973. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  974. eslint-import-resolver-node: '*'
  975. peerDependenciesMeta:
  976. '@typescript-eslint/utils':
  977. optional: true
  978. eslint-import-resolver-node:
  979. optional: true
  980. eslint-plugin-jsonc@3.1.2:
  981. resolution: {integrity: sha512-dopTxdB22iuOkgKyJCupEC5IYBItUT4J/teq1H5ddUObcaYhOURxtJElZczdcYnnKCghNU/vccuyPkliy2Wxsg==}
  982. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  983. peerDependencies:
  984. eslint: '>=9.38.0'
  985. eslint-plugin-n@17.24.0:
  986. resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
  987. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  988. peerDependencies:
  989. eslint: '>=8.23.0'
  990. eslint-plugin-promise@7.2.1:
  991. resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==}
  992. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  993. peerDependencies:
  994. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  995. eslint-plugin-regexp@3.1.0:
  996. resolution: {integrity: sha512-qGXIC3DIKZHcK1H9A9+Byz9gmndY6TTSRkSMTZpNXdyCw2ObSehRgccJv35n9AdUakEjQp5VFNLas6BMXizCZg==}
  997. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  998. peerDependencies:
  999. eslint: '>=9.38.0'
  1000. eslint-plugin-sukka@9.1.0:
  1001. resolution: {integrity: sha512-VC0qOjsY5B4mWTP3rfPuiOH7qRrhIJ/ozIoLgW3D5ND8KrvRjGSoM8lkva++rhoV2AtLT6eA3khqCUBamPtX2g==}
  1002. peerDependencies:
  1003. eslint: '*'
  1004. typescript: '*'
  1005. eslint-plugin-unused-imports@4.4.1:
  1006. resolution: {integrity: sha512-oZGYUz1X3sRMGUB+0cZyK2VcvRX5lm/vB56PgNNcU+7ficUCKm66oZWKUubXWnOuPjQ8PvmXtCViXBMONPe7tQ==}
  1007. peerDependencies:
  1008. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  1009. eslint: ^10.0.0 || ^9.0.0 || ^8.0.0
  1010. peerDependenciesMeta:
  1011. '@typescript-eslint/eslint-plugin':
  1012. optional: true
  1013. eslint-scope@9.1.2:
  1014. resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
  1015. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1016. eslint-visitor-keys@3.4.3:
  1017. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  1018. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1019. eslint-visitor-keys@5.0.1:
  1020. resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
  1021. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1022. eslint@10.1.0:
  1023. resolution: {integrity: sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==}
  1024. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1025. hasBin: true
  1026. peerDependencies:
  1027. jiti: '*'
  1028. peerDependenciesMeta:
  1029. jiti:
  1030. optional: true
  1031. esniff@2.0.1:
  1032. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  1033. engines: {node: '>=0.10'}
  1034. espree@11.2.0:
  1035. resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
  1036. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1037. esquery@1.7.0:
  1038. resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
  1039. engines: {node: '>=0.10'}
  1040. esrecurse@4.3.0:
  1041. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1042. engines: {node: '>=4.0'}
  1043. estraverse@5.3.0:
  1044. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1045. engines: {node: '>=4.0'}
  1046. esutils@2.0.3:
  1047. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1048. engines: {node: '>=0.10.0'}
  1049. event-emitter@0.3.5:
  1050. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  1051. expand-template@2.0.3:
  1052. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  1053. engines: {node: '>=6'}
  1054. ext@1.7.0:
  1055. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  1056. fast-cidr-tools@0.3.4:
  1057. resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
  1058. engines: {node: '>=16'}
  1059. fast-deep-equal@3.1.3:
  1060. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1061. fast-escape-html@1.1.0:
  1062. resolution: {integrity: sha512-nRvjfywv8gzIBs0fM/ht6S5scNUamm+o+91p/69cYYNWODb7b/UiQfjFx+6n8NMtdHs6K80kh+hW1dPNS/opIA==}
  1063. fast-escape-regexp@1.0.1:
  1064. resolution: {integrity: sha512-VSnAgWEYHdyyVegVfN/TUCa6hDQ7PIxdIJVWq4RWqyegkG9zFwNb21uykT0hAyvKlKnFR+zOu/25434pHBXtLA==}
  1065. fast-fifo@1.3.2:
  1066. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  1067. fast-json-stable-stringify@2.1.0:
  1068. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1069. fast-levenshtein@2.0.6:
  1070. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1071. fast-uri@3.1.0:
  1072. resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
  1073. fdir@6.5.0:
  1074. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1075. engines: {node: '>=12.0.0'}
  1076. peerDependencies:
  1077. picomatch: ^3 || ^4
  1078. peerDependenciesMeta:
  1079. picomatch:
  1080. optional: true
  1081. file-entry-cache@8.0.0:
  1082. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1083. engines: {node: '>=16.0.0'}
  1084. file-uri-to-path@1.0.0:
  1085. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1086. find-up@5.0.0:
  1087. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1088. engines: {node: '>=10'}
  1089. flat-cache@4.0.1:
  1090. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1091. engines: {node: '>=16'}
  1092. flat@5.0.2:
  1093. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1094. hasBin: true
  1095. flatted@3.3.3:
  1096. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1097. foreground-child@3.3.1:
  1098. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1099. engines: {node: '>=14'}
  1100. foxts@4.6.0:
  1101. resolution: {integrity: sha512-Sq6k7CDUAz1/MOiwRiV59tblzsaWGOQitYxvF/l7H5Z/9gZNBvWKWsRcXLS7T7FLKRKO0LmETiefkVUm5omESg==}
  1102. foxts@5.3.0:
  1103. resolution: {integrity: sha512-mj26vbVZmsu183PXwE7Nike91vuxhaDHtQGJmiEpQkdiuJYhDB91ZsdKJN54oSqUhMWj1DmUTEqSkguJCNM2Sg==}
  1104. fs-constants@1.0.0:
  1105. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1106. function-bind@1.1.2:
  1107. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1108. get-caller-file@2.0.5:
  1109. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1110. engines: {node: 6.* || 8.* || >= 10.*}
  1111. get-tsconfig@4.12.0:
  1112. resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
  1113. github-from-package@0.0.0:
  1114. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1115. glob-parent@6.0.2:
  1116. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1117. engines: {node: '>=10.13.0'}
  1118. glob@10.4.5:
  1119. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1120. 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
  1121. hasBin: true
  1122. globals@15.15.0:
  1123. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  1124. engines: {node: '>=18'}
  1125. globrex@0.1.2:
  1126. resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
  1127. graceful-fs@4.2.11:
  1128. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1129. has-flag@4.0.0:
  1130. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1131. engines: {node: '>=8'}
  1132. hash-wasm@4.12.0:
  1133. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1134. hasown@2.0.2:
  1135. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1136. engines: {node: '>= 0.4'}
  1137. he@1.2.0:
  1138. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1139. hasBin: true
  1140. htmlparser2@6.1.0:
  1141. resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
  1142. ieee754@1.2.1:
  1143. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1144. ignore@5.3.2:
  1145. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1146. engines: {node: '>= 4'}
  1147. ignore@7.0.5:
  1148. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1149. engines: {node: '>= 4'}
  1150. imurmurhash@0.1.4:
  1151. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1152. engines: {node: '>=0.8.19'}
  1153. inherits@2.0.4:
  1154. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1155. ini@1.3.8:
  1156. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1157. ip-address@10.0.1:
  1158. resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
  1159. engines: {node: '>= 12'}
  1160. is-bun-module@2.0.0:
  1161. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1162. is-core-module@2.16.1:
  1163. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  1164. engines: {node: '>= 0.4'}
  1165. is-extglob@2.1.1:
  1166. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1167. engines: {node: '>=0.10.0'}
  1168. is-fullwidth-code-point@3.0.0:
  1169. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1170. engines: {node: '>=8'}
  1171. is-glob@4.0.3:
  1172. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1173. engines: {node: '>=0.10.0'}
  1174. is-it-type@5.1.3:
  1175. resolution: {integrity: sha512-AX2uU0HW+TxagTgQXOJY7+2fbFHemC7YFBwN1XqD8qQMKdtfbOC8OC3fUb4s5NU59a3662Dzwto8tWDdZYRXxg==}
  1176. engines: {node: '>=12'}
  1177. is-path-inside@3.0.3:
  1178. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1179. engines: {node: '>=8'}
  1180. is-plain-obj@2.1.0:
  1181. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1182. engines: {node: '>=8'}
  1183. is-typedarray@1.0.0:
  1184. resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
  1185. is-unicode-supported@0.1.0:
  1186. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1187. engines: {node: '>=10'}
  1188. isexe@2.0.0:
  1189. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1190. jackspeak@3.4.3:
  1191. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1192. jest-regex-util@30.0.1:
  1193. resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
  1194. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1195. jest-util@30.3.0:
  1196. resolution: {integrity: sha512-/jZDa00a3Sz7rdyu55NLrQCIrbyIkbBxareejQI315f/i8HjYN+ZWsDLLpoQSiUIEIyZF/R8fDg3BmB8AtHttg==}
  1197. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1198. jest-worker@30.3.0:
  1199. resolution: {integrity: sha512-DrCKkaQwHexjRUFTmPzs7sHQe0TSj9nvDALKGdwmK5mW9v7j90BudWirKAJHt3QQ9Dhrg1F7DogPzhChppkJpQ==}
  1200. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1201. js-yaml@4.1.0:
  1202. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1203. hasBin: true
  1204. jsdoc-type-pratt-parser@7.1.1:
  1205. resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
  1206. engines: {node: '>=20.0.0'}
  1207. json-buffer@3.0.1:
  1208. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1209. json-schema-traverse@0.4.1:
  1210. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1211. json-stable-stringify-without-jsonify@1.0.1:
  1212. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1213. json-stringify-pretty-compact@4.0.0:
  1214. resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==}
  1215. jsonc-eslint-parser@3.1.0:
  1216. resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==}
  1217. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1218. keyv@4.5.4:
  1219. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1220. levn@0.4.1:
  1221. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1222. engines: {node: '>= 0.8.0'}
  1223. locate-path@6.0.0:
  1224. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1225. engines: {node: '>=10'}
  1226. log-symbols@4.1.0:
  1227. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1228. engines: {node: '>=10'}
  1229. lru-cache@10.4.3:
  1230. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1231. merge-stream@2.0.0:
  1232. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1233. mime@3.0.0:
  1234. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1235. engines: {node: '>=10.0.0'}
  1236. hasBin: true
  1237. mimic-response@3.1.0:
  1238. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1239. engines: {node: '>=10'}
  1240. minimatch@10.2.4:
  1241. resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
  1242. engines: {node: 18 || 20 || >=22}
  1243. minimatch@9.0.5:
  1244. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1245. engines: {node: '>=16 || 14 >=14.17'}
  1246. minimist@1.2.8:
  1247. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1248. minipass@7.1.2:
  1249. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1250. engines: {node: '>=16 || 14 >=14.17'}
  1251. mitata@1.0.34:
  1252. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1253. mkdirp-classic@0.5.3:
  1254. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1255. mocha@11.7.5:
  1256. resolution: {integrity: sha512-mTT6RgopEYABzXWFx+GcJ+ZQ32kp4fMf0xvpZIIfSq9Z8lC/++MtcCnQ9t5FP2veYEP95FIYSvW+U9fV4xrlig==}
  1257. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1258. hasBin: true
  1259. ms@2.0.0:
  1260. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1261. ms@2.1.3:
  1262. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1263. napi-build-utils@2.0.0:
  1264. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1265. napi-postinstall@0.3.4:
  1266. resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
  1267. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  1268. hasBin: true
  1269. natural-compare@1.4.0:
  1270. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1271. next-tick@1.1.0:
  1272. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1273. node-abi@3.75.0:
  1274. resolution: {integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==}
  1275. engines: {node: '>=10'}
  1276. node-gyp-build@4.8.4:
  1277. resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
  1278. hasBin: true
  1279. node-localstorage@2.2.1:
  1280. resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
  1281. engines: {node: '>=0.12'}
  1282. null-prototype-object@1.2.6:
  1283. resolution: {integrity: sha512-m+HuHAqaOiqlxVAzI3GtRgS4JIk3aAZ5RbkYxxPiACXyQZzS5uxjOXMASlWNdPYZ/5d4/+YclUlI+XXNlyN7Jg==}
  1284. engines: {node: '>= 20'}
  1285. once@1.4.0:
  1286. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1287. optionator@0.9.4:
  1288. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1289. engines: {node: '>= 0.8.0'}
  1290. oxc-resolver@11.19.1:
  1291. resolution: {integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==}
  1292. p-limit@3.1.0:
  1293. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1294. engines: {node: '>=10'}
  1295. p-locate@5.0.0:
  1296. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1297. engines: {node: '>=10'}
  1298. package-json-from-dist@1.0.1:
  1299. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1300. package-manager-detector@1.5.0:
  1301. resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==}
  1302. pako@2.1.0:
  1303. resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
  1304. path-browserify@1.0.1:
  1305. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1306. path-exists@4.0.0:
  1307. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1308. engines: {node: '>=8'}
  1309. path-key@3.1.1:
  1310. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1311. engines: {node: '>=8'}
  1312. path-parse@1.0.7:
  1313. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1314. path-scurry@1.11.1:
  1315. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1316. engines: {node: '>=16 || 14 >=14.18'}
  1317. picocolors@1.1.1:
  1318. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1319. picomatch@4.0.3:
  1320. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  1321. engines: {node: '>=12'}
  1322. pirates@4.0.7:
  1323. resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
  1324. engines: {node: '>= 6'}
  1325. prebuild-install@7.1.3:
  1326. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1327. engines: {node: '>=10'}
  1328. deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
  1329. hasBin: true
  1330. prelude-ls@1.2.1:
  1331. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1332. engines: {node: '>= 0.8.0'}
  1333. pump@3.0.3:
  1334. resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
  1335. punycode@2.3.1:
  1336. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1337. engines: {node: '>=6'}
  1338. randombytes@2.1.0:
  1339. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1340. rc@1.2.8:
  1341. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1342. hasBin: true
  1343. readable-stream@3.6.2:
  1344. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1345. engines: {node: '>= 6'}
  1346. readdirp@4.1.2:
  1347. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1348. engines: {node: '>= 14.18.0'}
  1349. real-cancellable-promise@1.2.3:
  1350. resolution: {integrity: sha512-hBI5Gy/55VEeeMtImMgEirD7eq5UmqJf1J8dFZtbJZA/3rB0pYFZ7PayMGueb6v4UtUtpKpP+05L0VwyE1hI9Q==}
  1351. refa@0.12.1:
  1352. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1353. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1354. regexp-ast-analysis@0.7.1:
  1355. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1356. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1357. require-directory@2.1.1:
  1358. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1359. engines: {node: '>=0.10.0'}
  1360. resolve-pkg-maps@1.0.0:
  1361. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1362. resolve@1.22.10:
  1363. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1364. engines: {node: '>= 0.4'}
  1365. hasBin: true
  1366. scslre@0.3.0:
  1367. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1368. engines: {node: ^14.0.0 || >=16.0.0}
  1369. semver@7.7.3:
  1370. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  1371. engines: {node: '>=10'}
  1372. hasBin: true
  1373. serialize-javascript@6.0.2:
  1374. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1375. shebang-command@2.0.0:
  1376. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1377. engines: {node: '>=8'}
  1378. shebang-regex@3.0.0:
  1379. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1380. engines: {node: '>=8'}
  1381. signal-exit@4.1.0:
  1382. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1383. engines: {node: '>=14'}
  1384. simple-concat@1.0.1:
  1385. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1386. simple-get@4.0.1:
  1387. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1388. simple-invariant@2.0.1:
  1389. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1390. engines: {node: '>=10'}
  1391. slide@1.1.6:
  1392. resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
  1393. smart-buffer@4.2.0:
  1394. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  1395. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  1396. socks@2.8.7:
  1397. resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
  1398. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  1399. source-map-support@0.5.21:
  1400. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1401. source-map@0.6.1:
  1402. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1403. engines: {node: '>=0.10.0'}
  1404. stable-hash-x@0.2.0:
  1405. resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
  1406. engines: {node: '>=12.0.0'}
  1407. stackframe@1.3.4:
  1408. resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
  1409. store2@2.14.4:
  1410. resolution: {integrity: sha512-srTItn1GOvyvOycgxjAnPA63FZNwy0PTyUBFMHRM+hVFltAeoh0LmNBz9SZqUS9mMqGk8rfyWyXn3GH5ReJ8Zw==}
  1411. streamx@2.22.1:
  1412. resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
  1413. string-width@4.2.3:
  1414. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1415. engines: {node: '>=8'}
  1416. string-width@5.1.2:
  1417. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1418. engines: {node: '>=12'}
  1419. string_decoder@1.3.0:
  1420. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1421. strip-ansi@6.0.1:
  1422. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1423. engines: {node: '>=8'}
  1424. strip-ansi@7.1.0:
  1425. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1426. engines: {node: '>=12'}
  1427. strip-json-comments@2.0.1:
  1428. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1429. engines: {node: '>=0.10.0'}
  1430. strip-json-comments@3.1.1:
  1431. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1432. engines: {node: '>=8'}
  1433. supports-color@7.2.0:
  1434. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1435. engines: {node: '>=8'}
  1436. supports-color@8.1.1:
  1437. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1438. engines: {node: '>=10'}
  1439. supports-preserve-symlinks-flag@1.0.0:
  1440. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1441. engines: {node: '>= 0.4'}
  1442. synckit@0.11.12:
  1443. resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
  1444. engines: {node: ^14.18.0 || >=16.0.0}
  1445. tapable@2.3.0:
  1446. resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
  1447. engines: {node: '>=6'}
  1448. tar-fs@2.1.3:
  1449. resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==}
  1450. tar-fs@3.1.2:
  1451. resolution: {integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==}
  1452. tar-stream@2.2.0:
  1453. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1454. engines: {node: '>=6'}
  1455. tar-stream@3.1.7:
  1456. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1457. telegram@2.26.22:
  1458. resolution: {integrity: sha512-EIj7Yrjiu0Yosa3FZ/7EyPg9s6UiTi/zDQrFmR/2Mg7pIUU+XjAit1n1u9OU9h2oRnRM5M+67/fxzQluZpaJJg==}
  1459. text-decoder@1.2.3:
  1460. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1461. tinyexec@1.0.4:
  1462. resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
  1463. engines: {node: '>=18'}
  1464. tinyglobby@0.2.15:
  1465. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1466. engines: {node: '>=12.0.0'}
  1467. tldts-core@7.0.27:
  1468. resolution: {integrity: sha512-YQ7uPjgWUibIK6DW5lrKujGwUKhLevU4hcGbP5O6TcIUb+oTjJYJVWPS4nZsIHrEEEG6myk/oqAJUEQmpZrHsg==}
  1469. tldts-experimental@7.0.27:
  1470. resolution: {integrity: sha512-gKxrEupyAezMO5od1zsB0Tfhg+iAkV2itCr9Wk7MSm79sM4Uk2jewxYQZriDGBcdRxNhpnron7mez+sOKo5pkg==}
  1471. tldts@7.0.27:
  1472. resolution: {integrity: sha512-I4FZcVFcqCRuT0ph6dCDpPuO4Xgzvh+spkcTr1gK7peIvxWauoloVO0vuy1FQnijT63ss6AsHB6+OIM4aXHbPg==}
  1473. hasBin: true
  1474. ts-api-utils@2.4.0:
  1475. resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
  1476. engines: {node: '>=18.12'}
  1477. peerDependencies:
  1478. typescript: '>=4.8.4'
  1479. ts-custom-error@3.3.1:
  1480. resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==}
  1481. engines: {node: '>=14.0.0'}
  1482. ts-declaration-location@1.0.7:
  1483. resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
  1484. peerDependencies:
  1485. typescript: '>=4.0.0'
  1486. tslib@2.8.1:
  1487. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1488. tunnel-agent@0.6.0:
  1489. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1490. type-check@0.4.0:
  1491. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1492. engines: {node: '>= 0.8.0'}
  1493. type@2.7.3:
  1494. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  1495. typedarray-to-buffer@3.1.5:
  1496. resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
  1497. typescript-eslint@8.57.2:
  1498. resolution: {integrity: sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==}
  1499. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1500. peerDependencies:
  1501. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  1502. typescript: '>=4.8.4 <6.0.0'
  1503. typescript@5.9.3:
  1504. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1505. engines: {node: '>=14.17'}
  1506. hasBin: true
  1507. undici-cache-store-better-sqlite3@1.0.1:
  1508. resolution: {integrity: sha512-UHrN400SOCqM3Lq59VSNMGnjr2M3GpdTNZPaGVmATsjEBMaBaCjPXfYycM5Dz7P+0RsJ3T/RD+oLpFsV1e8qPg==}
  1509. peerDependencies:
  1510. undici: '>=7.0.0'
  1511. undici-types@7.16.0:
  1512. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  1513. undici@7.24.5:
  1514. resolution: {integrity: sha512-3IWdCpjgxp15CbJnsi/Y9TCDE7HWVN19j1hmzVhoAkY/+CJx449tVxT5wZc1Gwg8J+P0LWvzlBzxYRnHJ+1i7Q==}
  1515. engines: {node: '>=20.18.1'}
  1516. unrs-resolver@1.11.1:
  1517. resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
  1518. uri-js@4.4.1:
  1519. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1520. utf-8-validate@5.0.10:
  1521. resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
  1522. engines: {node: '>=6.14.2'}
  1523. util-deprecate@1.0.2:
  1524. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1525. websocket@1.0.35:
  1526. resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
  1527. engines: {node: '>=4.0.0'}
  1528. which@2.0.2:
  1529. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1530. engines: {node: '>= 8'}
  1531. hasBin: true
  1532. why-is-node-running@3.2.2:
  1533. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1534. engines: {node: '>=20.11'}
  1535. hasBin: true
  1536. word-wrap@1.2.5:
  1537. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1538. engines: {node: '>=0.10.0'}
  1539. workerpool@9.3.3:
  1540. resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
  1541. wrap-ansi@7.0.0:
  1542. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1543. engines: {node: '>=10'}
  1544. wrap-ansi@8.1.0:
  1545. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1546. engines: {node: '>=12'}
  1547. wrappy@1.0.2:
  1548. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1549. write-file-atomic@1.3.4:
  1550. resolution: {integrity: sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==}
  1551. xbits@0.2.0:
  1552. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1553. y18n@5.0.8:
  1554. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1555. engines: {node: '>=10'}
  1556. yaeti@0.0.6:
  1557. resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
  1558. engines: {node: '>=0.10.32'}
  1559. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1560. yaml@2.8.3:
  1561. resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==}
  1562. engines: {node: '>= 14.6'}
  1563. hasBin: true
  1564. yargs-parser@21.1.1:
  1565. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1566. engines: {node: '>=12'}
  1567. yargs-unparser@2.0.0:
  1568. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1569. engines: {node: '>=10'}
  1570. yargs@17.7.2:
  1571. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1572. engines: {node: '>=12'}
  1573. yauzl-promise@4.0.0:
  1574. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1575. engines: {node: '>=16'}
  1576. yocto-queue@0.1.0:
  1577. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1578. engines: {node: '>=10'}
  1579. snapshots:
  1580. '@antfu/install-pkg@1.1.0':
  1581. dependencies:
  1582. package-manager-detector: 1.5.0
  1583. tinyexec: 1.0.4
  1584. '@cryptography/aes@0.1.1': {}
  1585. '@emnapi/core@1.7.1':
  1586. dependencies:
  1587. '@emnapi/wasi-threads': 1.1.0
  1588. tslib: 2.8.1
  1589. optional: true
  1590. '@emnapi/runtime@1.7.1':
  1591. dependencies:
  1592. tslib: 2.8.1
  1593. optional: true
  1594. '@emnapi/wasi-threads@1.1.0':
  1595. dependencies:
  1596. tslib: 2.8.1
  1597. optional: true
  1598. '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.1.0)':
  1599. dependencies:
  1600. escape-string-regexp: 4.0.0
  1601. eslint: 10.1.0
  1602. ignore: 7.0.5
  1603. '@eslint-community/eslint-utils@4.9.1(eslint@10.1.0)':
  1604. dependencies:
  1605. eslint: 10.1.0
  1606. eslint-visitor-keys: 3.4.3
  1607. '@eslint-community/regexpp@4.12.2': {}
  1608. '@eslint-sukka/eslint-plugin-stylistic@8.9.0(eslint@10.1.0)':
  1609. dependencies:
  1610. eslint: 10.1.0
  1611. '@eslint-sukka/eslint-plugin-sukka-full@8.9.0(eslint@10.1.0)(typescript@5.9.3)':
  1612. dependencies:
  1613. eslint: 10.1.0
  1614. eslint-plugin-sukka: 9.1.0(eslint@10.1.0)(typescript@5.9.3)
  1615. optionalDependencies:
  1616. typescript: 5.9.3
  1617. transitivePeerDependencies:
  1618. - supports-color
  1619. '@eslint-sukka/node@8.9.0(eslint@10.1.0)(typescript@5.9.3)':
  1620. dependencies:
  1621. '@eslint-sukka/eslint-plugin-sukka-full': 8.9.0(eslint@10.1.0)(typescript@5.9.3)
  1622. '@eslint-sukka/shared': 8.9.0(eslint@10.1.0)(typescript@5.9.3)
  1623. eslint-plugin-n: 17.24.0(eslint@10.1.0)(typescript@5.9.3)
  1624. transitivePeerDependencies:
  1625. - eslint
  1626. - supports-color
  1627. - typescript
  1628. '@eslint-sukka/shared@8.9.0(eslint@10.1.0)(typescript@5.9.3)':
  1629. dependencies:
  1630. '@package-json/types': 0.0.13
  1631. '@typescript-eslint/utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  1632. eslint: 10.1.0
  1633. foxts: 5.3.0
  1634. oxc-resolver: 11.19.1
  1635. transitivePeerDependencies:
  1636. - supports-color
  1637. - typescript
  1638. '@eslint/config-array@0.23.3':
  1639. dependencies:
  1640. '@eslint/object-schema': 3.0.3
  1641. debug: 4.4.3(supports-color@8.1.1)
  1642. minimatch: 10.2.4
  1643. transitivePeerDependencies:
  1644. - supports-color
  1645. '@eslint/config-helpers@0.5.3':
  1646. dependencies:
  1647. '@eslint/core': 1.1.1
  1648. '@eslint/core@1.1.1':
  1649. dependencies:
  1650. '@types/json-schema': 7.0.15
  1651. '@eslint/js@10.0.1(eslint@10.1.0)':
  1652. optionalDependencies:
  1653. eslint: 10.1.0
  1654. '@eslint/object-schema@3.0.3': {}
  1655. '@eslint/plugin-kit@0.6.1':
  1656. dependencies:
  1657. '@eslint/core': 1.1.1
  1658. levn: 0.4.1
  1659. '@ghostery/adblocker-content@2.14.1':
  1660. dependencies:
  1661. '@ghostery/adblocker-extended-selectors': 2.14.1
  1662. '@ghostery/adblocker-extended-selectors@2.14.1': {}
  1663. '@ghostery/adblocker@2.14.1':
  1664. dependencies:
  1665. '@ghostery/adblocker-content': 2.14.1
  1666. '@ghostery/adblocker-extended-selectors': 2.14.1
  1667. '@ghostery/url-parser': 1.3.1
  1668. '@remusao/guess-url-type': 2.1.0
  1669. '@remusao/small': 2.1.0
  1670. '@remusao/smaz': 2.2.0
  1671. tldts-experimental: 7.0.27
  1672. '@ghostery/url-parser@1.3.1':
  1673. dependencies:
  1674. tldts-experimental: 7.0.27
  1675. '@henrygd/queue@1.2.0': {}
  1676. '@humanfs/core@0.19.1': {}
  1677. '@humanfs/node@0.16.6':
  1678. dependencies:
  1679. '@humanfs/core': 0.19.1
  1680. '@humanwhocodes/retry': 0.3.1
  1681. '@humanwhocodes/module-importer@1.0.1': {}
  1682. '@humanwhocodes/retry@0.3.1': {}
  1683. '@humanwhocodes/retry@0.4.3': {}
  1684. '@isaacs/cliui@8.0.2':
  1685. dependencies:
  1686. string-width: 5.1.2
  1687. string-width-cjs: string-width@4.2.3
  1688. strip-ansi: 7.1.0
  1689. strip-ansi-cjs: strip-ansi@6.0.1
  1690. wrap-ansi: 8.1.0
  1691. wrap-ansi-cjs: wrap-ansi@7.0.0
  1692. '@jest/pattern@30.0.1':
  1693. dependencies:
  1694. '@types/node': 24.12.0
  1695. jest-regex-util: 30.0.1
  1696. '@jest/schemas@30.0.5':
  1697. dependencies:
  1698. '@sinclair/typebox': 0.34.49
  1699. '@jest/types@30.3.0':
  1700. dependencies:
  1701. '@jest/pattern': 30.0.1
  1702. '@jest/schemas': 30.0.5
  1703. '@types/istanbul-lib-coverage': 2.0.6
  1704. '@types/istanbul-reports': 3.0.4
  1705. '@types/node': 24.12.0
  1706. '@types/yargs': 17.0.35
  1707. chalk: 4.1.2
  1708. '@mitata/counters@0.0.8': {}
  1709. '@napi-rs/wasm-runtime@0.2.12':
  1710. dependencies:
  1711. '@emnapi/core': 1.7.1
  1712. '@emnapi/runtime': 1.7.1
  1713. '@tybys/wasm-util': 0.10.1
  1714. optional: true
  1715. '@napi-rs/wasm-runtime@1.1.1':
  1716. dependencies:
  1717. '@emnapi/core': 1.7.1
  1718. '@emnapi/runtime': 1.7.1
  1719. '@tybys/wasm-util': 0.10.1
  1720. optional: true
  1721. '@node-rs/crc32-android-arm-eabi@1.10.6':
  1722. optional: true
  1723. '@node-rs/crc32-android-arm64@1.10.6':
  1724. optional: true
  1725. '@node-rs/crc32-darwin-arm64@1.10.6':
  1726. optional: true
  1727. '@node-rs/crc32-darwin-x64@1.10.6':
  1728. optional: true
  1729. '@node-rs/crc32-freebsd-x64@1.10.6':
  1730. optional: true
  1731. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  1732. optional: true
  1733. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  1734. optional: true
  1735. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  1736. optional: true
  1737. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  1738. optional: true
  1739. '@node-rs/crc32-linux-x64-musl@1.10.6':
  1740. optional: true
  1741. '@node-rs/crc32-wasm32-wasi@1.10.6':
  1742. dependencies:
  1743. '@napi-rs/wasm-runtime': 0.2.12
  1744. optional: true
  1745. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  1746. optional: true
  1747. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  1748. optional: true
  1749. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  1750. optional: true
  1751. '@node-rs/crc32@1.10.6':
  1752. optionalDependencies:
  1753. '@node-rs/crc32-android-arm-eabi': 1.10.6
  1754. '@node-rs/crc32-android-arm64': 1.10.6
  1755. '@node-rs/crc32-darwin-arm64': 1.10.6
  1756. '@node-rs/crc32-darwin-x64': 1.10.6
  1757. '@node-rs/crc32-freebsd-x64': 1.10.6
  1758. '@node-rs/crc32-linux-arm-gnueabihf': 1.10.6
  1759. '@node-rs/crc32-linux-arm64-gnu': 1.10.6
  1760. '@node-rs/crc32-linux-arm64-musl': 1.10.6
  1761. '@node-rs/crc32-linux-x64-gnu': 1.10.6
  1762. '@node-rs/crc32-linux-x64-musl': 1.10.6
  1763. '@node-rs/crc32-wasm32-wasi': 1.10.6
  1764. '@node-rs/crc32-win32-arm64-msvc': 1.10.6
  1765. '@node-rs/crc32-win32-ia32-msvc': 1.10.6
  1766. '@node-rs/crc32-win32-x64-msvc': 1.10.6
  1767. '@nolyfill/globalthis@1.0.44':
  1768. dependencies:
  1769. '@nolyfill/shared': 1.0.44
  1770. '@nolyfill/safe-buffer@1.0.44': {}
  1771. '@nolyfill/shared@1.0.44': {}
  1772. '@ota-meshi/ast-token-store@0.3.0': {}
  1773. '@oxc-resolver/binding-android-arm-eabi@11.19.1':
  1774. optional: true
  1775. '@oxc-resolver/binding-android-arm64@11.19.1':
  1776. optional: true
  1777. '@oxc-resolver/binding-darwin-arm64@11.19.1':
  1778. optional: true
  1779. '@oxc-resolver/binding-darwin-x64@11.19.1':
  1780. optional: true
  1781. '@oxc-resolver/binding-freebsd-x64@11.19.1':
  1782. optional: true
  1783. '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1':
  1784. optional: true
  1785. '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1':
  1786. optional: true
  1787. '@oxc-resolver/binding-linux-arm64-gnu@11.19.1':
  1788. optional: true
  1789. '@oxc-resolver/binding-linux-arm64-musl@11.19.1':
  1790. optional: true
  1791. '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1':
  1792. optional: true
  1793. '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1':
  1794. optional: true
  1795. '@oxc-resolver/binding-linux-riscv64-musl@11.19.1':
  1796. optional: true
  1797. '@oxc-resolver/binding-linux-s390x-gnu@11.19.1':
  1798. optional: true
  1799. '@oxc-resolver/binding-linux-x64-gnu@11.19.1':
  1800. optional: true
  1801. '@oxc-resolver/binding-linux-x64-musl@11.19.1':
  1802. optional: true
  1803. '@oxc-resolver/binding-openharmony-arm64@11.19.1':
  1804. optional: true
  1805. '@oxc-resolver/binding-wasm32-wasi@11.19.1':
  1806. dependencies:
  1807. '@napi-rs/wasm-runtime': 1.1.1
  1808. optional: true
  1809. '@oxc-resolver/binding-win32-arm64-msvc@11.19.1':
  1810. optional: true
  1811. '@oxc-resolver/binding-win32-ia32-msvc@11.19.1':
  1812. optional: true
  1813. '@oxc-resolver/binding-win32-x64-msvc@11.19.1':
  1814. optional: true
  1815. '@package-json/types@0.0.12': {}
  1816. '@package-json/types@0.0.13': {}
  1817. '@pkgjs/parseargs@0.11.0':
  1818. optional: true
  1819. '@pkgr/core@0.2.9': {}
  1820. '@remusao/guess-url-type@2.1.0': {}
  1821. '@remusao/small@2.1.0': {}
  1822. '@remusao/smaz-compress@2.2.0':
  1823. dependencies:
  1824. '@remusao/trie': 2.1.0
  1825. '@remusao/smaz-decompress@2.2.0': {}
  1826. '@remusao/smaz@2.2.0':
  1827. dependencies:
  1828. '@remusao/smaz-compress': 2.2.0
  1829. '@remusao/smaz-decompress': 2.2.0
  1830. '@remusao/trie@2.1.0': {}
  1831. '@sinclair/typebox@0.34.49': {}
  1832. '@swc-node/core@1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)':
  1833. dependencies:
  1834. '@swc/core': 1.13.5
  1835. '@swc/types': 0.1.25
  1836. '@swc-node/register@1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(typescript@5.9.3)':
  1837. dependencies:
  1838. '@swc-node/core': 1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)
  1839. '@swc-node/sourcemap-support': 0.6.1
  1840. '@swc/core': 1.13.5
  1841. colorette: 2.0.20
  1842. debug: 4.4.3(supports-color@8.1.1)
  1843. oxc-resolver: 11.19.1
  1844. pirates: 4.0.7
  1845. tslib: 2.8.1
  1846. typescript: 5.9.3
  1847. transitivePeerDependencies:
  1848. - '@swc/types'
  1849. - supports-color
  1850. '@swc-node/sourcemap-support@0.6.1':
  1851. dependencies:
  1852. source-map-support: 0.5.21
  1853. tslib: 2.8.1
  1854. '@swc/core-darwin-arm64@1.13.5':
  1855. optional: true
  1856. '@swc/core-darwin-x64@1.13.5':
  1857. optional: true
  1858. '@swc/core-linux-arm-gnueabihf@1.13.5':
  1859. optional: true
  1860. '@swc/core-linux-arm64-gnu@1.13.5':
  1861. optional: true
  1862. '@swc/core-linux-arm64-musl@1.13.5':
  1863. optional: true
  1864. '@swc/core-linux-x64-gnu@1.13.5':
  1865. optional: true
  1866. '@swc/core-linux-x64-musl@1.13.5':
  1867. optional: true
  1868. '@swc/core-win32-arm64-msvc@1.13.5':
  1869. optional: true
  1870. '@swc/core-win32-ia32-msvc@1.13.5':
  1871. optional: true
  1872. '@swc/core-win32-x64-msvc@1.13.5':
  1873. optional: true
  1874. '@swc/core@1.13.5':
  1875. dependencies:
  1876. '@swc/counter': 0.1.3
  1877. '@swc/types': 0.1.25
  1878. optionalDependencies:
  1879. '@swc/core-darwin-arm64': 1.13.5
  1880. '@swc/core-darwin-x64': 1.13.5
  1881. '@swc/core-linux-arm-gnueabihf': 1.13.5
  1882. '@swc/core-linux-arm64-gnu': 1.13.5
  1883. '@swc/core-linux-arm64-musl': 1.13.5
  1884. '@swc/core-linux-x64-gnu': 1.13.5
  1885. '@swc/core-linux-x64-musl': 1.13.5
  1886. '@swc/core-win32-arm64-msvc': 1.13.5
  1887. '@swc/core-win32-ia32-msvc': 1.13.5
  1888. '@swc/core-win32-x64-msvc': 1.13.5
  1889. '@swc/counter@0.1.3': {}
  1890. '@swc/types@0.1.25':
  1891. dependencies:
  1892. '@swc/counter': 0.1.3
  1893. '@tybys/wasm-util@0.10.1':
  1894. dependencies:
  1895. tslib: 2.8.1
  1896. optional: true
  1897. '@types/better-sqlite3@7.6.13':
  1898. dependencies:
  1899. '@types/node': 24.12.0
  1900. '@types/cli-progress@3.11.6':
  1901. dependencies:
  1902. '@types/node': 24.12.0
  1903. '@types/esrecurse@4.3.1': {}
  1904. '@types/estree@1.0.8': {}
  1905. '@types/istanbul-lib-coverage@2.0.6': {}
  1906. '@types/istanbul-lib-report@3.0.3':
  1907. dependencies:
  1908. '@types/istanbul-lib-coverage': 2.0.6
  1909. '@types/istanbul-reports@3.0.4':
  1910. dependencies:
  1911. '@types/istanbul-lib-report': 3.0.3
  1912. '@types/json-schema@7.0.15': {}
  1913. '@types/mocha@10.0.10': {}
  1914. '@types/node@24.12.0':
  1915. dependencies:
  1916. undici-types: 7.16.0
  1917. '@types/tar-fs@2.0.4':
  1918. dependencies:
  1919. '@types/node': 24.12.0
  1920. '@types/tar-stream': 3.1.4
  1921. '@types/tar-stream@3.1.4':
  1922. dependencies:
  1923. '@types/node': 24.12.0
  1924. '@types/yargs-parser@21.0.3': {}
  1925. '@types/yargs@17.0.35':
  1926. dependencies:
  1927. '@types/yargs-parser': 21.0.3
  1928. '@types/yauzl-promise@4.0.1':
  1929. dependencies:
  1930. '@types/node': 24.12.0
  1931. '@typescript-eslint/eslint-plugin@8.57.2(@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)(typescript@5.9.3)':
  1932. dependencies:
  1933. '@eslint-community/regexpp': 4.12.2
  1934. '@typescript-eslint/parser': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  1935. '@typescript-eslint/scope-manager': 8.57.2
  1936. '@typescript-eslint/type-utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  1937. '@typescript-eslint/utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  1938. '@typescript-eslint/visitor-keys': 8.57.2
  1939. eslint: 10.1.0
  1940. ignore: 7.0.5
  1941. natural-compare: 1.4.0
  1942. ts-api-utils: 2.4.0(typescript@5.9.3)
  1943. typescript: 5.9.3
  1944. transitivePeerDependencies:
  1945. - supports-color
  1946. '@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3)':
  1947. dependencies:
  1948. '@typescript-eslint/scope-manager': 8.57.2
  1949. '@typescript-eslint/types': 8.57.2
  1950. '@typescript-eslint/typescript-estree': 8.57.2(typescript@5.9.3)
  1951. '@typescript-eslint/visitor-keys': 8.57.2
  1952. debug: 4.4.3(supports-color@8.1.1)
  1953. eslint: 10.1.0
  1954. typescript: 5.9.3
  1955. transitivePeerDependencies:
  1956. - supports-color
  1957. '@typescript-eslint/project-service@8.57.2(typescript@5.9.3)':
  1958. dependencies:
  1959. '@typescript-eslint/tsconfig-utils': 8.57.2(typescript@5.9.3)
  1960. '@typescript-eslint/types': 8.57.2
  1961. debug: 4.4.3(supports-color@8.1.1)
  1962. typescript: 5.9.3
  1963. transitivePeerDependencies:
  1964. - supports-color
  1965. '@typescript-eslint/scope-manager@8.57.2':
  1966. dependencies:
  1967. '@typescript-eslint/types': 8.57.2
  1968. '@typescript-eslint/visitor-keys': 8.57.2
  1969. '@typescript-eslint/tsconfig-utils@8.57.2(typescript@5.9.3)':
  1970. dependencies:
  1971. typescript: 5.9.3
  1972. '@typescript-eslint/type-utils@8.57.2(eslint@10.1.0)(typescript@5.9.3)':
  1973. dependencies:
  1974. '@typescript-eslint/types': 8.57.2
  1975. '@typescript-eslint/typescript-estree': 8.57.2(typescript@5.9.3)
  1976. '@typescript-eslint/utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  1977. debug: 4.4.3(supports-color@8.1.1)
  1978. eslint: 10.1.0
  1979. ts-api-utils: 2.4.0(typescript@5.9.3)
  1980. typescript: 5.9.3
  1981. transitivePeerDependencies:
  1982. - supports-color
  1983. '@typescript-eslint/types@8.57.2': {}
  1984. '@typescript-eslint/typescript-estree@8.57.2(typescript@5.9.3)':
  1985. dependencies:
  1986. '@typescript-eslint/project-service': 8.57.2(typescript@5.9.3)
  1987. '@typescript-eslint/tsconfig-utils': 8.57.2(typescript@5.9.3)
  1988. '@typescript-eslint/types': 8.57.2
  1989. '@typescript-eslint/visitor-keys': 8.57.2
  1990. debug: 4.4.3(supports-color@8.1.1)
  1991. minimatch: 10.2.4
  1992. semver: 7.7.3
  1993. tinyglobby: 0.2.15
  1994. ts-api-utils: 2.4.0(typescript@5.9.3)
  1995. typescript: 5.9.3
  1996. transitivePeerDependencies:
  1997. - supports-color
  1998. '@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3)':
  1999. dependencies:
  2000. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2001. '@typescript-eslint/scope-manager': 8.57.2
  2002. '@typescript-eslint/types': 8.57.2
  2003. '@typescript-eslint/typescript-estree': 8.57.2(typescript@5.9.3)
  2004. eslint: 10.1.0
  2005. typescript: 5.9.3
  2006. transitivePeerDependencies:
  2007. - supports-color
  2008. '@typescript-eslint/visitor-keys@8.57.2':
  2009. dependencies:
  2010. '@typescript-eslint/types': 8.57.2
  2011. eslint-visitor-keys: 5.0.1
  2012. '@ungap/structured-clone@1.3.0': {}
  2013. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  2014. optional: true
  2015. '@unrs/resolver-binding-android-arm64@1.11.1':
  2016. optional: true
  2017. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  2018. optional: true
  2019. '@unrs/resolver-binding-darwin-x64@1.11.1':
  2020. optional: true
  2021. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  2022. optional: true
  2023. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  2024. optional: true
  2025. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  2026. optional: true
  2027. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  2028. optional: true
  2029. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  2030. optional: true
  2031. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  2032. optional: true
  2033. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  2034. optional: true
  2035. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  2036. optional: true
  2037. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  2038. optional: true
  2039. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  2040. optional: true
  2041. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  2042. optional: true
  2043. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  2044. dependencies:
  2045. '@napi-rs/wasm-runtime': 0.2.12
  2046. optional: true
  2047. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  2048. optional: true
  2049. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  2050. optional: true
  2051. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  2052. optional: true
  2053. acorn-jsx@5.3.2(acorn@8.16.0):
  2054. dependencies:
  2055. acorn: 8.16.0
  2056. acorn@8.16.0: {}
  2057. ajv@6.14.0:
  2058. dependencies:
  2059. fast-deep-equal: 3.1.3
  2060. fast-json-stable-stringify: 2.1.0
  2061. json-schema-traverse: 0.4.1
  2062. uri-js: 4.4.1
  2063. ansi-regex@5.0.1: {}
  2064. ansi-regex@6.2.0: {}
  2065. ansi-styles@4.3.0:
  2066. dependencies:
  2067. color-convert: 2.0.1
  2068. ansi-styles@6.2.1: {}
  2069. argparse@2.0.1: {}
  2070. async-mutex@0.3.2:
  2071. dependencies:
  2072. tslib: 2.8.1
  2073. b4a@1.6.7: {}
  2074. balanced-match@1.0.2: {}
  2075. balanced-match@4.0.4: {}
  2076. bare-events@2.6.1:
  2077. optional: true
  2078. bare-fs@4.2.1:
  2079. dependencies:
  2080. bare-events: 2.6.1
  2081. bare-path: 3.0.0
  2082. bare-stream: 2.7.0(bare-events@2.6.1)
  2083. optional: true
  2084. bare-os@3.6.2:
  2085. optional: true
  2086. bare-path@3.0.0:
  2087. dependencies:
  2088. bare-os: 3.6.2
  2089. optional: true
  2090. bare-stream@2.7.0(bare-events@2.6.1):
  2091. dependencies:
  2092. streamx: 2.22.1
  2093. optionalDependencies:
  2094. bare-events: 2.6.1
  2095. optional: true
  2096. base64-js@1.5.1: {}
  2097. better-sqlite3@12.8.0:
  2098. dependencies:
  2099. bindings: 1.5.0
  2100. prebuild-install: 7.1.3
  2101. big-integer@1.6.52: {}
  2102. bindings@1.5.0:
  2103. dependencies:
  2104. file-uri-to-path: 1.0.0
  2105. bl@4.1.0:
  2106. dependencies:
  2107. buffer: 5.7.1
  2108. inherits: 2.0.4
  2109. readable-stream: 3.6.2
  2110. brace-expansion@2.0.2:
  2111. dependencies:
  2112. balanced-match: 1.0.2
  2113. brace-expansion@5.0.3:
  2114. dependencies:
  2115. balanced-match: 4.0.4
  2116. browser-stdout@1.3.1: {}
  2117. buffer-from@1.1.2: {}
  2118. buffer@5.7.1:
  2119. dependencies:
  2120. base64-js: 1.5.1
  2121. ieee754: 1.2.1
  2122. buffer@6.0.3:
  2123. dependencies:
  2124. base64-js: 1.5.1
  2125. ieee754: 1.2.1
  2126. bufferutil@4.0.9:
  2127. dependencies:
  2128. node-gyp-build: 4.8.4
  2129. camelcase@6.3.0: {}
  2130. chalk@4.1.2:
  2131. dependencies:
  2132. ansi-styles: 4.3.0
  2133. supports-color: 7.2.0
  2134. chokidar@4.0.3:
  2135. dependencies:
  2136. readdirp: 4.1.2
  2137. chownr@1.1.4: {}
  2138. ci-info@4.4.0: {}
  2139. cli-progress@3.12.0:
  2140. dependencies:
  2141. string-width: 4.2.3
  2142. cliui@8.0.1:
  2143. dependencies:
  2144. string-width: 4.2.3
  2145. strip-ansi: 6.0.1
  2146. wrap-ansi: 7.0.0
  2147. color-convert@2.0.1:
  2148. dependencies:
  2149. color-name: 1.1.4
  2150. color-name@1.1.4: {}
  2151. colorette@2.0.20: {}
  2152. comment-parser@1.4.1: {}
  2153. cross-spawn@7.0.6:
  2154. dependencies:
  2155. path-key: 3.1.1
  2156. shebang-command: 2.0.0
  2157. which: 2.0.2
  2158. csv-parse@6.2.1: {}
  2159. d@1.0.2:
  2160. dependencies:
  2161. es5-ext: 0.10.64
  2162. type: 2.7.3
  2163. debug@2.6.9:
  2164. dependencies:
  2165. ms: 2.0.0
  2166. debug@3.2.7:
  2167. dependencies:
  2168. ms: 2.1.3
  2169. optional: true
  2170. debug@4.4.1:
  2171. dependencies:
  2172. ms: 2.1.3
  2173. debug@4.4.3(supports-color@8.1.1):
  2174. dependencies:
  2175. ms: 2.1.3
  2176. optionalDependencies:
  2177. supports-color: 8.1.1
  2178. decamelize@4.0.0: {}
  2179. decompress-response@6.0.0:
  2180. dependencies:
  2181. mimic-response: 3.1.0
  2182. deep-extend@0.6.0: {}
  2183. deep-is@0.1.4: {}
  2184. defu@6.1.4: {}
  2185. detect-libc@2.0.4: {}
  2186. diff-sequences@29.6.3: {}
  2187. diff@7.0.0: {}
  2188. dom-serializer@1.4.1:
  2189. dependencies:
  2190. domelementtype: 2.3.0
  2191. domhandler: 4.3.1
  2192. entities: 2.2.0
  2193. domain-alive@0.1.17:
  2194. dependencies:
  2195. debug: 4.4.1
  2196. foxts: 5.3.0
  2197. tldts: 7.0.27
  2198. transitivePeerDependencies:
  2199. - supports-color
  2200. domelementtype@2.3.0: {}
  2201. domhandler@4.3.1:
  2202. dependencies:
  2203. domelementtype: 2.3.0
  2204. domutils@2.8.0:
  2205. dependencies:
  2206. dom-serializer: 1.4.1
  2207. domelementtype: 2.3.0
  2208. domhandler: 4.3.1
  2209. earl@2.0.0:
  2210. dependencies:
  2211. error-stack-parser: 2.1.4
  2212. eastasianwidth@0.2.0: {}
  2213. emoji-regex@8.0.0: {}
  2214. emoji-regex@9.2.2: {}
  2215. end-of-stream@1.4.5:
  2216. dependencies:
  2217. once: 1.4.0
  2218. enhanced-resolve@5.18.3:
  2219. dependencies:
  2220. graceful-fs: 4.2.11
  2221. tapable: 2.3.0
  2222. entities@2.2.0: {}
  2223. error-stack-parser@2.1.4:
  2224. dependencies:
  2225. stackframe: 1.3.4
  2226. es5-ext@0.10.64:
  2227. dependencies:
  2228. es6-iterator: 2.0.3
  2229. es6-symbol: 3.1.4
  2230. esniff: 2.0.1
  2231. next-tick: 1.1.0
  2232. es6-iterator@2.0.3:
  2233. dependencies:
  2234. d: 1.0.2
  2235. es5-ext: 0.10.64
  2236. es6-symbol: 3.1.4
  2237. es6-symbol@3.1.4:
  2238. dependencies:
  2239. d: 1.0.2
  2240. ext: 1.7.0
  2241. escalade@3.2.0: {}
  2242. escape-string-regexp@4.0.0: {}
  2243. eslint-compat-utils@0.5.1(eslint@10.1.0):
  2244. dependencies:
  2245. eslint: 10.1.0
  2246. semver: 7.7.3
  2247. eslint-config-sukka@8.9.0(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0)(typescript@5.9.3):
  2248. dependencies:
  2249. '@antfu/install-pkg': 1.1.0
  2250. '@eslint-community/eslint-plugin-eslint-comments': 4.7.1(eslint@10.1.0)
  2251. '@eslint-sukka/eslint-plugin-stylistic': 8.9.0(eslint@10.1.0)
  2252. '@eslint-sukka/eslint-plugin-sukka-full': 8.9.0(eslint@10.1.0)(typescript@5.9.3)
  2253. '@eslint-sukka/shared': 8.9.0(eslint@10.1.0)(typescript@5.9.3)
  2254. '@eslint/config-helpers': 0.5.3
  2255. '@eslint/js': 10.0.1(eslint@10.1.0)
  2256. '@typescript-eslint/eslint-plugin': 8.57.2(@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)(typescript@5.9.3)
  2257. '@typescript-eslint/parser': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2258. ci-info: 4.4.0
  2259. defu: 6.1.4
  2260. eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0))(eslint@10.1.0)
  2261. eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0)
  2262. eslint-plugin-jsonc: 3.1.2(eslint@10.1.0)
  2263. eslint-plugin-promise: 7.2.1(eslint@10.1.0)
  2264. eslint-plugin-regexp: 3.1.0(eslint@10.1.0)
  2265. eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.57.2(@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)
  2266. foxts: 5.3.0
  2267. jsonc-eslint-parser: 3.1.0
  2268. picocolors: 1.1.1
  2269. typescript-eslint: 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2270. transitivePeerDependencies:
  2271. - '@eslint/json'
  2272. - '@typescript-eslint/utils'
  2273. - eslint
  2274. - eslint-import-resolver-node
  2275. - eslint-plugin-import
  2276. - supports-color
  2277. - typescript
  2278. eslint-formatter-sukka@8.9.0(eslint@10.1.0):
  2279. dependencies:
  2280. ci-info: 4.4.0
  2281. eslint: 10.1.0
  2282. foxts: 5.3.0
  2283. picocolors: 1.1.1
  2284. eslint-import-context@0.1.9(unrs-resolver@1.11.1):
  2285. dependencies:
  2286. get-tsconfig: 4.12.0
  2287. stable-hash-x: 0.2.0
  2288. optionalDependencies:
  2289. unrs-resolver: 1.11.1
  2290. eslint-import-resolver-node@0.3.9:
  2291. dependencies:
  2292. debug: 3.2.7
  2293. is-core-module: 2.16.1
  2294. resolve: 1.22.10
  2295. transitivePeerDependencies:
  2296. - supports-color
  2297. optional: true
  2298. eslint-import-resolver-typescript@4.4.4(eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0))(eslint@10.1.0):
  2299. dependencies:
  2300. debug: 4.4.3(supports-color@8.1.1)
  2301. eslint: 10.1.0
  2302. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2303. get-tsconfig: 4.12.0
  2304. is-bun-module: 2.0.0
  2305. stable-hash-x: 0.2.0
  2306. tinyglobby: 0.2.15
  2307. unrs-resolver: 1.11.1
  2308. optionalDependencies:
  2309. eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0)
  2310. transitivePeerDependencies:
  2311. - supports-color
  2312. eslint-json-compat-utils@0.2.3(eslint@10.1.0)(jsonc-eslint-parser@3.1.0):
  2313. dependencies:
  2314. eslint: 10.1.0
  2315. esquery: 1.7.0
  2316. jsonc-eslint-parser: 3.1.0
  2317. eslint-plugin-es-x@7.8.0(eslint@10.1.0):
  2318. dependencies:
  2319. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2320. '@eslint-community/regexpp': 4.12.2
  2321. eslint: 10.1.0
  2322. eslint-compat-utils: 0.5.1(eslint@10.1.0)
  2323. eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.1.0):
  2324. dependencies:
  2325. '@package-json/types': 0.0.12
  2326. '@typescript-eslint/types': 8.57.2
  2327. comment-parser: 1.4.1
  2328. debug: 4.4.3(supports-color@8.1.1)
  2329. eslint: 10.1.0
  2330. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2331. is-glob: 4.0.3
  2332. minimatch: 10.2.4
  2333. semver: 7.7.3
  2334. stable-hash-x: 0.2.0
  2335. unrs-resolver: 1.11.1
  2336. optionalDependencies:
  2337. '@typescript-eslint/utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2338. eslint-import-resolver-node: 0.3.9
  2339. transitivePeerDependencies:
  2340. - supports-color
  2341. eslint-plugin-jsonc@3.1.2(eslint@10.1.0):
  2342. dependencies:
  2343. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2344. '@eslint/core': 1.1.1
  2345. '@eslint/plugin-kit': 0.6.1
  2346. '@ota-meshi/ast-token-store': 0.3.0
  2347. diff-sequences: 29.6.3
  2348. eslint: 10.1.0
  2349. eslint-json-compat-utils: 0.2.3(eslint@10.1.0)(jsonc-eslint-parser@3.1.0)
  2350. jsonc-eslint-parser: 3.1.0
  2351. natural-compare: 1.4.0
  2352. synckit: 0.11.12
  2353. transitivePeerDependencies:
  2354. - '@eslint/json'
  2355. eslint-plugin-n@17.24.0(eslint@10.1.0)(typescript@5.9.3):
  2356. dependencies:
  2357. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2358. enhanced-resolve: 5.18.3
  2359. eslint: 10.1.0
  2360. eslint-plugin-es-x: 7.8.0(eslint@10.1.0)
  2361. get-tsconfig: 4.12.0
  2362. globals: 15.15.0
  2363. globrex: 0.1.2
  2364. ignore: 5.3.2
  2365. semver: 7.7.3
  2366. ts-declaration-location: 1.0.7(typescript@5.9.3)
  2367. transitivePeerDependencies:
  2368. - typescript
  2369. eslint-plugin-promise@7.2.1(eslint@10.1.0):
  2370. dependencies:
  2371. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2372. eslint: 10.1.0
  2373. eslint-plugin-regexp@3.1.0(eslint@10.1.0):
  2374. dependencies:
  2375. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2376. '@eslint-community/regexpp': 4.12.2
  2377. comment-parser: 1.4.1
  2378. eslint: 10.1.0
  2379. jsdoc-type-pratt-parser: 7.1.1
  2380. refa: 0.12.1
  2381. regexp-ast-analysis: 0.7.1
  2382. scslre: 0.3.0
  2383. eslint-plugin-sukka@9.1.0(eslint@10.1.0)(typescript@5.9.3):
  2384. dependencies:
  2385. '@typescript-eslint/type-utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2386. '@typescript-eslint/types': 8.57.2
  2387. '@typescript-eslint/utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2388. eslint: 10.1.0
  2389. foxts: 5.3.0
  2390. typescript: 5.9.3
  2391. transitivePeerDependencies:
  2392. - supports-color
  2393. eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.57.2(@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0):
  2394. dependencies:
  2395. eslint: 10.1.0
  2396. optionalDependencies:
  2397. '@typescript-eslint/eslint-plugin': 8.57.2(@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)(typescript@5.9.3)
  2398. eslint-scope@9.1.2:
  2399. dependencies:
  2400. '@types/esrecurse': 4.3.1
  2401. '@types/estree': 1.0.8
  2402. esrecurse: 4.3.0
  2403. estraverse: 5.3.0
  2404. eslint-visitor-keys@3.4.3: {}
  2405. eslint-visitor-keys@5.0.1: {}
  2406. eslint@10.1.0:
  2407. dependencies:
  2408. '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0)
  2409. '@eslint-community/regexpp': 4.12.2
  2410. '@eslint/config-array': 0.23.3
  2411. '@eslint/config-helpers': 0.5.3
  2412. '@eslint/core': 1.1.1
  2413. '@eslint/plugin-kit': 0.6.1
  2414. '@humanfs/node': 0.16.6
  2415. '@humanwhocodes/module-importer': 1.0.1
  2416. '@humanwhocodes/retry': 0.4.3
  2417. '@types/estree': 1.0.8
  2418. ajv: 6.14.0
  2419. cross-spawn: 7.0.6
  2420. debug: 4.4.3(supports-color@8.1.1)
  2421. escape-string-regexp: 4.0.0
  2422. eslint-scope: 9.1.2
  2423. eslint-visitor-keys: 5.0.1
  2424. espree: 11.2.0
  2425. esquery: 1.7.0
  2426. esutils: 2.0.3
  2427. fast-deep-equal: 3.1.3
  2428. file-entry-cache: 8.0.0
  2429. find-up: 5.0.0
  2430. glob-parent: 6.0.2
  2431. ignore: 5.3.2
  2432. imurmurhash: 0.1.4
  2433. is-glob: 4.0.3
  2434. json-stable-stringify-without-jsonify: 1.0.1
  2435. minimatch: 10.2.4
  2436. natural-compare: 1.4.0
  2437. optionator: 0.9.4
  2438. transitivePeerDependencies:
  2439. - supports-color
  2440. esniff@2.0.1:
  2441. dependencies:
  2442. d: 1.0.2
  2443. es5-ext: 0.10.64
  2444. event-emitter: 0.3.5
  2445. type: 2.7.3
  2446. espree@11.2.0:
  2447. dependencies:
  2448. acorn: 8.16.0
  2449. acorn-jsx: 5.3.2(acorn@8.16.0)
  2450. eslint-visitor-keys: 5.0.1
  2451. esquery@1.7.0:
  2452. dependencies:
  2453. estraverse: 5.3.0
  2454. esrecurse@4.3.0:
  2455. dependencies:
  2456. estraverse: 5.3.0
  2457. estraverse@5.3.0: {}
  2458. esutils@2.0.3: {}
  2459. event-emitter@0.3.5:
  2460. dependencies:
  2461. d: 1.0.2
  2462. es5-ext: 0.10.64
  2463. expand-template@2.0.3: {}
  2464. ext@1.7.0:
  2465. dependencies:
  2466. type: 2.7.3
  2467. fast-cidr-tools@0.3.4:
  2468. dependencies:
  2469. foxts: 4.6.0
  2470. fast-deep-equal@3.1.3: {}
  2471. fast-escape-html@1.1.0: {}
  2472. fast-escape-regexp@1.0.1: {}
  2473. fast-fifo@1.3.2: {}
  2474. fast-json-stable-stringify@2.1.0: {}
  2475. fast-levenshtein@2.0.6: {}
  2476. fast-uri@3.1.0: {}
  2477. fdir@6.5.0(picomatch@4.0.3):
  2478. optionalDependencies:
  2479. picomatch: 4.0.3
  2480. file-entry-cache@8.0.0:
  2481. dependencies:
  2482. flat-cache: 4.0.1
  2483. file-uri-to-path@1.0.0: {}
  2484. find-up@5.0.0:
  2485. dependencies:
  2486. locate-path: 6.0.0
  2487. path-exists: 4.0.0
  2488. flat-cache@4.0.1:
  2489. dependencies:
  2490. flatted: 3.3.3
  2491. keyv: 4.5.4
  2492. flat@5.0.2: {}
  2493. flatted@3.3.3: {}
  2494. foreground-child@3.3.1:
  2495. dependencies:
  2496. cross-spawn: 7.0.6
  2497. signal-exit: 4.1.0
  2498. foxts@4.6.0:
  2499. dependencies:
  2500. fast-escape-html: 1.1.0
  2501. fast-escape-regexp: 1.0.1
  2502. foxts@5.3.0: {}
  2503. fs-constants@1.0.0: {}
  2504. function-bind@1.1.2:
  2505. optional: true
  2506. get-caller-file@2.0.5: {}
  2507. get-tsconfig@4.12.0:
  2508. dependencies:
  2509. resolve-pkg-maps: 1.0.0
  2510. github-from-package@0.0.0: {}
  2511. glob-parent@6.0.2:
  2512. dependencies:
  2513. is-glob: 4.0.3
  2514. glob@10.4.5:
  2515. dependencies:
  2516. foreground-child: 3.3.1
  2517. jackspeak: 3.4.3
  2518. minimatch: 9.0.5
  2519. minipass: 7.1.2
  2520. package-json-from-dist: 1.0.1
  2521. path-scurry: 1.11.1
  2522. globals@15.15.0: {}
  2523. globrex@0.1.2: {}
  2524. graceful-fs@4.2.11: {}
  2525. has-flag@4.0.0: {}
  2526. hash-wasm@4.12.0: {}
  2527. hasown@2.0.2:
  2528. dependencies:
  2529. function-bind: 1.1.2
  2530. optional: true
  2531. he@1.2.0: {}
  2532. htmlparser2@6.1.0:
  2533. dependencies:
  2534. domelementtype: 2.3.0
  2535. domhandler: 4.3.1
  2536. domutils: 2.8.0
  2537. entities: 2.2.0
  2538. ieee754@1.2.1: {}
  2539. ignore@5.3.2: {}
  2540. ignore@7.0.5: {}
  2541. imurmurhash@0.1.4: {}
  2542. inherits@2.0.4: {}
  2543. ini@1.3.8: {}
  2544. ip-address@10.0.1: {}
  2545. is-bun-module@2.0.0:
  2546. dependencies:
  2547. semver: 7.7.3
  2548. is-core-module@2.16.1:
  2549. dependencies:
  2550. hasown: 2.0.2
  2551. optional: true
  2552. is-extglob@2.1.1: {}
  2553. is-fullwidth-code-point@3.0.0: {}
  2554. is-glob@4.0.3:
  2555. dependencies:
  2556. is-extglob: 2.1.1
  2557. is-it-type@5.1.3:
  2558. dependencies:
  2559. globalthis: '@nolyfill/globalthis@1.0.44'
  2560. is-path-inside@3.0.3: {}
  2561. is-plain-obj@2.1.0: {}
  2562. is-typedarray@1.0.0: {}
  2563. is-unicode-supported@0.1.0: {}
  2564. isexe@2.0.0: {}
  2565. jackspeak@3.4.3:
  2566. dependencies:
  2567. '@isaacs/cliui': 8.0.2
  2568. optionalDependencies:
  2569. '@pkgjs/parseargs': 0.11.0
  2570. jest-regex-util@30.0.1: {}
  2571. jest-util@30.3.0:
  2572. dependencies:
  2573. '@jest/types': 30.3.0
  2574. '@types/node': 24.12.0
  2575. chalk: 4.1.2
  2576. ci-info: 4.4.0
  2577. graceful-fs: 4.2.11
  2578. picomatch: 4.0.3
  2579. jest-worker@30.3.0:
  2580. dependencies:
  2581. '@types/node': 24.12.0
  2582. '@ungap/structured-clone': 1.3.0
  2583. jest-util: 30.3.0
  2584. merge-stream: 2.0.0
  2585. supports-color: 8.1.1
  2586. js-yaml@4.1.0:
  2587. dependencies:
  2588. argparse: 2.0.1
  2589. jsdoc-type-pratt-parser@7.1.1: {}
  2590. json-buffer@3.0.1: {}
  2591. json-schema-traverse@0.4.1: {}
  2592. json-stable-stringify-without-jsonify@1.0.1: {}
  2593. json-stringify-pretty-compact@4.0.0: {}
  2594. jsonc-eslint-parser@3.1.0:
  2595. dependencies:
  2596. acorn: 8.16.0
  2597. eslint-visitor-keys: 5.0.1
  2598. semver: 7.7.3
  2599. keyv@4.5.4:
  2600. dependencies:
  2601. json-buffer: 3.0.1
  2602. levn@0.4.1:
  2603. dependencies:
  2604. prelude-ls: 1.2.1
  2605. type-check: 0.4.0
  2606. locate-path@6.0.0:
  2607. dependencies:
  2608. p-locate: 5.0.0
  2609. log-symbols@4.1.0:
  2610. dependencies:
  2611. chalk: 4.1.2
  2612. is-unicode-supported: 0.1.0
  2613. lru-cache@10.4.3: {}
  2614. merge-stream@2.0.0: {}
  2615. mime@3.0.0: {}
  2616. mimic-response@3.1.0: {}
  2617. minimatch@10.2.4:
  2618. dependencies:
  2619. brace-expansion: 5.0.3
  2620. minimatch@9.0.5:
  2621. dependencies:
  2622. brace-expansion: 2.0.2
  2623. minimist@1.2.8: {}
  2624. minipass@7.1.2: {}
  2625. mitata@1.0.34: {}
  2626. mkdirp-classic@0.5.3: {}
  2627. mocha@11.7.5:
  2628. dependencies:
  2629. browser-stdout: 1.3.1
  2630. chokidar: 4.0.3
  2631. debug: 4.4.3(supports-color@8.1.1)
  2632. diff: 7.0.0
  2633. escape-string-regexp: 4.0.0
  2634. find-up: 5.0.0
  2635. glob: 10.4.5
  2636. he: 1.2.0
  2637. is-path-inside: 3.0.3
  2638. js-yaml: 4.1.0
  2639. log-symbols: 4.1.0
  2640. minimatch: 9.0.5
  2641. ms: 2.1.3
  2642. picocolors: 1.1.1
  2643. serialize-javascript: 6.0.2
  2644. strip-json-comments: 3.1.1
  2645. supports-color: 8.1.1
  2646. workerpool: 9.3.3
  2647. yargs: 17.7.2
  2648. yargs-parser: 21.1.1
  2649. yargs-unparser: 2.0.0
  2650. ms@2.0.0: {}
  2651. ms@2.1.3: {}
  2652. napi-build-utils@2.0.0: {}
  2653. napi-postinstall@0.3.4: {}
  2654. natural-compare@1.4.0: {}
  2655. next-tick@1.1.0: {}
  2656. node-abi@3.75.0:
  2657. dependencies:
  2658. semver: 7.7.3
  2659. node-gyp-build@4.8.4: {}
  2660. node-localstorage@2.2.1:
  2661. dependencies:
  2662. write-file-atomic: 1.3.4
  2663. null-prototype-object@1.2.6: {}
  2664. once@1.4.0:
  2665. dependencies:
  2666. wrappy: 1.0.2
  2667. optionator@0.9.4:
  2668. dependencies:
  2669. deep-is: 0.1.4
  2670. fast-levenshtein: 2.0.6
  2671. levn: 0.4.1
  2672. prelude-ls: 1.2.1
  2673. type-check: 0.4.0
  2674. word-wrap: 1.2.5
  2675. oxc-resolver@11.19.1:
  2676. optionalDependencies:
  2677. '@oxc-resolver/binding-android-arm-eabi': 11.19.1
  2678. '@oxc-resolver/binding-android-arm64': 11.19.1
  2679. '@oxc-resolver/binding-darwin-arm64': 11.19.1
  2680. '@oxc-resolver/binding-darwin-x64': 11.19.1
  2681. '@oxc-resolver/binding-freebsd-x64': 11.19.1
  2682. '@oxc-resolver/binding-linux-arm-gnueabihf': 11.19.1
  2683. '@oxc-resolver/binding-linux-arm-musleabihf': 11.19.1
  2684. '@oxc-resolver/binding-linux-arm64-gnu': 11.19.1
  2685. '@oxc-resolver/binding-linux-arm64-musl': 11.19.1
  2686. '@oxc-resolver/binding-linux-ppc64-gnu': 11.19.1
  2687. '@oxc-resolver/binding-linux-riscv64-gnu': 11.19.1
  2688. '@oxc-resolver/binding-linux-riscv64-musl': 11.19.1
  2689. '@oxc-resolver/binding-linux-s390x-gnu': 11.19.1
  2690. '@oxc-resolver/binding-linux-x64-gnu': 11.19.1
  2691. '@oxc-resolver/binding-linux-x64-musl': 11.19.1
  2692. '@oxc-resolver/binding-openharmony-arm64': 11.19.1
  2693. '@oxc-resolver/binding-wasm32-wasi': 11.19.1
  2694. '@oxc-resolver/binding-win32-arm64-msvc': 11.19.1
  2695. '@oxc-resolver/binding-win32-ia32-msvc': 11.19.1
  2696. '@oxc-resolver/binding-win32-x64-msvc': 11.19.1
  2697. p-limit@3.1.0:
  2698. dependencies:
  2699. yocto-queue: 0.1.0
  2700. p-locate@5.0.0:
  2701. dependencies:
  2702. p-limit: 3.1.0
  2703. package-json-from-dist@1.0.1: {}
  2704. package-manager-detector@1.5.0: {}
  2705. pako@2.1.0: {}
  2706. path-browserify@1.0.1: {}
  2707. path-exists@4.0.0: {}
  2708. path-key@3.1.1: {}
  2709. path-parse@1.0.7:
  2710. optional: true
  2711. path-scurry@1.11.1:
  2712. dependencies:
  2713. lru-cache: 10.4.3
  2714. minipass: 7.1.2
  2715. picocolors@1.1.1: {}
  2716. picomatch@4.0.3: {}
  2717. pirates@4.0.7: {}
  2718. prebuild-install@7.1.3:
  2719. dependencies:
  2720. detect-libc: 2.0.4
  2721. expand-template: 2.0.3
  2722. github-from-package: 0.0.0
  2723. minimist: 1.2.8
  2724. mkdirp-classic: 0.5.3
  2725. napi-build-utils: 2.0.0
  2726. node-abi: 3.75.0
  2727. pump: 3.0.3
  2728. rc: 1.2.8
  2729. simple-get: 4.0.1
  2730. tar-fs: 2.1.3
  2731. tunnel-agent: 0.6.0
  2732. prelude-ls@1.2.1: {}
  2733. pump@3.0.3:
  2734. dependencies:
  2735. end-of-stream: 1.4.5
  2736. once: 1.4.0
  2737. punycode@2.3.1: {}
  2738. randombytes@2.1.0:
  2739. dependencies:
  2740. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2741. rc@1.2.8:
  2742. dependencies:
  2743. deep-extend: 0.6.0
  2744. ini: 1.3.8
  2745. minimist: 1.2.8
  2746. strip-json-comments: 2.0.1
  2747. readable-stream@3.6.2:
  2748. dependencies:
  2749. inherits: 2.0.4
  2750. string_decoder: 1.3.0
  2751. util-deprecate: 1.0.2
  2752. readdirp@4.1.2: {}
  2753. real-cancellable-promise@1.2.3: {}
  2754. refa@0.12.1:
  2755. dependencies:
  2756. '@eslint-community/regexpp': 4.12.2
  2757. regexp-ast-analysis@0.7.1:
  2758. dependencies:
  2759. '@eslint-community/regexpp': 4.12.2
  2760. refa: 0.12.1
  2761. require-directory@2.1.1: {}
  2762. resolve-pkg-maps@1.0.0: {}
  2763. resolve@1.22.10:
  2764. dependencies:
  2765. is-core-module: 2.16.1
  2766. path-parse: 1.0.7
  2767. supports-preserve-symlinks-flag: 1.0.0
  2768. optional: true
  2769. scslre@0.3.0:
  2770. dependencies:
  2771. '@eslint-community/regexpp': 4.12.2
  2772. refa: 0.12.1
  2773. regexp-ast-analysis: 0.7.1
  2774. semver@7.7.3: {}
  2775. serialize-javascript@6.0.2:
  2776. dependencies:
  2777. randombytes: 2.1.0
  2778. shebang-command@2.0.0:
  2779. dependencies:
  2780. shebang-regex: 3.0.0
  2781. shebang-regex@3.0.0: {}
  2782. signal-exit@4.1.0: {}
  2783. simple-concat@1.0.1: {}
  2784. simple-get@4.0.1:
  2785. dependencies:
  2786. decompress-response: 6.0.0
  2787. once: 1.4.0
  2788. simple-concat: 1.0.1
  2789. simple-invariant@2.0.1: {}
  2790. slide@1.1.6: {}
  2791. smart-buffer@4.2.0: {}
  2792. socks@2.8.7:
  2793. dependencies:
  2794. ip-address: 10.0.1
  2795. smart-buffer: 4.2.0
  2796. source-map-support@0.5.21:
  2797. dependencies:
  2798. buffer-from: 1.1.2
  2799. source-map: 0.6.1
  2800. source-map@0.6.1: {}
  2801. stable-hash-x@0.2.0: {}
  2802. stackframe@1.3.4: {}
  2803. store2@2.14.4: {}
  2804. streamx@2.22.1:
  2805. dependencies:
  2806. fast-fifo: 1.3.2
  2807. text-decoder: 1.2.3
  2808. optionalDependencies:
  2809. bare-events: 2.6.1
  2810. string-width@4.2.3:
  2811. dependencies:
  2812. emoji-regex: 8.0.0
  2813. is-fullwidth-code-point: 3.0.0
  2814. strip-ansi: 6.0.1
  2815. string-width@5.1.2:
  2816. dependencies:
  2817. eastasianwidth: 0.2.0
  2818. emoji-regex: 9.2.2
  2819. strip-ansi: 7.1.0
  2820. string_decoder@1.3.0:
  2821. dependencies:
  2822. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2823. strip-ansi@6.0.1:
  2824. dependencies:
  2825. ansi-regex: 5.0.1
  2826. strip-ansi@7.1.0:
  2827. dependencies:
  2828. ansi-regex: 6.2.0
  2829. strip-json-comments@2.0.1: {}
  2830. strip-json-comments@3.1.1: {}
  2831. supports-color@7.2.0:
  2832. dependencies:
  2833. has-flag: 4.0.0
  2834. supports-color@8.1.1:
  2835. dependencies:
  2836. has-flag: 4.0.0
  2837. supports-preserve-symlinks-flag@1.0.0:
  2838. optional: true
  2839. synckit@0.11.12:
  2840. dependencies:
  2841. '@pkgr/core': 0.2.9
  2842. tapable@2.3.0: {}
  2843. tar-fs@2.1.3:
  2844. dependencies:
  2845. chownr: 1.1.4
  2846. mkdirp-classic: 0.5.3
  2847. pump: 3.0.3
  2848. tar-stream: 2.2.0
  2849. tar-fs@3.1.2:
  2850. dependencies:
  2851. pump: 3.0.3
  2852. tar-stream: 3.1.7
  2853. optionalDependencies:
  2854. bare-fs: 4.2.1
  2855. bare-path: 3.0.0
  2856. transitivePeerDependencies:
  2857. - bare-buffer
  2858. tar-stream@2.2.0:
  2859. dependencies:
  2860. bl: 4.1.0
  2861. end-of-stream: 1.4.5
  2862. fs-constants: 1.0.0
  2863. inherits: 2.0.4
  2864. readable-stream: 3.6.2
  2865. tar-stream@3.1.7:
  2866. dependencies:
  2867. b4a: 1.6.7
  2868. fast-fifo: 1.3.2
  2869. streamx: 2.22.1
  2870. telegram@2.26.22:
  2871. dependencies:
  2872. '@cryptography/aes': 0.1.1
  2873. async-mutex: 0.3.2
  2874. big-integer: 1.6.52
  2875. buffer: 6.0.3
  2876. htmlparser2: 6.1.0
  2877. mime: 3.0.0
  2878. node-localstorage: 2.2.1
  2879. pako: 2.1.0
  2880. path-browserify: 1.0.1
  2881. real-cancellable-promise: 1.2.3
  2882. socks: 2.8.7
  2883. store2: 2.14.4
  2884. ts-custom-error: 3.3.1
  2885. websocket: 1.0.35
  2886. optionalDependencies:
  2887. bufferutil: 4.0.9
  2888. utf-8-validate: 5.0.10
  2889. transitivePeerDependencies:
  2890. - supports-color
  2891. text-decoder@1.2.3:
  2892. dependencies:
  2893. b4a: 1.6.7
  2894. tinyexec@1.0.4: {}
  2895. tinyglobby@0.2.15:
  2896. dependencies:
  2897. fdir: 6.5.0(picomatch@4.0.3)
  2898. picomatch: 4.0.3
  2899. tldts-core@7.0.27: {}
  2900. tldts-experimental@7.0.27:
  2901. dependencies:
  2902. tldts-core: 7.0.27
  2903. tldts@7.0.27:
  2904. dependencies:
  2905. tldts-core: 7.0.27
  2906. ts-api-utils@2.4.0(typescript@5.9.3):
  2907. dependencies:
  2908. typescript: 5.9.3
  2909. ts-custom-error@3.3.1: {}
  2910. ts-declaration-location@1.0.7(typescript@5.9.3):
  2911. dependencies:
  2912. picomatch: 4.0.3
  2913. typescript: 5.9.3
  2914. tslib@2.8.1: {}
  2915. tunnel-agent@0.6.0:
  2916. dependencies:
  2917. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2918. type-check@0.4.0:
  2919. dependencies:
  2920. prelude-ls: 1.2.1
  2921. type@2.7.3: {}
  2922. typedarray-to-buffer@3.1.5:
  2923. dependencies:
  2924. is-typedarray: 1.0.0
  2925. typescript-eslint@8.57.2(eslint@10.1.0)(typescript@5.9.3):
  2926. dependencies:
  2927. '@typescript-eslint/eslint-plugin': 8.57.2(@typescript-eslint/parser@8.57.2(eslint@10.1.0)(typescript@5.9.3))(eslint@10.1.0)(typescript@5.9.3)
  2928. '@typescript-eslint/parser': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2929. '@typescript-eslint/typescript-estree': 8.57.2(typescript@5.9.3)
  2930. '@typescript-eslint/utils': 8.57.2(eslint@10.1.0)(typescript@5.9.3)
  2931. eslint: 10.1.0
  2932. typescript: 5.9.3
  2933. transitivePeerDependencies:
  2934. - supports-color
  2935. typescript@5.9.3: {}
  2936. undici-cache-store-better-sqlite3@1.0.1(undici@7.24.5):
  2937. dependencies:
  2938. better-sqlite3: 12.8.0
  2939. foxts: 5.3.0
  2940. undici: 7.24.5
  2941. undici-types@7.16.0: {}
  2942. undici@7.24.5: {}
  2943. unrs-resolver@1.11.1:
  2944. dependencies:
  2945. napi-postinstall: 0.3.4
  2946. optionalDependencies:
  2947. '@unrs/resolver-binding-android-arm-eabi': 1.11.1
  2948. '@unrs/resolver-binding-android-arm64': 1.11.1
  2949. '@unrs/resolver-binding-darwin-arm64': 1.11.1
  2950. '@unrs/resolver-binding-darwin-x64': 1.11.1
  2951. '@unrs/resolver-binding-freebsd-x64': 1.11.1
  2952. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
  2953. '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
  2954. '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
  2955. '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
  2956. '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
  2957. '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
  2958. '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
  2959. '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
  2960. '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
  2961. '@unrs/resolver-binding-linux-x64-musl': 1.11.1
  2962. '@unrs/resolver-binding-wasm32-wasi': 1.11.1
  2963. '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
  2964. '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
  2965. '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
  2966. uri-js@4.4.1:
  2967. dependencies:
  2968. punycode: 2.3.1
  2969. utf-8-validate@5.0.10:
  2970. dependencies:
  2971. node-gyp-build: 4.8.4
  2972. util-deprecate@1.0.2: {}
  2973. websocket@1.0.35:
  2974. dependencies:
  2975. bufferutil: 4.0.9
  2976. debug: 2.6.9
  2977. es5-ext: 0.10.64
  2978. typedarray-to-buffer: 3.1.5
  2979. utf-8-validate: 5.0.10
  2980. yaeti: 0.0.6
  2981. transitivePeerDependencies:
  2982. - supports-color
  2983. which@2.0.2:
  2984. dependencies:
  2985. isexe: 2.0.0
  2986. why-is-node-running@3.2.2: {}
  2987. word-wrap@1.2.5: {}
  2988. workerpool@9.3.3: {}
  2989. wrap-ansi@7.0.0:
  2990. dependencies:
  2991. ansi-styles: 4.3.0
  2992. string-width: 4.2.3
  2993. strip-ansi: 6.0.1
  2994. wrap-ansi@8.1.0:
  2995. dependencies:
  2996. ansi-styles: 6.2.1
  2997. string-width: 5.1.2
  2998. strip-ansi: 7.1.0
  2999. wrappy@1.0.2: {}
  3000. write-file-atomic@1.3.4:
  3001. dependencies:
  3002. graceful-fs: 4.2.11
  3003. imurmurhash: 0.1.4
  3004. slide: 1.1.6
  3005. xbits@0.2.0: {}
  3006. y18n@5.0.8: {}
  3007. yaeti@0.0.6: {}
  3008. yaml@2.8.3: {}
  3009. yargs-parser@21.1.1: {}
  3010. yargs-unparser@2.0.0:
  3011. dependencies:
  3012. camelcase: 6.3.0
  3013. decamelize: 4.0.0
  3014. flat: 5.0.2
  3015. is-plain-obj: 2.1.0
  3016. yargs@17.7.2:
  3017. dependencies:
  3018. cliui: 8.0.1
  3019. escalade: 3.2.0
  3020. get-caller-file: 2.0.5
  3021. require-directory: 2.1.1
  3022. string-width: 4.2.3
  3023. y18n: 5.0.8
  3024. yargs-parser: 21.1.1
  3025. yauzl-promise@4.0.0:
  3026. dependencies:
  3027. '@node-rs/crc32': 1.10.6
  3028. is-it-type: 5.1.3
  3029. simple-invariant: 2.0.1
  3030. yocto-queue@0.1.0: {}