pnpm-lock.yaml 140 KB

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