pnpm-lock.yaml 147 KB

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