pnpm-lock.yaml 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. overrides:
  6. has: npm:@nolyfill/has@latest
  7. patchedDependencies:
  8. whoiser:
  9. hash: 01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f
  10. path: patches/whoiser.patch
  11. importers:
  12. .:
  13. dependencies:
  14. '@ghostery/adblocker':
  15. specifier: ^2.8.0
  16. version: 2.8.0
  17. '@henrygd/queue':
  18. specifier: ^1.0.7
  19. version: 1.0.7
  20. '@mitata/counters':
  21. specifier: ^0.0.8
  22. version: 0.0.8
  23. async-retry:
  24. specifier: ^1.3.3
  25. version: 1.3.3
  26. better-sqlite3:
  27. specifier: ^12.1.1
  28. version: 12.1.1
  29. ci-info:
  30. specifier: ^4.2.0
  31. version: 4.2.0
  32. cli-progress:
  33. specifier: ^3.12.0
  34. version: 3.12.0
  35. csv-parse:
  36. specifier: ^5.6.0
  37. version: 5.6.0
  38. dns2:
  39. specifier: ^2.1.0
  40. version: 2.1.0
  41. fast-cidr-tools:
  42. specifier: ^0.3.2
  43. version: 0.3.2
  44. fast-fifo:
  45. specifier: ^1.3.2
  46. version: 1.3.2
  47. fast-uri:
  48. specifier: ^3.0.6
  49. version: 3.0.6
  50. fdir:
  51. specifier: ^6.4.6
  52. version: 6.4.6(picomatch@4.0.2)
  53. foxts:
  54. specifier: ^3.6.0
  55. version: 3.6.0
  56. hash-wasm:
  57. specifier: ^4.12.0
  58. version: 4.12.0
  59. json-stringify-pretty-compact:
  60. specifier: 3.0.0
  61. version: 3.0.0
  62. null-prototype-object:
  63. specifier: ^1.2.0
  64. version: 1.2.0
  65. picocolors:
  66. specifier: ^1.1.1
  67. version: 1.1.1
  68. punycode:
  69. specifier: ^2.3.1
  70. version: 2.3.1
  71. tar-fs:
  72. specifier: ^3.0.10
  73. version: 3.0.10
  74. tldts:
  75. specifier: ^6.1.86
  76. version: 6.1.86
  77. tldts-experimental:
  78. specifier: ^6.1.86
  79. version: 6.1.86
  80. undici:
  81. specifier: ^7.11.0
  82. version: 7.11.0
  83. undici-cache-store-better-sqlite3:
  84. specifier: ^1.0.0
  85. version: 1.0.0(undici@7.11.0)
  86. whoiser:
  87. specifier: ^1.18.0
  88. version: 1.18.0(patch_hash=01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f)
  89. why-is-node-running:
  90. specifier: ^3.2.2
  91. version: 3.2.2
  92. worktank:
  93. specifier: ^2.7.3
  94. version: 2.7.3
  95. xbits:
  96. specifier: ^0.2.0
  97. version: 0.2.0
  98. yaml:
  99. specifier: ^2.8.0
  100. version: 2.8.0
  101. yauzl-promise:
  102. specifier: ^4.0.0
  103. version: 4.0.0
  104. devDependencies:
  105. '@eslint-sukka/node':
  106. specifier: ^6.22.1
  107. version: 6.22.1(eslint@9.30.0)(typescript@5.8.3)
  108. '@swc-node/register':
  109. specifier: ^1.10.10
  110. version: 1.10.10(@swc/core@1.12.7)(@swc/types@0.1.23)(typescript@5.8.3)
  111. '@swc/core':
  112. specifier: ^1.12.7
  113. version: 1.12.7
  114. '@types/async-retry':
  115. specifier: ^1.4.9
  116. version: 1.4.9
  117. '@types/better-sqlite3':
  118. specifier: ^7.6.13
  119. version: 7.6.13
  120. '@types/cli-progress':
  121. specifier: ^3.11.6
  122. version: 3.11.6
  123. '@types/dns2':
  124. specifier: ^2.0.9
  125. version: 2.0.9
  126. '@types/fast-fifo':
  127. specifier: ^1.3.0
  128. version: 1.3.0
  129. '@types/mocha':
  130. specifier: ^10.0.10
  131. version: 10.0.10
  132. '@types/node':
  133. specifier: ^24.0.7
  134. version: 24.0.7
  135. '@types/punycode':
  136. specifier: ^2.1.4
  137. version: 2.1.4
  138. '@types/tar-fs':
  139. specifier: ^2.0.4
  140. version: 2.0.4
  141. '@types/yauzl-promise':
  142. specifier: ^4.0.1
  143. version: 4.0.1
  144. eslint:
  145. specifier: ^9.30.0
  146. version: 9.30.0
  147. eslint-config-sukka:
  148. specifier: ^6.22.1
  149. version: 6.22.1(@typescript-eslint/eslint-plugin@8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3))(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0)(typescript@5.8.3)
  150. eslint-formatter-sukka:
  151. specifier: ^6.22.1
  152. version: 6.22.1
  153. expect:
  154. specifier: ^30.0.3
  155. version: 30.0.3
  156. mitata:
  157. specifier: ^1.0.34
  158. version: 1.0.34
  159. mocha:
  160. specifier: ^11.7.1
  161. version: 11.7.1
  162. tinyexec:
  163. specifier: ^1.0.1
  164. version: 1.0.1
  165. typescript:
  166. specifier: ^5.8.3
  167. version: 5.8.3
  168. packages:
  169. '@babel/code-frame@7.27.1':
  170. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  171. engines: {node: '>=6.9.0'}
  172. '@babel/helper-validator-identifier@7.27.1':
  173. resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
  174. engines: {node: '>=6.9.0'}
  175. '@babel/runtime@7.27.6':
  176. resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
  177. engines: {node: '>=6.9.0'}
  178. '@dual-bundle/import-meta-resolve@4.1.0':
  179. resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
  180. '@emnapi/core@1.4.3':
  181. resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
  182. '@emnapi/runtime@1.4.3':
  183. resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
  184. '@emnapi/wasi-threads@1.0.2':
  185. resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
  186. '@eslint-community/eslint-plugin-eslint-comments@4.5.0':
  187. resolution: {integrity: sha512-MAhuTKlr4y/CE3WYX26raZjy+I/kS2PLKSzvfmDCGrBLTFHOYwqROZdr4XwPgXwX3K9rjzMr4pSmUWGnzsUyMg==}
  188. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  189. peerDependencies:
  190. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  191. '@eslint-community/eslint-utils@4.7.0':
  192. resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
  193. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  194. peerDependencies:
  195. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  196. '@eslint-community/regexpp@4.12.1':
  197. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  198. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  199. '@eslint-sukka/node@6.22.1':
  200. resolution: {integrity: sha512-1jYlizqxw6lc76vNlreOzoE8bNTKhdXQYaMJBP8m+7uj8FIlhxYRE0IOMNomd8OhRP05PBhOkhaB3i3X+7eGdw==}
  201. '@eslint-sukka/shared@6.22.1':
  202. resolution: {integrity: sha512-Nob53wcopRLYtLwmdTzkUY6i/rBQH4M/czlJaXSg0QWlRJ4wcPHAH5oSJpWFFfbyBPKIDJNMxlJnwYAia8Y2bQ==}
  203. '@eslint/config-array@0.21.0':
  204. resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
  205. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  206. '@eslint/config-helpers@0.3.0':
  207. resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==}
  208. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  209. '@eslint/core@0.14.0':
  210. resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
  211. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  212. '@eslint/core@0.15.1':
  213. resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
  214. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  215. '@eslint/eslintrc@3.3.1':
  216. resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
  217. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  218. '@eslint/js@9.30.0':
  219. resolution: {integrity: sha512-Wzw3wQwPvc9sHM+NjakWTcPx11mbZyiYHuwWa/QfZ7cIRX7WK54PSk7bdyXDaoaopUcMatv1zaQvOAAO8hCdww==}
  220. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  221. '@eslint/object-schema@2.1.6':
  222. resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
  223. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  224. '@eslint/plugin-kit@0.3.3':
  225. resolution: {integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==}
  226. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  227. '@ghostery/adblocker-content@2.8.0':
  228. resolution: {integrity: sha512-s16EMhMmEcCkGalPcoaJB+UYhF7N91MibRSPCx0eNsFdew43zZnY3SPdatnZODk0qSCFoxa0pMCGtHJ6PypxWA==}
  229. '@ghostery/adblocker-extended-selectors@2.8.0':
  230. resolution: {integrity: sha512-+iE4fd1pVxDD+3G6nfflk242CyW6XBYyZNbJmjhbImmqB+wkSZQsa+SwX55SSk7bPGI91tHsT/UPRJir2SjvTA==}
  231. '@ghostery/adblocker@2.8.0':
  232. resolution: {integrity: sha512-fqPYYYoa+Lonc5RLQiOnzTfWKoi5nXkBwTQUPBaUsUifHTXHzkfgPsyIGNx8YNqcvdbDoIrReO3hIbIFf6KiWA==}
  233. '@ghostery/url-parser@1.3.0':
  234. resolution: {integrity: sha512-FEzdSeiva0Mt3bR4xePFzthhjT4IzvA5QTvS1xXkNyLpMGeq40mb3V2fSs0ZItRaP9IybZthDfHUSbQ1HLdx4Q==}
  235. '@henrygd/queue@1.0.7':
  236. resolution: {integrity: sha512-Jmt/iO6yDlz9UYGILkm/Qzi/ckkEiTNZcqDvt3QFLE4OThPeiCj6tKsynHFm/ppl8RumWXAx1dZPBPiRPaaGig==}
  237. '@humanfs/core@0.19.1':
  238. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  239. engines: {node: '>=18.18.0'}
  240. '@humanfs/node@0.16.6':
  241. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  242. engines: {node: '>=18.18.0'}
  243. '@humanwhocodes/module-importer@1.0.1':
  244. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  245. engines: {node: '>=12.22'}
  246. '@humanwhocodes/retry@0.3.1':
  247. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  248. engines: {node: '>=18.18'}
  249. '@humanwhocodes/retry@0.4.3':
  250. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  251. engines: {node: '>=18.18'}
  252. '@isaacs/balanced-match@4.0.1':
  253. resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
  254. engines: {node: 20 || >=22}
  255. '@isaacs/brace-expansion@5.0.0':
  256. resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
  257. engines: {node: 20 || >=22}
  258. '@isaacs/cliui@8.0.2':
  259. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  260. engines: {node: '>=12'}
  261. '@jest/diff-sequences@30.0.1':
  262. resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
  263. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  264. '@jest/expect-utils@30.0.3':
  265. resolution: {integrity: sha512-SMtBvf2sfX2agcT0dA9pXwcUrKvOSDqBY4e4iRfT+Hya33XzV35YVg+98YQFErVGA/VR1Gto5Y2+A6G9LSQ3Yg==}
  266. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  267. '@jest/get-type@30.0.1':
  268. resolution: {integrity: sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==}
  269. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  270. '@jest/pattern@30.0.1':
  271. resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
  272. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  273. '@jest/schemas@30.0.1':
  274. resolution: {integrity: sha512-+g/1TKjFuGrf1Hh0QPCv0gISwBxJ+MQSNXmG9zjHy7BmFhtoJ9fdNhWJp3qUKRi93AOZHXtdxZgJ1vAtz6z65w==}
  275. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  276. '@jest/types@30.0.1':
  277. resolution: {integrity: sha512-HGwoYRVF0QSKJu1ZQX0o5ZrUrrhj0aOOFA8hXrumD7SIzjouevhawbTjmXdwOmURdGluU9DM/XvGm3NyFoiQjw==}
  278. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  279. '@mitata/counters@0.0.8':
  280. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  281. '@napi-rs/wasm-runtime@0.2.11':
  282. resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==}
  283. '@node-rs/crc32-android-arm-eabi@1.10.6':
  284. resolution: {integrity: sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==}
  285. engines: {node: '>= 10'}
  286. cpu: [arm]
  287. os: [android]
  288. '@node-rs/crc32-android-arm64@1.10.6':
  289. resolution: {integrity: sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==}
  290. engines: {node: '>= 10'}
  291. cpu: [arm64]
  292. os: [android]
  293. '@node-rs/crc32-darwin-arm64@1.10.6':
  294. resolution: {integrity: sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==}
  295. engines: {node: '>= 10'}
  296. cpu: [arm64]
  297. os: [darwin]
  298. '@node-rs/crc32-darwin-x64@1.10.6':
  299. resolution: {integrity: sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==}
  300. engines: {node: '>= 10'}
  301. cpu: [x64]
  302. os: [darwin]
  303. '@node-rs/crc32-freebsd-x64@1.10.6':
  304. resolution: {integrity: sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==}
  305. engines: {node: '>= 10'}
  306. cpu: [x64]
  307. os: [freebsd]
  308. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  309. resolution: {integrity: sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==}
  310. engines: {node: '>= 10'}
  311. cpu: [arm]
  312. os: [linux]
  313. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  314. resolution: {integrity: sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==}
  315. engines: {node: '>= 10'}
  316. cpu: [arm64]
  317. os: [linux]
  318. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  319. resolution: {integrity: sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==}
  320. engines: {node: '>= 10'}
  321. cpu: [arm64]
  322. os: [linux]
  323. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  324. resolution: {integrity: sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==}
  325. engines: {node: '>= 10'}
  326. cpu: [x64]
  327. os: [linux]
  328. '@node-rs/crc32-linux-x64-musl@1.10.6':
  329. resolution: {integrity: sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==}
  330. engines: {node: '>= 10'}
  331. cpu: [x64]
  332. os: [linux]
  333. '@node-rs/crc32-wasm32-wasi@1.10.6':
  334. resolution: {integrity: sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==}
  335. engines: {node: '>=14.0.0'}
  336. cpu: [wasm32]
  337. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  338. resolution: {integrity: sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==}
  339. engines: {node: '>= 10'}
  340. cpu: [arm64]
  341. os: [win32]
  342. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  343. resolution: {integrity: sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==}
  344. engines: {node: '>= 10'}
  345. cpu: [ia32]
  346. os: [win32]
  347. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  348. resolution: {integrity: sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==}
  349. engines: {node: '>= 10'}
  350. cpu: [x64]
  351. os: [win32]
  352. '@node-rs/crc32@1.10.6':
  353. resolution: {integrity: sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==}
  354. engines: {node: '>= 10'}
  355. '@nodelib/fs.scandir@2.1.5':
  356. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  357. engines: {node: '>= 8'}
  358. '@nodelib/fs.stat@2.0.5':
  359. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  360. engines: {node: '>= 8'}
  361. '@nodelib/fs.walk@1.2.8':
  362. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  363. engines: {node: '>= 8'}
  364. '@oxc-resolver/binding-darwin-arm64@5.3.0':
  365. resolution: {integrity: sha512-hXem5ZAguS7IlSiHg/LK0tEfLj4eUo+9U6DaFwwBEGd0L0VIF9LmuiHydRyOrdnnmi9iAAFMAn/wl2cUoiuruA==}
  366. cpu: [arm64]
  367. os: [darwin]
  368. '@oxc-resolver/binding-darwin-x64@5.3.0':
  369. resolution: {integrity: sha512-wgSwfsZkRbuYCIBLxeg1bYrtKnirAy+IJF0lwfz4z08clgdNBDbfGECJe/cd0csIZPpRcvPFe8317yf31sWhtA==}
  370. cpu: [x64]
  371. os: [darwin]
  372. '@oxc-resolver/binding-freebsd-x64@5.3.0':
  373. resolution: {integrity: sha512-kzeE2WHgcRMmWjB071RdwEV5Pwke4o0WWslCKoh8if1puvxIxfzu3o7g6P2+v77BP5qop4cri+uvLABSO0WZjg==}
  374. cpu: [x64]
  375. os: [freebsd]
  376. '@oxc-resolver/binding-linux-arm-gnueabihf@5.3.0':
  377. resolution: {integrity: sha512-I8np34yZP/XfIkZNDbw3rweqVgfjmHYpNX3xnJZWg+f4mgO9/UNWBwetSaqXeDZqvIch/aHak+q4HVrQhQKCqg==}
  378. cpu: [arm]
  379. os: [linux]
  380. '@oxc-resolver/binding-linux-arm64-gnu@5.3.0':
  381. resolution: {integrity: sha512-u2ndfeEUrW898eXM+qPxIN8TvTPjI90NDQBRgaxxkOfNw3xaotloeiZGz5+Yzlfxgvxr9DY9FdYkqhUhSnGhOw==}
  382. cpu: [arm64]
  383. os: [linux]
  384. '@oxc-resolver/binding-linux-arm64-musl@5.3.0':
  385. resolution: {integrity: sha512-TzbjmFkcnESGuVItQ2diKacX8vu5G0bH3BHmIlmY4OSRLyoAlrJFwGKAHmh6C9+Amfcjo2rx8vdm7swzmsGC6Q==}
  386. cpu: [arm64]
  387. os: [linux]
  388. '@oxc-resolver/binding-linux-riscv64-gnu@5.3.0':
  389. resolution: {integrity: sha512-NH3pjAqh8nuN29iRuRfTY42Vn03ctoR9VE8llfoUKUfhHUjFHYOXK5VSkhjj1usG8AeuesvqrQnLptCRQVTi/Q==}
  390. cpu: [riscv64]
  391. os: [linux]
  392. '@oxc-resolver/binding-linux-s390x-gnu@5.3.0':
  393. resolution: {integrity: sha512-tuZtkK9sJYh2MC2uhol1M/8IMTB6ZQ5jmqP2+k5XNXnOb/im94Y5uV/u2lXwVyIuKHZZHtr+0d1HrOiNahoKpw==}
  394. cpu: [s390x]
  395. os: [linux]
  396. '@oxc-resolver/binding-linux-x64-gnu@5.3.0':
  397. resolution: {integrity: sha512-VzhPYmZCtoES/ThcPdGSmMop7JlwgqtSvlgtKCW15ByV2JKyl8kHAHnPSBfpIooXb0ehFnRdxFtL9qtAEWy01g==}
  398. cpu: [x64]
  399. os: [linux]
  400. '@oxc-resolver/binding-linux-x64-musl@5.3.0':
  401. resolution: {integrity: sha512-Hi39cWzul24rGljN4Vf1lxjXzQdCrdxO5oCT7KJP4ndSlqIUODJnfnMAP1YhcnIRvNvk+5E6sZtnEmFUd/4d8Q==}
  402. cpu: [x64]
  403. os: [linux]
  404. '@oxc-resolver/binding-wasm32-wasi@5.3.0':
  405. resolution: {integrity: sha512-ddujvHhP3chmHnSXRlkPVUeYj4/B7eLZwL4yUid+df3WCbVh6DgoT9RmllZn21AhxgKtMdekDdyVJYKFd8tl4A==}
  406. engines: {node: '>=14.0.0'}
  407. cpu: [wasm32]
  408. '@oxc-resolver/binding-win32-arm64-msvc@5.3.0':
  409. resolution: {integrity: sha512-j1YYPLvUkMVNKmIFQZZJ7q6Do4cI3htUnyxNLwDSBVhSohvPIK2VG+IdtOAlWZGa7v+phEZsHfNbXVwB0oPYFQ==}
  410. cpu: [arm64]
  411. os: [win32]
  412. '@oxc-resolver/binding-win32-x64-msvc@5.3.0':
  413. resolution: {integrity: sha512-LT9eOPPUqfZscQRd5mc08RBeDWOQf+dnOrKnanMallTGPe6g7+rcAlFTA8SWoJbcD45PV8yArFtCmSQSpzHZmg==}
  414. cpu: [x64]
  415. os: [win32]
  416. '@package-json/types@0.0.11':
  417. resolution: {integrity: sha512-allOTUn4Xi2bQMs+mthzHWekgjRBVno+DLOcXk9+6haG5oFu5rlz0pszT3sh1OAkQVFLYrAS4V5CSxWyVwUf7g==}
  418. '@pkgjs/parseargs@0.11.0':
  419. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  420. engines: {node: '>=14'}
  421. '@pkgr/core@0.2.7':
  422. resolution: {integrity: sha512-YLT9Zo3oNPJoBjBc4q8G2mjU4tqIbf5CEOORbUUr48dCD9q3umJ3IPlVqOqDakPfd2HuwccBaqlGhN4Gmr5OWg==}
  423. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  424. '@remusao/guess-url-type@2.1.0':
  425. resolution: {integrity: sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==}
  426. '@remusao/small@2.1.0':
  427. resolution: {integrity: sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==}
  428. '@remusao/smaz-compress@2.2.0':
  429. resolution: {integrity: sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==}
  430. '@remusao/smaz-decompress@2.2.0':
  431. resolution: {integrity: sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==}
  432. '@remusao/smaz@2.2.0':
  433. resolution: {integrity: sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==}
  434. '@remusao/trie@2.1.0':
  435. resolution: {integrity: sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==}
  436. '@sinclair/typebox@0.34.37':
  437. resolution: {integrity: sha512-2TRuQVgQYfy+EzHRTIvkhv2ADEouJ2xNS/Vq+W5EuuewBdOrvATvljZTxHWZSTYr2sTjTHpGvucaGAt67S2akw==}
  438. '@swc-node/core@1.13.3':
  439. resolution: {integrity: sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==}
  440. engines: {node: '>= 10'}
  441. peerDependencies:
  442. '@swc/core': '>= 1.4.13'
  443. '@swc/types': '>= 0.1'
  444. '@swc-node/register@1.10.10':
  445. resolution: {integrity: sha512-jYWaI2WNEKz8KZL3sExd2KVL1JMma1/J7z+9iTpv0+fRN7LGMF8VTGGuHI2bug/ztpdZU1G44FG/Kk6ElXL9CQ==}
  446. peerDependencies:
  447. '@swc/core': '>= 1.4.13'
  448. typescript: '>= 4.3'
  449. '@swc-node/sourcemap-support@0.5.1':
  450. resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
  451. '@swc/core-darwin-arm64@1.12.7':
  452. resolution: {integrity: sha512-w6BBT0hBRS56yS+LbReVym0h+iB7/PpCddqrn1ha94ra4rZ4R/A91A/rkv+LnQlPqU/+fhqdlXtCJU9mrhCBtA==}
  453. engines: {node: '>=10'}
  454. cpu: [arm64]
  455. os: [darwin]
  456. '@swc/core-darwin-x64@1.12.7':
  457. resolution: {integrity: sha512-jN6LhFfGOpm4DY2mXPgwH4aa9GLOwublwMVFFZ/bGnHYYCRitLZs9+JWBbyWs7MyGcA246Ew+EREx36KVEAxjA==}
  458. engines: {node: '>=10'}
  459. cpu: [x64]
  460. os: [darwin]
  461. '@swc/core-linux-arm-gnueabihf@1.12.7':
  462. resolution: {integrity: sha512-rHn8XXi7G2StEtZRAeJ6c7nhJPDnqsHXmeNrAaYwk8Tvpa6ZYG2nT9E1OQNXj1/dfbSFTjdiA8M8ZvGYBlpBoA==}
  463. engines: {node: '>=10'}
  464. cpu: [arm]
  465. os: [linux]
  466. '@swc/core-linux-arm64-gnu@1.12.7':
  467. resolution: {integrity: sha512-N15hKizSSh+hkZ2x3TDVrxq0TDcbvDbkQJi2ZrLb9fK+NdFUV/x+XF16ZDPlbxtrGXl1CT7VD439SNaMN9F7qw==}
  468. engines: {node: '>=10'}
  469. cpu: [arm64]
  470. os: [linux]
  471. '@swc/core-linux-arm64-musl@1.12.7':
  472. resolution: {integrity: sha512-jxyINtBezpxd3eIUDiDXv7UQ87YWlPsM9KumOwJk09FkFSO4oYxV2RT+Wu+Nt5tVWue4N0MdXT/p7SQsDEk4YA==}
  473. engines: {node: '>=10'}
  474. cpu: [arm64]
  475. os: [linux]
  476. '@swc/core-linux-x64-gnu@1.12.7':
  477. resolution: {integrity: sha512-PR4tPVwU1BQBfFDk2XfzXxsEIjF3x/bOV1BzZpYvrlkU0TKUDbR4t2wzvsYwD/coW7/yoQmlL70/qnuPtTp1Zw==}
  478. engines: {node: '>=10'}
  479. cpu: [x64]
  480. os: [linux]
  481. '@swc/core-linux-x64-musl@1.12.7':
  482. resolution: {integrity: sha512-zy7JWfQtQItgMfUjSbbcS3DZqQUn2d9VuV0LSGpJxtTXwgzhRpF1S2Sj7cU9hGpbM27Y8RJ4DeFb3qbAufjbrw==}
  483. engines: {node: '>=10'}
  484. cpu: [x64]
  485. os: [linux]
  486. '@swc/core-win32-arm64-msvc@1.12.7':
  487. resolution: {integrity: sha512-52PeF0tyX04ZFD8nibNhy/GjMFOZWTEWPmIB3wpD1vIJ1po+smtBnEdRRll5WIXITKoiND8AeHlBNBPqcsdcwA==}
  488. engines: {node: '>=10'}
  489. cpu: [arm64]
  490. os: [win32]
  491. '@swc/core-win32-ia32-msvc@1.12.7':
  492. resolution: {integrity: sha512-WzQwkNMuhB1qQShT9uUgz/mX2j7NIEPExEtzvGsBT7TlZ9j1kGZ8NJcZH/fwOFcSJL4W7DnkL7nAhx6DBlSPaA==}
  493. engines: {node: '>=10'}
  494. cpu: [ia32]
  495. os: [win32]
  496. '@swc/core-win32-x64-msvc@1.12.7':
  497. resolution: {integrity: sha512-R52ivBi2lgjl+Bd3XCPum0YfgbZq/W1AUExITysddP9ErsNSwnreYyNB3exEijiazWGcqHEas2ChiuMOP7NYrA==}
  498. engines: {node: '>=10'}
  499. cpu: [x64]
  500. os: [win32]
  501. '@swc/core@1.12.7':
  502. resolution: {integrity: sha512-bcpllEihyUSnqp0UtXTvXc19CT4wp3tGWLENhWnjr4B5iEOkzqMu+xHGz1FI5IBatjfqOQb29tgIfv6IL05QaA==}
  503. engines: {node: '>=10'}
  504. peerDependencies:
  505. '@swc/helpers': '>=0.5.17'
  506. peerDependenciesMeta:
  507. '@swc/helpers':
  508. optional: true
  509. '@swc/counter@0.1.3':
  510. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  511. '@swc/types@0.1.23':
  512. resolution: {integrity: sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw==}
  513. '@tybys/wasm-util@0.9.0':
  514. resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
  515. '@types/async-retry@1.4.9':
  516. resolution: {integrity: sha512-s1ciZQJzRh3708X/m3vPExr5KJlzlZJvXsKpbtE2luqNcbROr64qU+3KpJsYHqWMeaxI839OvXf9PrUSw1Xtyg==}
  517. '@types/better-sqlite3@7.6.13':
  518. resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
  519. '@types/cli-progress@3.11.6':
  520. resolution: {integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==}
  521. '@types/dns2@2.0.9':
  522. resolution: {integrity: sha512-+eiPSuo/KfvaaW7DiMf/vrt9mhxbZCCgxoCa/c2qMVSuZQus4BzBuKRh8XBwcUXWAtvI8QuZOp13UODJNq9DXg==}
  523. '@types/estree@1.0.8':
  524. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  525. '@types/fast-fifo@1.3.0':
  526. resolution: {integrity: sha512-xTVvla2QX5ruNmVUqCFc++xm42xl6RBaroppSleSczvM2rAwClr88MbnrgDGLIStt4RCVegeKO4z2HM5AHFOng==}
  527. '@types/istanbul-lib-coverage@2.0.6':
  528. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  529. '@types/istanbul-lib-report@3.0.3':
  530. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  531. '@types/istanbul-reports@3.0.4':
  532. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  533. '@types/json-schema@7.0.15':
  534. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  535. '@types/mocha@10.0.10':
  536. resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
  537. '@types/node@24.0.7':
  538. resolution: {integrity: sha512-YIEUUr4yf8q8oQoXPpSlnvKNVKDQlPMWrmOcgzoduo7kvA2UF0/BwJ/eMKFTiTtkNL17I0M6Xe2tvwFU7be6iw==}
  539. '@types/punycode@2.1.4':
  540. resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==}
  541. '@types/retry@0.12.5':
  542. resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==}
  543. '@types/stack-utils@2.0.3':
  544. resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
  545. '@types/tar-fs@2.0.4':
  546. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  547. '@types/tar-stream@3.1.4':
  548. resolution: {integrity: sha512-921gW0+g29mCJX0fRvqeHzBlE/XclDaAG0Ousy1LCghsOhvaKacDeRGEVzQP9IPfKn8Vysy7FEXAIxycpc/CMg==}
  549. '@types/yargs-parser@21.0.3':
  550. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  551. '@types/yargs@17.0.33':
  552. resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
  553. '@types/yauzl-promise@4.0.1':
  554. resolution: {integrity: sha512-qYEC3rJwqiJpdQ9b+bPNeuSY0c3JUM8vIuDy08qfuVN7xHm3ZDsHn2kGphUIB0ruEXrPGNXZ64nMUcu4fDjViQ==}
  555. '@typescript-eslint/eslint-plugin@8.35.0':
  556. resolution: {integrity: sha512-ijItUYaiWuce0N1SoSMrEd0b6b6lYkYt99pqCPfybd+HKVXtEvYhICfLdwp42MhiI5mp0oq7PKEL+g1cNiz/Eg==}
  557. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  558. peerDependencies:
  559. '@typescript-eslint/parser': ^8.35.0
  560. eslint: ^8.57.0 || ^9.0.0
  561. typescript: '>=4.8.4 <5.9.0'
  562. '@typescript-eslint/parser@8.35.0':
  563. resolution: {integrity: sha512-6sMvZePQrnZH2/cJkwRpkT7DxoAWh+g6+GFRK6bV3YQo7ogi3SX5rgF6099r5Q53Ma5qeT7LGmOmuIutF4t3lA==}
  564. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  565. peerDependencies:
  566. eslint: ^8.57.0 || ^9.0.0
  567. typescript: '>=4.8.4 <5.9.0'
  568. '@typescript-eslint/project-service@8.35.0':
  569. resolution: {integrity: sha512-41xatqRwWZuhUMF/aZm2fcUsOFKNcG28xqRSS6ZVr9BVJtGExosLAm5A1OxTjRMagx8nJqva+P5zNIGt8RIgbQ==}
  570. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  571. peerDependencies:
  572. typescript: '>=4.8.4 <5.9.0'
  573. '@typescript-eslint/scope-manager@8.35.0':
  574. resolution: {integrity: sha512-+AgL5+mcoLxl1vGjwNfiWq5fLDZM1TmTPYs2UkyHfFhgERxBbqHlNjRzhThJqz+ktBqTChRYY6zwbMwy0591AA==}
  575. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  576. '@typescript-eslint/tsconfig-utils@8.35.0':
  577. resolution: {integrity: sha512-04k/7247kZzFraweuEirmvUj+W3bJLI9fX6fbo1Qm2YykuBvEhRTPl8tcxlYO8kZZW+HIXfkZNoasVb8EV4jpA==}
  578. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  579. peerDependencies:
  580. typescript: '>=4.8.4 <5.9.0'
  581. '@typescript-eslint/type-utils@8.35.0':
  582. resolution: {integrity: sha512-ceNNttjfmSEoM9PW87bWLDEIaLAyR+E6BoYJQ5PfaDau37UGca9Nyq3lBk8Bw2ad0AKvYabz6wxc7DMTO2jnNA==}
  583. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  584. peerDependencies:
  585. eslint: ^8.57.0 || ^9.0.0
  586. typescript: '>=4.8.4 <5.9.0'
  587. '@typescript-eslint/types@8.35.0':
  588. resolution: {integrity: sha512-0mYH3emanku0vHw2aRLNGqe7EXh9WHEhi7kZzscrMDf6IIRUQ5Jk4wp1QrledE/36KtdZrVfKnE32eZCf/vaVQ==}
  589. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  590. '@typescript-eslint/typescript-estree@8.35.0':
  591. resolution: {integrity: sha512-F+BhnaBemgu1Qf8oHrxyw14wq6vbL8xwWKKMwTMwYIRmFFY/1n/9T/jpbobZL8vp7QyEUcC6xGrnAO4ua8Kp7w==}
  592. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  593. peerDependencies:
  594. typescript: '>=4.8.4 <5.9.0'
  595. '@typescript-eslint/utils@8.35.0':
  596. resolution: {integrity: sha512-nqoMu7WWM7ki5tPgLVsmPM8CkqtoPUG6xXGeefM5t4x3XumOEKMoUZPdi+7F+/EotukN4R9OWdmDxN80fqoZeg==}
  597. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  598. peerDependencies:
  599. eslint: ^8.57.0 || ^9.0.0
  600. typescript: '>=4.8.4 <5.9.0'
  601. '@typescript-eslint/visitor-keys@8.35.0':
  602. resolution: {integrity: sha512-zTh2+1Y8ZpmeQaQVIc/ZZxsx8UzgKJyNg1PTvjzC7WMhPSVS8bfDX34k1SrwOf016qd5RU3az2UxUNue3IfQ5g==}
  603. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  604. '@unrs/resolver-binding-android-arm-eabi@1.9.2':
  605. resolution: {integrity: sha512-tS+lqTU3N0kkthU+rYp0spAYq15DU8ld9kXkaKg9sbQqJNF+WPMuNHZQGCgdxrUOEO0j22RKMwRVhF1HTl+X8A==}
  606. cpu: [arm]
  607. os: [android]
  608. '@unrs/resolver-binding-android-arm64@1.9.2':
  609. resolution: {integrity: sha512-MffGiZULa/KmkNjHeuuflLVqfhqLv1vZLm8lWIyeADvlElJ/GLSOkoUX+5jf4/EGtfwrNFcEaB8BRas03KT0/Q==}
  610. cpu: [arm64]
  611. os: [android]
  612. '@unrs/resolver-binding-darwin-arm64@1.9.2':
  613. resolution: {integrity: sha512-dzJYK5rohS1sYl1DHdJ3mwfwClJj5BClQnQSyAgEfggbUwA9RlROQSSbKBLqrGfsiC/VyrDPtbO8hh56fnkbsQ==}
  614. cpu: [arm64]
  615. os: [darwin]
  616. '@unrs/resolver-binding-darwin-x64@1.9.2':
  617. resolution: {integrity: sha512-gaIMWK+CWtXcg9gUyznkdV54LzQ90S3X3dn8zlh+QR5Xy7Y+Efqw4Rs4im61K1juy4YNb67vmJsCDAGOnIeffQ==}
  618. cpu: [x64]
  619. os: [darwin]
  620. '@unrs/resolver-binding-freebsd-x64@1.9.2':
  621. resolution: {integrity: sha512-S7QpkMbVoVJb0xwHFwujnwCAEDe/596xqY603rpi/ioTn9VDgBHnCCxh+UFrr5yxuMH+dliHfjwCZJXOPJGPnw==}
  622. cpu: [x64]
  623. os: [freebsd]
  624. '@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2':
  625. resolution: {integrity: sha512-+XPUMCuCCI80I46nCDFbGum0ZODP5NWGiwS3Pj8fOgsG5/ctz+/zzuBlq/WmGa+EjWZdue6CF0aWWNv84sE1uw==}
  626. cpu: [arm]
  627. os: [linux]
  628. '@unrs/resolver-binding-linux-arm-musleabihf@1.9.2':
  629. resolution: {integrity: sha512-sqvUyAd1JUpwbz33Ce2tuTLJKM+ucSsYpPGl2vuFwZnEIg0CmdxiZ01MHQ3j6ExuRqEDUCy8yvkDKvjYFPb8Zg==}
  630. cpu: [arm]
  631. os: [linux]
  632. '@unrs/resolver-binding-linux-arm64-gnu@1.9.2':
  633. resolution: {integrity: sha512-UYA0MA8ajkEDCFRQdng/FVx3F6szBvk3EPnkTTQuuO9lV1kPGuTB+V9TmbDxy5ikaEgyWKxa4CI3ySjklZ9lFA==}
  634. cpu: [arm64]
  635. os: [linux]
  636. '@unrs/resolver-binding-linux-arm64-musl@1.9.2':
  637. resolution: {integrity: sha512-P/CO3ODU9YJIHFqAkHbquKtFst0COxdphc8TKGL5yCX75GOiVpGqd1d15ahpqu8xXVsqP4MGFP2C3LRZnnL5MA==}
  638. cpu: [arm64]
  639. os: [linux]
  640. '@unrs/resolver-binding-linux-ppc64-gnu@1.9.2':
  641. resolution: {integrity: sha512-uKStFlOELBxBum2s1hODPtgJhY4NxYJE9pAeyBgNEzHgTqTiVBPjfTlPFJkfxyTjQEuxZbbJlJnMCrRgD7ubzw==}
  642. cpu: [ppc64]
  643. os: [linux]
  644. '@unrs/resolver-binding-linux-riscv64-gnu@1.9.2':
  645. resolution: {integrity: sha512-LkbNnZlhINfY9gK30AHs26IIVEZ9PEl9qOScYdmY2o81imJYI4IMnJiW0vJVtXaDHvBvxeAgEy5CflwJFIl3tQ==}
  646. cpu: [riscv64]
  647. os: [linux]
  648. '@unrs/resolver-binding-linux-riscv64-musl@1.9.2':
  649. resolution: {integrity: sha512-vI+e6FzLyZHSLFNomPi+nT+qUWN4YSj8pFtQZSFTtmgFoxqB6NyjxSjAxEC1m93qn6hUXhIsh8WMp+fGgxCoRg==}
  650. cpu: [riscv64]
  651. os: [linux]
  652. '@unrs/resolver-binding-linux-s390x-gnu@1.9.2':
  653. resolution: {integrity: sha512-sSO4AlAYhSM2RAzBsRpahcJB1msc6uYLAtP6pesPbZtptF8OU/CbCPhSRW6cnYOGuVmEmWVW5xVboAqCnWTeHQ==}
  654. cpu: [s390x]
  655. os: [linux]
  656. '@unrs/resolver-binding-linux-x64-gnu@1.9.2':
  657. resolution: {integrity: sha512-jkSkwch0uPFva20Mdu8orbQjv2A3G88NExTN2oPTI1AJ+7mZfYW3cDCTyoH6OnctBKbBVeJCEqh0U02lTkqD5w==}
  658. cpu: [x64]
  659. os: [linux]
  660. '@unrs/resolver-binding-linux-x64-musl@1.9.2':
  661. resolution: {integrity: sha512-Uk64NoiTpQbkpl+bXsbeyOPRpUoMdcUqa+hDC1KhMW7aN1lfW8PBlBH4mJ3n3Y47dYE8qi0XTxy1mBACruYBaw==}
  662. cpu: [x64]
  663. os: [linux]
  664. '@unrs/resolver-binding-wasm32-wasi@1.9.2':
  665. resolution: {integrity: sha512-EpBGwkcjDicjR/ybC0g8wO5adPNdVuMrNalVgYcWi+gYtC1XYNuxe3rufcO7dA76OHGeVabcO6cSkPJKVcbCXQ==}
  666. engines: {node: '>=14.0.0'}
  667. cpu: [wasm32]
  668. '@unrs/resolver-binding-win32-arm64-msvc@1.9.2':
  669. resolution: {integrity: sha512-EdFbGn7o1SxGmN6aZw9wAkehZJetFPao0VGZ9OMBwKx6TkvDuj6cNeLimF/Psi6ts9lMOe+Dt6z19fZQ9Ye2fw==}
  670. cpu: [arm64]
  671. os: [win32]
  672. '@unrs/resolver-binding-win32-ia32-msvc@1.9.2':
  673. resolution: {integrity: sha512-JY9hi1p7AG+5c/dMU8o2kWemM8I6VZxfGwn1GCtf3c5i+IKcMo2NQ8OjZ4Z3/itvY/Si3K10jOBQn7qsD/whUA==}
  674. cpu: [ia32]
  675. os: [win32]
  676. '@unrs/resolver-binding-win32-x64-msvc@1.9.2':
  677. resolution: {integrity: sha512-ryoo+EB19lMxAd80ln9BVf8pdOAxLb97amrQ3SFN9OCRn/5M5wvwDgAe4i8ZjhpbiHoDeP8yavcTEnpKBo7lZg==}
  678. cpu: [x64]
  679. os: [win32]
  680. acorn-jsx@5.3.2:
  681. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  682. peerDependencies:
  683. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  684. acorn@8.15.0:
  685. resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
  686. engines: {node: '>=0.4.0'}
  687. hasBin: true
  688. ajv@6.12.6:
  689. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  690. ansi-regex@5.0.1:
  691. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  692. engines: {node: '>=8'}
  693. ansi-regex@6.1.0:
  694. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  695. engines: {node: '>=12'}
  696. ansi-styles@4.3.0:
  697. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  698. engines: {node: '>=8'}
  699. ansi-styles@5.2.0:
  700. resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
  701. engines: {node: '>=10'}
  702. ansi-styles@6.2.1:
  703. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  704. engines: {node: '>=12'}
  705. argparse@2.0.1:
  706. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  707. array-timsort@1.0.3:
  708. resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
  709. async-retry@1.3.3:
  710. resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
  711. b4a@1.6.7:
  712. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  713. balanced-match@1.0.2:
  714. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  715. bare-events@2.5.4:
  716. resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
  717. bare-fs@4.1.5:
  718. resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==}
  719. engines: {bare: '>=1.16.0'}
  720. peerDependencies:
  721. bare-buffer: '*'
  722. peerDependenciesMeta:
  723. bare-buffer:
  724. optional: true
  725. bare-os@3.6.1:
  726. resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==}
  727. engines: {bare: '>=1.14.0'}
  728. bare-path@3.0.0:
  729. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  730. bare-stream@2.6.5:
  731. resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
  732. peerDependencies:
  733. bare-buffer: '*'
  734. bare-events: '*'
  735. peerDependenciesMeta:
  736. bare-buffer:
  737. optional: true
  738. bare-events:
  739. optional: true
  740. base64-js@1.5.1:
  741. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  742. better-sqlite3@11.10.0:
  743. resolution: {integrity: sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ==}
  744. better-sqlite3@12.1.1:
  745. resolution: {integrity: sha512-xjl/TjWLy/6yLa5wkbQSjTgIgSiaEJy3XzjF5TAdiWaAsu/v0OCkYOc6tos+PkM/k4qURN2pFKTsbcG3gk29Uw==}
  746. engines: {node: 20.x || 22.x || 23.x || 24.x}
  747. bindings@1.5.0:
  748. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  749. bl@4.1.0:
  750. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  751. brace-expansion@1.1.12:
  752. resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
  753. brace-expansion@2.0.2:
  754. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  755. braces@3.0.3:
  756. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  757. engines: {node: '>=8'}
  758. browser-stdout@1.3.1:
  759. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  760. buffer-from@1.1.2:
  761. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  762. buffer@5.7.1:
  763. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  764. callsites@3.1.0:
  765. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  766. engines: {node: '>=6'}
  767. camelcase@6.3.0:
  768. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  769. engines: {node: '>=10'}
  770. chalk@4.1.2:
  771. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  772. engines: {node: '>=10'}
  773. chokidar@4.0.3:
  774. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  775. engines: {node: '>= 14.16.0'}
  776. chownr@1.1.4:
  777. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  778. ci-info@4.2.0:
  779. resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==}
  780. engines: {node: '>=8'}
  781. cli-progress@3.12.0:
  782. resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
  783. engines: {node: '>=4'}
  784. cliui@8.0.1:
  785. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  786. engines: {node: '>=12'}
  787. color-convert@2.0.1:
  788. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  789. engines: {node: '>=7.0.0'}
  790. color-name@1.1.4:
  791. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  792. colorette@2.0.20:
  793. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  794. comment-json@4.2.5:
  795. resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
  796. engines: {node: '>= 6'}
  797. comment-parser@1.4.1:
  798. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  799. engines: {node: '>= 12.0.0'}
  800. concat-map@0.0.1:
  801. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  802. core-util-is@1.0.3:
  803. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  804. cross-spawn@7.0.6:
  805. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  806. engines: {node: '>= 8'}
  807. csv-parse@5.6.0:
  808. resolution: {integrity: sha512-l3nz3euub2QMg5ouu5U09Ew9Wf6/wQ8I++ch1loQ0ljmzhmfZYrH9fflS22i/PQEvsPvxCwxgz5q7UB8K1JO4Q==}
  809. debug@3.2.7:
  810. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  811. peerDependencies:
  812. supports-color: '*'
  813. peerDependenciesMeta:
  814. supports-color:
  815. optional: true
  816. debug@4.4.1:
  817. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  818. engines: {node: '>=6.0'}
  819. peerDependencies:
  820. supports-color: '*'
  821. peerDependenciesMeta:
  822. supports-color:
  823. optional: true
  824. decamelize@4.0.0:
  825. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  826. engines: {node: '>=10'}
  827. decompress-response@6.0.0:
  828. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  829. engines: {node: '>=10'}
  830. deep-extend@0.6.0:
  831. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  832. engines: {node: '>=4.0.0'}
  833. deep-is@0.1.4:
  834. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  835. define-data-property@1.1.4:
  836. resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
  837. engines: {node: '>= 0.4'}
  838. define-properties@1.2.1:
  839. resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
  840. engines: {node: '>= 0.4'}
  841. defu@6.1.4:
  842. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  843. detect-libc@2.0.4:
  844. resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
  845. engines: {node: '>=8'}
  846. diff@7.0.0:
  847. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  848. engines: {node: '>=0.3.1'}
  849. dns2@2.1.0:
  850. resolution: {integrity: sha512-m27K11aQalRbmUs7RLaz6aPyceLjAoqjPRNTdE7qUouQpl+PC8Bi67O+i9SuJUPbQC8dxFrczAxfmTPuTKHNkw==}
  851. eastasianwidth@0.2.0:
  852. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  853. emoji-regex@8.0.0:
  854. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  855. emoji-regex@9.2.2:
  856. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  857. end-of-stream@1.4.5:
  858. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  859. enhanced-resolve@5.18.2:
  860. resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==}
  861. engines: {node: '>=10.13.0'}
  862. es-define-property@1.0.1:
  863. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  864. engines: {node: '>= 0.4'}
  865. es-errors@1.3.0:
  866. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  867. engines: {node: '>= 0.4'}
  868. escalade@3.2.0:
  869. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  870. engines: {node: '>=6'}
  871. escape-string-regexp@2.0.0:
  872. resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
  873. engines: {node: '>=8'}
  874. escape-string-regexp@4.0.0:
  875. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  876. engines: {node: '>=10'}
  877. eslint-compat-utils@0.5.1:
  878. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  879. engines: {node: '>=12'}
  880. peerDependencies:
  881. eslint: '>=6.0.0'
  882. eslint-compat-utils@0.6.5:
  883. resolution: {integrity: sha512-vAUHYzue4YAa2hNACjB8HvUQj5yehAZgiClyFVVom9cP8z5NSFq3PwB/TtJslN2zAMgRX6FCFCjYBbQh71g5RQ==}
  884. engines: {node: '>=12'}
  885. peerDependencies:
  886. eslint: '>=6.0.0'
  887. eslint-config-sukka@6.22.1:
  888. resolution: {integrity: sha512-dtVLUrNdAi/5Zd74M99CyLChVnhgfxMP6DstjBx1+9DXinhezrqUUV0ukzUTsjtZ2TmrpK3h37QK93tM88mdKw==}
  889. eslint-formatter-sukka@6.22.1:
  890. resolution: {integrity: sha512-Xnv8lO+7UkLhHlgnTW2yh7x3FF7Fe23YSOBwZ/1l0dRUN2ysJ6L9zd4UsOuMtMI9bxYeQg80nYCE4hCvq5ZFRw==}
  891. eslint-import-context@0.1.9:
  892. resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
  893. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  894. peerDependencies:
  895. unrs-resolver: ^1.0.0
  896. peerDependenciesMeta:
  897. unrs-resolver:
  898. optional: true
  899. eslint-import-resolver-node@0.3.9:
  900. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  901. eslint-import-resolver-typescript@4.4.4:
  902. resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==}
  903. engines: {node: ^16.17.0 || >=18.6.0}
  904. peerDependencies:
  905. eslint: '*'
  906. eslint-plugin-import: '*'
  907. eslint-plugin-import-x: '*'
  908. peerDependenciesMeta:
  909. eslint-plugin-import:
  910. optional: true
  911. eslint-plugin-import-x:
  912. optional: true
  913. eslint-json-compat-utils@0.2.1:
  914. resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
  915. engines: {node: '>=12'}
  916. peerDependencies:
  917. '@eslint/json': '*'
  918. eslint: '*'
  919. jsonc-eslint-parser: ^2.4.0
  920. peerDependenciesMeta:
  921. '@eslint/json':
  922. optional: true
  923. eslint-plugin-autofix@2.2.0:
  924. resolution: {integrity: sha512-lu8+0r+utyTroROqXIL+a8sUpICi6za22hIzlpb0+x0tQGRnOjhOKU7v8mC/NS/faDoVsw6xW3vUpc+Mcz5NWA==}
  925. engines: {node: '>=18'}
  926. peerDependencies:
  927. eslint: '>=8'
  928. eslint-plugin-de-morgan@1.3.0:
  929. resolution: {integrity: sha512-UHCQ4XyDaEeSmk7lI0O1TEcsSBkvdyY8FV4H9TN2DvBfKV45SJR/qZ/rYwzt8JSBIbMXy8S0vNBhzngnpIreJw==}
  930. engines: {node: ^18.0.0 || >=20.0.0}
  931. peerDependencies:
  932. eslint: '>=8.0.0'
  933. eslint-plugin-es-x@7.8.0:
  934. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  935. engines: {node: ^14.18.0 || >=16.0.0}
  936. peerDependencies:
  937. eslint: '>=8'
  938. eslint-plugin-import-x@4.16.1:
  939. resolution: {integrity: sha512-vPZZsiOKaBAIATpFE2uMI4w5IRwdv/FpQ+qZZMR4E+PeOcM4OeoEbqxRMnywdxP19TyB/3h6QBB0EWon7letSQ==}
  940. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  941. peerDependencies:
  942. '@typescript-eslint/utils': ^8.0.0
  943. eslint: ^8.57.0 || ^9.0.0
  944. eslint-import-resolver-node: '*'
  945. peerDependenciesMeta:
  946. '@typescript-eslint/utils':
  947. optional: true
  948. eslint-import-resolver-node:
  949. optional: true
  950. eslint-plugin-jsonc@2.20.1:
  951. resolution: {integrity: sha512-gUzIwQHXx7ZPypUoadcyRi4WbHW2TPixDr0kqQ4miuJBU0emJmyGTlnaT3Og9X2a8R1CDayN9BFSq5weGWbTng==}
  952. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  953. peerDependencies:
  954. eslint: '>=6.0.0'
  955. eslint-plugin-n@17.20.0:
  956. resolution: {integrity: sha512-IRSoatgB/NQJZG5EeTbv/iAx1byOGdbbyhQrNvWdCfTnmPxUT0ao9/eGOeG7ljD8wJBsxwE8f6tES5Db0FRKEw==}
  957. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  958. peerDependencies:
  959. eslint: '>=8.23.0'
  960. eslint-plugin-paths@1.1.0:
  961. resolution: {integrity: sha512-Ye633sqwSy/GE5dLUI4zpxXoekIyQOD8FyYi2H0YkBws3Q4xjX/ycIzpDWt7BDAlKhbXYGk2BgP9qmNFnEX03w==}
  962. eslint-plugin-promise@7.2.1:
  963. resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==}
  964. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  965. peerDependencies:
  966. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  967. eslint-plugin-regexp@2.9.0:
  968. resolution: {integrity: sha512-9WqJMnOq8VlE/cK+YAo9C9YHhkOtcEtEk9d12a+H7OSZFwlpI6stiHmYPGa2VE0QhTzodJyhlyprUaXDZLgHBw==}
  969. engines: {node: ^18 || >=20}
  970. peerDependencies:
  971. eslint: '>=8.44.0'
  972. eslint-plugin-sukka@6.22.1:
  973. resolution: {integrity: sha512-gQgjk2yIrgShmYbZlSAKeFkHEAgHYuwtsLUenXE0yH1MfnBRSSNFvhl6LNeSY2amzuZsMkx2IPrkO6UjWkgLJQ==}
  974. peerDependencies:
  975. typescript: '*'
  976. peerDependenciesMeta:
  977. typescript:
  978. optional: true
  979. eslint-plugin-unused-imports@4.1.4:
  980. resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
  981. peerDependencies:
  982. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  983. eslint: ^9.0.0 || ^8.0.0
  984. peerDependenciesMeta:
  985. '@typescript-eslint/eslint-plugin':
  986. optional: true
  987. eslint-rule-composer@0.3.0:
  988. resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
  989. engines: {node: '>=4.0.0'}
  990. eslint-scope@8.4.0:
  991. resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
  992. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  993. eslint-visitor-keys@3.4.3:
  994. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  995. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  996. eslint-visitor-keys@4.2.1:
  997. resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
  998. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  999. eslint@9.30.0:
  1000. resolution: {integrity: sha512-iN/SiPxmQu6EVkf+m1qpBxzUhE12YqFLOSySuOyVLJLEF9nzTf+h/1AJYc1JWzCnktggeNrjvQGLngDzXirU6g==}
  1001. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1002. hasBin: true
  1003. peerDependencies:
  1004. jiti: '*'
  1005. peerDependenciesMeta:
  1006. jiti:
  1007. optional: true
  1008. espree@10.4.0:
  1009. resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
  1010. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1011. espree@9.6.1:
  1012. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  1013. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1014. esprima@4.0.1:
  1015. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  1016. engines: {node: '>=4'}
  1017. hasBin: true
  1018. esquery@1.6.0:
  1019. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  1020. engines: {node: '>=0.10'}
  1021. esrecurse@4.3.0:
  1022. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1023. engines: {node: '>=4.0'}
  1024. estraverse@5.3.0:
  1025. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1026. engines: {node: '>=4.0'}
  1027. esutils@2.0.3:
  1028. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1029. engines: {node: '>=0.10.0'}
  1030. expand-template@2.0.3:
  1031. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  1032. engines: {node: '>=6'}
  1033. expect@30.0.3:
  1034. resolution: {integrity: sha512-HXg6NvK35/cSYZCUKAtmlgCFyqKM4frEPbzrav5hRqb0GMz0E0lS5hfzYjSaiaE5ysnp/qI2aeZkeyeIAOeXzQ==}
  1035. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1036. fast-cidr-tools@0.3.2:
  1037. resolution: {integrity: sha512-hH8m1zjBer5VxrFG3dCEIMGEu/hDs/2scCH0vCJqce5ujCEBmZYlCejfZ4IFYTCt1YQard/uXmMzNBs9SR3/qg==}
  1038. engines: {node: '>=16'}
  1039. fast-deep-equal@3.1.3:
  1040. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1041. fast-escape-html@1.1.0:
  1042. resolution: {integrity: sha512-nRvjfywv8gzIBs0fM/ht6S5scNUamm+o+91p/69cYYNWODb7b/UiQfjFx+6n8NMtdHs6K80kh+hW1dPNS/opIA==}
  1043. fast-fifo@1.3.2:
  1044. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  1045. fast-glob@3.3.3:
  1046. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  1047. engines: {node: '>=8.6.0'}
  1048. fast-json-stable-stringify@2.1.0:
  1049. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1050. fast-levenshtein@2.0.6:
  1051. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1052. fast-uri@3.0.6:
  1053. resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==}
  1054. fastq@1.19.1:
  1055. resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
  1056. fdir@6.4.6:
  1057. resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
  1058. peerDependencies:
  1059. picomatch: ^3 || ^4
  1060. peerDependenciesMeta:
  1061. picomatch:
  1062. optional: true
  1063. file-entry-cache@8.0.0:
  1064. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1065. engines: {node: '>=16.0.0'}
  1066. file-uri-to-path@1.0.0:
  1067. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1068. fill-range@7.1.1:
  1069. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  1070. engines: {node: '>=8'}
  1071. find-up@5.0.0:
  1072. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1073. engines: {node: '>=10'}
  1074. flat-cache@4.0.1:
  1075. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1076. engines: {node: '>=16'}
  1077. flat@5.0.2:
  1078. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1079. hasBin: true
  1080. flatted@3.3.3:
  1081. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1082. foreground-child@3.3.1:
  1083. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1084. engines: {node: '>=14'}
  1085. foxts@3.6.0:
  1086. resolution: {integrity: sha512-cnADo1dCBjJE4kvXJmpE4uoEjdeKCO5TLdMKBIoCvxJ6Z/vdjvpdlM1+B0gaYxu20RfDSwHJV2eFYcpM1rI9ig==}
  1087. fs-constants@1.0.0:
  1088. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1089. function-bind@1.1.2:
  1090. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1091. get-caller-file@2.0.5:
  1092. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1093. engines: {node: 6.* || 8.* || >= 10.*}
  1094. get-tsconfig@4.10.1:
  1095. resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
  1096. github-from-package@0.0.0:
  1097. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1098. glob-parent@5.1.2:
  1099. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1100. engines: {node: '>= 6'}
  1101. glob-parent@6.0.2:
  1102. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1103. engines: {node: '>=10.13.0'}
  1104. glob@10.4.5:
  1105. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1106. hasBin: true
  1107. globals@14.0.0:
  1108. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  1109. engines: {node: '>=18'}
  1110. globals@15.15.0:
  1111. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  1112. engines: {node: '>=18'}
  1113. globalthis@1.0.4:
  1114. resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
  1115. engines: {node: '>= 0.4'}
  1116. gopd@1.2.0:
  1117. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1118. engines: {node: '>= 0.4'}
  1119. graceful-fs@4.2.11:
  1120. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1121. graphemer@1.4.0:
  1122. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  1123. has-flag@4.0.0:
  1124. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1125. engines: {node: '>=8'}
  1126. has-own-prop@2.0.0:
  1127. resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==}
  1128. engines: {node: '>=8'}
  1129. has-property-descriptors@1.0.2:
  1130. resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
  1131. hash-wasm@4.12.0:
  1132. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1133. hasown@2.0.2:
  1134. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1135. engines: {node: '>= 0.4'}
  1136. he@1.2.0:
  1137. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1138. hasBin: true
  1139. ieee754@1.2.1:
  1140. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1141. ignore@5.3.2:
  1142. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1143. engines: {node: '>= 4'}
  1144. ignore@7.0.5:
  1145. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1146. engines: {node: '>= 4'}
  1147. import-fresh@3.3.1:
  1148. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  1149. engines: {node: '>=6'}
  1150. imurmurhash@0.1.4:
  1151. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1152. engines: {node: '>=0.8.19'}
  1153. inherits@2.0.4:
  1154. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1155. ini@1.3.8:
  1156. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1157. is-bun-module@2.0.0:
  1158. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1159. is-core-module@2.16.1:
  1160. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  1161. engines: {node: '>= 0.4'}
  1162. is-extglob@2.1.1:
  1163. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1164. engines: {node: '>=0.10.0'}
  1165. is-fullwidth-code-point@3.0.0:
  1166. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1167. engines: {node: '>=8'}
  1168. is-glob@4.0.3:
  1169. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1170. engines: {node: '>=0.10.0'}
  1171. is-it-type@5.1.2:
  1172. resolution: {integrity: sha512-q/gOZQTNYABAxaXWnBKZjTFH4yACvWEFtgVOj+LbgxYIgAJG1xVmUZOsECSrZPIemYUQvaQWVilSFVbh4Eyt8A==}
  1173. engines: {node: '>=12'}
  1174. is-number@7.0.0:
  1175. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1176. engines: {node: '>=0.12.0'}
  1177. is-plain-obj@2.1.0:
  1178. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1179. engines: {node: '>=8'}
  1180. is-unicode-supported@0.1.0:
  1181. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1182. engines: {node: '>=10'}
  1183. isexe@2.0.0:
  1184. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1185. jackspeak@3.4.3:
  1186. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1187. jest-diff@30.0.3:
  1188. resolution: {integrity: sha512-Q1TAV0cUcBTic57SVnk/mug0/ASyAqtSIOkr7RAlxx97llRYsM74+E8N5WdGJUlwCKwgxPAkVjKh653h1+HA9A==}
  1189. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1190. jest-matcher-utils@30.0.3:
  1191. resolution: {integrity: sha512-hMpVFGFOhYmIIRGJ0HgM9htC5qUiJ00famcc9sRFchJJiLZbbVKrAztcgE6VnXLRxA3XZ0bvNA7hQWh3oHXo/A==}
  1192. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1193. jest-message-util@30.0.2:
  1194. resolution: {integrity: sha512-vXywcxmr0SsKXF/bAD7t7nMamRvPuJkras00gqYeB1V0WllxZrbZ0paRr3XqpFU2sYYjD0qAaG2fRyn/CGZ0aw==}
  1195. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1196. jest-mock@30.0.2:
  1197. resolution: {integrity: sha512-PnZOHmqup/9cT/y+pXIVbbi8ID6U1XHRmbvR7MvUy4SLqhCbwpkmXhLbsWbGewHrV5x/1bF7YDjs+x24/QSvFA==}
  1198. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1199. jest-regex-util@30.0.1:
  1200. resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
  1201. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1202. jest-util@30.0.2:
  1203. resolution: {integrity: sha512-8IyqfKS4MqprBuUpZNlFB5l+WFehc8bfCe1HSZFHzft2mOuND8Cvi9r1musli+u6F3TqanCZ/Ik4H4pXUolZIg==}
  1204. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1205. js-tokens@4.0.0:
  1206. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1207. js-yaml@4.1.0:
  1208. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1209. hasBin: true
  1210. jsdoc-type-pratt-parser@4.1.0:
  1211. resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
  1212. engines: {node: '>=12.0.0'}
  1213. json-buffer@3.0.1:
  1214. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1215. json-schema-traverse@0.4.1:
  1216. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1217. json-stable-stringify-without-jsonify@1.0.1:
  1218. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1219. json-stringify-pretty-compact@3.0.0:
  1220. resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==}
  1221. jsonc-eslint-parser@2.4.0:
  1222. resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
  1223. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1224. keyv@4.5.4:
  1225. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1226. levn@0.4.1:
  1227. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1228. engines: {node: '>= 0.8.0'}
  1229. locate-path@6.0.0:
  1230. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1231. engines: {node: '>=10'}
  1232. lodash.merge@4.6.2:
  1233. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1234. log-symbols@4.1.0:
  1235. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1236. engines: {node: '>=10'}
  1237. lru-cache@10.4.3:
  1238. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1239. merge2@1.4.1:
  1240. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1241. engines: {node: '>= 8'}
  1242. micromatch@4.0.8:
  1243. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1244. engines: {node: '>=8.6'}
  1245. mimic-response@3.1.0:
  1246. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1247. engines: {node: '>=10'}
  1248. minimatch@10.0.3:
  1249. resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
  1250. engines: {node: 20 || >=22}
  1251. minimatch@3.1.2:
  1252. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1253. minimatch@9.0.5:
  1254. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1255. engines: {node: '>=16 || 14 >=14.17'}
  1256. minimist@1.2.8:
  1257. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1258. minipass@7.1.2:
  1259. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1260. engines: {node: '>=16 || 14 >=14.17'}
  1261. mitata@1.0.34:
  1262. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1263. mkdirp-classic@0.5.3:
  1264. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1265. mocha@11.7.1:
  1266. resolution: {integrity: sha512-5EK+Cty6KheMS/YLPPMJC64g5V61gIR25KsRItHw6x4hEKT6Njp1n9LOlH4gpevuwMVS66SXaBBpg+RWZkza4A==}
  1267. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1268. hasBin: true
  1269. ms@2.1.3:
  1270. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1271. napi-build-utils@2.0.0:
  1272. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1273. napi-postinstall@0.2.4:
  1274. resolution: {integrity: sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==}
  1275. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  1276. hasBin: true
  1277. natural-compare@1.4.0:
  1278. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1279. node-abi@3.75.0:
  1280. resolution: {integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==}
  1281. engines: {node: '>=10'}
  1282. null-prototype-object@1.2.0:
  1283. resolution: {integrity: sha512-wDYu13aQg/foMjIEqGGp7Yt3adEQpQVStahdZgBNageF+dnenNFKzUo22MMSk634ZEX3G4MO2yg0dHuXUakZlQ==}
  1284. engines: {node: '>= 20'}
  1285. object-keys@1.1.1:
  1286. resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
  1287. engines: {node: '>= 0.4'}
  1288. once@1.4.0:
  1289. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1290. optionator@0.9.4:
  1291. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1292. engines: {node: '>= 0.8.0'}
  1293. oxc-resolver@5.3.0:
  1294. resolution: {integrity: sha512-FHqtZx0idP5QRPSNcI5g2ItmADg7fhR3XIeWg5eRMGfp44xqRpfkdvo+EX4ZceqV9bxvl0Z8vaqMqY0gYaNYNA==}
  1295. p-limit@3.1.0:
  1296. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1297. engines: {node: '>=10'}
  1298. p-locate@5.0.0:
  1299. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1300. engines: {node: '>=10'}
  1301. package-json-from-dist@1.0.1:
  1302. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1303. parent-module@1.0.1:
  1304. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1305. engines: {node: '>=6'}
  1306. path-exists@4.0.0:
  1307. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1308. engines: {node: '>=8'}
  1309. path-key@3.1.1:
  1310. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1311. engines: {node: '>=8'}
  1312. path-parse@1.0.7:
  1313. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1314. path-scurry@1.11.1:
  1315. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1316. engines: {node: '>=16 || 14 >=14.18'}
  1317. picocolors@1.1.1:
  1318. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1319. picomatch@2.3.1:
  1320. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1321. engines: {node: '>=8.6'}
  1322. picomatch@4.0.2:
  1323. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1324. engines: {node: '>=12'}
  1325. pirates@4.0.7:
  1326. resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
  1327. engines: {node: '>= 6'}
  1328. prebuild-install@7.1.3:
  1329. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1330. engines: {node: '>=10'}
  1331. hasBin: true
  1332. prelude-ls@1.2.1:
  1333. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1334. engines: {node: '>= 0.8.0'}
  1335. pretty-format@30.0.2:
  1336. resolution: {integrity: sha512-yC5/EBSOrTtqhCKfLHqoUIAXVRZnukHPwWBJWR7h84Q3Be1DRQZLncwcfLoPA5RPQ65qfiCMqgYwdUuQ//eVpg==}
  1337. engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
  1338. promise-make-naked@2.1.2:
  1339. resolution: {integrity: sha512-y7s8ZuHIG56JYspB24be9GFkXA1zXL85Ur9u1DKrW/tvyUoPxWgBjnalK6Nc6l7wHBcAW0c3PO07+XOsWTRuhg==}
  1340. pump@3.0.3:
  1341. resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
  1342. punycode@2.3.1:
  1343. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1344. engines: {node: '>=6'}
  1345. queue-microtask@1.2.3:
  1346. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1347. randombytes@2.1.0:
  1348. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1349. rc@1.2.8:
  1350. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1351. hasBin: true
  1352. react-is@18.3.1:
  1353. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  1354. readable-stream@3.6.2:
  1355. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1356. engines: {node: '>= 6'}
  1357. readdirp@4.1.2:
  1358. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1359. engines: {node: '>= 14.18.0'}
  1360. refa@0.12.1:
  1361. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1362. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1363. regexp-ast-analysis@0.7.1:
  1364. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1365. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1366. repeat-string@1.6.1:
  1367. resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
  1368. engines: {node: '>=0.10'}
  1369. require-directory@2.1.1:
  1370. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1371. engines: {node: '>=0.10.0'}
  1372. resolve-from@4.0.0:
  1373. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1374. engines: {node: '>=4'}
  1375. resolve-pkg-maps@1.0.0:
  1376. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1377. resolve@1.22.10:
  1378. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1379. engines: {node: '>= 0.4'}
  1380. hasBin: true
  1381. retry@0.13.1:
  1382. resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
  1383. engines: {node: '>= 4'}
  1384. reusify@1.1.0:
  1385. resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  1386. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1387. run-parallel@1.2.0:
  1388. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1389. safe-buffer@5.2.1:
  1390. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1391. scslre@0.3.0:
  1392. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1393. engines: {node: ^14.0.0 || >=16.0.0}
  1394. semver@7.7.2:
  1395. resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
  1396. engines: {node: '>=10'}
  1397. hasBin: true
  1398. serialize-javascript@6.0.2:
  1399. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1400. shebang-command@2.0.0:
  1401. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1402. engines: {node: '>=8'}
  1403. shebang-regex@3.0.0:
  1404. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1405. engines: {node: '>=8'}
  1406. signal-exit@4.1.0:
  1407. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1408. engines: {node: '>=14'}
  1409. simple-concat@1.0.1:
  1410. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1411. simple-get@4.0.1:
  1412. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1413. simple-invariant@2.0.1:
  1414. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1415. engines: {node: '>=10'}
  1416. slash@3.0.0:
  1417. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1418. engines: {node: '>=8'}
  1419. source-map-support@0.5.21:
  1420. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1421. source-map@0.6.1:
  1422. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1423. engines: {node: '>=0.10.0'}
  1424. stable-hash-x@0.2.0:
  1425. resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
  1426. engines: {node: '>=12.0.0'}
  1427. stack-utils@2.0.6:
  1428. resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
  1429. engines: {node: '>=10'}
  1430. streamx@2.22.1:
  1431. resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
  1432. string-similarity@4.0.4:
  1433. resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
  1434. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1435. string-width@4.2.3:
  1436. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1437. engines: {node: '>=8'}
  1438. string-width@5.1.2:
  1439. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1440. engines: {node: '>=12'}
  1441. string_decoder@1.3.0:
  1442. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1443. strip-ansi@6.0.1:
  1444. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1445. engines: {node: '>=8'}
  1446. strip-ansi@7.1.0:
  1447. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1448. engines: {node: '>=12'}
  1449. strip-json-comments@2.0.1:
  1450. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1451. engines: {node: '>=0.10.0'}
  1452. strip-json-comments@3.1.1:
  1453. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1454. engines: {node: '>=8'}
  1455. supports-color@7.2.0:
  1456. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1457. engines: {node: '>=8'}
  1458. supports-color@8.1.1:
  1459. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1460. engines: {node: '>=10'}
  1461. supports-preserve-symlinks-flag@1.0.0:
  1462. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1463. engines: {node: '>= 0.4'}
  1464. synckit@0.11.8:
  1465. resolution: {integrity: sha512-+XZ+r1XGIJGeQk3VvXhT6xx/VpbHsRzsTkGgF6E5RX9TTXD0118l87puaEBZ566FhqblC6U0d4XnubznJDm30A==}
  1466. engines: {node: ^14.18.0 || >=16.0.0}
  1467. tapable@2.2.2:
  1468. resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
  1469. engines: {node: '>=6'}
  1470. tar-fs@2.1.3:
  1471. resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==}
  1472. tar-fs@3.0.10:
  1473. resolution: {integrity: sha512-C1SwlQGNLe/jPNqapK8epDsXME7CAJR5RL3GcE6KWx1d9OUByzoHVcbu1VPI8tevg9H8Alae0AApHHFGzrD5zA==}
  1474. tar-stream@2.2.0:
  1475. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1476. engines: {node: '>=6'}
  1477. tar-stream@3.1.7:
  1478. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1479. text-decoder@1.2.3:
  1480. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1481. tinyexec@1.0.1:
  1482. resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
  1483. tinyglobby@0.2.14:
  1484. resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
  1485. engines: {node: '>=12.0.0'}
  1486. tldts-core@6.1.86:
  1487. resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
  1488. tldts-core@7.0.9:
  1489. resolution: {integrity: sha512-/FGY1+CryHsxF9SFiPZlMOcwQsfABkAvOJO5VEKE8TNifVEqgMF7+UVXHGhm1z4gPUfvVS/EYcwhiRU3vUa1ag==}
  1490. tldts-experimental@6.1.86:
  1491. resolution: {integrity: sha512-X3N3+SrwSajvANDyIBFa6tf/nO0VoqaXvvINSnQkZMGbzNlD+9G7Xb24Mtk3ZBVZJRGY7UynAJJL8kRVt6Z46Q==}
  1492. tldts-experimental@7.0.9:
  1493. resolution: {integrity: sha512-rKxpX0gaR5SD17gclTl52x+uOF05xlQC1cAAKTnoiTXZeXA3qd93R73mSS4valR+Ca1H4dUmpCbWpYXRu6QTtQ==}
  1494. tldts@6.1.86:
  1495. resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
  1496. hasBin: true
  1497. to-regex-range@5.0.1:
  1498. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1499. engines: {node: '>=8.0'}
  1500. ts-api-utils@2.1.0:
  1501. resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
  1502. engines: {node: '>=18.12'}
  1503. peerDependencies:
  1504. typescript: '>=4.8.4'
  1505. ts-declaration-location@1.0.7:
  1506. resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
  1507. peerDependencies:
  1508. typescript: '>=4.0.0'
  1509. tslib@2.8.1:
  1510. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1511. tunnel-agent@0.6.0:
  1512. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1513. type-check@0.4.0:
  1514. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1515. engines: {node: '>= 0.8.0'}
  1516. typescript-eslint@8.35.0:
  1517. resolution: {integrity: sha512-uEnz70b7kBz6eg/j0Czy6K5NivaYopgxRjsnAJ2Fx5oTLo3wefTHIbL7AkQr1+7tJCRVpTs/wiM8JR/11Loq9A==}
  1518. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1519. peerDependencies:
  1520. eslint: ^8.57.0 || ^9.0.0
  1521. typescript: '>=4.8.4 <5.9.0'
  1522. typescript@5.8.3:
  1523. resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
  1524. engines: {node: '>=14.17'}
  1525. hasBin: true
  1526. undici-cache-store-better-sqlite3@1.0.0:
  1527. resolution: {integrity: sha512-bYwnd02xu+q7UVCR20Cnb+tVJVB5f1cKP7BUc/sxafEMhgWbRQ5S/pRNZP9Ykl2sasy2bHzSJPGXlOF+/ju4+Q==}
  1528. peerDependencies:
  1529. undici: '>=7.0.0'
  1530. undici-types@7.8.0:
  1531. resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==}
  1532. undici@7.11.0:
  1533. resolution: {integrity: sha512-heTSIac3iLhsmZhUCjyS3JQEkZELateufzZuBaVM5RHXdSBMb1LPMQf5x+FH7qjsZYDP0ttAc3nnVpUB+wYbOg==}
  1534. engines: {node: '>=20.18.1'}
  1535. unrs-resolver@1.9.2:
  1536. resolution: {integrity: sha512-VUyWiTNQD7itdiMuJy+EuLEErLj3uwX/EpHQF8EOf33Dq3Ju6VW1GXm+swk6+1h7a49uv9fKZ+dft9jU7esdLA==}
  1537. uri-js@4.4.1:
  1538. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1539. util-deprecate@1.0.2:
  1540. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1541. webworker-shim@1.1.4:
  1542. resolution: {integrity: sha512-W/40L5W6ZQyGhYr3hJ7N/2SjdK5OdFtnYm94j6xlRyjckegXnIGwz0EdxdkQx6VGTglJjK8mqBhMz3fd3AY4bg==}
  1543. which@2.0.2:
  1544. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1545. engines: {node: '>= 8'}
  1546. hasBin: true
  1547. whoiser@1.18.0:
  1548. resolution: {integrity: sha512-QRIGreBuouc8d9i+UVMFqYJSiG7gaoaGX8nKugYDGqnuNLLgjDBwmlKODOIGHveBawza3Kfkk/OuM9VsTUYwaA==}
  1549. engines: {node: '>=15.0.0'}
  1550. why-is-node-running@3.2.2:
  1551. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1552. engines: {node: '>=20.11'}
  1553. hasBin: true
  1554. word-wrap@1.2.5:
  1555. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1556. engines: {node: '>=0.10.0'}
  1557. workerpool@9.3.3:
  1558. resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
  1559. worktank@2.7.3:
  1560. resolution: {integrity: sha512-M0fesnpttBPdvNYBdzRvLDsacN0na9RYWFxwmM/x1+/6mufjduv9/9vBObK8EXDqxRMX/SOYJabpo0UCYYBUdQ==}
  1561. wrap-ansi@7.0.0:
  1562. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1563. engines: {node: '>=10'}
  1564. wrap-ansi@8.1.0:
  1565. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1566. engines: {node: '>=12'}
  1567. wrappy@1.0.2:
  1568. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1569. xbits@0.2.0:
  1570. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1571. y18n@5.0.8:
  1572. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1573. engines: {node: '>=10'}
  1574. yaml@2.8.0:
  1575. resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
  1576. engines: {node: '>= 14.6'}
  1577. hasBin: true
  1578. yargs-parser@21.1.1:
  1579. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1580. engines: {node: '>=12'}
  1581. yargs-unparser@2.0.0:
  1582. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1583. engines: {node: '>=10'}
  1584. yargs@17.7.2:
  1585. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1586. engines: {node: '>=12'}
  1587. yauzl-promise@4.0.0:
  1588. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1589. engines: {node: '>=16'}
  1590. yocto-queue@0.1.0:
  1591. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1592. engines: {node: '>=10'}
  1593. snapshots:
  1594. '@babel/code-frame@7.27.1':
  1595. dependencies:
  1596. '@babel/helper-validator-identifier': 7.27.1
  1597. js-tokens: 4.0.0
  1598. picocolors: 1.1.1
  1599. '@babel/helper-validator-identifier@7.27.1': {}
  1600. '@babel/runtime@7.27.6': {}
  1601. '@dual-bundle/import-meta-resolve@4.1.0': {}
  1602. '@emnapi/core@1.4.3':
  1603. dependencies:
  1604. '@emnapi/wasi-threads': 1.0.2
  1605. tslib: 2.8.1
  1606. optional: true
  1607. '@emnapi/runtime@1.4.3':
  1608. dependencies:
  1609. tslib: 2.8.1
  1610. optional: true
  1611. '@emnapi/wasi-threads@1.0.2':
  1612. dependencies:
  1613. tslib: 2.8.1
  1614. optional: true
  1615. '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.30.0)':
  1616. dependencies:
  1617. escape-string-regexp: 4.0.0
  1618. eslint: 9.30.0
  1619. ignore: 5.3.2
  1620. '@eslint-community/eslint-utils@4.7.0(eslint@9.30.0)':
  1621. dependencies:
  1622. eslint: 9.30.0
  1623. eslint-visitor-keys: 3.4.3
  1624. '@eslint-community/regexpp@4.12.1': {}
  1625. '@eslint-sukka/node@6.22.1(eslint@9.30.0)(typescript@5.8.3)':
  1626. dependencies:
  1627. '@eslint-sukka/shared': 6.22.1(eslint@9.30.0)(typescript@5.8.3)
  1628. eslint-plugin-n: 17.20.0(eslint@9.30.0)(typescript@5.8.3)
  1629. eslint-plugin-sukka: 6.22.1(eslint@9.30.0)(typescript@5.8.3)
  1630. transitivePeerDependencies:
  1631. - eslint
  1632. - supports-color
  1633. - typescript
  1634. '@eslint-sukka/shared@6.22.1(eslint@9.30.0)(typescript@5.8.3)':
  1635. dependencies:
  1636. '@dual-bundle/import-meta-resolve': 4.1.0
  1637. '@package-json/types': 0.0.11
  1638. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  1639. transitivePeerDependencies:
  1640. - eslint
  1641. - supports-color
  1642. - typescript
  1643. '@eslint/config-array@0.21.0':
  1644. dependencies:
  1645. '@eslint/object-schema': 2.1.6
  1646. debug: 4.4.1(supports-color@8.1.1)
  1647. minimatch: 3.1.2
  1648. transitivePeerDependencies:
  1649. - supports-color
  1650. '@eslint/config-helpers@0.3.0': {}
  1651. '@eslint/core@0.14.0':
  1652. dependencies:
  1653. '@types/json-schema': 7.0.15
  1654. '@eslint/core@0.15.1':
  1655. dependencies:
  1656. '@types/json-schema': 7.0.15
  1657. '@eslint/eslintrc@3.3.1':
  1658. dependencies:
  1659. ajv: 6.12.6
  1660. debug: 4.4.1(supports-color@8.1.1)
  1661. espree: 10.4.0
  1662. globals: 14.0.0
  1663. ignore: 5.3.2
  1664. import-fresh: 3.3.1
  1665. js-yaml: 4.1.0
  1666. minimatch: 3.1.2
  1667. strip-json-comments: 3.1.1
  1668. transitivePeerDependencies:
  1669. - supports-color
  1670. '@eslint/js@9.30.0': {}
  1671. '@eslint/object-schema@2.1.6': {}
  1672. '@eslint/plugin-kit@0.3.3':
  1673. dependencies:
  1674. '@eslint/core': 0.15.1
  1675. levn: 0.4.1
  1676. '@ghostery/adblocker-content@2.8.0':
  1677. dependencies:
  1678. '@ghostery/adblocker-extended-selectors': 2.8.0
  1679. '@ghostery/adblocker-extended-selectors@2.8.0': {}
  1680. '@ghostery/adblocker@2.8.0':
  1681. dependencies:
  1682. '@ghostery/adblocker-content': 2.8.0
  1683. '@ghostery/adblocker-extended-selectors': 2.8.0
  1684. '@ghostery/url-parser': 1.3.0
  1685. '@remusao/guess-url-type': 2.1.0
  1686. '@remusao/small': 2.1.0
  1687. '@remusao/smaz': 2.2.0
  1688. tldts-experimental: 7.0.9
  1689. '@ghostery/url-parser@1.3.0':
  1690. dependencies:
  1691. tldts-experimental: 7.0.9
  1692. '@henrygd/queue@1.0.7': {}
  1693. '@humanfs/core@0.19.1': {}
  1694. '@humanfs/node@0.16.6':
  1695. dependencies:
  1696. '@humanfs/core': 0.19.1
  1697. '@humanwhocodes/retry': 0.3.1
  1698. '@humanwhocodes/module-importer@1.0.1': {}
  1699. '@humanwhocodes/retry@0.3.1': {}
  1700. '@humanwhocodes/retry@0.4.3': {}
  1701. '@isaacs/balanced-match@4.0.1': {}
  1702. '@isaacs/brace-expansion@5.0.0':
  1703. dependencies:
  1704. '@isaacs/balanced-match': 4.0.1
  1705. '@isaacs/cliui@8.0.2':
  1706. dependencies:
  1707. string-width: 5.1.2
  1708. string-width-cjs: string-width@4.2.3
  1709. strip-ansi: 7.1.0
  1710. strip-ansi-cjs: strip-ansi@6.0.1
  1711. wrap-ansi: 8.1.0
  1712. wrap-ansi-cjs: wrap-ansi@7.0.0
  1713. '@jest/diff-sequences@30.0.1': {}
  1714. '@jest/expect-utils@30.0.3':
  1715. dependencies:
  1716. '@jest/get-type': 30.0.1
  1717. '@jest/get-type@30.0.1': {}
  1718. '@jest/pattern@30.0.1':
  1719. dependencies:
  1720. '@types/node': 24.0.7
  1721. jest-regex-util: 30.0.1
  1722. '@jest/schemas@30.0.1':
  1723. dependencies:
  1724. '@sinclair/typebox': 0.34.37
  1725. '@jest/types@30.0.1':
  1726. dependencies:
  1727. '@jest/pattern': 30.0.1
  1728. '@jest/schemas': 30.0.1
  1729. '@types/istanbul-lib-coverage': 2.0.6
  1730. '@types/istanbul-reports': 3.0.4
  1731. '@types/node': 24.0.7
  1732. '@types/yargs': 17.0.33
  1733. chalk: 4.1.2
  1734. '@mitata/counters@0.0.8': {}
  1735. '@napi-rs/wasm-runtime@0.2.11':
  1736. dependencies:
  1737. '@emnapi/core': 1.4.3
  1738. '@emnapi/runtime': 1.4.3
  1739. '@tybys/wasm-util': 0.9.0
  1740. optional: true
  1741. '@node-rs/crc32-android-arm-eabi@1.10.6':
  1742. optional: true
  1743. '@node-rs/crc32-android-arm64@1.10.6':
  1744. optional: true
  1745. '@node-rs/crc32-darwin-arm64@1.10.6':
  1746. optional: true
  1747. '@node-rs/crc32-darwin-x64@1.10.6':
  1748. optional: true
  1749. '@node-rs/crc32-freebsd-x64@1.10.6':
  1750. optional: true
  1751. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  1752. optional: true
  1753. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  1754. optional: true
  1755. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  1756. optional: true
  1757. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  1758. optional: true
  1759. '@node-rs/crc32-linux-x64-musl@1.10.6':
  1760. optional: true
  1761. '@node-rs/crc32-wasm32-wasi@1.10.6':
  1762. dependencies:
  1763. '@napi-rs/wasm-runtime': 0.2.11
  1764. optional: true
  1765. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  1766. optional: true
  1767. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  1768. optional: true
  1769. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  1770. optional: true
  1771. '@node-rs/crc32@1.10.6':
  1772. optionalDependencies:
  1773. '@node-rs/crc32-android-arm-eabi': 1.10.6
  1774. '@node-rs/crc32-android-arm64': 1.10.6
  1775. '@node-rs/crc32-darwin-arm64': 1.10.6
  1776. '@node-rs/crc32-darwin-x64': 1.10.6
  1777. '@node-rs/crc32-freebsd-x64': 1.10.6
  1778. '@node-rs/crc32-linux-arm-gnueabihf': 1.10.6
  1779. '@node-rs/crc32-linux-arm64-gnu': 1.10.6
  1780. '@node-rs/crc32-linux-arm64-musl': 1.10.6
  1781. '@node-rs/crc32-linux-x64-gnu': 1.10.6
  1782. '@node-rs/crc32-linux-x64-musl': 1.10.6
  1783. '@node-rs/crc32-wasm32-wasi': 1.10.6
  1784. '@node-rs/crc32-win32-arm64-msvc': 1.10.6
  1785. '@node-rs/crc32-win32-ia32-msvc': 1.10.6
  1786. '@node-rs/crc32-win32-x64-msvc': 1.10.6
  1787. '@nodelib/fs.scandir@2.1.5':
  1788. dependencies:
  1789. '@nodelib/fs.stat': 2.0.5
  1790. run-parallel: 1.2.0
  1791. '@nodelib/fs.stat@2.0.5': {}
  1792. '@nodelib/fs.walk@1.2.8':
  1793. dependencies:
  1794. '@nodelib/fs.scandir': 2.1.5
  1795. fastq: 1.19.1
  1796. '@oxc-resolver/binding-darwin-arm64@5.3.0':
  1797. optional: true
  1798. '@oxc-resolver/binding-darwin-x64@5.3.0':
  1799. optional: true
  1800. '@oxc-resolver/binding-freebsd-x64@5.3.0':
  1801. optional: true
  1802. '@oxc-resolver/binding-linux-arm-gnueabihf@5.3.0':
  1803. optional: true
  1804. '@oxc-resolver/binding-linux-arm64-gnu@5.3.0':
  1805. optional: true
  1806. '@oxc-resolver/binding-linux-arm64-musl@5.3.0':
  1807. optional: true
  1808. '@oxc-resolver/binding-linux-riscv64-gnu@5.3.0':
  1809. optional: true
  1810. '@oxc-resolver/binding-linux-s390x-gnu@5.3.0':
  1811. optional: true
  1812. '@oxc-resolver/binding-linux-x64-gnu@5.3.0':
  1813. optional: true
  1814. '@oxc-resolver/binding-linux-x64-musl@5.3.0':
  1815. optional: true
  1816. '@oxc-resolver/binding-wasm32-wasi@5.3.0':
  1817. dependencies:
  1818. '@napi-rs/wasm-runtime': 0.2.11
  1819. optional: true
  1820. '@oxc-resolver/binding-win32-arm64-msvc@5.3.0':
  1821. optional: true
  1822. '@oxc-resolver/binding-win32-x64-msvc@5.3.0':
  1823. optional: true
  1824. '@package-json/types@0.0.11': {}
  1825. '@pkgjs/parseargs@0.11.0':
  1826. optional: true
  1827. '@pkgr/core@0.2.7': {}
  1828. '@remusao/guess-url-type@2.1.0': {}
  1829. '@remusao/small@2.1.0': {}
  1830. '@remusao/smaz-compress@2.2.0':
  1831. dependencies:
  1832. '@remusao/trie': 2.1.0
  1833. '@remusao/smaz-decompress@2.2.0': {}
  1834. '@remusao/smaz@2.2.0':
  1835. dependencies:
  1836. '@remusao/smaz-compress': 2.2.0
  1837. '@remusao/smaz-decompress': 2.2.0
  1838. '@remusao/trie@2.1.0': {}
  1839. '@sinclair/typebox@0.34.37': {}
  1840. '@swc-node/core@1.13.3(@swc/core@1.12.7)(@swc/types@0.1.23)':
  1841. dependencies:
  1842. '@swc/core': 1.12.7
  1843. '@swc/types': 0.1.23
  1844. '@swc-node/register@1.10.10(@swc/core@1.12.7)(@swc/types@0.1.23)(typescript@5.8.3)':
  1845. dependencies:
  1846. '@swc-node/core': 1.13.3(@swc/core@1.12.7)(@swc/types@0.1.23)
  1847. '@swc-node/sourcemap-support': 0.5.1
  1848. '@swc/core': 1.12.7
  1849. colorette: 2.0.20
  1850. debug: 4.4.1(supports-color@8.1.1)
  1851. oxc-resolver: 5.3.0
  1852. pirates: 4.0.7
  1853. tslib: 2.8.1
  1854. typescript: 5.8.3
  1855. transitivePeerDependencies:
  1856. - '@swc/types'
  1857. - supports-color
  1858. '@swc-node/sourcemap-support@0.5.1':
  1859. dependencies:
  1860. source-map-support: 0.5.21
  1861. tslib: 2.8.1
  1862. '@swc/core-darwin-arm64@1.12.7':
  1863. optional: true
  1864. '@swc/core-darwin-x64@1.12.7':
  1865. optional: true
  1866. '@swc/core-linux-arm-gnueabihf@1.12.7':
  1867. optional: true
  1868. '@swc/core-linux-arm64-gnu@1.12.7':
  1869. optional: true
  1870. '@swc/core-linux-arm64-musl@1.12.7':
  1871. optional: true
  1872. '@swc/core-linux-x64-gnu@1.12.7':
  1873. optional: true
  1874. '@swc/core-linux-x64-musl@1.12.7':
  1875. optional: true
  1876. '@swc/core-win32-arm64-msvc@1.12.7':
  1877. optional: true
  1878. '@swc/core-win32-ia32-msvc@1.12.7':
  1879. optional: true
  1880. '@swc/core-win32-x64-msvc@1.12.7':
  1881. optional: true
  1882. '@swc/core@1.12.7':
  1883. dependencies:
  1884. '@swc/counter': 0.1.3
  1885. '@swc/types': 0.1.23
  1886. optionalDependencies:
  1887. '@swc/core-darwin-arm64': 1.12.7
  1888. '@swc/core-darwin-x64': 1.12.7
  1889. '@swc/core-linux-arm-gnueabihf': 1.12.7
  1890. '@swc/core-linux-arm64-gnu': 1.12.7
  1891. '@swc/core-linux-arm64-musl': 1.12.7
  1892. '@swc/core-linux-x64-gnu': 1.12.7
  1893. '@swc/core-linux-x64-musl': 1.12.7
  1894. '@swc/core-win32-arm64-msvc': 1.12.7
  1895. '@swc/core-win32-ia32-msvc': 1.12.7
  1896. '@swc/core-win32-x64-msvc': 1.12.7
  1897. '@swc/counter@0.1.3': {}
  1898. '@swc/types@0.1.23':
  1899. dependencies:
  1900. '@swc/counter': 0.1.3
  1901. '@tybys/wasm-util@0.9.0':
  1902. dependencies:
  1903. tslib: 2.8.1
  1904. optional: true
  1905. '@types/async-retry@1.4.9':
  1906. dependencies:
  1907. '@types/retry': 0.12.5
  1908. '@types/better-sqlite3@7.6.13':
  1909. dependencies:
  1910. '@types/node': 24.0.7
  1911. '@types/cli-progress@3.11.6':
  1912. dependencies:
  1913. '@types/node': 24.0.7
  1914. '@types/dns2@2.0.9':
  1915. dependencies:
  1916. '@types/node': 24.0.7
  1917. '@types/estree@1.0.8': {}
  1918. '@types/fast-fifo@1.3.0': {}
  1919. '@types/istanbul-lib-coverage@2.0.6': {}
  1920. '@types/istanbul-lib-report@3.0.3':
  1921. dependencies:
  1922. '@types/istanbul-lib-coverage': 2.0.6
  1923. '@types/istanbul-reports@3.0.4':
  1924. dependencies:
  1925. '@types/istanbul-lib-report': 3.0.3
  1926. '@types/json-schema@7.0.15': {}
  1927. '@types/mocha@10.0.10': {}
  1928. '@types/node@24.0.7':
  1929. dependencies:
  1930. undici-types: 7.8.0
  1931. '@types/punycode@2.1.4': {}
  1932. '@types/retry@0.12.5': {}
  1933. '@types/stack-utils@2.0.3': {}
  1934. '@types/tar-fs@2.0.4':
  1935. dependencies:
  1936. '@types/node': 24.0.7
  1937. '@types/tar-stream': 3.1.4
  1938. '@types/tar-stream@3.1.4':
  1939. dependencies:
  1940. '@types/node': 24.0.7
  1941. '@types/yargs-parser@21.0.3': {}
  1942. '@types/yargs@17.0.33':
  1943. dependencies:
  1944. '@types/yargs-parser': 21.0.3
  1945. '@types/yauzl-promise@4.0.1':
  1946. dependencies:
  1947. '@types/node': 24.0.7
  1948. '@typescript-eslint/eslint-plugin@8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3)':
  1949. dependencies:
  1950. '@eslint-community/regexpp': 4.12.1
  1951. '@typescript-eslint/parser': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  1952. '@typescript-eslint/scope-manager': 8.35.0
  1953. '@typescript-eslint/type-utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  1954. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  1955. '@typescript-eslint/visitor-keys': 8.35.0
  1956. eslint: 9.30.0
  1957. graphemer: 1.4.0
  1958. ignore: 7.0.5
  1959. natural-compare: 1.4.0
  1960. ts-api-utils: 2.1.0(typescript@5.8.3)
  1961. typescript: 5.8.3
  1962. transitivePeerDependencies:
  1963. - supports-color
  1964. '@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3)':
  1965. dependencies:
  1966. '@typescript-eslint/scope-manager': 8.35.0
  1967. '@typescript-eslint/types': 8.35.0
  1968. '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
  1969. '@typescript-eslint/visitor-keys': 8.35.0
  1970. debug: 4.4.1(supports-color@8.1.1)
  1971. eslint: 9.30.0
  1972. typescript: 5.8.3
  1973. transitivePeerDependencies:
  1974. - supports-color
  1975. '@typescript-eslint/project-service@8.35.0(typescript@5.8.3)':
  1976. dependencies:
  1977. '@typescript-eslint/tsconfig-utils': 8.35.0(typescript@5.8.3)
  1978. '@typescript-eslint/types': 8.35.0
  1979. debug: 4.4.1(supports-color@8.1.1)
  1980. typescript: 5.8.3
  1981. transitivePeerDependencies:
  1982. - supports-color
  1983. '@typescript-eslint/scope-manager@8.35.0':
  1984. dependencies:
  1985. '@typescript-eslint/types': 8.35.0
  1986. '@typescript-eslint/visitor-keys': 8.35.0
  1987. '@typescript-eslint/tsconfig-utils@8.35.0(typescript@5.8.3)':
  1988. dependencies:
  1989. typescript: 5.8.3
  1990. '@typescript-eslint/type-utils@8.35.0(eslint@9.30.0)(typescript@5.8.3)':
  1991. dependencies:
  1992. '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
  1993. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  1994. debug: 4.4.1(supports-color@8.1.1)
  1995. eslint: 9.30.0
  1996. ts-api-utils: 2.1.0(typescript@5.8.3)
  1997. typescript: 5.8.3
  1998. transitivePeerDependencies:
  1999. - supports-color
  2000. '@typescript-eslint/types@8.35.0': {}
  2001. '@typescript-eslint/typescript-estree@8.35.0(typescript@5.8.3)':
  2002. dependencies:
  2003. '@typescript-eslint/project-service': 8.35.0(typescript@5.8.3)
  2004. '@typescript-eslint/tsconfig-utils': 8.35.0(typescript@5.8.3)
  2005. '@typescript-eslint/types': 8.35.0
  2006. '@typescript-eslint/visitor-keys': 8.35.0
  2007. debug: 4.4.1(supports-color@8.1.1)
  2008. fast-glob: 3.3.3
  2009. is-glob: 4.0.3
  2010. minimatch: 9.0.5
  2011. semver: 7.7.2
  2012. ts-api-utils: 2.1.0(typescript@5.8.3)
  2013. typescript: 5.8.3
  2014. transitivePeerDependencies:
  2015. - supports-color
  2016. '@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3)':
  2017. dependencies:
  2018. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2019. '@typescript-eslint/scope-manager': 8.35.0
  2020. '@typescript-eslint/types': 8.35.0
  2021. '@typescript-eslint/typescript-estree': 8.35.0(typescript@5.8.3)
  2022. eslint: 9.30.0
  2023. typescript: 5.8.3
  2024. transitivePeerDependencies:
  2025. - supports-color
  2026. '@typescript-eslint/visitor-keys@8.35.0':
  2027. dependencies:
  2028. '@typescript-eslint/types': 8.35.0
  2029. eslint-visitor-keys: 4.2.1
  2030. '@unrs/resolver-binding-android-arm-eabi@1.9.2':
  2031. optional: true
  2032. '@unrs/resolver-binding-android-arm64@1.9.2':
  2033. optional: true
  2034. '@unrs/resolver-binding-darwin-arm64@1.9.2':
  2035. optional: true
  2036. '@unrs/resolver-binding-darwin-x64@1.9.2':
  2037. optional: true
  2038. '@unrs/resolver-binding-freebsd-x64@1.9.2':
  2039. optional: true
  2040. '@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2':
  2041. optional: true
  2042. '@unrs/resolver-binding-linux-arm-musleabihf@1.9.2':
  2043. optional: true
  2044. '@unrs/resolver-binding-linux-arm64-gnu@1.9.2':
  2045. optional: true
  2046. '@unrs/resolver-binding-linux-arm64-musl@1.9.2':
  2047. optional: true
  2048. '@unrs/resolver-binding-linux-ppc64-gnu@1.9.2':
  2049. optional: true
  2050. '@unrs/resolver-binding-linux-riscv64-gnu@1.9.2':
  2051. optional: true
  2052. '@unrs/resolver-binding-linux-riscv64-musl@1.9.2':
  2053. optional: true
  2054. '@unrs/resolver-binding-linux-s390x-gnu@1.9.2':
  2055. optional: true
  2056. '@unrs/resolver-binding-linux-x64-gnu@1.9.2':
  2057. optional: true
  2058. '@unrs/resolver-binding-linux-x64-musl@1.9.2':
  2059. optional: true
  2060. '@unrs/resolver-binding-wasm32-wasi@1.9.2':
  2061. dependencies:
  2062. '@napi-rs/wasm-runtime': 0.2.11
  2063. optional: true
  2064. '@unrs/resolver-binding-win32-arm64-msvc@1.9.2':
  2065. optional: true
  2066. '@unrs/resolver-binding-win32-ia32-msvc@1.9.2':
  2067. optional: true
  2068. '@unrs/resolver-binding-win32-x64-msvc@1.9.2':
  2069. optional: true
  2070. acorn-jsx@5.3.2(acorn@8.15.0):
  2071. dependencies:
  2072. acorn: 8.15.0
  2073. acorn@8.15.0: {}
  2074. ajv@6.12.6:
  2075. dependencies:
  2076. fast-deep-equal: 3.1.3
  2077. fast-json-stable-stringify: 2.1.0
  2078. json-schema-traverse: 0.4.1
  2079. uri-js: 4.4.1
  2080. ansi-regex@5.0.1: {}
  2081. ansi-regex@6.1.0: {}
  2082. ansi-styles@4.3.0:
  2083. dependencies:
  2084. color-convert: 2.0.1
  2085. ansi-styles@5.2.0: {}
  2086. ansi-styles@6.2.1: {}
  2087. argparse@2.0.1: {}
  2088. array-timsort@1.0.3: {}
  2089. async-retry@1.3.3:
  2090. dependencies:
  2091. retry: 0.13.1
  2092. b4a@1.6.7: {}
  2093. balanced-match@1.0.2: {}
  2094. bare-events@2.5.4:
  2095. optional: true
  2096. bare-fs@4.1.5:
  2097. dependencies:
  2098. bare-events: 2.5.4
  2099. bare-path: 3.0.0
  2100. bare-stream: 2.6.5(bare-events@2.5.4)
  2101. optional: true
  2102. bare-os@3.6.1:
  2103. optional: true
  2104. bare-path@3.0.0:
  2105. dependencies:
  2106. bare-os: 3.6.1
  2107. optional: true
  2108. bare-stream@2.6.5(bare-events@2.5.4):
  2109. dependencies:
  2110. streamx: 2.22.1
  2111. optionalDependencies:
  2112. bare-events: 2.5.4
  2113. optional: true
  2114. base64-js@1.5.1: {}
  2115. better-sqlite3@11.10.0:
  2116. dependencies:
  2117. bindings: 1.5.0
  2118. prebuild-install: 7.1.3
  2119. better-sqlite3@12.1.1:
  2120. dependencies:
  2121. bindings: 1.5.0
  2122. prebuild-install: 7.1.3
  2123. bindings@1.5.0:
  2124. dependencies:
  2125. file-uri-to-path: 1.0.0
  2126. bl@4.1.0:
  2127. dependencies:
  2128. buffer: 5.7.1
  2129. inherits: 2.0.4
  2130. readable-stream: 3.6.2
  2131. brace-expansion@1.1.12:
  2132. dependencies:
  2133. balanced-match: 1.0.2
  2134. concat-map: 0.0.1
  2135. brace-expansion@2.0.2:
  2136. dependencies:
  2137. balanced-match: 1.0.2
  2138. braces@3.0.3:
  2139. dependencies:
  2140. fill-range: 7.1.1
  2141. browser-stdout@1.3.1: {}
  2142. buffer-from@1.1.2: {}
  2143. buffer@5.7.1:
  2144. dependencies:
  2145. base64-js: 1.5.1
  2146. ieee754: 1.2.1
  2147. callsites@3.1.0: {}
  2148. camelcase@6.3.0: {}
  2149. chalk@4.1.2:
  2150. dependencies:
  2151. ansi-styles: 4.3.0
  2152. supports-color: 7.2.0
  2153. chokidar@4.0.3:
  2154. dependencies:
  2155. readdirp: 4.1.2
  2156. chownr@1.1.4: {}
  2157. ci-info@4.2.0: {}
  2158. cli-progress@3.12.0:
  2159. dependencies:
  2160. string-width: 4.2.3
  2161. cliui@8.0.1:
  2162. dependencies:
  2163. string-width: 4.2.3
  2164. strip-ansi: 6.0.1
  2165. wrap-ansi: 7.0.0
  2166. color-convert@2.0.1:
  2167. dependencies:
  2168. color-name: 1.1.4
  2169. color-name@1.1.4: {}
  2170. colorette@2.0.20: {}
  2171. comment-json@4.2.5:
  2172. dependencies:
  2173. array-timsort: 1.0.3
  2174. core-util-is: 1.0.3
  2175. esprima: 4.0.1
  2176. has-own-prop: 2.0.0
  2177. repeat-string: 1.6.1
  2178. comment-parser@1.4.1: {}
  2179. concat-map@0.0.1: {}
  2180. core-util-is@1.0.3: {}
  2181. cross-spawn@7.0.6:
  2182. dependencies:
  2183. path-key: 3.1.1
  2184. shebang-command: 2.0.0
  2185. which: 2.0.2
  2186. csv-parse@5.6.0: {}
  2187. debug@3.2.7:
  2188. dependencies:
  2189. ms: 2.1.3
  2190. optional: true
  2191. debug@4.4.1(supports-color@8.1.1):
  2192. dependencies:
  2193. ms: 2.1.3
  2194. optionalDependencies:
  2195. supports-color: 8.1.1
  2196. decamelize@4.0.0: {}
  2197. decompress-response@6.0.0:
  2198. dependencies:
  2199. mimic-response: 3.1.0
  2200. deep-extend@0.6.0: {}
  2201. deep-is@0.1.4: {}
  2202. define-data-property@1.1.4:
  2203. dependencies:
  2204. es-define-property: 1.0.1
  2205. es-errors: 1.3.0
  2206. gopd: 1.2.0
  2207. define-properties@1.2.1:
  2208. dependencies:
  2209. define-data-property: 1.1.4
  2210. has-property-descriptors: 1.0.2
  2211. object-keys: 1.1.1
  2212. defu@6.1.4: {}
  2213. detect-libc@2.0.4: {}
  2214. diff@7.0.0: {}
  2215. dns2@2.1.0: {}
  2216. eastasianwidth@0.2.0: {}
  2217. emoji-regex@8.0.0: {}
  2218. emoji-regex@9.2.2: {}
  2219. end-of-stream@1.4.5:
  2220. dependencies:
  2221. once: 1.4.0
  2222. enhanced-resolve@5.18.2:
  2223. dependencies:
  2224. graceful-fs: 4.2.11
  2225. tapable: 2.2.2
  2226. es-define-property@1.0.1: {}
  2227. es-errors@1.3.0: {}
  2228. escalade@3.2.0: {}
  2229. escape-string-regexp@2.0.0: {}
  2230. escape-string-regexp@4.0.0: {}
  2231. eslint-compat-utils@0.5.1(eslint@9.30.0):
  2232. dependencies:
  2233. eslint: 9.30.0
  2234. semver: 7.7.2
  2235. eslint-compat-utils@0.6.5(eslint@9.30.0):
  2236. dependencies:
  2237. eslint: 9.30.0
  2238. semver: 7.7.2
  2239. eslint-config-sukka@6.22.1(@typescript-eslint/eslint-plugin@8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3))(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0)(typescript@5.8.3):
  2240. dependencies:
  2241. '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.30.0)
  2242. '@eslint-sukka/shared': 6.22.1(eslint@9.30.0)(typescript@5.8.3)
  2243. '@eslint/js': 9.30.0
  2244. '@typescript-eslint/parser': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2245. ci-info: 4.2.0
  2246. defu: 6.1.4
  2247. eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0))(eslint@9.30.0)
  2248. eslint-plugin-autofix: 2.2.0(eslint@9.30.0)
  2249. eslint-plugin-de-morgan: 1.3.0(eslint@9.30.0)
  2250. eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0)
  2251. eslint-plugin-jsonc: 2.20.1(eslint@9.30.0)
  2252. eslint-plugin-paths: 1.1.0
  2253. eslint-plugin-promise: 7.2.1(eslint@9.30.0)
  2254. eslint-plugin-regexp: 2.9.0(eslint@9.30.0)
  2255. eslint-plugin-sukka: 6.22.1(eslint@9.30.0)(typescript@5.8.3)
  2256. eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)
  2257. foxts: 3.6.0
  2258. jsonc-eslint-parser: 2.4.0
  2259. picocolors: 1.1.1
  2260. typescript-eslint: 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2261. transitivePeerDependencies:
  2262. - '@eslint/json'
  2263. - '@typescript-eslint/eslint-plugin'
  2264. - '@typescript-eslint/utils'
  2265. - eslint
  2266. - eslint-import-resolver-node
  2267. - eslint-plugin-import
  2268. - supports-color
  2269. - typescript
  2270. eslint-formatter-sukka@6.22.1:
  2271. dependencies:
  2272. ci-info: 4.2.0
  2273. picocolors: 1.1.1
  2274. eslint-import-context@0.1.9(unrs-resolver@1.9.2):
  2275. dependencies:
  2276. get-tsconfig: 4.10.1
  2277. stable-hash-x: 0.2.0
  2278. optionalDependencies:
  2279. unrs-resolver: 1.9.2
  2280. eslint-import-resolver-node@0.3.9:
  2281. dependencies:
  2282. debug: 3.2.7
  2283. is-core-module: 2.16.1
  2284. resolve: 1.22.10
  2285. transitivePeerDependencies:
  2286. - supports-color
  2287. optional: true
  2288. eslint-import-resolver-typescript@4.4.4(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0))(eslint@9.30.0):
  2289. dependencies:
  2290. debug: 4.4.1(supports-color@8.1.1)
  2291. eslint: 9.30.0
  2292. eslint-import-context: 0.1.9(unrs-resolver@1.9.2)
  2293. get-tsconfig: 4.10.1
  2294. is-bun-module: 2.0.0
  2295. stable-hash-x: 0.2.0
  2296. tinyglobby: 0.2.14
  2297. unrs-resolver: 1.9.2
  2298. optionalDependencies:
  2299. eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0)
  2300. transitivePeerDependencies:
  2301. - supports-color
  2302. eslint-json-compat-utils@0.2.1(eslint@9.30.0)(jsonc-eslint-parser@2.4.0):
  2303. dependencies:
  2304. eslint: 9.30.0
  2305. esquery: 1.6.0
  2306. jsonc-eslint-parser: 2.4.0
  2307. eslint-plugin-autofix@2.2.0(eslint@9.30.0):
  2308. dependencies:
  2309. eslint: 9.30.0
  2310. eslint-rule-composer: 0.3.0
  2311. espree: 9.6.1
  2312. esutils: 2.0.3
  2313. string-similarity: 4.0.4
  2314. eslint-plugin-de-morgan@1.3.0(eslint@9.30.0):
  2315. dependencies:
  2316. eslint: 9.30.0
  2317. eslint-plugin-es-x@7.8.0(eslint@9.30.0):
  2318. dependencies:
  2319. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2320. '@eslint-community/regexpp': 4.12.1
  2321. eslint: 9.30.0
  2322. eslint-compat-utils: 0.5.1(eslint@9.30.0)
  2323. eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint@9.30.0):
  2324. dependencies:
  2325. '@typescript-eslint/types': 8.35.0
  2326. comment-parser: 1.4.1
  2327. debug: 4.4.1(supports-color@8.1.1)
  2328. eslint: 9.30.0
  2329. eslint-import-context: 0.1.9(unrs-resolver@1.9.2)
  2330. is-glob: 4.0.3
  2331. minimatch: 10.0.3
  2332. semver: 7.7.2
  2333. stable-hash-x: 0.2.0
  2334. unrs-resolver: 1.9.2
  2335. optionalDependencies:
  2336. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2337. eslint-import-resolver-node: 0.3.9
  2338. transitivePeerDependencies:
  2339. - supports-color
  2340. eslint-plugin-jsonc@2.20.1(eslint@9.30.0):
  2341. dependencies:
  2342. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2343. eslint: 9.30.0
  2344. eslint-compat-utils: 0.6.5(eslint@9.30.0)
  2345. eslint-json-compat-utils: 0.2.1(eslint@9.30.0)(jsonc-eslint-parser@2.4.0)
  2346. espree: 10.4.0
  2347. graphemer: 1.4.0
  2348. jsonc-eslint-parser: 2.4.0
  2349. natural-compare: 1.4.0
  2350. synckit: 0.11.8
  2351. transitivePeerDependencies:
  2352. - '@eslint/json'
  2353. eslint-plugin-n@17.20.0(eslint@9.30.0)(typescript@5.8.3):
  2354. dependencies:
  2355. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2356. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2357. enhanced-resolve: 5.18.2
  2358. eslint: 9.30.0
  2359. eslint-plugin-es-x: 7.8.0(eslint@9.30.0)
  2360. get-tsconfig: 4.10.1
  2361. globals: 15.15.0
  2362. ignore: 5.3.2
  2363. minimatch: 9.0.5
  2364. semver: 7.7.2
  2365. ts-declaration-location: 1.0.7(typescript@5.8.3)
  2366. transitivePeerDependencies:
  2367. - supports-color
  2368. - typescript
  2369. eslint-plugin-paths@1.1.0:
  2370. dependencies:
  2371. comment-json: 4.2.5
  2372. eslint-plugin-promise@7.2.1(eslint@9.30.0):
  2373. dependencies:
  2374. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2375. eslint: 9.30.0
  2376. eslint-plugin-regexp@2.9.0(eslint@9.30.0):
  2377. dependencies:
  2378. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2379. '@eslint-community/regexpp': 4.12.1
  2380. comment-parser: 1.4.1
  2381. eslint: 9.30.0
  2382. jsdoc-type-pratt-parser: 4.1.0
  2383. refa: 0.12.1
  2384. regexp-ast-analysis: 0.7.1
  2385. scslre: 0.3.0
  2386. eslint-plugin-sukka@6.22.1(eslint@9.30.0)(typescript@5.8.3):
  2387. dependencies:
  2388. '@eslint-community/regexpp': 4.12.1
  2389. '@eslint-sukka/shared': 6.22.1(eslint@9.30.0)(typescript@5.8.3)
  2390. '@typescript-eslint/type-utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2391. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2392. foxts: 3.6.0
  2393. optionalDependencies:
  2394. typescript: 5.8.3
  2395. transitivePeerDependencies:
  2396. - eslint
  2397. - supports-color
  2398. eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0):
  2399. dependencies:
  2400. eslint: 9.30.0
  2401. optionalDependencies:
  2402. '@typescript-eslint/eslint-plugin': 8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3)
  2403. eslint-rule-composer@0.3.0: {}
  2404. eslint-scope@8.4.0:
  2405. dependencies:
  2406. esrecurse: 4.3.0
  2407. estraverse: 5.3.0
  2408. eslint-visitor-keys@3.4.3: {}
  2409. eslint-visitor-keys@4.2.1: {}
  2410. eslint@9.30.0:
  2411. dependencies:
  2412. '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.0)
  2413. '@eslint-community/regexpp': 4.12.1
  2414. '@eslint/config-array': 0.21.0
  2415. '@eslint/config-helpers': 0.3.0
  2416. '@eslint/core': 0.14.0
  2417. '@eslint/eslintrc': 3.3.1
  2418. '@eslint/js': 9.30.0
  2419. '@eslint/plugin-kit': 0.3.3
  2420. '@humanfs/node': 0.16.6
  2421. '@humanwhocodes/module-importer': 1.0.1
  2422. '@humanwhocodes/retry': 0.4.3
  2423. '@types/estree': 1.0.8
  2424. '@types/json-schema': 7.0.15
  2425. ajv: 6.12.6
  2426. chalk: 4.1.2
  2427. cross-spawn: 7.0.6
  2428. debug: 4.4.1(supports-color@8.1.1)
  2429. escape-string-regexp: 4.0.0
  2430. eslint-scope: 8.4.0
  2431. eslint-visitor-keys: 4.2.1
  2432. espree: 10.4.0
  2433. esquery: 1.6.0
  2434. esutils: 2.0.3
  2435. fast-deep-equal: 3.1.3
  2436. file-entry-cache: 8.0.0
  2437. find-up: 5.0.0
  2438. glob-parent: 6.0.2
  2439. ignore: 5.3.2
  2440. imurmurhash: 0.1.4
  2441. is-glob: 4.0.3
  2442. json-stable-stringify-without-jsonify: 1.0.1
  2443. lodash.merge: 4.6.2
  2444. minimatch: 3.1.2
  2445. natural-compare: 1.4.0
  2446. optionator: 0.9.4
  2447. transitivePeerDependencies:
  2448. - supports-color
  2449. espree@10.4.0:
  2450. dependencies:
  2451. acorn: 8.15.0
  2452. acorn-jsx: 5.3.2(acorn@8.15.0)
  2453. eslint-visitor-keys: 4.2.1
  2454. espree@9.6.1:
  2455. dependencies:
  2456. acorn: 8.15.0
  2457. acorn-jsx: 5.3.2(acorn@8.15.0)
  2458. eslint-visitor-keys: 3.4.3
  2459. esprima@4.0.1: {}
  2460. esquery@1.6.0:
  2461. dependencies:
  2462. estraverse: 5.3.0
  2463. esrecurse@4.3.0:
  2464. dependencies:
  2465. estraverse: 5.3.0
  2466. estraverse@5.3.0: {}
  2467. esutils@2.0.3: {}
  2468. expand-template@2.0.3: {}
  2469. expect@30.0.3:
  2470. dependencies:
  2471. '@jest/expect-utils': 30.0.3
  2472. '@jest/get-type': 30.0.1
  2473. jest-matcher-utils: 30.0.3
  2474. jest-message-util: 30.0.2
  2475. jest-mock: 30.0.2
  2476. jest-util: 30.0.2
  2477. fast-cidr-tools@0.3.2: {}
  2478. fast-deep-equal@3.1.3: {}
  2479. fast-escape-html@1.1.0: {}
  2480. fast-fifo@1.3.2: {}
  2481. fast-glob@3.3.3:
  2482. dependencies:
  2483. '@nodelib/fs.stat': 2.0.5
  2484. '@nodelib/fs.walk': 1.2.8
  2485. glob-parent: 5.1.2
  2486. merge2: 1.4.1
  2487. micromatch: 4.0.8
  2488. fast-json-stable-stringify@2.1.0: {}
  2489. fast-levenshtein@2.0.6: {}
  2490. fast-uri@3.0.6: {}
  2491. fastq@1.19.1:
  2492. dependencies:
  2493. reusify: 1.1.0
  2494. fdir@6.4.6(picomatch@4.0.2):
  2495. optionalDependencies:
  2496. picomatch: 4.0.2
  2497. file-entry-cache@8.0.0:
  2498. dependencies:
  2499. flat-cache: 4.0.1
  2500. file-uri-to-path@1.0.0: {}
  2501. fill-range@7.1.1:
  2502. dependencies:
  2503. to-regex-range: 5.0.1
  2504. find-up@5.0.0:
  2505. dependencies:
  2506. locate-path: 6.0.0
  2507. path-exists: 4.0.0
  2508. flat-cache@4.0.1:
  2509. dependencies:
  2510. flatted: 3.3.3
  2511. keyv: 4.5.4
  2512. flat@5.0.2: {}
  2513. flatted@3.3.3: {}
  2514. foreground-child@3.3.1:
  2515. dependencies:
  2516. cross-spawn: 7.0.6
  2517. signal-exit: 4.1.0
  2518. foxts@3.6.0:
  2519. dependencies:
  2520. fast-escape-html: 1.1.0
  2521. fs-constants@1.0.0: {}
  2522. function-bind@1.1.2:
  2523. optional: true
  2524. get-caller-file@2.0.5: {}
  2525. get-tsconfig@4.10.1:
  2526. dependencies:
  2527. resolve-pkg-maps: 1.0.0
  2528. github-from-package@0.0.0: {}
  2529. glob-parent@5.1.2:
  2530. dependencies:
  2531. is-glob: 4.0.3
  2532. glob-parent@6.0.2:
  2533. dependencies:
  2534. is-glob: 4.0.3
  2535. glob@10.4.5:
  2536. dependencies:
  2537. foreground-child: 3.3.1
  2538. jackspeak: 3.4.3
  2539. minimatch: 9.0.5
  2540. minipass: 7.1.2
  2541. package-json-from-dist: 1.0.1
  2542. path-scurry: 1.11.1
  2543. globals@14.0.0: {}
  2544. globals@15.15.0: {}
  2545. globalthis@1.0.4:
  2546. dependencies:
  2547. define-properties: 1.2.1
  2548. gopd: 1.2.0
  2549. gopd@1.2.0: {}
  2550. graceful-fs@4.2.11: {}
  2551. graphemer@1.4.0: {}
  2552. has-flag@4.0.0: {}
  2553. has-own-prop@2.0.0: {}
  2554. has-property-descriptors@1.0.2:
  2555. dependencies:
  2556. es-define-property: 1.0.1
  2557. hash-wasm@4.12.0: {}
  2558. hasown@2.0.2:
  2559. dependencies:
  2560. function-bind: 1.1.2
  2561. optional: true
  2562. he@1.2.0: {}
  2563. ieee754@1.2.1: {}
  2564. ignore@5.3.2: {}
  2565. ignore@7.0.5: {}
  2566. import-fresh@3.3.1:
  2567. dependencies:
  2568. parent-module: 1.0.1
  2569. resolve-from: 4.0.0
  2570. imurmurhash@0.1.4: {}
  2571. inherits@2.0.4: {}
  2572. ini@1.3.8: {}
  2573. is-bun-module@2.0.0:
  2574. dependencies:
  2575. semver: 7.7.2
  2576. is-core-module@2.16.1:
  2577. dependencies:
  2578. hasown: 2.0.2
  2579. optional: true
  2580. is-extglob@2.1.1: {}
  2581. is-fullwidth-code-point@3.0.0: {}
  2582. is-glob@4.0.3:
  2583. dependencies:
  2584. is-extglob: 2.1.1
  2585. is-it-type@5.1.2:
  2586. dependencies:
  2587. '@babel/runtime': 7.27.6
  2588. globalthis: 1.0.4
  2589. is-number@7.0.0: {}
  2590. is-plain-obj@2.1.0: {}
  2591. is-unicode-supported@0.1.0: {}
  2592. isexe@2.0.0: {}
  2593. jackspeak@3.4.3:
  2594. dependencies:
  2595. '@isaacs/cliui': 8.0.2
  2596. optionalDependencies:
  2597. '@pkgjs/parseargs': 0.11.0
  2598. jest-diff@30.0.3:
  2599. dependencies:
  2600. '@jest/diff-sequences': 30.0.1
  2601. '@jest/get-type': 30.0.1
  2602. chalk: 4.1.2
  2603. pretty-format: 30.0.2
  2604. jest-matcher-utils@30.0.3:
  2605. dependencies:
  2606. '@jest/get-type': 30.0.1
  2607. chalk: 4.1.2
  2608. jest-diff: 30.0.3
  2609. pretty-format: 30.0.2
  2610. jest-message-util@30.0.2:
  2611. dependencies:
  2612. '@babel/code-frame': 7.27.1
  2613. '@jest/types': 30.0.1
  2614. '@types/stack-utils': 2.0.3
  2615. chalk: 4.1.2
  2616. graceful-fs: 4.2.11
  2617. micromatch: 4.0.8
  2618. pretty-format: 30.0.2
  2619. slash: 3.0.0
  2620. stack-utils: 2.0.6
  2621. jest-mock@30.0.2:
  2622. dependencies:
  2623. '@jest/types': 30.0.1
  2624. '@types/node': 24.0.7
  2625. jest-util: 30.0.2
  2626. jest-regex-util@30.0.1: {}
  2627. jest-util@30.0.2:
  2628. dependencies:
  2629. '@jest/types': 30.0.1
  2630. '@types/node': 24.0.7
  2631. chalk: 4.1.2
  2632. ci-info: 4.2.0
  2633. graceful-fs: 4.2.11
  2634. picomatch: 4.0.2
  2635. js-tokens@4.0.0: {}
  2636. js-yaml@4.1.0:
  2637. dependencies:
  2638. argparse: 2.0.1
  2639. jsdoc-type-pratt-parser@4.1.0: {}
  2640. json-buffer@3.0.1: {}
  2641. json-schema-traverse@0.4.1: {}
  2642. json-stable-stringify-without-jsonify@1.0.1: {}
  2643. json-stringify-pretty-compact@3.0.0: {}
  2644. jsonc-eslint-parser@2.4.0:
  2645. dependencies:
  2646. acorn: 8.15.0
  2647. eslint-visitor-keys: 3.4.3
  2648. espree: 9.6.1
  2649. semver: 7.7.2
  2650. keyv@4.5.4:
  2651. dependencies:
  2652. json-buffer: 3.0.1
  2653. levn@0.4.1:
  2654. dependencies:
  2655. prelude-ls: 1.2.1
  2656. type-check: 0.4.0
  2657. locate-path@6.0.0:
  2658. dependencies:
  2659. p-locate: 5.0.0
  2660. lodash.merge@4.6.2: {}
  2661. log-symbols@4.1.0:
  2662. dependencies:
  2663. chalk: 4.1.2
  2664. is-unicode-supported: 0.1.0
  2665. lru-cache@10.4.3: {}
  2666. merge2@1.4.1: {}
  2667. micromatch@4.0.8:
  2668. dependencies:
  2669. braces: 3.0.3
  2670. picomatch: 2.3.1
  2671. mimic-response@3.1.0: {}
  2672. minimatch@10.0.3:
  2673. dependencies:
  2674. '@isaacs/brace-expansion': 5.0.0
  2675. minimatch@3.1.2:
  2676. dependencies:
  2677. brace-expansion: 1.1.12
  2678. minimatch@9.0.5:
  2679. dependencies:
  2680. brace-expansion: 2.0.2
  2681. minimist@1.2.8: {}
  2682. minipass@7.1.2: {}
  2683. mitata@1.0.34: {}
  2684. mkdirp-classic@0.5.3: {}
  2685. mocha@11.7.1:
  2686. dependencies:
  2687. browser-stdout: 1.3.1
  2688. chokidar: 4.0.3
  2689. debug: 4.4.1(supports-color@8.1.1)
  2690. diff: 7.0.0
  2691. escape-string-regexp: 4.0.0
  2692. find-up: 5.0.0
  2693. glob: 10.4.5
  2694. he: 1.2.0
  2695. js-yaml: 4.1.0
  2696. log-symbols: 4.1.0
  2697. minimatch: 9.0.5
  2698. ms: 2.1.3
  2699. picocolors: 1.1.1
  2700. serialize-javascript: 6.0.2
  2701. strip-json-comments: 3.1.1
  2702. supports-color: 8.1.1
  2703. workerpool: 9.3.3
  2704. yargs: 17.7.2
  2705. yargs-parser: 21.1.1
  2706. yargs-unparser: 2.0.0
  2707. ms@2.1.3: {}
  2708. napi-build-utils@2.0.0: {}
  2709. napi-postinstall@0.2.4: {}
  2710. natural-compare@1.4.0: {}
  2711. node-abi@3.75.0:
  2712. dependencies:
  2713. semver: 7.7.2
  2714. null-prototype-object@1.2.0: {}
  2715. object-keys@1.1.1: {}
  2716. once@1.4.0:
  2717. dependencies:
  2718. wrappy: 1.0.2
  2719. optionator@0.9.4:
  2720. dependencies:
  2721. deep-is: 0.1.4
  2722. fast-levenshtein: 2.0.6
  2723. levn: 0.4.1
  2724. prelude-ls: 1.2.1
  2725. type-check: 0.4.0
  2726. word-wrap: 1.2.5
  2727. oxc-resolver@5.3.0:
  2728. optionalDependencies:
  2729. '@oxc-resolver/binding-darwin-arm64': 5.3.0
  2730. '@oxc-resolver/binding-darwin-x64': 5.3.0
  2731. '@oxc-resolver/binding-freebsd-x64': 5.3.0
  2732. '@oxc-resolver/binding-linux-arm-gnueabihf': 5.3.0
  2733. '@oxc-resolver/binding-linux-arm64-gnu': 5.3.0
  2734. '@oxc-resolver/binding-linux-arm64-musl': 5.3.0
  2735. '@oxc-resolver/binding-linux-riscv64-gnu': 5.3.0
  2736. '@oxc-resolver/binding-linux-s390x-gnu': 5.3.0
  2737. '@oxc-resolver/binding-linux-x64-gnu': 5.3.0
  2738. '@oxc-resolver/binding-linux-x64-musl': 5.3.0
  2739. '@oxc-resolver/binding-wasm32-wasi': 5.3.0
  2740. '@oxc-resolver/binding-win32-arm64-msvc': 5.3.0
  2741. '@oxc-resolver/binding-win32-x64-msvc': 5.3.0
  2742. p-limit@3.1.0:
  2743. dependencies:
  2744. yocto-queue: 0.1.0
  2745. p-locate@5.0.0:
  2746. dependencies:
  2747. p-limit: 3.1.0
  2748. package-json-from-dist@1.0.1: {}
  2749. parent-module@1.0.1:
  2750. dependencies:
  2751. callsites: 3.1.0
  2752. path-exists@4.0.0: {}
  2753. path-key@3.1.1: {}
  2754. path-parse@1.0.7:
  2755. optional: true
  2756. path-scurry@1.11.1:
  2757. dependencies:
  2758. lru-cache: 10.4.3
  2759. minipass: 7.1.2
  2760. picocolors@1.1.1: {}
  2761. picomatch@2.3.1: {}
  2762. picomatch@4.0.2: {}
  2763. pirates@4.0.7: {}
  2764. prebuild-install@7.1.3:
  2765. dependencies:
  2766. detect-libc: 2.0.4
  2767. expand-template: 2.0.3
  2768. github-from-package: 0.0.0
  2769. minimist: 1.2.8
  2770. mkdirp-classic: 0.5.3
  2771. napi-build-utils: 2.0.0
  2772. node-abi: 3.75.0
  2773. pump: 3.0.3
  2774. rc: 1.2.8
  2775. simple-get: 4.0.1
  2776. tar-fs: 2.1.3
  2777. tunnel-agent: 0.6.0
  2778. prelude-ls@1.2.1: {}
  2779. pretty-format@30.0.2:
  2780. dependencies:
  2781. '@jest/schemas': 30.0.1
  2782. ansi-styles: 5.2.0
  2783. react-is: 18.3.1
  2784. promise-make-naked@2.1.2: {}
  2785. pump@3.0.3:
  2786. dependencies:
  2787. end-of-stream: 1.4.5
  2788. once: 1.4.0
  2789. punycode@2.3.1: {}
  2790. queue-microtask@1.2.3: {}
  2791. randombytes@2.1.0:
  2792. dependencies:
  2793. safe-buffer: 5.2.1
  2794. rc@1.2.8:
  2795. dependencies:
  2796. deep-extend: 0.6.0
  2797. ini: 1.3.8
  2798. minimist: 1.2.8
  2799. strip-json-comments: 2.0.1
  2800. react-is@18.3.1: {}
  2801. readable-stream@3.6.2:
  2802. dependencies:
  2803. inherits: 2.0.4
  2804. string_decoder: 1.3.0
  2805. util-deprecate: 1.0.2
  2806. readdirp@4.1.2: {}
  2807. refa@0.12.1:
  2808. dependencies:
  2809. '@eslint-community/regexpp': 4.12.1
  2810. regexp-ast-analysis@0.7.1:
  2811. dependencies:
  2812. '@eslint-community/regexpp': 4.12.1
  2813. refa: 0.12.1
  2814. repeat-string@1.6.1: {}
  2815. require-directory@2.1.1: {}
  2816. resolve-from@4.0.0: {}
  2817. resolve-pkg-maps@1.0.0: {}
  2818. resolve@1.22.10:
  2819. dependencies:
  2820. is-core-module: 2.16.1
  2821. path-parse: 1.0.7
  2822. supports-preserve-symlinks-flag: 1.0.0
  2823. optional: true
  2824. retry@0.13.1: {}
  2825. reusify@1.1.0: {}
  2826. run-parallel@1.2.0:
  2827. dependencies:
  2828. queue-microtask: 1.2.3
  2829. safe-buffer@5.2.1: {}
  2830. scslre@0.3.0:
  2831. dependencies:
  2832. '@eslint-community/regexpp': 4.12.1
  2833. refa: 0.12.1
  2834. regexp-ast-analysis: 0.7.1
  2835. semver@7.7.2: {}
  2836. serialize-javascript@6.0.2:
  2837. dependencies:
  2838. randombytes: 2.1.0
  2839. shebang-command@2.0.0:
  2840. dependencies:
  2841. shebang-regex: 3.0.0
  2842. shebang-regex@3.0.0: {}
  2843. signal-exit@4.1.0: {}
  2844. simple-concat@1.0.1: {}
  2845. simple-get@4.0.1:
  2846. dependencies:
  2847. decompress-response: 6.0.0
  2848. once: 1.4.0
  2849. simple-concat: 1.0.1
  2850. simple-invariant@2.0.1: {}
  2851. slash@3.0.0: {}
  2852. source-map-support@0.5.21:
  2853. dependencies:
  2854. buffer-from: 1.1.2
  2855. source-map: 0.6.1
  2856. source-map@0.6.1: {}
  2857. stable-hash-x@0.2.0: {}
  2858. stack-utils@2.0.6:
  2859. dependencies:
  2860. escape-string-regexp: 2.0.0
  2861. streamx@2.22.1:
  2862. dependencies:
  2863. fast-fifo: 1.3.2
  2864. text-decoder: 1.2.3
  2865. optionalDependencies:
  2866. bare-events: 2.5.4
  2867. string-similarity@4.0.4: {}
  2868. string-width@4.2.3:
  2869. dependencies:
  2870. emoji-regex: 8.0.0
  2871. is-fullwidth-code-point: 3.0.0
  2872. strip-ansi: 6.0.1
  2873. string-width@5.1.2:
  2874. dependencies:
  2875. eastasianwidth: 0.2.0
  2876. emoji-regex: 9.2.2
  2877. strip-ansi: 7.1.0
  2878. string_decoder@1.3.0:
  2879. dependencies:
  2880. safe-buffer: 5.2.1
  2881. strip-ansi@6.0.1:
  2882. dependencies:
  2883. ansi-regex: 5.0.1
  2884. strip-ansi@7.1.0:
  2885. dependencies:
  2886. ansi-regex: 6.1.0
  2887. strip-json-comments@2.0.1: {}
  2888. strip-json-comments@3.1.1: {}
  2889. supports-color@7.2.0:
  2890. dependencies:
  2891. has-flag: 4.0.0
  2892. supports-color@8.1.1:
  2893. dependencies:
  2894. has-flag: 4.0.0
  2895. supports-preserve-symlinks-flag@1.0.0:
  2896. optional: true
  2897. synckit@0.11.8:
  2898. dependencies:
  2899. '@pkgr/core': 0.2.7
  2900. tapable@2.2.2: {}
  2901. tar-fs@2.1.3:
  2902. dependencies:
  2903. chownr: 1.1.4
  2904. mkdirp-classic: 0.5.3
  2905. pump: 3.0.3
  2906. tar-stream: 2.2.0
  2907. tar-fs@3.0.10:
  2908. dependencies:
  2909. pump: 3.0.3
  2910. tar-stream: 3.1.7
  2911. optionalDependencies:
  2912. bare-fs: 4.1.5
  2913. bare-path: 3.0.0
  2914. transitivePeerDependencies:
  2915. - bare-buffer
  2916. tar-stream@2.2.0:
  2917. dependencies:
  2918. bl: 4.1.0
  2919. end-of-stream: 1.4.5
  2920. fs-constants: 1.0.0
  2921. inherits: 2.0.4
  2922. readable-stream: 3.6.2
  2923. tar-stream@3.1.7:
  2924. dependencies:
  2925. b4a: 1.6.7
  2926. fast-fifo: 1.3.2
  2927. streamx: 2.22.1
  2928. text-decoder@1.2.3:
  2929. dependencies:
  2930. b4a: 1.6.7
  2931. tinyexec@1.0.1: {}
  2932. tinyglobby@0.2.14:
  2933. dependencies:
  2934. fdir: 6.4.6(picomatch@4.0.2)
  2935. picomatch: 4.0.2
  2936. tldts-core@6.1.86: {}
  2937. tldts-core@7.0.9: {}
  2938. tldts-experimental@6.1.86:
  2939. dependencies:
  2940. tldts-core: 6.1.86
  2941. tldts-experimental@7.0.9:
  2942. dependencies:
  2943. tldts-core: 7.0.9
  2944. tldts@6.1.86:
  2945. dependencies:
  2946. tldts-core: 6.1.86
  2947. to-regex-range@5.0.1:
  2948. dependencies:
  2949. is-number: 7.0.0
  2950. ts-api-utils@2.1.0(typescript@5.8.3):
  2951. dependencies:
  2952. typescript: 5.8.3
  2953. ts-declaration-location@1.0.7(typescript@5.8.3):
  2954. dependencies:
  2955. picomatch: 4.0.2
  2956. typescript: 5.8.3
  2957. tslib@2.8.1: {}
  2958. tunnel-agent@0.6.0:
  2959. dependencies:
  2960. safe-buffer: 5.2.1
  2961. type-check@0.4.0:
  2962. dependencies:
  2963. prelude-ls: 1.2.1
  2964. typescript-eslint@8.35.0(eslint@9.30.0)(typescript@5.8.3):
  2965. dependencies:
  2966. '@typescript-eslint/eslint-plugin': 8.35.0(@typescript-eslint/parser@8.35.0(eslint@9.30.0)(typescript@5.8.3))(eslint@9.30.0)(typescript@5.8.3)
  2967. '@typescript-eslint/parser': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2968. '@typescript-eslint/utils': 8.35.0(eslint@9.30.0)(typescript@5.8.3)
  2969. eslint: 9.30.0
  2970. typescript: 5.8.3
  2971. transitivePeerDependencies:
  2972. - supports-color
  2973. typescript@5.8.3: {}
  2974. undici-cache-store-better-sqlite3@1.0.0(undici@7.11.0):
  2975. dependencies:
  2976. better-sqlite3: 11.10.0
  2977. foxts: 3.6.0
  2978. undici: 7.11.0
  2979. undici-types@7.8.0: {}
  2980. undici@7.11.0: {}
  2981. unrs-resolver@1.9.2:
  2982. dependencies:
  2983. napi-postinstall: 0.2.4
  2984. optionalDependencies:
  2985. '@unrs/resolver-binding-android-arm-eabi': 1.9.2
  2986. '@unrs/resolver-binding-android-arm64': 1.9.2
  2987. '@unrs/resolver-binding-darwin-arm64': 1.9.2
  2988. '@unrs/resolver-binding-darwin-x64': 1.9.2
  2989. '@unrs/resolver-binding-freebsd-x64': 1.9.2
  2990. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.9.2
  2991. '@unrs/resolver-binding-linux-arm-musleabihf': 1.9.2
  2992. '@unrs/resolver-binding-linux-arm64-gnu': 1.9.2
  2993. '@unrs/resolver-binding-linux-arm64-musl': 1.9.2
  2994. '@unrs/resolver-binding-linux-ppc64-gnu': 1.9.2
  2995. '@unrs/resolver-binding-linux-riscv64-gnu': 1.9.2
  2996. '@unrs/resolver-binding-linux-riscv64-musl': 1.9.2
  2997. '@unrs/resolver-binding-linux-s390x-gnu': 1.9.2
  2998. '@unrs/resolver-binding-linux-x64-gnu': 1.9.2
  2999. '@unrs/resolver-binding-linux-x64-musl': 1.9.2
  3000. '@unrs/resolver-binding-wasm32-wasi': 1.9.2
  3001. '@unrs/resolver-binding-win32-arm64-msvc': 1.9.2
  3002. '@unrs/resolver-binding-win32-ia32-msvc': 1.9.2
  3003. '@unrs/resolver-binding-win32-x64-msvc': 1.9.2
  3004. uri-js@4.4.1:
  3005. dependencies:
  3006. punycode: 2.3.1
  3007. util-deprecate@1.0.2: {}
  3008. webworker-shim@1.1.4: {}
  3009. which@2.0.2:
  3010. dependencies:
  3011. isexe: 2.0.0
  3012. whoiser@1.18.0(patch_hash=01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f):
  3013. dependencies:
  3014. punycode: 2.3.1
  3015. why-is-node-running@3.2.2: {}
  3016. word-wrap@1.2.5: {}
  3017. workerpool@9.3.3: {}
  3018. worktank@2.7.3:
  3019. dependencies:
  3020. promise-make-naked: 2.1.2
  3021. webworker-shim: 1.1.4
  3022. wrap-ansi@7.0.0:
  3023. dependencies:
  3024. ansi-styles: 4.3.0
  3025. string-width: 4.2.3
  3026. strip-ansi: 6.0.1
  3027. wrap-ansi@8.1.0:
  3028. dependencies:
  3029. ansi-styles: 6.2.1
  3030. string-width: 5.1.2
  3031. strip-ansi: 7.1.0
  3032. wrappy@1.0.2: {}
  3033. xbits@0.2.0: {}
  3034. y18n@5.0.8: {}
  3035. yaml@2.8.0: {}
  3036. yargs-parser@21.1.1: {}
  3037. yargs-unparser@2.0.0:
  3038. dependencies:
  3039. camelcase: 6.3.0
  3040. decamelize: 4.0.0
  3041. flat: 5.0.2
  3042. is-plain-obj: 2.1.0
  3043. yargs@17.7.2:
  3044. dependencies:
  3045. cliui: 8.0.1
  3046. escalade: 3.2.0
  3047. get-caller-file: 2.0.5
  3048. require-directory: 2.1.1
  3049. string-width: 4.2.3
  3050. y18n: 5.0.8
  3051. yargs-parser: 21.1.1
  3052. yauzl-promise@4.0.0:
  3053. dependencies:
  3054. '@node-rs/crc32': 1.10.6
  3055. is-it-type: 5.1.2
  3056. simple-invariant: 2.0.1
  3057. yocto-queue@0.1.0: {}