pnpm-lock.yaml 140 KB

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