pnpm-lock.yaml 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281
  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.13.0
  15. version: 2.13.0
  16. '@henrygd/queue':
  17. specifier: ^1.2.0
  18. version: 1.2.0
  19. '@mitata/counters':
  20. specifier: ^0.0.8
  21. version: 0.0.8
  22. better-sqlite3:
  23. specifier: ^12.5.0
  24. version: 12.5.0
  25. ci-info:
  26. specifier: ^4.3.1
  27. version: 4.3.1
  28. cli-progress:
  29. specifier: ^3.12.0
  30. version: 3.12.0
  31. csv-parse:
  32. specifier: ^6.1.0
  33. version: 6.1.0
  34. dns2:
  35. specifier: github:lsongdev/node-dns#e4fa035aca0b8eb730bde3431fbf0c60a31a09c9
  36. version: https://codeload.github.com/lsongdev/node-dns/tar.gz/e4fa035aca0b8eb730bde3431fbf0c60a31a09c9
  37. domain-alive:
  38. specifier: ^0.1.11
  39. version: 0.1.11
  40. fast-cidr-tools:
  41. specifier: ^0.3.4
  42. version: 0.3.4
  43. fast-escape-regexp:
  44. specifier: ^1.0.1
  45. version: 1.0.1
  46. fast-uri:
  47. specifier: ^3.1.0
  48. version: 3.1.0
  49. fdir:
  50. specifier: ^6.5.0
  51. version: 6.5.0(picomatch@4.0.3)
  52. foxts:
  53. specifier: ^5.0.3
  54. version: 5.0.3
  55. hash-wasm:
  56. specifier: ^4.12.0
  57. version: 4.12.0
  58. json-stringify-pretty-compact:
  59. specifier: 4.0.0
  60. version: 4.0.0
  61. null-prototype-object:
  62. specifier: ^1.2.5
  63. version: 1.2.5
  64. picocolors:
  65. specifier: ^1.1.1
  66. version: 1.1.1
  67. tar-fs:
  68. specifier: ^3.1.1
  69. version: 3.1.1
  70. telegram:
  71. specifier: ^2.26.22
  72. version: 2.26.22
  73. tinyglobby:
  74. specifier: ^0.2.15
  75. version: 0.2.15
  76. tldts:
  77. specifier: ^7.0.19
  78. version: 7.0.19
  79. tldts-experimental:
  80. specifier: ^7.0.19
  81. version: 7.0.19
  82. undici:
  83. specifier: ^7.16.0
  84. version: 7.16.0
  85. undici-cache-store-better-sqlite3:
  86. specifier: ^1.0.0
  87. version: 1.0.0(undici@7.16.0)
  88. why-is-node-running:
  89. specifier: ^3.2.2
  90. version: 3.2.2
  91. worktank:
  92. specifier: ^3.0.2
  93. version: 3.0.2
  94. xbits:
  95. specifier: ^0.2.0
  96. version: 0.2.0
  97. yaml:
  98. specifier: ^2.8.2
  99. version: 2.8.2
  100. yauzl-promise:
  101. specifier: ^4.0.0
  102. version: 4.0.0
  103. devDependencies:
  104. '@eslint-sukka/node':
  105. specifier: ^8.0.5
  106. version: 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  107. '@swc-node/register':
  108. specifier: ^1.11.1
  109. version: 1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(typescript@5.9.3)
  110. '@swc/core':
  111. specifier: 1.13.5
  112. version: 1.13.5
  113. '@types/better-sqlite3':
  114. specifier: ^7.6.13
  115. version: 7.6.13
  116. '@types/cli-progress':
  117. specifier: ^3.11.6
  118. version: 3.11.6
  119. '@types/dns2':
  120. specifier: ^2.0.10
  121. version: 2.0.10
  122. '@types/mocha':
  123. specifier: ^10.0.10
  124. version: 10.0.10
  125. '@types/node':
  126. specifier: ^24.10.3
  127. version: 24.10.3
  128. '@types/tar-fs':
  129. specifier: ^2.0.4
  130. version: 2.0.4
  131. '@types/yauzl-promise':
  132. specifier: ^4.0.1
  133. version: 4.0.1
  134. eslint:
  135. specifier: ^9.39.2
  136. version: 9.39.2
  137. eslint-config-sukka:
  138. specifier: ^8.0.5
  139. version: 8.0.5(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2)(typescript@5.9.3)
  140. eslint-formatter-sukka:
  141. specifier: ^8.0.5
  142. version: 8.0.5(eslint@9.39.2)
  143. expect:
  144. specifier: ^30.2.0
  145. version: 30.2.0
  146. mitata:
  147. specifier: ^1.0.34
  148. version: 1.0.34
  149. mocha:
  150. specifier: ^11.7.5
  151. version: 11.7.5
  152. tinyexec:
  153. specifier: ^1.0.2
  154. version: 1.0.2
  155. typescript:
  156. specifier: ^5.9.3
  157. version: 5.9.3
  158. packages:
  159. '@antfu/install-pkg@1.1.0':
  160. resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
  161. '@babel/code-frame@7.27.1':
  162. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  163. engines: {node: '>=6.9.0'}
  164. '@babel/helper-validator-identifier@7.27.1':
  165. resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
  166. engines: {node: '>=6.9.0'}
  167. '@cryptography/aes@0.1.1':
  168. resolution: {integrity: sha512-PcYz4FDGblO6tM2kSC+VzhhK62vml6k6/YAkiWtyPvrgJVfnDRoHGDtKn5UiaRRUrvUTTocBpvc2rRgTCqxjsg==}
  169. '@emnapi/core@1.5.0':
  170. resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
  171. '@emnapi/runtime@1.5.0':
  172. resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
  173. '@emnapi/wasi-threads@1.1.0':
  174. resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
  175. '@eslint-community/eslint-plugin-eslint-comments@4.5.0':
  176. resolution: {integrity: sha512-MAhuTKlr4y/CE3WYX26raZjy+I/kS2PLKSzvfmDCGrBLTFHOYwqROZdr4XwPgXwX3K9rjzMr4pSmUWGnzsUyMg==}
  177. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  178. peerDependencies:
  179. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  180. '@eslint-community/eslint-utils@4.9.0':
  181. resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
  182. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  183. peerDependencies:
  184. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  185. '@eslint-community/regexpp@4.12.1':
  186. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  187. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  188. '@eslint-sukka/eslint-plugin-stylistic@8.0.5':
  189. resolution: {integrity: sha512-92zSv87StXUzsXOj/nTv3WIcQHfLnvXwk7q7oneWub9TnwvukgnMOw8dDJo2qHVgvY03ZElhbpK0R7rDnBFI6g==}
  190. peerDependencies:
  191. eslint: '*'
  192. '@eslint-sukka/eslint-plugin-sukka-full@8.0.5':
  193. resolution: {integrity: sha512-FiE/1pf4tJIrImfKFamNqstJ/jNG0Vplyzhsbx2MtQ/SLUp9zC5jAjOWt/oDEumJLGeBuzdhojNuYQZM8+RySg==}
  194. peerDependencies:
  195. eslint: '*'
  196. typescript: '*'
  197. peerDependenciesMeta:
  198. typescript:
  199. optional: true
  200. '@eslint-sukka/node@8.0.5':
  201. resolution: {integrity: sha512-noQyhB/BEW79W3XZaO3u8rrlmzHeYEnI9yUExFU2FzTe2GmfoMAlo2jriA5Pq3EAvplJKSI/QRi+l53YaS8j8A==}
  202. '@eslint-sukka/shared@8.0.5':
  203. resolution: {integrity: sha512-fuz4lwHzQejHY77+tVkgcobvEg4NdxvHpRREo3OzxeJTJeotf5OE4xGVDa3lo6iccdrT8b2NymzQrAEnwJXRiA==}
  204. '@eslint/config-array@0.21.1':
  205. resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
  206. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  207. '@eslint/config-helpers@0.4.2':
  208. resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
  209. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  210. '@eslint/config-helpers@0.5.0':
  211. resolution: {integrity: sha512-OCt2pY98qw68AXjNDGn+9q3vnqvBh4OFTZWmzaWH2thEpAugBZCBDRMHZa7oGsX+/ZybKOiKjJ6XX1E8hxcxGg==}
  212. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  213. '@eslint/core@0.17.0':
  214. resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
  215. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  216. '@eslint/core@1.0.0':
  217. resolution: {integrity: sha512-PRfWP+8FOldvbApr6xL7mNCw4cJcSTq4GA7tYbgq15mRb0kWKO/wEB2jr+uwjFH3sZvEZneZyCUGTxsv4Sahyw==}
  218. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  219. '@eslint/eslintrc@3.3.1':
  220. resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
  221. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  222. '@eslint/js@9.39.2':
  223. resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
  224. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  225. '@eslint/object-schema@2.1.7':
  226. resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
  227. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  228. '@eslint/plugin-kit@0.4.1':
  229. resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
  230. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  231. '@ghostery/adblocker-content@2.13.0':
  232. resolution: {integrity: sha512-6WZrVReCZtF0XvR2T2jK9QAccneFe+HLKhjogRa0ud+Ys7rGwwRZYLOUy3MlVEhJLTeLfA9FLc+bt4K6QovXSQ==}
  233. '@ghostery/adblocker-extended-selectors@2.13.0':
  234. resolution: {integrity: sha512-YfBQHF9fiBt8CKWb727b/T4qLrYEWXS4E8GSPS8OqeBEvRh6f09oHGZJ0lW3F6sPbEwVjHr2JuLoFJDUciX6bA==}
  235. '@ghostery/adblocker@2.13.0':
  236. resolution: {integrity: sha512-mxape1ivliSPgpzESMVipdC9UZNfuEvypoiJBW0wR+AxMCgJY8Zh5M/1UBXe+y9TvNkvJCU2T/zsF9y2R3pHXA==}
  237. '@ghostery/url-parser@1.3.0':
  238. resolution: {integrity: sha512-FEzdSeiva0Mt3bR4xePFzthhjT4IzvA5QTvS1xXkNyLpMGeq40mb3V2fSs0ZItRaP9IybZthDfHUSbQ1HLdx4Q==}
  239. '@henrygd/queue@1.2.0':
  240. resolution: {integrity: sha512-jW/BLSTpcvExDhqJGxtIPgGr2O0IFF8XUNDwEbfCfhrXT8a4xztQ9Lv6U/vbYzYC0xVWn+3zv6YnLUh3bEFUKA==}
  241. '@humanfs/core@0.19.1':
  242. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  243. engines: {node: '>=18.18.0'}
  244. '@humanfs/node@0.16.6':
  245. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  246. engines: {node: '>=18.18.0'}
  247. '@humanwhocodes/module-importer@1.0.1':
  248. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  249. engines: {node: '>=12.22'}
  250. '@humanwhocodes/retry@0.3.1':
  251. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  252. engines: {node: '>=18.18'}
  253. '@humanwhocodes/retry@0.4.3':
  254. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  255. engines: {node: '>=18.18'}
  256. '@isaacs/balanced-match@4.0.1':
  257. resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
  258. engines: {node: 20 || >=22}
  259. '@isaacs/brace-expansion@5.0.0':
  260. resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
  261. engines: {node: 20 || >=22}
  262. '@isaacs/cliui@8.0.2':
  263. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  264. engines: {node: '>=12'}
  265. '@jest/diff-sequences@30.0.1':
  266. resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
  267. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  268. '@jest/expect-utils@30.2.0':
  269. resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==}
  270. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  271. '@jest/get-type@30.1.0':
  272. resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
  273. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  274. '@jest/pattern@30.0.1':
  275. resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
  276. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  277. '@jest/schemas@30.0.5':
  278. resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
  279. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  280. '@jest/types@30.2.0':
  281. resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
  282. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  283. '@mitata/counters@0.0.8':
  284. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  285. '@napi-rs/wasm-runtime@0.2.12':
  286. resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
  287. '@napi-rs/wasm-runtime@1.0.7':
  288. resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
  289. '@node-rs/crc32-android-arm-eabi@1.10.6':
  290. resolution: {integrity: sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==}
  291. engines: {node: '>= 10'}
  292. cpu: [arm]
  293. os: [android]
  294. '@node-rs/crc32-android-arm64@1.10.6':
  295. resolution: {integrity: sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==}
  296. engines: {node: '>= 10'}
  297. cpu: [arm64]
  298. os: [android]
  299. '@node-rs/crc32-darwin-arm64@1.10.6':
  300. resolution: {integrity: sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==}
  301. engines: {node: '>= 10'}
  302. cpu: [arm64]
  303. os: [darwin]
  304. '@node-rs/crc32-darwin-x64@1.10.6':
  305. resolution: {integrity: sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==}
  306. engines: {node: '>= 10'}
  307. cpu: [x64]
  308. os: [darwin]
  309. '@node-rs/crc32-freebsd-x64@1.10.6':
  310. resolution: {integrity: sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==}
  311. engines: {node: '>= 10'}
  312. cpu: [x64]
  313. os: [freebsd]
  314. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  315. resolution: {integrity: sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==}
  316. engines: {node: '>= 10'}
  317. cpu: [arm]
  318. os: [linux]
  319. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  320. resolution: {integrity: sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==}
  321. engines: {node: '>= 10'}
  322. cpu: [arm64]
  323. os: [linux]
  324. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  325. resolution: {integrity: sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==}
  326. engines: {node: '>= 10'}
  327. cpu: [arm64]
  328. os: [linux]
  329. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  330. resolution: {integrity: sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==}
  331. engines: {node: '>= 10'}
  332. cpu: [x64]
  333. os: [linux]
  334. '@node-rs/crc32-linux-x64-musl@1.10.6':
  335. resolution: {integrity: sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==}
  336. engines: {node: '>= 10'}
  337. cpu: [x64]
  338. os: [linux]
  339. '@node-rs/crc32-wasm32-wasi@1.10.6':
  340. resolution: {integrity: sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==}
  341. engines: {node: '>=14.0.0'}
  342. cpu: [wasm32]
  343. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  344. resolution: {integrity: sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==}
  345. engines: {node: '>= 10'}
  346. cpu: [arm64]
  347. os: [win32]
  348. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  349. resolution: {integrity: sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==}
  350. engines: {node: '>= 10'}
  351. cpu: [ia32]
  352. os: [win32]
  353. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  354. resolution: {integrity: sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==}
  355. engines: {node: '>= 10'}
  356. cpu: [x64]
  357. os: [win32]
  358. '@node-rs/crc32@1.10.6':
  359. resolution: {integrity: sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==}
  360. engines: {node: '>= 10'}
  361. '@nolyfill/globalthis@1.0.44':
  362. resolution: {integrity: sha512-PXEAAubKN6zy9AVSrjzYdEaOaPdoFTMxuiDyc2BYGgrvFQ+NiqZD4Q4JHuR9tPKQyZifQ3MnG8SA/8f21+FIrQ==}
  363. engines: {node: '>=12.4.0'}
  364. '@nolyfill/safe-buffer@1.0.44':
  365. resolution: {integrity: sha512-SqlKXtlhNTDMeZKey9jnnuPhi8YTl1lJuEcY9zbm5i4Pqe79UJJ8IJ9oiD6DhgI8KjYc+HtLzpQJNRdNYqb/hw==}
  366. engines: {node: '>=12.4.0'}
  367. '@nolyfill/shared@1.0.44':
  368. resolution: {integrity: sha512-NI1zxDh4LYL7PYlKKCwojjuc5CEZslywrOTKBNyodjmWjRiZ4AlCMs3Gp+zDoPQPNkYCSQp/luNojHmJWWfCbw==}
  369. '@oxc-resolver/binding-android-arm-eabi@11.13.2':
  370. resolution: {integrity: sha512-vWd1NEaclg/t2DtEmYzRRBNQOueMI8tixw/fSNZ9XETXLRJiAjQMYpYeflQdRASloGze6ZelHE/wIBNt4S+pkw==}
  371. cpu: [arm]
  372. os: [android]
  373. '@oxc-resolver/binding-android-arm64@11.13.2':
  374. resolution: {integrity: sha512-jxZrYcxgpI6IuQpguQVAQNrZfUyiYfMVqR4pKVU3PRLCM7AsfXNKp0TIgcvp+l6dYVdoZ1MMMMa5Ayjd09rNOw==}
  375. cpu: [arm64]
  376. os: [android]
  377. '@oxc-resolver/binding-darwin-arm64@11.13.2':
  378. resolution: {integrity: sha512-RDS3HUe1FvgjNS1xfBUqiEJ8938Zb5r7iKABwxEblp3K4ufZZNAtoaHjdUH2TJ0THDmuf0OxxVUO/Y+4Ep4QfQ==}
  379. cpu: [arm64]
  380. os: [darwin]
  381. '@oxc-resolver/binding-darwin-x64@11.13.2':
  382. resolution: {integrity: sha512-tDcyWtkUzkt6auJLP2dOjL84BxqHkKW4mz2lNRIGPTq7b+HBraB+m8RdRH6BgqTvbnNECOxR3XAMaKBKC8J51g==}
  383. cpu: [x64]
  384. os: [darwin]
  385. '@oxc-resolver/binding-freebsd-x64@11.13.2':
  386. resolution: {integrity: sha512-fpaeN8Q0kWvKns9uSMg6CcKo7cdgmWt6J91stPf8sdM+EKXzZ0YcRnWWyWF8SM16QcLUPCy5Iwt5Z8aYBGaZYA==}
  387. cpu: [x64]
  388. os: [freebsd]
  389. '@oxc-resolver/binding-linux-arm-gnueabihf@11.13.2':
  390. resolution: {integrity: sha512-idBgJU5AvSsGOeaIWiFBKbNBjpuduHsJmrG4CBbEUNW/Ykx+ISzcuj1PHayiYX6R9stVsRhj3d2PyymfC5KWRg==}
  391. cpu: [arm]
  392. os: [linux]
  393. '@oxc-resolver/binding-linux-arm-musleabihf@11.13.2':
  394. resolution: {integrity: sha512-BlBvQUhvvIM/7s96KlKhMk0duR2sj8T7Hyii46/5QnwfN/pHwobvOL5czZ6/SKrHNB/F/qDY4hGsBuB1y7xgTg==}
  395. cpu: [arm]
  396. os: [linux]
  397. '@oxc-resolver/binding-linux-arm64-gnu@11.13.2':
  398. resolution: {integrity: sha512-lUmDTmYOGpbIK+FBfZ0ySaQTo7g1Ia/WnDnQR2wi/0AtehZIg/ZZIgiT/fD0iRvKEKma612/0PVo8dXdAKaAGA==}
  399. cpu: [arm64]
  400. os: [linux]
  401. '@oxc-resolver/binding-linux-arm64-musl@11.13.2':
  402. resolution: {integrity: sha512-dkGzOxo+I9lA4Er6qzFgkFevl3JvwyI9i0T/PkOJHva04rb1p9dz8GPogTO9uMK4lrwLWzm/piAu+tHYC7v7+w==}
  403. cpu: [arm64]
  404. os: [linux]
  405. '@oxc-resolver/binding-linux-ppc64-gnu@11.13.2':
  406. resolution: {integrity: sha512-53kWsjLkVFnoSA7COdps38pBssN48zI8LfsOvupsmQ0/4VeMYb+0Ao9O6r52PtmFZsGB3S1Qjqbjl/Pswj1a3g==}
  407. cpu: [ppc64]
  408. os: [linux]
  409. '@oxc-resolver/binding-linux-riscv64-gnu@11.13.2':
  410. resolution: {integrity: sha512-MfxN6DMpvmdCbGlheJ+ihy11oTcipqDfcEIQV9ah3FGXBRCZtBOHJpQDk8qI2Y+nCXVr3Nln7OSsOzoC4+rSYQ==}
  411. cpu: [riscv64]
  412. os: [linux]
  413. '@oxc-resolver/binding-linux-riscv64-musl@11.13.2':
  414. resolution: {integrity: sha512-WXrm4YiRU0ijqb72WHSjmfYaQZ7t6/kkQrFc4JtU+pUE4DZA/DEdxOuQEd4Q43VqmLvICTJWSaZMlCGQ4PSRUg==}
  415. cpu: [riscv64]
  416. os: [linux]
  417. '@oxc-resolver/binding-linux-s390x-gnu@11.13.2':
  418. resolution: {integrity: sha512-4pISWIlOFRUhWyvGCB3XUhtcwyvwGGhlXhHz7IXCXuGufaQtvR05trvw8U1ZnaPhsdPBkRhOMIedX11ayi5uXw==}
  419. cpu: [s390x]
  420. os: [linux]
  421. '@oxc-resolver/binding-linux-x64-gnu@11.13.2':
  422. resolution: {integrity: sha512-DVo6jS8n73yNAmCsUOOk2vBeC60j2RauDXQM8p7RDl0afsEaA2le22vD8tky7iNoM5tsxfBmE4sOJXEKgpwWRw==}
  423. cpu: [x64]
  424. os: [linux]
  425. '@oxc-resolver/binding-linux-x64-musl@11.13.2':
  426. resolution: {integrity: sha512-6WqrE+hQBFP35KdwQjWcZpldbTq6yJmuTVThISu+rY3+j6MaDp2ciLHTr1X68r2H/7ocOIl4k3NnOVIzeRJE3w==}
  427. cpu: [x64]
  428. os: [linux]
  429. '@oxc-resolver/binding-wasm32-wasi@11.13.2':
  430. resolution: {integrity: sha512-YpxvQmP2D+mNUkLQZbBjGz20g/pY8XoOBdPPoWMl9X68liFFjXxkPQTrZxWw4zzG/UkTM5z6dPRTyTePRsMcjw==}
  431. engines: {node: '>=14.0.0'}
  432. cpu: [wasm32]
  433. '@oxc-resolver/binding-win32-arm64-msvc@11.13.2':
  434. resolution: {integrity: sha512-1SKBw6KcCmvPBdEw1/Qdpv6eSDf23lCXTWz9VxTe6QUQ/1wR+HZR2uS4q6C8W6jnIswMTQbxpTvVwdRXl+ufeA==}
  435. cpu: [arm64]
  436. os: [win32]
  437. '@oxc-resolver/binding-win32-ia32-msvc@11.13.2':
  438. resolution: {integrity: sha512-KEVV7wggDucxRn3vvyHnmTCPXoCT7vWpH18UVLTygibHJvNRP2zl5lBaQcCIdIaYYZjKt1aGI/yZqxZvHoiCdg==}
  439. cpu: [ia32]
  440. os: [win32]
  441. '@oxc-resolver/binding-win32-x64-msvc@11.13.2':
  442. resolution: {integrity: sha512-6AAdN9v/wO5c3td1yidgNLKYlzuNgfOtEqBq60WE469bJWR7gHgG/S5aLR2pH6/gyPLs9UXtItxi934D+0Estg==}
  443. cpu: [x64]
  444. os: [win32]
  445. '@package-json/types@0.0.12':
  446. resolution: {integrity: sha512-uu43FGU34B5VM9mCNjXCwLaGHYjXdNincqKLaraaCW+7S2+SmiBg1Nv8bPnmschrIfZmfKNY9f3fC376MRrObw==}
  447. '@pkgjs/parseargs@0.11.0':
  448. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  449. engines: {node: '>=14'}
  450. '@pkgr/core@0.2.9':
  451. resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
  452. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  453. '@remusao/guess-url-type@2.1.0':
  454. resolution: {integrity: sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==}
  455. '@remusao/small@2.1.0':
  456. resolution: {integrity: sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==}
  457. '@remusao/smaz-compress@2.2.0':
  458. resolution: {integrity: sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==}
  459. '@remusao/smaz-decompress@2.2.0':
  460. resolution: {integrity: sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==}
  461. '@remusao/smaz@2.2.0':
  462. resolution: {integrity: sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==}
  463. '@remusao/trie@2.1.0':
  464. resolution: {integrity: sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==}
  465. '@sinclair/typebox@0.34.40':
  466. resolution: {integrity: sha512-gwBNIP8ZAYev/ORDWW0QvxdwPXwxBtLsdsJgSc7eDIRt8ubP+rxUBzPsrwnu16fgEF8Bx4lh/+mvQvJzcTM6Kw==}
  467. '@swc-node/core@1.14.1':
  468. resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==}
  469. engines: {node: '>= 10'}
  470. peerDependencies:
  471. '@swc/core': '>= 1.13.3'
  472. '@swc/types': '>= 0.1'
  473. '@swc-node/register@1.11.1':
  474. resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==}
  475. peerDependencies:
  476. '@swc/core': '>= 1.4.13'
  477. typescript: '>= 4.3'
  478. '@swc-node/sourcemap-support@0.6.1':
  479. resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==}
  480. '@swc/core-darwin-arm64@1.13.5':
  481. resolution: {integrity: sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ==}
  482. engines: {node: '>=10'}
  483. cpu: [arm64]
  484. os: [darwin]
  485. '@swc/core-darwin-x64@1.13.5':
  486. resolution: {integrity: sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng==}
  487. engines: {node: '>=10'}
  488. cpu: [x64]
  489. os: [darwin]
  490. '@swc/core-linux-arm-gnueabihf@1.13.5':
  491. resolution: {integrity: sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ==}
  492. engines: {node: '>=10'}
  493. cpu: [arm]
  494. os: [linux]
  495. '@swc/core-linux-arm64-gnu@1.13.5':
  496. resolution: {integrity: sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw==}
  497. engines: {node: '>=10'}
  498. cpu: [arm64]
  499. os: [linux]
  500. '@swc/core-linux-arm64-musl@1.13.5':
  501. resolution: {integrity: sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ==}
  502. engines: {node: '>=10'}
  503. cpu: [arm64]
  504. os: [linux]
  505. '@swc/core-linux-x64-gnu@1.13.5':
  506. resolution: {integrity: sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA==}
  507. engines: {node: '>=10'}
  508. cpu: [x64]
  509. os: [linux]
  510. '@swc/core-linux-x64-musl@1.13.5':
  511. resolution: {integrity: sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q==}
  512. engines: {node: '>=10'}
  513. cpu: [x64]
  514. os: [linux]
  515. '@swc/core-win32-arm64-msvc@1.13.5':
  516. resolution: {integrity: sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw==}
  517. engines: {node: '>=10'}
  518. cpu: [arm64]
  519. os: [win32]
  520. '@swc/core-win32-ia32-msvc@1.13.5':
  521. resolution: {integrity: sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw==}
  522. engines: {node: '>=10'}
  523. cpu: [ia32]
  524. os: [win32]
  525. '@swc/core-win32-x64-msvc@1.13.5':
  526. resolution: {integrity: sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q==}
  527. engines: {node: '>=10'}
  528. cpu: [x64]
  529. os: [win32]
  530. '@swc/core@1.13.5':
  531. resolution: {integrity: sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ==}
  532. engines: {node: '>=10'}
  533. peerDependencies:
  534. '@swc/helpers': '>=0.5.17'
  535. peerDependenciesMeta:
  536. '@swc/helpers':
  537. optional: true
  538. '@swc/counter@0.1.3':
  539. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  540. '@swc/types@0.1.25':
  541. resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
  542. '@tybys/wasm-util@0.10.1':
  543. resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
  544. '@types/better-sqlite3@7.6.13':
  545. resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
  546. '@types/cli-progress@3.11.6':
  547. resolution: {integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==}
  548. '@types/dns2@2.0.10':
  549. resolution: {integrity: sha512-3ezTiJfY6/VlXnvEOVSSbWpFbxtS3zXi0f2mccV6tI7wT+BIvTgLZhEUVHpiE1ycLKMqJyXndmkKw42nX49MQA==}
  550. '@types/estree@1.0.8':
  551. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  552. '@types/istanbul-lib-coverage@2.0.6':
  553. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  554. '@types/istanbul-lib-report@3.0.3':
  555. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  556. '@types/istanbul-reports@3.0.4':
  557. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  558. '@types/json-schema@7.0.15':
  559. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  560. '@types/mocha@10.0.10':
  561. resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
  562. '@types/node@24.10.3':
  563. resolution: {integrity: sha512-gqkrWUsS8hcm0r44yn7/xZeV1ERva/nLgrLxFRUGb7aoNMIJfZJ3AC261zDQuOAKC7MiXai1WCpYc48jAHoShQ==}
  564. '@types/stack-utils@2.0.3':
  565. resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
  566. '@types/tar-fs@2.0.4':
  567. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  568. '@types/tar-stream@3.1.4':
  569. resolution: {integrity: sha512-921gW0+g29mCJX0fRvqeHzBlE/XclDaAG0Ousy1LCghsOhvaKacDeRGEVzQP9IPfKn8Vysy7FEXAIxycpc/CMg==}
  570. '@types/yargs-parser@21.0.3':
  571. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  572. '@types/yargs@17.0.33':
  573. resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
  574. '@types/yauzl-promise@4.0.1':
  575. resolution: {integrity: sha512-qYEC3rJwqiJpdQ9b+bPNeuSY0c3JUM8vIuDy08qfuVN7xHm3ZDsHn2kGphUIB0ruEXrPGNXZ64nMUcu4fDjViQ==}
  576. '@typescript-eslint/eslint-plugin@8.49.0':
  577. resolution: {integrity: sha512-JXij0vzIaTtCwu6SxTh8qBc66kmf1xs7pI4UOiMDFVct6q86G0Zs7KRcEoJgY3Cav3x5Tq0MF5jwgpgLqgKG3A==}
  578. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  579. peerDependencies:
  580. '@typescript-eslint/parser': ^8.49.0
  581. eslint: ^8.57.0 || ^9.0.0
  582. typescript: '>=4.8.4 <6.0.0'
  583. '@typescript-eslint/parser@8.49.0':
  584. resolution: {integrity: sha512-N9lBGA9o9aqb1hVMc9hzySbhKibHmB+N3IpoShyV6HyQYRGIhlrO5rQgttypi+yEeKsKI4idxC8Jw6gXKD4THA==}
  585. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  586. peerDependencies:
  587. eslint: ^8.57.0 || ^9.0.0
  588. typescript: '>=4.8.4 <6.0.0'
  589. '@typescript-eslint/project-service@8.49.0':
  590. resolution: {integrity: sha512-/wJN0/DKkmRUMXjZUXYZpD1NEQzQAAn9QWfGwo+Ai8gnzqH7tvqS7oNVdTjKqOcPyVIdZdyCMoqN66Ia789e7g==}
  591. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  592. peerDependencies:
  593. typescript: '>=4.8.4 <6.0.0'
  594. '@typescript-eslint/scope-manager@8.49.0':
  595. resolution: {integrity: sha512-npgS3zi+/30KSOkXNs0LQXtsg9ekZ8OISAOLGWA/ZOEn0ZH74Ginfl7foziV8DT+D98WfQ5Kopwqb/PZOaIJGg==}
  596. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  597. '@typescript-eslint/tsconfig-utils@8.49.0':
  598. resolution: {integrity: sha512-8prixNi1/6nawsRYxet4YOhnbW+W9FK/bQPxsGB1D3ZrDzbJ5FXw5XmzxZv82X3B+ZccuSxo/X8q9nQ+mFecWA==}
  599. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  600. peerDependencies:
  601. typescript: '>=4.8.4 <6.0.0'
  602. '@typescript-eslint/type-utils@8.49.0':
  603. resolution: {integrity: sha512-KTExJfQ+svY8I10P4HdxKzWsvtVnsuCifU5MvXrRwoP2KOlNZ9ADNEWWsQTJgMxLzS5VLQKDjkCT/YzgsnqmZg==}
  604. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  605. peerDependencies:
  606. eslint: ^8.57.0 || ^9.0.0
  607. typescript: '>=4.8.4 <6.0.0'
  608. '@typescript-eslint/types@8.49.0':
  609. resolution: {integrity: sha512-e9k/fneezorUo6WShlQpMxXh8/8wfyc+biu6tnAqA81oWrEic0k21RHzP9uqqpyBBeBKu4T+Bsjy9/b8u7obXQ==}
  610. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  611. '@typescript-eslint/typescript-estree@8.49.0':
  612. resolution: {integrity: sha512-jrLdRuAbPfPIdYNppHJ/D0wN+wwNfJ32YTAm10eJVsFmrVpXQnDWBn8niCSMlWjvml8jsce5E/O+86IQtTbJWA==}
  613. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  614. peerDependencies:
  615. typescript: '>=4.8.4 <6.0.0'
  616. '@typescript-eslint/utils@8.49.0':
  617. resolution: {integrity: sha512-N3W7rJw7Rw+z1tRsHZbK395TWSYvufBXumYtEGzypgMUthlg0/hmCImeA8hgO2d2G4pd7ftpxxul2J8OdtdaFA==}
  618. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  619. peerDependencies:
  620. eslint: ^8.57.0 || ^9.0.0
  621. typescript: '>=4.8.4 <6.0.0'
  622. '@typescript-eslint/visitor-keys@8.49.0':
  623. resolution: {integrity: sha512-LlKaciDe3GmZFphXIc79THF/YYBugZ7FS1pO581E/edlVVNbZKDy93evqmrfQ9/Y4uN0vVhX4iuchq26mK/iiA==}
  624. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  625. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  626. resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
  627. cpu: [arm]
  628. os: [android]
  629. '@unrs/resolver-binding-android-arm64@1.11.1':
  630. resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
  631. cpu: [arm64]
  632. os: [android]
  633. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  634. resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
  635. cpu: [arm64]
  636. os: [darwin]
  637. '@unrs/resolver-binding-darwin-x64@1.11.1':
  638. resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
  639. cpu: [x64]
  640. os: [darwin]
  641. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  642. resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
  643. cpu: [x64]
  644. os: [freebsd]
  645. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  646. resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
  647. cpu: [arm]
  648. os: [linux]
  649. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  650. resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
  651. cpu: [arm]
  652. os: [linux]
  653. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  654. resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
  655. cpu: [arm64]
  656. os: [linux]
  657. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  658. resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
  659. cpu: [arm64]
  660. os: [linux]
  661. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  662. resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
  663. cpu: [ppc64]
  664. os: [linux]
  665. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  666. resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
  667. cpu: [riscv64]
  668. os: [linux]
  669. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  670. resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
  671. cpu: [riscv64]
  672. os: [linux]
  673. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  674. resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
  675. cpu: [s390x]
  676. os: [linux]
  677. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  678. resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
  679. cpu: [x64]
  680. os: [linux]
  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. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  686. resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
  687. engines: {node: '>=14.0.0'}
  688. cpu: [wasm32]
  689. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  690. resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
  691. cpu: [arm64]
  692. os: [win32]
  693. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  694. resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
  695. cpu: [ia32]
  696. os: [win32]
  697. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  698. resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
  699. cpu: [x64]
  700. os: [win32]
  701. acorn-jsx@5.3.2:
  702. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  703. peerDependencies:
  704. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  705. acorn@8.15.0:
  706. resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
  707. engines: {node: '>=0.4.0'}
  708. hasBin: true
  709. ajv@6.12.6:
  710. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  711. ansi-regex@5.0.1:
  712. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  713. engines: {node: '>=8'}
  714. ansi-regex@6.2.0:
  715. resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
  716. engines: {node: '>=12'}
  717. ansi-styles@4.3.0:
  718. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  719. engines: {node: '>=8'}
  720. ansi-styles@5.2.0:
  721. resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
  722. engines: {node: '>=10'}
  723. ansi-styles@6.2.1:
  724. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  725. engines: {node: '>=12'}
  726. argparse@2.0.1:
  727. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  728. array-timsort@1.0.3:
  729. resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
  730. async-mutex@0.3.2:
  731. resolution: {integrity: sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==}
  732. b4a@1.6.7:
  733. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  734. balanced-match@1.0.2:
  735. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  736. bare-events@2.6.1:
  737. resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
  738. bare-fs@4.2.1:
  739. resolution: {integrity: sha512-mELROzV0IhqilFgsl1gyp48pnZsaV9xhQapHLDsvn4d4ZTfbFhcghQezl7FTEDNBcGqLUnNI3lUlm6ecrLWdFA==}
  740. engines: {bare: '>=1.16.0'}
  741. peerDependencies:
  742. bare-buffer: '*'
  743. peerDependenciesMeta:
  744. bare-buffer:
  745. optional: true
  746. bare-os@3.6.2:
  747. resolution: {integrity: sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==}
  748. engines: {bare: '>=1.14.0'}
  749. bare-path@3.0.0:
  750. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  751. bare-stream@2.7.0:
  752. resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==}
  753. peerDependencies:
  754. bare-buffer: '*'
  755. bare-events: '*'
  756. peerDependenciesMeta:
  757. bare-buffer:
  758. optional: true
  759. bare-events:
  760. optional: true
  761. base64-js@1.5.1:
  762. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  763. better-sqlite3@11.10.0:
  764. resolution: {integrity: sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ==}
  765. better-sqlite3@12.5.0:
  766. resolution: {integrity: sha512-WwCZ/5Diz7rsF29o27o0Gcc1Du+l7Zsv7SYtVPG0X3G/uUI1LqdxrQI7c9Hs2FWpqXXERjW9hp6g3/tH7DlVKg==}
  767. engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x}
  768. big-integer@1.6.52:
  769. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  770. engines: {node: '>=0.6'}
  771. bindings@1.5.0:
  772. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  773. bl@4.1.0:
  774. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  775. brace-expansion@1.1.12:
  776. resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
  777. brace-expansion@2.0.2:
  778. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  779. braces@3.0.3:
  780. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  781. engines: {node: '>=8'}
  782. browser-stdout@1.3.1:
  783. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  784. buffer-from@1.1.2:
  785. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  786. buffer@5.7.1:
  787. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  788. buffer@6.0.3:
  789. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  790. bufferutil@4.0.9:
  791. resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
  792. engines: {node: '>=6.14.2'}
  793. callsites@3.1.0:
  794. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  795. engines: {node: '>=6'}
  796. camelcase@6.3.0:
  797. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  798. engines: {node: '>=10'}
  799. chalk@4.1.2:
  800. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  801. engines: {node: '>=10'}
  802. chokidar@4.0.3:
  803. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  804. engines: {node: '>= 14.16.0'}
  805. chownr@1.1.4:
  806. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  807. ci-info@4.3.1:
  808. resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
  809. engines: {node: '>=8'}
  810. cli-progress@3.12.0:
  811. resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
  812. engines: {node: '>=4'}
  813. cliui@8.0.1:
  814. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  815. engines: {node: '>=12'}
  816. color-convert@2.0.1:
  817. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  818. engines: {node: '>=7.0.0'}
  819. color-name@1.1.4:
  820. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  821. colorette@2.0.20:
  822. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  823. comment-json@4.4.1:
  824. resolution: {integrity: sha512-r1To31BQD5060QdkC+Iheai7gHwoSZobzunqkf2/kQ6xIAfJyrKNAFUwdKvkK7Qgu7pVTKQEa7ok7Ed3ycAJgg==}
  825. engines: {node: '>= 6'}
  826. comment-parser@1.4.1:
  827. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  828. engines: {node: '>= 12.0.0'}
  829. concat-map@0.0.1:
  830. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  831. core-util-is@1.0.3:
  832. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  833. cross-spawn@7.0.6:
  834. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  835. engines: {node: '>= 8'}
  836. csv-parse@6.1.0:
  837. resolution: {integrity: sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw==}
  838. d@1.0.2:
  839. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  840. engines: {node: '>=0.12'}
  841. debug@2.6.9:
  842. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  843. peerDependencies:
  844. supports-color: '*'
  845. peerDependenciesMeta:
  846. supports-color:
  847. optional: true
  848. debug@3.2.7:
  849. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  850. peerDependencies:
  851. supports-color: '*'
  852. peerDependenciesMeta:
  853. supports-color:
  854. optional: true
  855. debug@4.4.1:
  856. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  857. engines: {node: '>=6.0'}
  858. peerDependencies:
  859. supports-color: '*'
  860. peerDependenciesMeta:
  861. supports-color:
  862. optional: true
  863. debug@4.4.3:
  864. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  865. engines: {node: '>=6.0'}
  866. peerDependencies:
  867. supports-color: '*'
  868. peerDependenciesMeta:
  869. supports-color:
  870. optional: true
  871. decamelize@4.0.0:
  872. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  873. engines: {node: '>=10'}
  874. decompress-response@6.0.0:
  875. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  876. engines: {node: '>=10'}
  877. deep-extend@0.6.0:
  878. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  879. engines: {node: '>=4.0.0'}
  880. deep-is@0.1.4:
  881. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  882. defu@6.1.4:
  883. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  884. detect-libc@2.0.4:
  885. resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
  886. engines: {node: '>=8'}
  887. diff-sequences@27.5.1:
  888. resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
  889. engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
  890. diff@7.0.0:
  891. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  892. engines: {node: '>=0.3.1'}
  893. dns2@https://codeload.github.com/lsongdev/node-dns/tar.gz/3adb7e91b3101c0e4f43ebaca3a568269ea04d11:
  894. resolution: {tarball: https://codeload.github.com/lsongdev/node-dns/tar.gz/3adb7e91b3101c0e4f43ebaca3a568269ea04d11}
  895. version: 2.1.0
  896. dns2@https://codeload.github.com/lsongdev/node-dns/tar.gz/e4fa035aca0b8eb730bde3431fbf0c60a31a09c9:
  897. resolution: {tarball: https://codeload.github.com/lsongdev/node-dns/tar.gz/e4fa035aca0b8eb730bde3431fbf0c60a31a09c9}
  898. version: 2.1.0
  899. dom-serializer@1.4.1:
  900. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  901. domain-alive@0.1.11:
  902. resolution: {integrity: sha512-ztcLT4rQQWHRetdfvcTu8eAi0wL9c6uZEpqZS1EsFQc4K0qMOQofNpTLwI4fJXAUvBpOu2IBdyU+yKoHS+wwPA==}
  903. domelementtype@2.3.0:
  904. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  905. domhandler@4.3.1:
  906. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  907. engines: {node: '>= 4'}
  908. domutils@2.8.0:
  909. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  910. eastasianwidth@0.2.0:
  911. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  912. emoji-regex@8.0.0:
  913. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  914. emoji-regex@9.2.2:
  915. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  916. end-of-stream@1.4.5:
  917. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  918. enhanced-resolve@5.18.3:
  919. resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
  920. engines: {node: '>=10.13.0'}
  921. entities@2.2.0:
  922. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  923. es5-ext@0.10.64:
  924. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  925. engines: {node: '>=0.10'}
  926. es6-iterator@2.0.3:
  927. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  928. es6-symbol@3.1.4:
  929. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  930. engines: {node: '>=0.12'}
  931. escalade@3.2.0:
  932. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  933. engines: {node: '>=6'}
  934. escape-string-regexp@2.0.0:
  935. resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
  936. engines: {node: '>=8'}
  937. escape-string-regexp@4.0.0:
  938. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  939. engines: {node: '>=10'}
  940. eslint-compat-utils@0.5.1:
  941. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  942. engines: {node: '>=12'}
  943. peerDependencies:
  944. eslint: '>=6.0.0'
  945. eslint-compat-utils@0.6.5:
  946. resolution: {integrity: sha512-vAUHYzue4YAa2hNACjB8HvUQj5yehAZgiClyFVVom9cP8z5NSFq3PwB/TtJslN2zAMgRX6FCFCjYBbQh71g5RQ==}
  947. engines: {node: '>=12'}
  948. peerDependencies:
  949. eslint: '>=6.0.0'
  950. eslint-config-sukka@8.0.5:
  951. resolution: {integrity: sha512-++zRNmlwlpsdbEqNK7FfWz1kupF0+tdj+UCTIlb3hKWirVmrVsrt3WdfxwPQuyxlT3N2pRt/jp/ysISemOntcA==}
  952. eslint-formatter-sukka@8.0.5:
  953. resolution: {integrity: sha512-BfLNU1sXTLAt9fgJU2AH4tFx+sxVbW3t+eTxf21ZkblBvUDAuddn5D6VDmErwSgTya4Khu1g1ug0Lv5r9hqs1A==}
  954. peerDependencies:
  955. eslint: '*'
  956. eslint-import-context@0.1.9:
  957. resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
  958. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  959. peerDependencies:
  960. unrs-resolver: ^1.0.0
  961. peerDependenciesMeta:
  962. unrs-resolver:
  963. optional: true
  964. eslint-import-resolver-node@0.3.9:
  965. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  966. eslint-import-resolver-typescript@4.4.4:
  967. resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==}
  968. engines: {node: ^16.17.0 || >=18.6.0}
  969. peerDependencies:
  970. eslint: '*'
  971. eslint-plugin-import: '*'
  972. eslint-plugin-import-x: '*'
  973. peerDependenciesMeta:
  974. eslint-plugin-import:
  975. optional: true
  976. eslint-plugin-import-x:
  977. optional: true
  978. eslint-json-compat-utils@0.2.1:
  979. resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
  980. engines: {node: '>=12'}
  981. peerDependencies:
  982. '@eslint/json': '*'
  983. eslint: '*'
  984. jsonc-eslint-parser: ^2.4.0
  985. peerDependenciesMeta:
  986. '@eslint/json':
  987. optional: true
  988. eslint-plugin-autofix@2.2.0:
  989. resolution: {integrity: sha512-lu8+0r+utyTroROqXIL+a8sUpICi6za22hIzlpb0+x0tQGRnOjhOKU7v8mC/NS/faDoVsw6xW3vUpc+Mcz5NWA==}
  990. engines: {node: '>=18'}
  991. peerDependencies:
  992. eslint: '>=8'
  993. eslint-plugin-es-x@7.8.0:
  994. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  995. engines: {node: ^14.18.0 || >=16.0.0}
  996. peerDependencies:
  997. eslint: '>=8'
  998. eslint-plugin-import-x@4.16.1:
  999. resolution: {integrity: sha512-vPZZsiOKaBAIATpFE2uMI4w5IRwdv/FpQ+qZZMR4E+PeOcM4OeoEbqxRMnywdxP19TyB/3h6QBB0EWon7letSQ==}
  1000. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1001. peerDependencies:
  1002. '@typescript-eslint/utils': ^8.0.0
  1003. eslint: ^8.57.0 || ^9.0.0
  1004. eslint-import-resolver-node: '*'
  1005. peerDependenciesMeta:
  1006. '@typescript-eslint/utils':
  1007. optional: true
  1008. eslint-import-resolver-node:
  1009. optional: true
  1010. eslint-plugin-jsonc@2.21.0:
  1011. resolution: {integrity: sha512-HttlxdNG5ly3YjP1cFMP62R4qKLxJURfBZo2gnMY+yQojZxkLyOpY1H1KRTKBmvQeSG9pIpSGEhDjE17vvYosg==}
  1012. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1013. peerDependencies:
  1014. eslint: '>=6.0.0'
  1015. eslint-plugin-n@17.23.1:
  1016. resolution: {integrity: sha512-68PealUpYoHOBh332JLLD9Sj7OQUDkFpmcfqt8R9sySfFSeuGJjMTJQvCRRB96zO3A/PELRLkPrzsHmzEFQQ5A==}
  1017. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1018. peerDependencies:
  1019. eslint: '>=8.23.0'
  1020. eslint-plugin-paths@1.1.0:
  1021. resolution: {integrity: sha512-Ye633sqwSy/GE5dLUI4zpxXoekIyQOD8FyYi2H0YkBws3Q4xjX/ycIzpDWt7BDAlKhbXYGk2BgP9qmNFnEX03w==}
  1022. eslint-plugin-promise@7.2.1:
  1023. resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==}
  1024. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1025. peerDependencies:
  1026. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  1027. eslint-plugin-regexp@2.10.0:
  1028. resolution: {integrity: sha512-ovzQT8ESVn5oOe5a7gIDPD5v9bCSjIFJu57sVPDqgPRXicQzOnYfFN21WoQBQF18vrhT5o7UMKFwJQVVjyJ0ng==}
  1029. engines: {node: ^18 || >=20}
  1030. peerDependencies:
  1031. eslint: '>=8.44.0'
  1032. eslint-plugin-sukka@8.0.5:
  1033. resolution: {integrity: sha512-+Jo3sItmxxMWWxO3BwaF7qRt+p+h1ZqLYq9IfLw+IR6Lwok532/Er+4zTKoDNLLJeRWQvZ7WASb5KC3RbUMs+Q==}
  1034. peerDependencies:
  1035. eslint: '*'
  1036. typescript: '*'
  1037. peerDependenciesMeta:
  1038. typescript:
  1039. optional: true
  1040. eslint-plugin-unused-imports@4.3.0:
  1041. resolution: {integrity: sha512-ZFBmXMGBYfHttdRtOG9nFFpmUvMtbHSjsKrS20vdWdbfiVYsO3yA2SGYy9i9XmZJDfMGBflZGBCm70SEnFQtOA==}
  1042. peerDependencies:
  1043. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  1044. eslint: ^9.0.0 || ^8.0.0
  1045. peerDependenciesMeta:
  1046. '@typescript-eslint/eslint-plugin':
  1047. optional: true
  1048. eslint-rule-composer@0.3.0:
  1049. resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
  1050. engines: {node: '>=4.0.0'}
  1051. eslint-scope@8.4.0:
  1052. resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
  1053. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1054. eslint-visitor-keys@3.4.3:
  1055. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  1056. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1057. eslint-visitor-keys@4.2.1:
  1058. resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
  1059. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1060. eslint@9.39.2:
  1061. resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
  1062. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1063. hasBin: true
  1064. peerDependencies:
  1065. jiti: '*'
  1066. peerDependenciesMeta:
  1067. jiti:
  1068. optional: true
  1069. esniff@2.0.1:
  1070. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  1071. engines: {node: '>=0.10'}
  1072. espree@10.4.0:
  1073. resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
  1074. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1075. espree@9.6.1:
  1076. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  1077. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1078. esprima@4.0.1:
  1079. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  1080. engines: {node: '>=4'}
  1081. hasBin: true
  1082. esquery@1.6.0:
  1083. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  1084. engines: {node: '>=0.10'}
  1085. esrecurse@4.3.0:
  1086. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1087. engines: {node: '>=4.0'}
  1088. estraverse@5.3.0:
  1089. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1090. engines: {node: '>=4.0'}
  1091. esutils@2.0.3:
  1092. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1093. engines: {node: '>=0.10.0'}
  1094. event-emitter@0.3.5:
  1095. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  1096. expand-template@2.0.3:
  1097. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  1098. engines: {node: '>=6'}
  1099. expect@30.2.0:
  1100. resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
  1101. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1102. ext@1.7.0:
  1103. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  1104. fast-cidr-tools@0.3.4:
  1105. resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
  1106. engines: {node: '>=16'}
  1107. fast-deep-equal@3.1.3:
  1108. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1109. fast-escape-html@1.1.0:
  1110. resolution: {integrity: sha512-nRvjfywv8gzIBs0fM/ht6S5scNUamm+o+91p/69cYYNWODb7b/UiQfjFx+6n8NMtdHs6K80kh+hW1dPNS/opIA==}
  1111. fast-escape-regexp@1.0.1:
  1112. resolution: {integrity: sha512-VSnAgWEYHdyyVegVfN/TUCa6hDQ7PIxdIJVWq4RWqyegkG9zFwNb21uykT0hAyvKlKnFR+zOu/25434pHBXtLA==}
  1113. fast-fifo@1.3.2:
  1114. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  1115. fast-json-stable-stringify@2.1.0:
  1116. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1117. fast-levenshtein@2.0.6:
  1118. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1119. fast-uri@3.1.0:
  1120. resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
  1121. fdir@6.5.0:
  1122. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1123. engines: {node: '>=12.0.0'}
  1124. peerDependencies:
  1125. picomatch: ^3 || ^4
  1126. peerDependenciesMeta:
  1127. picomatch:
  1128. optional: true
  1129. file-entry-cache@8.0.0:
  1130. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1131. engines: {node: '>=16.0.0'}
  1132. file-uri-to-path@1.0.0:
  1133. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1134. fill-range@7.1.1:
  1135. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  1136. engines: {node: '>=8'}
  1137. find-up@5.0.0:
  1138. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1139. engines: {node: '>=10'}
  1140. flat-cache@4.0.1:
  1141. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1142. engines: {node: '>=16'}
  1143. flat@5.0.2:
  1144. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1145. hasBin: true
  1146. flatted@3.3.3:
  1147. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1148. foreground-child@3.3.1:
  1149. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1150. engines: {node: '>=14'}
  1151. foxts@3.15.0:
  1152. resolution: {integrity: sha512-XaSnlPKgD23NGdfuUHAX50V9h17bavUEZthg3SBO8ajT3D0pFg6KhYRvKNOlB+t7MpKZ1fj22bUPssH5PY0h4w==}
  1153. foxts@4.6.0:
  1154. resolution: {integrity: sha512-Sq6k7CDUAz1/MOiwRiV59tblzsaWGOQitYxvF/l7H5Z/9gZNBvWKWsRcXLS7T7FLKRKO0LmETiefkVUm5omESg==}
  1155. foxts@5.0.3:
  1156. resolution: {integrity: sha512-7ilTNzTlYZ/54JLj7aTq1JaaSNtUK4S3am/i8flCh+8ZRRA6uwbVIDVc1LZ3LkCFc2aTJgQyNiS9i6htXROqAw==}
  1157. fs-constants@1.0.0:
  1158. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1159. function-bind@1.1.2:
  1160. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1161. get-caller-file@2.0.5:
  1162. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1163. engines: {node: 6.* || 8.* || >= 10.*}
  1164. get-tsconfig@4.12.0:
  1165. resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
  1166. github-from-package@0.0.0:
  1167. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1168. glob-parent@6.0.2:
  1169. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1170. engines: {node: '>=10.13.0'}
  1171. glob@10.4.5:
  1172. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1173. hasBin: true
  1174. globals@14.0.0:
  1175. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  1176. engines: {node: '>=18'}
  1177. globals@15.15.0:
  1178. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  1179. engines: {node: '>=18'}
  1180. globrex@0.1.2:
  1181. resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
  1182. graceful-fs@4.2.11:
  1183. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1184. graphemer@1.4.0:
  1185. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  1186. has-flag@4.0.0:
  1187. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1188. engines: {node: '>=8'}
  1189. hash-wasm@4.12.0:
  1190. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1191. hasown@2.0.2:
  1192. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1193. engines: {node: '>= 0.4'}
  1194. he@1.2.0:
  1195. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1196. hasBin: true
  1197. htmlparser2@6.1.0:
  1198. resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
  1199. ieee754@1.2.1:
  1200. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1201. ignore@5.3.2:
  1202. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1203. engines: {node: '>= 4'}
  1204. ignore@7.0.5:
  1205. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1206. engines: {node: '>= 4'}
  1207. immediato@1.1.0:
  1208. resolution: {integrity: sha512-6DTWQWiM3SyxAbNRDmMvFgZVwVP6wT8ciQv7GivxXejtXZFIcemC0Wlzfd/jEouJ2JroCIp4qZVloKW4BviUpQ==}
  1209. import-fresh@3.3.1:
  1210. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  1211. engines: {node: '>=6'}
  1212. imurmurhash@0.1.4:
  1213. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1214. engines: {node: '>=0.8.19'}
  1215. inherits@2.0.4:
  1216. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1217. ini@1.3.8:
  1218. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1219. ip-address@10.0.1:
  1220. resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
  1221. engines: {node: '>= 12'}
  1222. is-bun-module@2.0.0:
  1223. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1224. is-core-module@2.16.1:
  1225. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  1226. engines: {node: '>= 0.4'}
  1227. is-extglob@2.1.1:
  1228. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1229. engines: {node: '>=0.10.0'}
  1230. is-fullwidth-code-point@3.0.0:
  1231. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1232. engines: {node: '>=8'}
  1233. is-glob@4.0.3:
  1234. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1235. engines: {node: '>=0.10.0'}
  1236. is-it-type@5.1.3:
  1237. resolution: {integrity: sha512-AX2uU0HW+TxagTgQXOJY7+2fbFHemC7YFBwN1XqD8qQMKdtfbOC8OC3fUb4s5NU59a3662Dzwto8tWDdZYRXxg==}
  1238. engines: {node: '>=12'}
  1239. is-number@7.0.0:
  1240. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1241. engines: {node: '>=0.12.0'}
  1242. is-path-inside@3.0.3:
  1243. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1244. engines: {node: '>=8'}
  1245. is-plain-obj@2.1.0:
  1246. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1247. engines: {node: '>=8'}
  1248. is-typedarray@1.0.0:
  1249. resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
  1250. is-unicode-supported@0.1.0:
  1251. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1252. engines: {node: '>=10'}
  1253. isexe@2.0.0:
  1254. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1255. isoconcurrency@1.0.0:
  1256. resolution: {integrity: sha512-YhuPf5V6uOtQQHt9gIkOTbq75ceXqraDvxtZZeS/XbNsre6fmM+WpJgNTSkGX5jB3+gnbwoTVqW1c3qdfyVpOA==}
  1257. isotimer@1.0.0:
  1258. resolution: {integrity: sha512-1p1wborMl9fFbulXx9YBpIqFnfUn/2tN8Ne9g3GLMaiQAPmN/wLlpNOKCNT822div3Sq7LKkApZJ+6JipDUusQ==}
  1259. jackspeak@3.4.3:
  1260. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1261. jest-diff@30.2.0:
  1262. resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
  1263. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1264. jest-matcher-utils@30.2.0:
  1265. resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==}
  1266. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1267. jest-message-util@30.2.0:
  1268. resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==}
  1269. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1270. jest-mock@30.2.0:
  1271. resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==}
  1272. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1273. jest-regex-util@30.0.1:
  1274. resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
  1275. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1276. jest-util@30.2.0:
  1277. resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==}
  1278. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1279. js-tokens@4.0.0:
  1280. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1281. js-yaml@4.1.0:
  1282. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1283. hasBin: true
  1284. jsdoc-type-pratt-parser@4.8.0:
  1285. resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==}
  1286. engines: {node: '>=12.0.0'}
  1287. json-buffer@3.0.1:
  1288. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1289. json-schema-traverse@0.4.1:
  1290. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1291. json-stable-stringify-without-jsonify@1.0.1:
  1292. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1293. json-stringify-pretty-compact@4.0.0:
  1294. resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==}
  1295. jsonc-eslint-parser@2.4.1:
  1296. resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==}
  1297. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1298. keyv@4.5.4:
  1299. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1300. levn@0.4.1:
  1301. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1302. engines: {node: '>= 0.8.0'}
  1303. locate-path@6.0.0:
  1304. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1305. engines: {node: '>=10'}
  1306. lodash.merge@4.6.2:
  1307. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1308. log-symbols@4.1.0:
  1309. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1310. engines: {node: '>=10'}
  1311. lru-cache@10.4.3:
  1312. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1313. micromatch@4.0.8:
  1314. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1315. engines: {node: '>=8.6'}
  1316. mime@3.0.0:
  1317. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1318. engines: {node: '>=10.0.0'}
  1319. hasBin: true
  1320. mimic-response@3.1.0:
  1321. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1322. engines: {node: '>=10'}
  1323. minimatch@10.0.3:
  1324. resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
  1325. engines: {node: 20 || >=22}
  1326. minimatch@3.1.2:
  1327. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1328. minimatch@9.0.5:
  1329. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1330. engines: {node: '>=16 || 14 >=14.17'}
  1331. minimist@1.2.8:
  1332. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1333. minipass@7.1.2:
  1334. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1335. engines: {node: '>=16 || 14 >=14.17'}
  1336. mitata@1.0.34:
  1337. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1338. mkdirp-classic@0.5.3:
  1339. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1340. mocha@11.7.5:
  1341. resolution: {integrity: sha512-mTT6RgopEYABzXWFx+GcJ+ZQ32kp4fMf0xvpZIIfSq9Z8lC/++MtcCnQ9t5FP2veYEP95FIYSvW+U9fV4xrlig==}
  1342. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1343. hasBin: true
  1344. ms@2.0.0:
  1345. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1346. ms@2.1.3:
  1347. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1348. napi-build-utils@2.0.0:
  1349. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1350. napi-postinstall@0.3.4:
  1351. resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
  1352. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  1353. hasBin: true
  1354. natural-compare@1.4.0:
  1355. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1356. next-tick@1.1.0:
  1357. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1358. node-abi@3.75.0:
  1359. resolution: {integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==}
  1360. engines: {node: '>=10'}
  1361. node-gyp-build@4.8.4:
  1362. resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
  1363. hasBin: true
  1364. node-localstorage@2.2.1:
  1365. resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
  1366. engines: {node: '>=0.12'}
  1367. null-prototype-object@1.2.5:
  1368. resolution: {integrity: sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==}
  1369. engines: {node: '>= 20'}
  1370. once@1.4.0:
  1371. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1372. optionator@0.9.4:
  1373. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1374. engines: {node: '>= 0.8.0'}
  1375. oxc-resolver@11.13.2:
  1376. resolution: {integrity: sha512-1SXVyYQ9bqMX3uZo8Px81EG7jhZkO9PvvR5X9roY5TLYVm4ZA7pbPDNlYaDBBeF9U+YO3OeMNoHde52hrcCu8w==}
  1377. p-limit@3.1.0:
  1378. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1379. engines: {node: '>=10'}
  1380. p-locate@5.0.0:
  1381. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1382. engines: {node: '>=10'}
  1383. package-json-from-dist@1.0.1:
  1384. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1385. package-manager-detector@1.5.0:
  1386. resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==}
  1387. pako@2.1.0:
  1388. resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
  1389. parent-module@1.0.1:
  1390. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1391. engines: {node: '>=6'}
  1392. path-browserify@1.0.1:
  1393. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1394. path-exists@4.0.0:
  1395. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1396. engines: {node: '>=8'}
  1397. path-key@3.1.1:
  1398. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1399. engines: {node: '>=8'}
  1400. path-parse@1.0.7:
  1401. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1402. path-scurry@1.11.1:
  1403. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1404. engines: {node: '>=16 || 14 >=14.18'}
  1405. picocolors@1.1.1:
  1406. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1407. picomatch@2.3.1:
  1408. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1409. engines: {node: '>=8.6'}
  1410. picomatch@4.0.3:
  1411. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  1412. engines: {node: '>=12'}
  1413. pirates@4.0.7:
  1414. resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
  1415. engines: {node: '>= 6'}
  1416. prebuild-install@7.1.3:
  1417. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1418. engines: {node: '>=10'}
  1419. hasBin: true
  1420. prelude-ls@1.2.1:
  1421. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1422. engines: {node: '>= 0.8.0'}
  1423. pretty-format@30.2.0:
  1424. resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
  1425. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1426. promise-make-naked@3.0.2:
  1427. resolution: {integrity: sha512-B+b+kQ1YrYS7zO7P7bQcoqqMUizP06BOyNSBEnB5VJKDSWo8fsVuDkfSmwdjF0JsRtaNh83so5MMFJ95soH5jg==}
  1428. pump@3.0.3:
  1429. resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
  1430. punycode@2.3.1:
  1431. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1432. engines: {node: '>=6'}
  1433. randombytes@2.1.0:
  1434. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1435. rc@1.2.8:
  1436. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1437. hasBin: true
  1438. react-is@18.3.1:
  1439. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  1440. readable-stream@3.6.2:
  1441. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1442. engines: {node: '>= 6'}
  1443. readdirp@4.1.2:
  1444. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1445. engines: {node: '>= 14.18.0'}
  1446. real-cancellable-promise@1.2.3:
  1447. resolution: {integrity: sha512-hBI5Gy/55VEeeMtImMgEirD7eq5UmqJf1J8dFZtbJZA/3rB0pYFZ7PayMGueb6v4UtUtpKpP+05L0VwyE1hI9Q==}
  1448. refa@0.12.1:
  1449. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1450. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1451. regexp-ast-analysis@0.7.1:
  1452. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1453. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1454. require-directory@2.1.1:
  1455. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1456. engines: {node: '>=0.10.0'}
  1457. resolve-from@4.0.0:
  1458. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1459. engines: {node: '>=4'}
  1460. resolve-pkg-maps@1.0.0:
  1461. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1462. resolve@1.22.10:
  1463. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1464. engines: {node: '>= 0.4'}
  1465. hasBin: true
  1466. scslre@0.3.0:
  1467. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1468. engines: {node: ^14.0.0 || >=16.0.0}
  1469. semver@7.7.3:
  1470. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  1471. engines: {node: '>=10'}
  1472. hasBin: true
  1473. serialize-javascript@6.0.2:
  1474. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1475. shebang-command@2.0.0:
  1476. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1477. engines: {node: '>=8'}
  1478. shebang-regex@3.0.0:
  1479. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1480. engines: {node: '>=8'}
  1481. signal-exit@4.1.0:
  1482. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1483. engines: {node: '>=14'}
  1484. simple-concat@1.0.1:
  1485. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1486. simple-get@4.0.1:
  1487. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1488. simple-invariant@2.0.1:
  1489. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1490. engines: {node: '>=10'}
  1491. slash@3.0.0:
  1492. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1493. engines: {node: '>=8'}
  1494. slide@1.1.6:
  1495. resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
  1496. smart-buffer@4.2.0:
  1497. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  1498. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  1499. socks@2.8.7:
  1500. resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
  1501. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  1502. source-map-support@0.5.21:
  1503. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1504. source-map@0.6.1:
  1505. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1506. engines: {node: '>=0.10.0'}
  1507. stable-hash-x@0.2.0:
  1508. resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
  1509. engines: {node: '>=12.0.0'}
  1510. stack-utils@2.0.6:
  1511. resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
  1512. engines: {node: '>=10'}
  1513. store2@2.14.4:
  1514. resolution: {integrity: sha512-srTItn1GOvyvOycgxjAnPA63FZNwy0PTyUBFMHRM+hVFltAeoh0LmNBz9SZqUS9mMqGk8rfyWyXn3GH5ReJ8Zw==}
  1515. streamx@2.22.1:
  1516. resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
  1517. string-similarity@4.0.4:
  1518. resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
  1519. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1520. string-width@4.2.3:
  1521. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1522. engines: {node: '>=8'}
  1523. string-width@5.1.2:
  1524. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1525. engines: {node: '>=12'}
  1526. string_decoder@1.3.0:
  1527. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1528. strip-ansi@6.0.1:
  1529. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1530. engines: {node: '>=8'}
  1531. strip-ansi@7.1.0:
  1532. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1533. engines: {node: '>=12'}
  1534. strip-json-comments@2.0.1:
  1535. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1536. engines: {node: '>=0.10.0'}
  1537. strip-json-comments@3.1.1:
  1538. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1539. engines: {node: '>=8'}
  1540. supports-color@7.2.0:
  1541. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1542. engines: {node: '>=8'}
  1543. supports-color@8.1.1:
  1544. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1545. engines: {node: '>=10'}
  1546. supports-preserve-symlinks-flag@1.0.0:
  1547. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1548. engines: {node: '>= 0.4'}
  1549. synckit@0.11.11:
  1550. resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
  1551. engines: {node: ^14.18.0 || >=16.0.0}
  1552. tapable@2.3.0:
  1553. resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
  1554. engines: {node: '>=6'}
  1555. tar-fs@2.1.3:
  1556. resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==}
  1557. tar-fs@3.1.1:
  1558. resolution: {integrity: sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==}
  1559. tar-stream@2.2.0:
  1560. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1561. engines: {node: '>=6'}
  1562. tar-stream@3.1.7:
  1563. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1564. telegram@2.26.22:
  1565. resolution: {integrity: sha512-EIj7Yrjiu0Yosa3FZ/7EyPg9s6UiTi/zDQrFmR/2Mg7pIUU+XjAit1n1u9OU9h2oRnRM5M+67/fxzQluZpaJJg==}
  1566. text-decoder@1.2.3:
  1567. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1568. tinyexec@1.0.2:
  1569. resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
  1570. engines: {node: '>=18'}
  1571. tinyglobby@0.2.15:
  1572. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1573. engines: {node: '>=12.0.0'}
  1574. tldts-core@7.0.19:
  1575. resolution: {integrity: sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==}
  1576. tldts-experimental@7.0.19:
  1577. resolution: {integrity: sha512-Pu+urmGB5Ja0SQxzF0j1mG40Swnq0xrC6lcQwpPbpD0VlRtqym2Y1bfZen/+mKZ022/FxBIbtQzOU1KRrO1RSg==}
  1578. tldts@7.0.19:
  1579. resolution: {integrity: sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==}
  1580. hasBin: true
  1581. to-regex-range@5.0.1:
  1582. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1583. engines: {node: '>=8.0'}
  1584. ts-api-utils@2.1.0:
  1585. resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
  1586. engines: {node: '>=18.12'}
  1587. peerDependencies:
  1588. typescript: '>=4.8.4'
  1589. ts-custom-error@3.3.1:
  1590. resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==}
  1591. engines: {node: '>=14.0.0'}
  1592. ts-declaration-location@1.0.7:
  1593. resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
  1594. peerDependencies:
  1595. typescript: '>=4.0.0'
  1596. tslib@2.8.1:
  1597. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1598. tunnel-agent@0.6.0:
  1599. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1600. type-check@0.4.0:
  1601. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1602. engines: {node: '>= 0.8.0'}
  1603. type@2.7.3:
  1604. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  1605. typedarray-to-buffer@3.1.5:
  1606. resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
  1607. typescript-eslint@8.49.0:
  1608. resolution: {integrity: sha512-zRSVH1WXD0uXczCXw+nsdjGPUdx4dfrs5VQoHnUWmv1U3oNlAKv4FUNdLDhVUg+gYn+a5hUESqch//Rv5wVhrg==}
  1609. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1610. peerDependencies:
  1611. eslint: ^8.57.0 || ^9.0.0
  1612. typescript: '>=4.8.4 <6.0.0'
  1613. typescript@5.9.3:
  1614. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1615. engines: {node: '>=14.17'}
  1616. hasBin: true
  1617. undici-cache-store-better-sqlite3@1.0.0:
  1618. resolution: {integrity: sha512-bYwnd02xu+q7UVCR20Cnb+tVJVB5f1cKP7BUc/sxafEMhgWbRQ5S/pRNZP9Ykl2sasy2bHzSJPGXlOF+/ju4+Q==}
  1619. peerDependencies:
  1620. undici: '>=7.0.0'
  1621. undici-types@7.16.0:
  1622. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  1623. undici@7.16.0:
  1624. resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==}
  1625. engines: {node: '>=20.18.1'}
  1626. unrs-resolver@1.11.1:
  1627. resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
  1628. uri-js@4.4.1:
  1629. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1630. utf-8-validate@5.0.10:
  1631. resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
  1632. engines: {node: '>=6.14.2'}
  1633. util-deprecate@1.0.2:
  1634. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1635. websocket@1.0.35:
  1636. resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
  1637. engines: {node: '>=4.0.0'}
  1638. webworker-shim@1.1.4:
  1639. resolution: {integrity: sha512-W/40L5W6ZQyGhYr3hJ7N/2SjdK5OdFtnYm94j6xlRyjckegXnIGwz0EdxdkQx6VGTglJjK8mqBhMz3fd3AY4bg==}
  1640. which@2.0.2:
  1641. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1642. engines: {node: '>= 8'}
  1643. hasBin: true
  1644. why-is-node-running@3.2.2:
  1645. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1646. engines: {node: '>=20.11'}
  1647. hasBin: true
  1648. word-wrap@1.2.5:
  1649. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1650. engines: {node: '>=0.10.0'}
  1651. workerpool@9.3.3:
  1652. resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
  1653. worktank@3.0.2:
  1654. resolution: {integrity: sha512-ry5gPtWnakOnUBAAa2aiyWZwAFJuBtd/MwZH6o9DXnQHD4AZvidtl2uTLrb2d3Zjy9D04n84lHJNnIETQl7tuA==}
  1655. wrap-ansi@7.0.0:
  1656. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1657. engines: {node: '>=10'}
  1658. wrap-ansi@8.1.0:
  1659. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1660. engines: {node: '>=12'}
  1661. wrappy@1.0.2:
  1662. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1663. write-file-atomic@1.3.4:
  1664. resolution: {integrity: sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==}
  1665. xbits@0.2.0:
  1666. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1667. y18n@5.0.8:
  1668. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1669. engines: {node: '>=10'}
  1670. yaeti@0.0.6:
  1671. resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
  1672. engines: {node: '>=0.10.32'}
  1673. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1674. yaml@2.8.2:
  1675. resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
  1676. engines: {node: '>= 14.6'}
  1677. hasBin: true
  1678. yargs-parser@21.1.1:
  1679. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1680. engines: {node: '>=12'}
  1681. yargs-unparser@2.0.0:
  1682. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1683. engines: {node: '>=10'}
  1684. yargs@17.7.2:
  1685. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1686. engines: {node: '>=12'}
  1687. yauzl-promise@4.0.0:
  1688. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1689. engines: {node: '>=16'}
  1690. yocto-queue@0.1.0:
  1691. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1692. engines: {node: '>=10'}
  1693. snapshots:
  1694. '@antfu/install-pkg@1.1.0':
  1695. dependencies:
  1696. package-manager-detector: 1.5.0
  1697. tinyexec: 1.0.2
  1698. '@babel/code-frame@7.27.1':
  1699. dependencies:
  1700. '@babel/helper-validator-identifier': 7.27.1
  1701. js-tokens: 4.0.0
  1702. picocolors: 1.1.1
  1703. '@babel/helper-validator-identifier@7.27.1': {}
  1704. '@cryptography/aes@0.1.1': {}
  1705. '@emnapi/core@1.5.0':
  1706. dependencies:
  1707. '@emnapi/wasi-threads': 1.1.0
  1708. tslib: 2.8.1
  1709. optional: true
  1710. '@emnapi/runtime@1.5.0':
  1711. dependencies:
  1712. tslib: 2.8.1
  1713. optional: true
  1714. '@emnapi/wasi-threads@1.1.0':
  1715. dependencies:
  1716. tslib: 2.8.1
  1717. optional: true
  1718. '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.39.2)':
  1719. dependencies:
  1720. escape-string-regexp: 4.0.0
  1721. eslint: 9.39.2
  1722. ignore: 5.3.2
  1723. '@eslint-community/eslint-utils@4.9.0(eslint@9.39.2)':
  1724. dependencies:
  1725. eslint: 9.39.2
  1726. eslint-visitor-keys: 3.4.3
  1727. '@eslint-community/regexpp@4.12.1': {}
  1728. '@eslint-sukka/eslint-plugin-stylistic@8.0.5(eslint@9.39.2)':
  1729. dependencies:
  1730. eslint: 9.39.2
  1731. '@eslint-sukka/eslint-plugin-sukka-full@8.0.5(eslint@9.39.2)(typescript@5.9.3)':
  1732. dependencies:
  1733. eslint: 9.39.2
  1734. eslint-plugin-sukka: 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  1735. optionalDependencies:
  1736. typescript: 5.9.3
  1737. transitivePeerDependencies:
  1738. - supports-color
  1739. '@eslint-sukka/node@8.0.5(eslint@9.39.2)(typescript@5.9.3)':
  1740. dependencies:
  1741. '@eslint-sukka/eslint-plugin-sukka-full': 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  1742. '@eslint-sukka/shared': 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  1743. eslint-plugin-n: 17.23.1(eslint@9.39.2)(typescript@5.9.3)
  1744. transitivePeerDependencies:
  1745. - eslint
  1746. - supports-color
  1747. - typescript
  1748. '@eslint-sukka/shared@8.0.5(eslint@9.39.2)(typescript@5.9.3)':
  1749. dependencies:
  1750. '@package-json/types': 0.0.12
  1751. '@typescript-eslint/utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  1752. foxts: 5.0.3
  1753. oxc-resolver: 11.13.2
  1754. transitivePeerDependencies:
  1755. - eslint
  1756. - supports-color
  1757. - typescript
  1758. '@eslint/config-array@0.21.1':
  1759. dependencies:
  1760. '@eslint/object-schema': 2.1.7
  1761. debug: 4.4.3(supports-color@8.1.1)
  1762. minimatch: 3.1.2
  1763. transitivePeerDependencies:
  1764. - supports-color
  1765. '@eslint/config-helpers@0.4.2':
  1766. dependencies:
  1767. '@eslint/core': 0.17.0
  1768. '@eslint/config-helpers@0.5.0':
  1769. dependencies:
  1770. '@eslint/core': 1.0.0
  1771. '@eslint/core@0.17.0':
  1772. dependencies:
  1773. '@types/json-schema': 7.0.15
  1774. '@eslint/core@1.0.0':
  1775. dependencies:
  1776. '@types/json-schema': 7.0.15
  1777. '@eslint/eslintrc@3.3.1':
  1778. dependencies:
  1779. ajv: 6.12.6
  1780. debug: 4.4.3(supports-color@8.1.1)
  1781. espree: 10.4.0
  1782. globals: 14.0.0
  1783. ignore: 5.3.2
  1784. import-fresh: 3.3.1
  1785. js-yaml: 4.1.0
  1786. minimatch: 3.1.2
  1787. strip-json-comments: 3.1.1
  1788. transitivePeerDependencies:
  1789. - supports-color
  1790. '@eslint/js@9.39.2': {}
  1791. '@eslint/object-schema@2.1.7': {}
  1792. '@eslint/plugin-kit@0.4.1':
  1793. dependencies:
  1794. '@eslint/core': 0.17.0
  1795. levn: 0.4.1
  1796. '@ghostery/adblocker-content@2.13.0':
  1797. dependencies:
  1798. '@ghostery/adblocker-extended-selectors': 2.13.0
  1799. '@ghostery/adblocker-extended-selectors@2.13.0': {}
  1800. '@ghostery/adblocker@2.13.0':
  1801. dependencies:
  1802. '@ghostery/adblocker-content': 2.13.0
  1803. '@ghostery/adblocker-extended-selectors': 2.13.0
  1804. '@ghostery/url-parser': 1.3.0
  1805. '@remusao/guess-url-type': 2.1.0
  1806. '@remusao/small': 2.1.0
  1807. '@remusao/smaz': 2.2.0
  1808. tldts-experimental: 7.0.19
  1809. '@ghostery/url-parser@1.3.0':
  1810. dependencies:
  1811. tldts-experimental: 7.0.19
  1812. '@henrygd/queue@1.2.0': {}
  1813. '@humanfs/core@0.19.1': {}
  1814. '@humanfs/node@0.16.6':
  1815. dependencies:
  1816. '@humanfs/core': 0.19.1
  1817. '@humanwhocodes/retry': 0.3.1
  1818. '@humanwhocodes/module-importer@1.0.1': {}
  1819. '@humanwhocodes/retry@0.3.1': {}
  1820. '@humanwhocodes/retry@0.4.3': {}
  1821. '@isaacs/balanced-match@4.0.1': {}
  1822. '@isaacs/brace-expansion@5.0.0':
  1823. dependencies:
  1824. '@isaacs/balanced-match': 4.0.1
  1825. '@isaacs/cliui@8.0.2':
  1826. dependencies:
  1827. string-width: 5.1.2
  1828. string-width-cjs: string-width@4.2.3
  1829. strip-ansi: 7.1.0
  1830. strip-ansi-cjs: strip-ansi@6.0.1
  1831. wrap-ansi: 8.1.0
  1832. wrap-ansi-cjs: wrap-ansi@7.0.0
  1833. '@jest/diff-sequences@30.0.1': {}
  1834. '@jest/expect-utils@30.2.0':
  1835. dependencies:
  1836. '@jest/get-type': 30.1.0
  1837. '@jest/get-type@30.1.0': {}
  1838. '@jest/pattern@30.0.1':
  1839. dependencies:
  1840. '@types/node': 24.10.3
  1841. jest-regex-util: 30.0.1
  1842. '@jest/schemas@30.0.5':
  1843. dependencies:
  1844. '@sinclair/typebox': 0.34.40
  1845. '@jest/types@30.2.0':
  1846. dependencies:
  1847. '@jest/pattern': 30.0.1
  1848. '@jest/schemas': 30.0.5
  1849. '@types/istanbul-lib-coverage': 2.0.6
  1850. '@types/istanbul-reports': 3.0.4
  1851. '@types/node': 24.10.3
  1852. '@types/yargs': 17.0.33
  1853. chalk: 4.1.2
  1854. '@mitata/counters@0.0.8': {}
  1855. '@napi-rs/wasm-runtime@0.2.12':
  1856. dependencies:
  1857. '@emnapi/core': 1.5.0
  1858. '@emnapi/runtime': 1.5.0
  1859. '@tybys/wasm-util': 0.10.1
  1860. optional: true
  1861. '@napi-rs/wasm-runtime@1.0.7':
  1862. dependencies:
  1863. '@emnapi/core': 1.5.0
  1864. '@emnapi/runtime': 1.5.0
  1865. '@tybys/wasm-util': 0.10.1
  1866. optional: true
  1867. '@node-rs/crc32-android-arm-eabi@1.10.6':
  1868. optional: true
  1869. '@node-rs/crc32-android-arm64@1.10.6':
  1870. optional: true
  1871. '@node-rs/crc32-darwin-arm64@1.10.6':
  1872. optional: true
  1873. '@node-rs/crc32-darwin-x64@1.10.6':
  1874. optional: true
  1875. '@node-rs/crc32-freebsd-x64@1.10.6':
  1876. optional: true
  1877. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  1878. optional: true
  1879. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  1880. optional: true
  1881. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  1882. optional: true
  1883. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  1884. optional: true
  1885. '@node-rs/crc32-linux-x64-musl@1.10.6':
  1886. optional: true
  1887. '@node-rs/crc32-wasm32-wasi@1.10.6':
  1888. dependencies:
  1889. '@napi-rs/wasm-runtime': 0.2.12
  1890. optional: true
  1891. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  1892. optional: true
  1893. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  1894. optional: true
  1895. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  1896. optional: true
  1897. '@node-rs/crc32@1.10.6':
  1898. optionalDependencies:
  1899. '@node-rs/crc32-android-arm-eabi': 1.10.6
  1900. '@node-rs/crc32-android-arm64': 1.10.6
  1901. '@node-rs/crc32-darwin-arm64': 1.10.6
  1902. '@node-rs/crc32-darwin-x64': 1.10.6
  1903. '@node-rs/crc32-freebsd-x64': 1.10.6
  1904. '@node-rs/crc32-linux-arm-gnueabihf': 1.10.6
  1905. '@node-rs/crc32-linux-arm64-gnu': 1.10.6
  1906. '@node-rs/crc32-linux-arm64-musl': 1.10.6
  1907. '@node-rs/crc32-linux-x64-gnu': 1.10.6
  1908. '@node-rs/crc32-linux-x64-musl': 1.10.6
  1909. '@node-rs/crc32-wasm32-wasi': 1.10.6
  1910. '@node-rs/crc32-win32-arm64-msvc': 1.10.6
  1911. '@node-rs/crc32-win32-ia32-msvc': 1.10.6
  1912. '@node-rs/crc32-win32-x64-msvc': 1.10.6
  1913. '@nolyfill/globalthis@1.0.44':
  1914. dependencies:
  1915. '@nolyfill/shared': 1.0.44
  1916. '@nolyfill/safe-buffer@1.0.44': {}
  1917. '@nolyfill/shared@1.0.44': {}
  1918. '@oxc-resolver/binding-android-arm-eabi@11.13.2':
  1919. optional: true
  1920. '@oxc-resolver/binding-android-arm64@11.13.2':
  1921. optional: true
  1922. '@oxc-resolver/binding-darwin-arm64@11.13.2':
  1923. optional: true
  1924. '@oxc-resolver/binding-darwin-x64@11.13.2':
  1925. optional: true
  1926. '@oxc-resolver/binding-freebsd-x64@11.13.2':
  1927. optional: true
  1928. '@oxc-resolver/binding-linux-arm-gnueabihf@11.13.2':
  1929. optional: true
  1930. '@oxc-resolver/binding-linux-arm-musleabihf@11.13.2':
  1931. optional: true
  1932. '@oxc-resolver/binding-linux-arm64-gnu@11.13.2':
  1933. optional: true
  1934. '@oxc-resolver/binding-linux-arm64-musl@11.13.2':
  1935. optional: true
  1936. '@oxc-resolver/binding-linux-ppc64-gnu@11.13.2':
  1937. optional: true
  1938. '@oxc-resolver/binding-linux-riscv64-gnu@11.13.2':
  1939. optional: true
  1940. '@oxc-resolver/binding-linux-riscv64-musl@11.13.2':
  1941. optional: true
  1942. '@oxc-resolver/binding-linux-s390x-gnu@11.13.2':
  1943. optional: true
  1944. '@oxc-resolver/binding-linux-x64-gnu@11.13.2':
  1945. optional: true
  1946. '@oxc-resolver/binding-linux-x64-musl@11.13.2':
  1947. optional: true
  1948. '@oxc-resolver/binding-wasm32-wasi@11.13.2':
  1949. dependencies:
  1950. '@napi-rs/wasm-runtime': 1.0.7
  1951. optional: true
  1952. '@oxc-resolver/binding-win32-arm64-msvc@11.13.2':
  1953. optional: true
  1954. '@oxc-resolver/binding-win32-ia32-msvc@11.13.2':
  1955. optional: true
  1956. '@oxc-resolver/binding-win32-x64-msvc@11.13.2':
  1957. optional: true
  1958. '@package-json/types@0.0.12': {}
  1959. '@pkgjs/parseargs@0.11.0':
  1960. optional: true
  1961. '@pkgr/core@0.2.9': {}
  1962. '@remusao/guess-url-type@2.1.0': {}
  1963. '@remusao/small@2.1.0': {}
  1964. '@remusao/smaz-compress@2.2.0':
  1965. dependencies:
  1966. '@remusao/trie': 2.1.0
  1967. '@remusao/smaz-decompress@2.2.0': {}
  1968. '@remusao/smaz@2.2.0':
  1969. dependencies:
  1970. '@remusao/smaz-compress': 2.2.0
  1971. '@remusao/smaz-decompress': 2.2.0
  1972. '@remusao/trie@2.1.0': {}
  1973. '@sinclair/typebox@0.34.40': {}
  1974. '@swc-node/core@1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)':
  1975. dependencies:
  1976. '@swc/core': 1.13.5
  1977. '@swc/types': 0.1.25
  1978. '@swc-node/register@1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(typescript@5.9.3)':
  1979. dependencies:
  1980. '@swc-node/core': 1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)
  1981. '@swc-node/sourcemap-support': 0.6.1
  1982. '@swc/core': 1.13.5
  1983. colorette: 2.0.20
  1984. debug: 4.4.3(supports-color@8.1.1)
  1985. oxc-resolver: 11.13.2
  1986. pirates: 4.0.7
  1987. tslib: 2.8.1
  1988. typescript: 5.9.3
  1989. transitivePeerDependencies:
  1990. - '@swc/types'
  1991. - supports-color
  1992. '@swc-node/sourcemap-support@0.6.1':
  1993. dependencies:
  1994. source-map-support: 0.5.21
  1995. tslib: 2.8.1
  1996. '@swc/core-darwin-arm64@1.13.5':
  1997. optional: true
  1998. '@swc/core-darwin-x64@1.13.5':
  1999. optional: true
  2000. '@swc/core-linux-arm-gnueabihf@1.13.5':
  2001. optional: true
  2002. '@swc/core-linux-arm64-gnu@1.13.5':
  2003. optional: true
  2004. '@swc/core-linux-arm64-musl@1.13.5':
  2005. optional: true
  2006. '@swc/core-linux-x64-gnu@1.13.5':
  2007. optional: true
  2008. '@swc/core-linux-x64-musl@1.13.5':
  2009. optional: true
  2010. '@swc/core-win32-arm64-msvc@1.13.5':
  2011. optional: true
  2012. '@swc/core-win32-ia32-msvc@1.13.5':
  2013. optional: true
  2014. '@swc/core-win32-x64-msvc@1.13.5':
  2015. optional: true
  2016. '@swc/core@1.13.5':
  2017. dependencies:
  2018. '@swc/counter': 0.1.3
  2019. '@swc/types': 0.1.25
  2020. optionalDependencies:
  2021. '@swc/core-darwin-arm64': 1.13.5
  2022. '@swc/core-darwin-x64': 1.13.5
  2023. '@swc/core-linux-arm-gnueabihf': 1.13.5
  2024. '@swc/core-linux-arm64-gnu': 1.13.5
  2025. '@swc/core-linux-arm64-musl': 1.13.5
  2026. '@swc/core-linux-x64-gnu': 1.13.5
  2027. '@swc/core-linux-x64-musl': 1.13.5
  2028. '@swc/core-win32-arm64-msvc': 1.13.5
  2029. '@swc/core-win32-ia32-msvc': 1.13.5
  2030. '@swc/core-win32-x64-msvc': 1.13.5
  2031. '@swc/counter@0.1.3': {}
  2032. '@swc/types@0.1.25':
  2033. dependencies:
  2034. '@swc/counter': 0.1.3
  2035. '@tybys/wasm-util@0.10.1':
  2036. dependencies:
  2037. tslib: 2.8.1
  2038. optional: true
  2039. '@types/better-sqlite3@7.6.13':
  2040. dependencies:
  2041. '@types/node': 24.10.3
  2042. '@types/cli-progress@3.11.6':
  2043. dependencies:
  2044. '@types/node': 24.10.3
  2045. '@types/dns2@2.0.10':
  2046. dependencies:
  2047. '@types/node': 24.10.3
  2048. '@types/estree@1.0.8': {}
  2049. '@types/istanbul-lib-coverage@2.0.6': {}
  2050. '@types/istanbul-lib-report@3.0.3':
  2051. dependencies:
  2052. '@types/istanbul-lib-coverage': 2.0.6
  2053. '@types/istanbul-reports@3.0.4':
  2054. dependencies:
  2055. '@types/istanbul-lib-report': 3.0.3
  2056. '@types/json-schema@7.0.15': {}
  2057. '@types/mocha@10.0.10': {}
  2058. '@types/node@24.10.3':
  2059. dependencies:
  2060. undici-types: 7.16.0
  2061. '@types/stack-utils@2.0.3': {}
  2062. '@types/tar-fs@2.0.4':
  2063. dependencies:
  2064. '@types/node': 24.10.3
  2065. '@types/tar-stream': 3.1.4
  2066. '@types/tar-stream@3.1.4':
  2067. dependencies:
  2068. '@types/node': 24.10.3
  2069. '@types/yargs-parser@21.0.3': {}
  2070. '@types/yargs@17.0.33':
  2071. dependencies:
  2072. '@types/yargs-parser': 21.0.3
  2073. '@types/yauzl-promise@4.0.1':
  2074. dependencies:
  2075. '@types/node': 24.10.3
  2076. '@typescript-eslint/eslint-plugin@8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)':
  2077. dependencies:
  2078. '@eslint-community/regexpp': 4.12.1
  2079. '@typescript-eslint/parser': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2080. '@typescript-eslint/scope-manager': 8.49.0
  2081. '@typescript-eslint/type-utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2082. '@typescript-eslint/utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2083. '@typescript-eslint/visitor-keys': 8.49.0
  2084. eslint: 9.39.2
  2085. ignore: 7.0.5
  2086. natural-compare: 1.4.0
  2087. ts-api-utils: 2.1.0(typescript@5.9.3)
  2088. typescript: 5.9.3
  2089. transitivePeerDependencies:
  2090. - supports-color
  2091. '@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3)':
  2092. dependencies:
  2093. '@typescript-eslint/scope-manager': 8.49.0
  2094. '@typescript-eslint/types': 8.49.0
  2095. '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
  2096. '@typescript-eslint/visitor-keys': 8.49.0
  2097. debug: 4.4.3(supports-color@8.1.1)
  2098. eslint: 9.39.2
  2099. typescript: 5.9.3
  2100. transitivePeerDependencies:
  2101. - supports-color
  2102. '@typescript-eslint/project-service@8.49.0(typescript@5.9.3)':
  2103. dependencies:
  2104. '@typescript-eslint/tsconfig-utils': 8.49.0(typescript@5.9.3)
  2105. '@typescript-eslint/types': 8.49.0
  2106. debug: 4.4.3(supports-color@8.1.1)
  2107. typescript: 5.9.3
  2108. transitivePeerDependencies:
  2109. - supports-color
  2110. '@typescript-eslint/scope-manager@8.49.0':
  2111. dependencies:
  2112. '@typescript-eslint/types': 8.49.0
  2113. '@typescript-eslint/visitor-keys': 8.49.0
  2114. '@typescript-eslint/tsconfig-utils@8.49.0(typescript@5.9.3)':
  2115. dependencies:
  2116. typescript: 5.9.3
  2117. '@typescript-eslint/type-utils@8.49.0(eslint@9.39.2)(typescript@5.9.3)':
  2118. dependencies:
  2119. '@typescript-eslint/types': 8.49.0
  2120. '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
  2121. '@typescript-eslint/utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2122. debug: 4.4.3(supports-color@8.1.1)
  2123. eslint: 9.39.2
  2124. ts-api-utils: 2.1.0(typescript@5.9.3)
  2125. typescript: 5.9.3
  2126. transitivePeerDependencies:
  2127. - supports-color
  2128. '@typescript-eslint/types@8.49.0': {}
  2129. '@typescript-eslint/typescript-estree@8.49.0(typescript@5.9.3)':
  2130. dependencies:
  2131. '@typescript-eslint/project-service': 8.49.0(typescript@5.9.3)
  2132. '@typescript-eslint/tsconfig-utils': 8.49.0(typescript@5.9.3)
  2133. '@typescript-eslint/types': 8.49.0
  2134. '@typescript-eslint/visitor-keys': 8.49.0
  2135. debug: 4.4.3(supports-color@8.1.1)
  2136. minimatch: 9.0.5
  2137. semver: 7.7.3
  2138. tinyglobby: 0.2.15
  2139. ts-api-utils: 2.1.0(typescript@5.9.3)
  2140. typescript: 5.9.3
  2141. transitivePeerDependencies:
  2142. - supports-color
  2143. '@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3)':
  2144. dependencies:
  2145. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2146. '@typescript-eslint/scope-manager': 8.49.0
  2147. '@typescript-eslint/types': 8.49.0
  2148. '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
  2149. eslint: 9.39.2
  2150. typescript: 5.9.3
  2151. transitivePeerDependencies:
  2152. - supports-color
  2153. '@typescript-eslint/visitor-keys@8.49.0':
  2154. dependencies:
  2155. '@typescript-eslint/types': 8.49.0
  2156. eslint-visitor-keys: 4.2.1
  2157. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  2158. optional: true
  2159. '@unrs/resolver-binding-android-arm64@1.11.1':
  2160. optional: true
  2161. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  2162. optional: true
  2163. '@unrs/resolver-binding-darwin-x64@1.11.1':
  2164. optional: true
  2165. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  2166. optional: true
  2167. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  2168. optional: true
  2169. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  2170. optional: true
  2171. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  2172. optional: true
  2173. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  2174. optional: true
  2175. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  2176. optional: true
  2177. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  2178. optional: true
  2179. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  2180. optional: true
  2181. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  2182. optional: true
  2183. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  2184. optional: true
  2185. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  2186. optional: true
  2187. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  2188. dependencies:
  2189. '@napi-rs/wasm-runtime': 0.2.12
  2190. optional: true
  2191. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  2192. optional: true
  2193. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  2194. optional: true
  2195. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  2196. optional: true
  2197. acorn-jsx@5.3.2(acorn@8.15.0):
  2198. dependencies:
  2199. acorn: 8.15.0
  2200. acorn@8.15.0: {}
  2201. ajv@6.12.6:
  2202. dependencies:
  2203. fast-deep-equal: 3.1.3
  2204. fast-json-stable-stringify: 2.1.0
  2205. json-schema-traverse: 0.4.1
  2206. uri-js: 4.4.1
  2207. ansi-regex@5.0.1: {}
  2208. ansi-regex@6.2.0: {}
  2209. ansi-styles@4.3.0:
  2210. dependencies:
  2211. color-convert: 2.0.1
  2212. ansi-styles@5.2.0: {}
  2213. ansi-styles@6.2.1: {}
  2214. argparse@2.0.1: {}
  2215. array-timsort@1.0.3: {}
  2216. async-mutex@0.3.2:
  2217. dependencies:
  2218. tslib: 2.8.1
  2219. b4a@1.6.7: {}
  2220. balanced-match@1.0.2: {}
  2221. bare-events@2.6.1:
  2222. optional: true
  2223. bare-fs@4.2.1:
  2224. dependencies:
  2225. bare-events: 2.6.1
  2226. bare-path: 3.0.0
  2227. bare-stream: 2.7.0(bare-events@2.6.1)
  2228. optional: true
  2229. bare-os@3.6.2:
  2230. optional: true
  2231. bare-path@3.0.0:
  2232. dependencies:
  2233. bare-os: 3.6.2
  2234. optional: true
  2235. bare-stream@2.7.0(bare-events@2.6.1):
  2236. dependencies:
  2237. streamx: 2.22.1
  2238. optionalDependencies:
  2239. bare-events: 2.6.1
  2240. optional: true
  2241. base64-js@1.5.1: {}
  2242. better-sqlite3@11.10.0:
  2243. dependencies:
  2244. bindings: 1.5.0
  2245. prebuild-install: 7.1.3
  2246. better-sqlite3@12.5.0:
  2247. dependencies:
  2248. bindings: 1.5.0
  2249. prebuild-install: 7.1.3
  2250. big-integer@1.6.52: {}
  2251. bindings@1.5.0:
  2252. dependencies:
  2253. file-uri-to-path: 1.0.0
  2254. bl@4.1.0:
  2255. dependencies:
  2256. buffer: 5.7.1
  2257. inherits: 2.0.4
  2258. readable-stream: 3.6.2
  2259. brace-expansion@1.1.12:
  2260. dependencies:
  2261. balanced-match: 1.0.2
  2262. concat-map: 0.0.1
  2263. brace-expansion@2.0.2:
  2264. dependencies:
  2265. balanced-match: 1.0.2
  2266. braces@3.0.3:
  2267. dependencies:
  2268. fill-range: 7.1.1
  2269. browser-stdout@1.3.1: {}
  2270. buffer-from@1.1.2: {}
  2271. buffer@5.7.1:
  2272. dependencies:
  2273. base64-js: 1.5.1
  2274. ieee754: 1.2.1
  2275. buffer@6.0.3:
  2276. dependencies:
  2277. base64-js: 1.5.1
  2278. ieee754: 1.2.1
  2279. bufferutil@4.0.9:
  2280. dependencies:
  2281. node-gyp-build: 4.8.4
  2282. callsites@3.1.0: {}
  2283. camelcase@6.3.0: {}
  2284. chalk@4.1.2:
  2285. dependencies:
  2286. ansi-styles: 4.3.0
  2287. supports-color: 7.2.0
  2288. chokidar@4.0.3:
  2289. dependencies:
  2290. readdirp: 4.1.2
  2291. chownr@1.1.4: {}
  2292. ci-info@4.3.1: {}
  2293. cli-progress@3.12.0:
  2294. dependencies:
  2295. string-width: 4.2.3
  2296. cliui@8.0.1:
  2297. dependencies:
  2298. string-width: 4.2.3
  2299. strip-ansi: 6.0.1
  2300. wrap-ansi: 7.0.0
  2301. color-convert@2.0.1:
  2302. dependencies:
  2303. color-name: 1.1.4
  2304. color-name@1.1.4: {}
  2305. colorette@2.0.20: {}
  2306. comment-json@4.4.1:
  2307. dependencies:
  2308. array-timsort: 1.0.3
  2309. core-util-is: 1.0.3
  2310. esprima: 4.0.1
  2311. comment-parser@1.4.1: {}
  2312. concat-map@0.0.1: {}
  2313. core-util-is@1.0.3: {}
  2314. cross-spawn@7.0.6:
  2315. dependencies:
  2316. path-key: 3.1.1
  2317. shebang-command: 2.0.0
  2318. which: 2.0.2
  2319. csv-parse@6.1.0: {}
  2320. d@1.0.2:
  2321. dependencies:
  2322. es5-ext: 0.10.64
  2323. type: 2.7.3
  2324. debug@2.6.9:
  2325. dependencies:
  2326. ms: 2.0.0
  2327. debug@3.2.7:
  2328. dependencies:
  2329. ms: 2.1.3
  2330. optional: true
  2331. debug@4.4.1:
  2332. dependencies:
  2333. ms: 2.1.3
  2334. debug@4.4.3(supports-color@8.1.1):
  2335. dependencies:
  2336. ms: 2.1.3
  2337. optionalDependencies:
  2338. supports-color: 8.1.1
  2339. decamelize@4.0.0: {}
  2340. decompress-response@6.0.0:
  2341. dependencies:
  2342. mimic-response: 3.1.0
  2343. deep-extend@0.6.0: {}
  2344. deep-is@0.1.4: {}
  2345. defu@6.1.4: {}
  2346. detect-libc@2.0.4: {}
  2347. diff-sequences@27.5.1: {}
  2348. diff@7.0.0: {}
  2349. dns2@https://codeload.github.com/lsongdev/node-dns/tar.gz/3adb7e91b3101c0e4f43ebaca3a568269ea04d11: {}
  2350. dns2@https://codeload.github.com/lsongdev/node-dns/tar.gz/e4fa035aca0b8eb730bde3431fbf0c60a31a09c9: {}
  2351. dom-serializer@1.4.1:
  2352. dependencies:
  2353. domelementtype: 2.3.0
  2354. domhandler: 4.3.1
  2355. entities: 2.2.0
  2356. domain-alive@0.1.11:
  2357. dependencies:
  2358. debug: 4.4.1
  2359. dns2: https://codeload.github.com/lsongdev/node-dns/tar.gz/3adb7e91b3101c0e4f43ebaca3a568269ea04d11
  2360. foxts: 5.0.3
  2361. tldts: 7.0.19
  2362. transitivePeerDependencies:
  2363. - supports-color
  2364. domelementtype@2.3.0: {}
  2365. domhandler@4.3.1:
  2366. dependencies:
  2367. domelementtype: 2.3.0
  2368. domutils@2.8.0:
  2369. dependencies:
  2370. dom-serializer: 1.4.1
  2371. domelementtype: 2.3.0
  2372. domhandler: 4.3.1
  2373. eastasianwidth@0.2.0: {}
  2374. emoji-regex@8.0.0: {}
  2375. emoji-regex@9.2.2: {}
  2376. end-of-stream@1.4.5:
  2377. dependencies:
  2378. once: 1.4.0
  2379. enhanced-resolve@5.18.3:
  2380. dependencies:
  2381. graceful-fs: 4.2.11
  2382. tapable: 2.3.0
  2383. entities@2.2.0: {}
  2384. es5-ext@0.10.64:
  2385. dependencies:
  2386. es6-iterator: 2.0.3
  2387. es6-symbol: 3.1.4
  2388. esniff: 2.0.1
  2389. next-tick: 1.1.0
  2390. es6-iterator@2.0.3:
  2391. dependencies:
  2392. d: 1.0.2
  2393. es5-ext: 0.10.64
  2394. es6-symbol: 3.1.4
  2395. es6-symbol@3.1.4:
  2396. dependencies:
  2397. d: 1.0.2
  2398. ext: 1.7.0
  2399. escalade@3.2.0: {}
  2400. escape-string-regexp@2.0.0: {}
  2401. escape-string-regexp@4.0.0: {}
  2402. eslint-compat-utils@0.5.1(eslint@9.39.2):
  2403. dependencies:
  2404. eslint: 9.39.2
  2405. semver: 7.7.3
  2406. eslint-compat-utils@0.6.5(eslint@9.39.2):
  2407. dependencies:
  2408. eslint: 9.39.2
  2409. semver: 7.7.3
  2410. eslint-config-sukka@8.0.5(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2)(typescript@5.9.3):
  2411. dependencies:
  2412. '@antfu/install-pkg': 1.1.0
  2413. '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.39.2)
  2414. '@eslint-sukka/eslint-plugin-stylistic': 8.0.5(eslint@9.39.2)
  2415. '@eslint-sukka/eslint-plugin-sukka-full': 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  2416. '@eslint-sukka/shared': 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  2417. '@eslint/config-helpers': 0.5.0
  2418. '@eslint/js': 9.39.2
  2419. '@typescript-eslint/eslint-plugin': 8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
  2420. '@typescript-eslint/parser': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2421. ci-info: 4.3.1
  2422. defu: 6.1.4
  2423. eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2))(eslint@9.39.2)
  2424. eslint-plugin-autofix: 2.2.0(eslint@9.39.2)
  2425. eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2)
  2426. eslint-plugin-jsonc: 2.21.0(eslint@9.39.2)
  2427. eslint-plugin-paths: 1.1.0
  2428. eslint-plugin-promise: 7.2.1(eslint@9.39.2)
  2429. eslint-plugin-regexp: 2.10.0(eslint@9.39.2)
  2430. eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)
  2431. foxts: 5.0.3
  2432. jsonc-eslint-parser: 2.4.1
  2433. picocolors: 1.1.1
  2434. typescript-eslint: 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2435. transitivePeerDependencies:
  2436. - '@eslint/json'
  2437. - '@typescript-eslint/utils'
  2438. - eslint
  2439. - eslint-import-resolver-node
  2440. - eslint-plugin-import
  2441. - supports-color
  2442. - typescript
  2443. eslint-formatter-sukka@8.0.5(eslint@9.39.2):
  2444. dependencies:
  2445. ci-info: 4.3.1
  2446. eslint: 9.39.2
  2447. foxts: 5.0.3
  2448. picocolors: 1.1.1
  2449. eslint-import-context@0.1.9(unrs-resolver@1.11.1):
  2450. dependencies:
  2451. get-tsconfig: 4.12.0
  2452. stable-hash-x: 0.2.0
  2453. optionalDependencies:
  2454. unrs-resolver: 1.11.1
  2455. eslint-import-resolver-node@0.3.9:
  2456. dependencies:
  2457. debug: 3.2.7
  2458. is-core-module: 2.16.1
  2459. resolve: 1.22.10
  2460. transitivePeerDependencies:
  2461. - supports-color
  2462. optional: true
  2463. eslint-import-resolver-typescript@4.4.4(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2))(eslint@9.39.2):
  2464. dependencies:
  2465. debug: 4.4.3(supports-color@8.1.1)
  2466. eslint: 9.39.2
  2467. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2468. get-tsconfig: 4.12.0
  2469. is-bun-module: 2.0.0
  2470. stable-hash-x: 0.2.0
  2471. tinyglobby: 0.2.15
  2472. unrs-resolver: 1.11.1
  2473. optionalDependencies:
  2474. eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2)
  2475. transitivePeerDependencies:
  2476. - supports-color
  2477. eslint-json-compat-utils@0.2.1(eslint@9.39.2)(jsonc-eslint-parser@2.4.1):
  2478. dependencies:
  2479. eslint: 9.39.2
  2480. esquery: 1.6.0
  2481. jsonc-eslint-parser: 2.4.1
  2482. eslint-plugin-autofix@2.2.0(eslint@9.39.2):
  2483. dependencies:
  2484. eslint: 9.39.2
  2485. eslint-rule-composer: 0.3.0
  2486. espree: 9.6.1
  2487. esutils: 2.0.3
  2488. string-similarity: 4.0.4
  2489. eslint-plugin-es-x@7.8.0(eslint@9.39.2):
  2490. dependencies:
  2491. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2492. '@eslint-community/regexpp': 4.12.1
  2493. eslint: 9.39.2
  2494. eslint-compat-utils: 0.5.1(eslint@9.39.2)
  2495. eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2):
  2496. dependencies:
  2497. '@typescript-eslint/types': 8.49.0
  2498. comment-parser: 1.4.1
  2499. debug: 4.4.3(supports-color@8.1.1)
  2500. eslint: 9.39.2
  2501. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2502. is-glob: 4.0.3
  2503. minimatch: 10.0.3
  2504. semver: 7.7.3
  2505. stable-hash-x: 0.2.0
  2506. unrs-resolver: 1.11.1
  2507. optionalDependencies:
  2508. '@typescript-eslint/utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2509. eslint-import-resolver-node: 0.3.9
  2510. transitivePeerDependencies:
  2511. - supports-color
  2512. eslint-plugin-jsonc@2.21.0(eslint@9.39.2):
  2513. dependencies:
  2514. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2515. diff-sequences: 27.5.1
  2516. eslint: 9.39.2
  2517. eslint-compat-utils: 0.6.5(eslint@9.39.2)
  2518. eslint-json-compat-utils: 0.2.1(eslint@9.39.2)(jsonc-eslint-parser@2.4.1)
  2519. espree: 10.4.0
  2520. graphemer: 1.4.0
  2521. jsonc-eslint-parser: 2.4.1
  2522. natural-compare: 1.4.0
  2523. synckit: 0.11.11
  2524. transitivePeerDependencies:
  2525. - '@eslint/json'
  2526. eslint-plugin-n@17.23.1(eslint@9.39.2)(typescript@5.9.3):
  2527. dependencies:
  2528. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2529. enhanced-resolve: 5.18.3
  2530. eslint: 9.39.2
  2531. eslint-plugin-es-x: 7.8.0(eslint@9.39.2)
  2532. get-tsconfig: 4.12.0
  2533. globals: 15.15.0
  2534. globrex: 0.1.2
  2535. ignore: 5.3.2
  2536. semver: 7.7.3
  2537. ts-declaration-location: 1.0.7(typescript@5.9.3)
  2538. transitivePeerDependencies:
  2539. - typescript
  2540. eslint-plugin-paths@1.1.0:
  2541. dependencies:
  2542. comment-json: 4.4.1
  2543. eslint-plugin-promise@7.2.1(eslint@9.39.2):
  2544. dependencies:
  2545. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2546. eslint: 9.39.2
  2547. eslint-plugin-regexp@2.10.0(eslint@9.39.2):
  2548. dependencies:
  2549. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2550. '@eslint-community/regexpp': 4.12.1
  2551. comment-parser: 1.4.1
  2552. eslint: 9.39.2
  2553. jsdoc-type-pratt-parser: 4.8.0
  2554. refa: 0.12.1
  2555. regexp-ast-analysis: 0.7.1
  2556. scslre: 0.3.0
  2557. eslint-plugin-sukka@8.0.5(eslint@9.39.2)(typescript@5.9.3):
  2558. dependencies:
  2559. '@eslint-sukka/shared': 8.0.5(eslint@9.39.2)(typescript@5.9.3)
  2560. '@typescript-eslint/type-utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2561. '@typescript-eslint/types': 8.49.0
  2562. '@typescript-eslint/utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  2563. eslint: 9.39.2
  2564. foxts: 5.0.3
  2565. optionalDependencies:
  2566. typescript: 5.9.3
  2567. transitivePeerDependencies:
  2568. - supports-color
  2569. eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2):
  2570. dependencies:
  2571. eslint: 9.39.2
  2572. optionalDependencies:
  2573. '@typescript-eslint/eslint-plugin': 8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
  2574. eslint-rule-composer@0.3.0: {}
  2575. eslint-scope@8.4.0:
  2576. dependencies:
  2577. esrecurse: 4.3.0
  2578. estraverse: 5.3.0
  2579. eslint-visitor-keys@3.4.3: {}
  2580. eslint-visitor-keys@4.2.1: {}
  2581. eslint@9.39.2:
  2582. dependencies:
  2583. '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2)
  2584. '@eslint-community/regexpp': 4.12.1
  2585. '@eslint/config-array': 0.21.1
  2586. '@eslint/config-helpers': 0.4.2
  2587. '@eslint/core': 0.17.0
  2588. '@eslint/eslintrc': 3.3.1
  2589. '@eslint/js': 9.39.2
  2590. '@eslint/plugin-kit': 0.4.1
  2591. '@humanfs/node': 0.16.6
  2592. '@humanwhocodes/module-importer': 1.0.1
  2593. '@humanwhocodes/retry': 0.4.3
  2594. '@types/estree': 1.0.8
  2595. ajv: 6.12.6
  2596. chalk: picocolors@1.1.1
  2597. cross-spawn: 7.0.6
  2598. debug: 4.4.3(supports-color@8.1.1)
  2599. escape-string-regexp: 4.0.0
  2600. eslint-scope: 8.4.0
  2601. eslint-visitor-keys: 4.2.1
  2602. espree: 10.4.0
  2603. esquery: 1.6.0
  2604. esutils: 2.0.3
  2605. fast-deep-equal: 3.1.3
  2606. file-entry-cache: 8.0.0
  2607. find-up: 5.0.0
  2608. glob-parent: 6.0.2
  2609. ignore: 5.3.2
  2610. imurmurhash: 0.1.4
  2611. is-glob: 4.0.3
  2612. json-stable-stringify-without-jsonify: 1.0.1
  2613. lodash.merge: 4.6.2
  2614. minimatch: 3.1.2
  2615. natural-compare: 1.4.0
  2616. optionator: 0.9.4
  2617. transitivePeerDependencies:
  2618. - supports-color
  2619. esniff@2.0.1:
  2620. dependencies:
  2621. d: 1.0.2
  2622. es5-ext: 0.10.64
  2623. event-emitter: 0.3.5
  2624. type: 2.7.3
  2625. espree@10.4.0:
  2626. dependencies:
  2627. acorn: 8.15.0
  2628. acorn-jsx: 5.3.2(acorn@8.15.0)
  2629. eslint-visitor-keys: 4.2.1
  2630. espree@9.6.1:
  2631. dependencies:
  2632. acorn: 8.15.0
  2633. acorn-jsx: 5.3.2(acorn@8.15.0)
  2634. eslint-visitor-keys: 3.4.3
  2635. esprima@4.0.1: {}
  2636. esquery@1.6.0:
  2637. dependencies:
  2638. estraverse: 5.3.0
  2639. esrecurse@4.3.0:
  2640. dependencies:
  2641. estraverse: 5.3.0
  2642. estraverse@5.3.0: {}
  2643. esutils@2.0.3: {}
  2644. event-emitter@0.3.5:
  2645. dependencies:
  2646. d: 1.0.2
  2647. es5-ext: 0.10.64
  2648. expand-template@2.0.3: {}
  2649. expect@30.2.0:
  2650. dependencies:
  2651. '@jest/expect-utils': 30.2.0
  2652. '@jest/get-type': 30.1.0
  2653. jest-matcher-utils: 30.2.0
  2654. jest-message-util: 30.2.0
  2655. jest-mock: 30.2.0
  2656. jest-util: 30.2.0
  2657. ext@1.7.0:
  2658. dependencies:
  2659. type: 2.7.3
  2660. fast-cidr-tools@0.3.4:
  2661. dependencies:
  2662. foxts: 4.6.0
  2663. fast-deep-equal@3.1.3: {}
  2664. fast-escape-html@1.1.0: {}
  2665. fast-escape-regexp@1.0.1: {}
  2666. fast-fifo@1.3.2: {}
  2667. fast-json-stable-stringify@2.1.0: {}
  2668. fast-levenshtein@2.0.6: {}
  2669. fast-uri@3.1.0: {}
  2670. fdir@6.5.0(picomatch@4.0.3):
  2671. optionalDependencies:
  2672. picomatch: 4.0.3
  2673. file-entry-cache@8.0.0:
  2674. dependencies:
  2675. flat-cache: 4.0.1
  2676. file-uri-to-path@1.0.0: {}
  2677. fill-range@7.1.1:
  2678. dependencies:
  2679. to-regex-range: 5.0.1
  2680. find-up@5.0.0:
  2681. dependencies:
  2682. locate-path: 6.0.0
  2683. path-exists: 4.0.0
  2684. flat-cache@4.0.1:
  2685. dependencies:
  2686. flatted: 3.3.3
  2687. keyv: 4.5.4
  2688. flat@5.0.2: {}
  2689. flatted@3.3.3: {}
  2690. foreground-child@3.3.1:
  2691. dependencies:
  2692. cross-spawn: 7.0.6
  2693. signal-exit: 4.1.0
  2694. foxts@3.15.0:
  2695. dependencies:
  2696. fast-escape-html: 1.1.0
  2697. fast-escape-regexp: 1.0.1
  2698. foxts@4.6.0:
  2699. dependencies:
  2700. fast-escape-html: 1.1.0
  2701. fast-escape-regexp: 1.0.1
  2702. foxts@5.0.3: {}
  2703. fs-constants@1.0.0: {}
  2704. function-bind@1.1.2:
  2705. optional: true
  2706. get-caller-file@2.0.5: {}
  2707. get-tsconfig@4.12.0:
  2708. dependencies:
  2709. resolve-pkg-maps: 1.0.0
  2710. github-from-package@0.0.0: {}
  2711. glob-parent@6.0.2:
  2712. dependencies:
  2713. is-glob: 4.0.3
  2714. glob@10.4.5:
  2715. dependencies:
  2716. foreground-child: 3.3.1
  2717. jackspeak: 3.4.3
  2718. minimatch: 9.0.5
  2719. minipass: 7.1.2
  2720. package-json-from-dist: 1.0.1
  2721. path-scurry: 1.11.1
  2722. globals@14.0.0: {}
  2723. globals@15.15.0: {}
  2724. globrex@0.1.2: {}
  2725. graceful-fs@4.2.11: {}
  2726. graphemer@1.4.0: {}
  2727. has-flag@4.0.0: {}
  2728. hash-wasm@4.12.0: {}
  2729. hasown@2.0.2:
  2730. dependencies:
  2731. function-bind: 1.1.2
  2732. optional: true
  2733. he@1.2.0: {}
  2734. htmlparser2@6.1.0:
  2735. dependencies:
  2736. domelementtype: 2.3.0
  2737. domhandler: 4.3.1
  2738. domutils: 2.8.0
  2739. entities: 2.2.0
  2740. ieee754@1.2.1: {}
  2741. ignore@5.3.2: {}
  2742. ignore@7.0.5: {}
  2743. immediato@1.1.0: {}
  2744. import-fresh@3.3.1:
  2745. dependencies:
  2746. parent-module: 1.0.1
  2747. resolve-from: 4.0.0
  2748. imurmurhash@0.1.4: {}
  2749. inherits@2.0.4: {}
  2750. ini@1.3.8: {}
  2751. ip-address@10.0.1: {}
  2752. is-bun-module@2.0.0:
  2753. dependencies:
  2754. semver: 7.7.3
  2755. is-core-module@2.16.1:
  2756. dependencies:
  2757. hasown: 2.0.2
  2758. optional: true
  2759. is-extglob@2.1.1: {}
  2760. is-fullwidth-code-point@3.0.0: {}
  2761. is-glob@4.0.3:
  2762. dependencies:
  2763. is-extglob: 2.1.1
  2764. is-it-type@5.1.3:
  2765. dependencies:
  2766. globalthis: '@nolyfill/globalthis@1.0.44'
  2767. is-number@7.0.0: {}
  2768. is-path-inside@3.0.3: {}
  2769. is-plain-obj@2.1.0: {}
  2770. is-typedarray@1.0.0: {}
  2771. is-unicode-supported@0.1.0: {}
  2772. isexe@2.0.0: {}
  2773. isoconcurrency@1.0.0: {}
  2774. isotimer@1.0.0:
  2775. dependencies:
  2776. immediato: 1.1.0
  2777. jackspeak@3.4.3:
  2778. dependencies:
  2779. '@isaacs/cliui': 8.0.2
  2780. optionalDependencies:
  2781. '@pkgjs/parseargs': 0.11.0
  2782. jest-diff@30.2.0:
  2783. dependencies:
  2784. '@jest/diff-sequences': 30.0.1
  2785. '@jest/get-type': 30.1.0
  2786. chalk: 4.1.2
  2787. pretty-format: 30.2.0
  2788. jest-matcher-utils@30.2.0:
  2789. dependencies:
  2790. '@jest/get-type': 30.1.0
  2791. chalk: 4.1.2
  2792. jest-diff: 30.2.0
  2793. pretty-format: 30.2.0
  2794. jest-message-util@30.2.0:
  2795. dependencies:
  2796. '@babel/code-frame': 7.27.1
  2797. '@jest/types': 30.2.0
  2798. '@types/stack-utils': 2.0.3
  2799. chalk: 4.1.2
  2800. graceful-fs: 4.2.11
  2801. micromatch: 4.0.8
  2802. pretty-format: 30.2.0
  2803. slash: 3.0.0
  2804. stack-utils: 2.0.6
  2805. jest-mock@30.2.0:
  2806. dependencies:
  2807. '@jest/types': 30.2.0
  2808. '@types/node': 24.10.3
  2809. jest-util: 30.2.0
  2810. jest-regex-util@30.0.1: {}
  2811. jest-util@30.2.0:
  2812. dependencies:
  2813. '@jest/types': 30.2.0
  2814. '@types/node': 24.10.3
  2815. chalk: 4.1.2
  2816. ci-info: 4.3.1
  2817. graceful-fs: 4.2.11
  2818. picomatch: 4.0.3
  2819. js-tokens@4.0.0: {}
  2820. js-yaml@4.1.0:
  2821. dependencies:
  2822. argparse: 2.0.1
  2823. jsdoc-type-pratt-parser@4.8.0: {}
  2824. json-buffer@3.0.1: {}
  2825. json-schema-traverse@0.4.1: {}
  2826. json-stable-stringify-without-jsonify@1.0.1: {}
  2827. json-stringify-pretty-compact@4.0.0: {}
  2828. jsonc-eslint-parser@2.4.1:
  2829. dependencies:
  2830. acorn: 8.15.0
  2831. eslint-visitor-keys: 3.4.3
  2832. espree: 9.6.1
  2833. semver: 7.7.3
  2834. keyv@4.5.4:
  2835. dependencies:
  2836. json-buffer: 3.0.1
  2837. levn@0.4.1:
  2838. dependencies:
  2839. prelude-ls: 1.2.1
  2840. type-check: 0.4.0
  2841. locate-path@6.0.0:
  2842. dependencies:
  2843. p-locate: 5.0.0
  2844. lodash.merge@4.6.2: {}
  2845. log-symbols@4.1.0:
  2846. dependencies:
  2847. chalk: 4.1.2
  2848. is-unicode-supported: 0.1.0
  2849. lru-cache@10.4.3: {}
  2850. micromatch@4.0.8:
  2851. dependencies:
  2852. braces: 3.0.3
  2853. picomatch: 2.3.1
  2854. mime@3.0.0: {}
  2855. mimic-response@3.1.0: {}
  2856. minimatch@10.0.3:
  2857. dependencies:
  2858. '@isaacs/brace-expansion': 5.0.0
  2859. minimatch@3.1.2:
  2860. dependencies:
  2861. brace-expansion: 1.1.12
  2862. minimatch@9.0.5:
  2863. dependencies:
  2864. brace-expansion: 2.0.2
  2865. minimist@1.2.8: {}
  2866. minipass@7.1.2: {}
  2867. mitata@1.0.34: {}
  2868. mkdirp-classic@0.5.3: {}
  2869. mocha@11.7.5:
  2870. dependencies:
  2871. browser-stdout: 1.3.1
  2872. chokidar: 4.0.3
  2873. debug: 4.4.3(supports-color@8.1.1)
  2874. diff: 7.0.0
  2875. escape-string-regexp: 4.0.0
  2876. find-up: 5.0.0
  2877. glob: 10.4.5
  2878. he: 1.2.0
  2879. is-path-inside: 3.0.3
  2880. js-yaml: 4.1.0
  2881. log-symbols: 4.1.0
  2882. minimatch: 9.0.5
  2883. ms: 2.1.3
  2884. picocolors: 1.1.1
  2885. serialize-javascript: 6.0.2
  2886. strip-json-comments: 3.1.1
  2887. supports-color: 8.1.1
  2888. workerpool: 9.3.3
  2889. yargs: 17.7.2
  2890. yargs-parser: 21.1.1
  2891. yargs-unparser: 2.0.0
  2892. ms@2.0.0: {}
  2893. ms@2.1.3: {}
  2894. napi-build-utils@2.0.0: {}
  2895. napi-postinstall@0.3.4: {}
  2896. natural-compare@1.4.0: {}
  2897. next-tick@1.1.0: {}
  2898. node-abi@3.75.0:
  2899. dependencies:
  2900. semver: 7.7.3
  2901. node-gyp-build@4.8.4: {}
  2902. node-localstorage@2.2.1:
  2903. dependencies:
  2904. write-file-atomic: 1.3.4
  2905. null-prototype-object@1.2.5: {}
  2906. once@1.4.0:
  2907. dependencies:
  2908. wrappy: 1.0.2
  2909. optionator@0.9.4:
  2910. dependencies:
  2911. deep-is: 0.1.4
  2912. fast-levenshtein: 2.0.6
  2913. levn: 0.4.1
  2914. prelude-ls: 1.2.1
  2915. type-check: 0.4.0
  2916. word-wrap: 1.2.5
  2917. oxc-resolver@11.13.2:
  2918. optionalDependencies:
  2919. '@oxc-resolver/binding-android-arm-eabi': 11.13.2
  2920. '@oxc-resolver/binding-android-arm64': 11.13.2
  2921. '@oxc-resolver/binding-darwin-arm64': 11.13.2
  2922. '@oxc-resolver/binding-darwin-x64': 11.13.2
  2923. '@oxc-resolver/binding-freebsd-x64': 11.13.2
  2924. '@oxc-resolver/binding-linux-arm-gnueabihf': 11.13.2
  2925. '@oxc-resolver/binding-linux-arm-musleabihf': 11.13.2
  2926. '@oxc-resolver/binding-linux-arm64-gnu': 11.13.2
  2927. '@oxc-resolver/binding-linux-arm64-musl': 11.13.2
  2928. '@oxc-resolver/binding-linux-ppc64-gnu': 11.13.2
  2929. '@oxc-resolver/binding-linux-riscv64-gnu': 11.13.2
  2930. '@oxc-resolver/binding-linux-riscv64-musl': 11.13.2
  2931. '@oxc-resolver/binding-linux-s390x-gnu': 11.13.2
  2932. '@oxc-resolver/binding-linux-x64-gnu': 11.13.2
  2933. '@oxc-resolver/binding-linux-x64-musl': 11.13.2
  2934. '@oxc-resolver/binding-wasm32-wasi': 11.13.2
  2935. '@oxc-resolver/binding-win32-arm64-msvc': 11.13.2
  2936. '@oxc-resolver/binding-win32-ia32-msvc': 11.13.2
  2937. '@oxc-resolver/binding-win32-x64-msvc': 11.13.2
  2938. p-limit@3.1.0:
  2939. dependencies:
  2940. yocto-queue: 0.1.0
  2941. p-locate@5.0.0:
  2942. dependencies:
  2943. p-limit: 3.1.0
  2944. package-json-from-dist@1.0.1: {}
  2945. package-manager-detector@1.5.0: {}
  2946. pako@2.1.0: {}
  2947. parent-module@1.0.1:
  2948. dependencies:
  2949. callsites: 3.1.0
  2950. path-browserify@1.0.1: {}
  2951. path-exists@4.0.0: {}
  2952. path-key@3.1.1: {}
  2953. path-parse@1.0.7:
  2954. optional: true
  2955. path-scurry@1.11.1:
  2956. dependencies:
  2957. lru-cache: 10.4.3
  2958. minipass: 7.1.2
  2959. picocolors@1.1.1: {}
  2960. picomatch@2.3.1: {}
  2961. picomatch@4.0.3: {}
  2962. pirates@4.0.7: {}
  2963. prebuild-install@7.1.3:
  2964. dependencies:
  2965. detect-libc: 2.0.4
  2966. expand-template: 2.0.3
  2967. github-from-package: 0.0.0
  2968. minimist: 1.2.8
  2969. mkdirp-classic: 0.5.3
  2970. napi-build-utils: 2.0.0
  2971. node-abi: 3.75.0
  2972. pump: 3.0.3
  2973. rc: 1.2.8
  2974. simple-get: 4.0.1
  2975. tar-fs: 2.1.3
  2976. tunnel-agent: 0.6.0
  2977. prelude-ls@1.2.1: {}
  2978. pretty-format@30.2.0:
  2979. dependencies:
  2980. '@jest/schemas': 30.0.5
  2981. ansi-styles: 5.2.0
  2982. react-is: 18.3.1
  2983. promise-make-naked@3.0.2: {}
  2984. pump@3.0.3:
  2985. dependencies:
  2986. end-of-stream: 1.4.5
  2987. once: 1.4.0
  2988. punycode@2.3.1: {}
  2989. randombytes@2.1.0:
  2990. dependencies:
  2991. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2992. rc@1.2.8:
  2993. dependencies:
  2994. deep-extend: 0.6.0
  2995. ini: 1.3.8
  2996. minimist: 1.2.8
  2997. strip-json-comments: 2.0.1
  2998. react-is@18.3.1: {}
  2999. readable-stream@3.6.2:
  3000. dependencies:
  3001. inherits: 2.0.4
  3002. string_decoder: 1.3.0
  3003. util-deprecate: 1.0.2
  3004. readdirp@4.1.2: {}
  3005. real-cancellable-promise@1.2.3: {}
  3006. refa@0.12.1:
  3007. dependencies:
  3008. '@eslint-community/regexpp': 4.12.1
  3009. regexp-ast-analysis@0.7.1:
  3010. dependencies:
  3011. '@eslint-community/regexpp': 4.12.1
  3012. refa: 0.12.1
  3013. require-directory@2.1.1: {}
  3014. resolve-from@4.0.0: {}
  3015. resolve-pkg-maps@1.0.0: {}
  3016. resolve@1.22.10:
  3017. dependencies:
  3018. is-core-module: 2.16.1
  3019. path-parse: 1.0.7
  3020. supports-preserve-symlinks-flag: 1.0.0
  3021. optional: true
  3022. scslre@0.3.0:
  3023. dependencies:
  3024. '@eslint-community/regexpp': 4.12.1
  3025. refa: 0.12.1
  3026. regexp-ast-analysis: 0.7.1
  3027. semver@7.7.3: {}
  3028. serialize-javascript@6.0.2:
  3029. dependencies:
  3030. randombytes: 2.1.0
  3031. shebang-command@2.0.0:
  3032. dependencies:
  3033. shebang-regex: 3.0.0
  3034. shebang-regex@3.0.0: {}
  3035. signal-exit@4.1.0: {}
  3036. simple-concat@1.0.1: {}
  3037. simple-get@4.0.1:
  3038. dependencies:
  3039. decompress-response: 6.0.0
  3040. once: 1.4.0
  3041. simple-concat: 1.0.1
  3042. simple-invariant@2.0.1: {}
  3043. slash@3.0.0: {}
  3044. slide@1.1.6: {}
  3045. smart-buffer@4.2.0: {}
  3046. socks@2.8.7:
  3047. dependencies:
  3048. ip-address: 10.0.1
  3049. smart-buffer: 4.2.0
  3050. source-map-support@0.5.21:
  3051. dependencies:
  3052. buffer-from: 1.1.2
  3053. source-map: 0.6.1
  3054. source-map@0.6.1: {}
  3055. stable-hash-x@0.2.0: {}
  3056. stack-utils@2.0.6:
  3057. dependencies:
  3058. escape-string-regexp: 2.0.0
  3059. store2@2.14.4: {}
  3060. streamx@2.22.1:
  3061. dependencies:
  3062. fast-fifo: 1.3.2
  3063. text-decoder: 1.2.3
  3064. optionalDependencies:
  3065. bare-events: 2.6.1
  3066. string-similarity@4.0.4: {}
  3067. string-width@4.2.3:
  3068. dependencies:
  3069. emoji-regex: 8.0.0
  3070. is-fullwidth-code-point: 3.0.0
  3071. strip-ansi: 6.0.1
  3072. string-width@5.1.2:
  3073. dependencies:
  3074. eastasianwidth: 0.2.0
  3075. emoji-regex: 9.2.2
  3076. strip-ansi: 7.1.0
  3077. string_decoder@1.3.0:
  3078. dependencies:
  3079. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  3080. strip-ansi@6.0.1:
  3081. dependencies:
  3082. ansi-regex: 5.0.1
  3083. strip-ansi@7.1.0:
  3084. dependencies:
  3085. ansi-regex: 6.2.0
  3086. strip-json-comments@2.0.1: {}
  3087. strip-json-comments@3.1.1: {}
  3088. supports-color@7.2.0:
  3089. dependencies:
  3090. has-flag: 4.0.0
  3091. supports-color@8.1.1:
  3092. dependencies:
  3093. has-flag: 4.0.0
  3094. supports-preserve-symlinks-flag@1.0.0:
  3095. optional: true
  3096. synckit@0.11.11:
  3097. dependencies:
  3098. '@pkgr/core': 0.2.9
  3099. tapable@2.3.0: {}
  3100. tar-fs@2.1.3:
  3101. dependencies:
  3102. chownr: 1.1.4
  3103. mkdirp-classic: 0.5.3
  3104. pump: 3.0.3
  3105. tar-stream: 2.2.0
  3106. tar-fs@3.1.1:
  3107. dependencies:
  3108. pump: 3.0.3
  3109. tar-stream: 3.1.7
  3110. optionalDependencies:
  3111. bare-fs: 4.2.1
  3112. bare-path: 3.0.0
  3113. transitivePeerDependencies:
  3114. - bare-buffer
  3115. tar-stream@2.2.0:
  3116. dependencies:
  3117. bl: 4.1.0
  3118. end-of-stream: 1.4.5
  3119. fs-constants: 1.0.0
  3120. inherits: 2.0.4
  3121. readable-stream: 3.6.2
  3122. tar-stream@3.1.7:
  3123. dependencies:
  3124. b4a: 1.6.7
  3125. fast-fifo: 1.3.2
  3126. streamx: 2.22.1
  3127. telegram@2.26.22:
  3128. dependencies:
  3129. '@cryptography/aes': 0.1.1
  3130. async-mutex: 0.3.2
  3131. big-integer: 1.6.52
  3132. buffer: 6.0.3
  3133. htmlparser2: 6.1.0
  3134. mime: 3.0.0
  3135. node-localstorage: 2.2.1
  3136. pako: 2.1.0
  3137. path-browserify: 1.0.1
  3138. real-cancellable-promise: 1.2.3
  3139. socks: 2.8.7
  3140. store2: 2.14.4
  3141. ts-custom-error: 3.3.1
  3142. websocket: 1.0.35
  3143. optionalDependencies:
  3144. bufferutil: 4.0.9
  3145. utf-8-validate: 5.0.10
  3146. transitivePeerDependencies:
  3147. - supports-color
  3148. text-decoder@1.2.3:
  3149. dependencies:
  3150. b4a: 1.6.7
  3151. tinyexec@1.0.2: {}
  3152. tinyglobby@0.2.15:
  3153. dependencies:
  3154. fdir: 6.5.0(picomatch@4.0.3)
  3155. picomatch: 4.0.3
  3156. tldts-core@7.0.19: {}
  3157. tldts-experimental@7.0.19:
  3158. dependencies:
  3159. tldts-core: 7.0.19
  3160. tldts@7.0.19:
  3161. dependencies:
  3162. tldts-core: 7.0.19
  3163. to-regex-range@5.0.1:
  3164. dependencies:
  3165. is-number: 7.0.0
  3166. ts-api-utils@2.1.0(typescript@5.9.3):
  3167. dependencies:
  3168. typescript: 5.9.3
  3169. ts-custom-error@3.3.1: {}
  3170. ts-declaration-location@1.0.7(typescript@5.9.3):
  3171. dependencies:
  3172. picomatch: 4.0.3
  3173. typescript: 5.9.3
  3174. tslib@2.8.1: {}
  3175. tunnel-agent@0.6.0:
  3176. dependencies:
  3177. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  3178. type-check@0.4.0:
  3179. dependencies:
  3180. prelude-ls: 1.2.1
  3181. type@2.7.3: {}
  3182. typedarray-to-buffer@3.1.5:
  3183. dependencies:
  3184. is-typedarray: 1.0.0
  3185. typescript-eslint@8.49.0(eslint@9.39.2)(typescript@5.9.3):
  3186. dependencies:
  3187. '@typescript-eslint/eslint-plugin': 8.49.0(@typescript-eslint/parser@8.49.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
  3188. '@typescript-eslint/parser': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  3189. '@typescript-eslint/typescript-estree': 8.49.0(typescript@5.9.3)
  3190. '@typescript-eslint/utils': 8.49.0(eslint@9.39.2)(typescript@5.9.3)
  3191. eslint: 9.39.2
  3192. typescript: 5.9.3
  3193. transitivePeerDependencies:
  3194. - supports-color
  3195. typescript@5.9.3: {}
  3196. undici-cache-store-better-sqlite3@1.0.0(undici@7.16.0):
  3197. dependencies:
  3198. better-sqlite3: 11.10.0
  3199. foxts: 3.15.0
  3200. undici: 7.16.0
  3201. undici-types@7.16.0: {}
  3202. undici@7.16.0: {}
  3203. unrs-resolver@1.11.1:
  3204. dependencies:
  3205. napi-postinstall: 0.3.4
  3206. optionalDependencies:
  3207. '@unrs/resolver-binding-android-arm-eabi': 1.11.1
  3208. '@unrs/resolver-binding-android-arm64': 1.11.1
  3209. '@unrs/resolver-binding-darwin-arm64': 1.11.1
  3210. '@unrs/resolver-binding-darwin-x64': 1.11.1
  3211. '@unrs/resolver-binding-freebsd-x64': 1.11.1
  3212. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
  3213. '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
  3214. '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
  3215. '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
  3216. '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
  3217. '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
  3218. '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
  3219. '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
  3220. '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
  3221. '@unrs/resolver-binding-linux-x64-musl': 1.11.1
  3222. '@unrs/resolver-binding-wasm32-wasi': 1.11.1
  3223. '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
  3224. '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
  3225. '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
  3226. uri-js@4.4.1:
  3227. dependencies:
  3228. punycode: 2.3.1
  3229. utf-8-validate@5.0.10:
  3230. dependencies:
  3231. node-gyp-build: 4.8.4
  3232. util-deprecate@1.0.2: {}
  3233. websocket@1.0.35:
  3234. dependencies:
  3235. bufferutil: 4.0.9
  3236. debug: 2.6.9
  3237. es5-ext: 0.10.64
  3238. typedarray-to-buffer: 3.1.5
  3239. utf-8-validate: 5.0.10
  3240. yaeti: 0.0.6
  3241. transitivePeerDependencies:
  3242. - supports-color
  3243. webworker-shim@1.1.4: {}
  3244. which@2.0.2:
  3245. dependencies:
  3246. isexe: 2.0.0
  3247. why-is-node-running@3.2.2: {}
  3248. word-wrap@1.2.5: {}
  3249. workerpool@9.3.3: {}
  3250. worktank@3.0.2:
  3251. dependencies:
  3252. isoconcurrency: 1.0.0
  3253. isotimer: 1.0.0
  3254. promise-make-naked: 3.0.2
  3255. webworker-shim: 1.1.4
  3256. wrap-ansi@7.0.0:
  3257. dependencies:
  3258. ansi-styles: 4.3.0
  3259. string-width: 4.2.3
  3260. strip-ansi: 6.0.1
  3261. wrap-ansi@8.1.0:
  3262. dependencies:
  3263. ansi-styles: 6.2.1
  3264. string-width: 5.1.2
  3265. strip-ansi: 7.1.0
  3266. wrappy@1.0.2: {}
  3267. write-file-atomic@1.3.4:
  3268. dependencies:
  3269. graceful-fs: 4.2.11
  3270. imurmurhash: 0.1.4
  3271. slide: 1.1.6
  3272. xbits@0.2.0: {}
  3273. y18n@5.0.8: {}
  3274. yaeti@0.0.6: {}
  3275. yaml@2.8.2: {}
  3276. yargs-parser@21.1.1: {}
  3277. yargs-unparser@2.0.0:
  3278. dependencies:
  3279. camelcase: 6.3.0
  3280. decamelize: 4.0.0
  3281. flat: 5.0.2
  3282. is-plain-obj: 2.1.0
  3283. yargs@17.7.2:
  3284. dependencies:
  3285. cliui: 8.0.1
  3286. escalade: 3.2.0
  3287. get-caller-file: 2.0.5
  3288. require-directory: 2.1.1
  3289. string-width: 4.2.3
  3290. y18n: 5.0.8
  3291. yargs-parser: 21.1.1
  3292. yauzl-promise@4.0.0:
  3293. dependencies:
  3294. '@node-rs/crc32': 1.10.6
  3295. is-it-type: 5.1.3
  3296. simple-invariant: 2.0.1
  3297. yocto-queue@0.1.0: {}