pnpm-lock.yaml 140 KB

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