pnpm-lock.yaml 139 KB

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