pnpm-lock.yaml 128 KB

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