pnpm-lock.yaml 140 KB

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