pnpm-lock.yaml 141 KB

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