pnpm-lock.yaml 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. overrides:
  6. has: npm:@nolyfill/has@latest
  7. patchedDependencies:
  8. whoiser:
  9. hash: 01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f
  10. path: patches/whoiser.patch
  11. importers:
  12. .:
  13. dependencies:
  14. '@ghostery/adblocker':
  15. specifier: ^2.5.0
  16. version: 2.5.0
  17. '@henrygd/queue':
  18. specifier: ^1.0.7
  19. version: 1.0.7
  20. '@mitata/counters':
  21. specifier: ^0.0.8
  22. version: 0.0.8
  23. async-retry:
  24. specifier: ^1.3.3
  25. version: 1.3.3
  26. better-sqlite3:
  27. specifier: ^11.9.0
  28. version: 11.9.0
  29. ci-info:
  30. specifier: ^4.2.0
  31. version: 4.2.0
  32. csv-parse:
  33. specifier: ^5.6.0
  34. version: 5.6.0
  35. dns2:
  36. specifier: ^2.1.0
  37. version: 2.1.0
  38. fast-cidr-tools:
  39. specifier: ^0.3.2
  40. version: 0.3.2
  41. fast-fifo:
  42. specifier: ^1.3.2
  43. version: 1.3.2
  44. fdir:
  45. specifier: ^6.4.3
  46. version: 6.4.3(picomatch@4.0.2)
  47. foxts:
  48. specifier: ^2.0.1
  49. version: 2.0.1
  50. hash-wasm:
  51. specifier: ^4.12.0
  52. version: 4.12.0
  53. json-stringify-pretty-compact:
  54. specifier: 3.0.0
  55. version: 3.0.0
  56. picocolors:
  57. specifier: ^1.1.1
  58. version: 1.1.1
  59. punycode:
  60. specifier: ^2.3.1
  61. version: 2.3.1
  62. tar-fs:
  63. specifier: ^3.0.8
  64. version: 3.0.8
  65. tinyexec:
  66. specifier: ^0.3.2
  67. version: 0.3.2
  68. tldts:
  69. specifier: ^6.1.84
  70. version: 6.1.84
  71. tldts-experimental:
  72. specifier: ^6.1.84
  73. version: 6.1.84
  74. undici:
  75. specifier: ^7.5.0
  76. version: 7.5.0
  77. undici-cache-store-better-sqlite3:
  78. specifier: ^0.1.1
  79. version: 0.1.1(undici@7.5.0)
  80. whoiser:
  81. specifier: ^1.18.0
  82. version: 1.18.0(patch_hash=01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f)
  83. why-is-node-running:
  84. specifier: ^3.2.2
  85. version: 3.2.2
  86. worktank:
  87. specifier: ^2.7.3
  88. version: 2.7.3
  89. xbits:
  90. specifier: ^0.2.0
  91. version: 0.2.0
  92. yaml:
  93. specifier: ^2.7.0
  94. version: 2.7.0
  95. devDependencies:
  96. '@eslint-sukka/node':
  97. specifier: ^6.17.1
  98. version: 6.17.1(eslint@9.22.0)(typescript@5.8.2)
  99. '@swc-node/register':
  100. specifier: ^1.10.10
  101. version: 1.10.10(@swc/core@1.11.11)(@swc/types@0.1.19)(typescript@5.8.2)
  102. '@swc/core':
  103. specifier: ^1.11.11
  104. version: 1.11.11
  105. '@types/async-retry':
  106. specifier: ^1.4.9
  107. version: 1.4.9
  108. '@types/better-sqlite3':
  109. specifier: ^7.6.12
  110. version: 7.6.12
  111. '@types/dns2':
  112. specifier: ^2.0.9
  113. version: 2.0.9
  114. '@types/fast-fifo':
  115. specifier: ^1.3.0
  116. version: 1.3.0
  117. '@types/mocha':
  118. specifier: ^10.0.10
  119. version: 10.0.10
  120. '@types/node':
  121. specifier: ^22.13.10
  122. version: 22.13.10
  123. '@types/punycode':
  124. specifier: ^2.1.4
  125. version: 2.1.4
  126. '@types/tar-fs':
  127. specifier: ^2.0.4
  128. version: 2.0.4
  129. eslint:
  130. specifier: ^9.22.0
  131. version: 9.22.0
  132. eslint-config-sukka:
  133. specifier: ^6.17.1
  134. version: 6.17.1(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2)
  135. eslint-formatter-sukka:
  136. specifier: ^6.17.1
  137. version: 6.17.1
  138. expect:
  139. specifier: ^29.7.0
  140. version: 29.7.0
  141. mitata:
  142. specifier: ^1.0.34
  143. version: 1.0.34
  144. mocha:
  145. specifier: ^11.1.0
  146. version: 11.1.0
  147. typescript:
  148. specifier: ^5.8.2
  149. version: 5.8.2
  150. packages:
  151. '@babel/code-frame@7.26.2':
  152. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  153. engines: {node: '>=6.9.0'}
  154. '@babel/helper-validator-identifier@7.25.9':
  155. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  156. engines: {node: '>=6.9.0'}
  157. '@dual-bundle/import-meta-resolve@4.1.0':
  158. resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
  159. '@emnapi/core@1.3.1':
  160. resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
  161. '@emnapi/runtime@1.3.1':
  162. resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
  163. '@emnapi/wasi-threads@1.0.1':
  164. resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
  165. '@eslint-community/eslint-plugin-eslint-comments@4.4.1':
  166. resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
  167. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  168. peerDependencies:
  169. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  170. '@eslint-community/eslint-utils@4.4.1':
  171. resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
  172. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  173. peerDependencies:
  174. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  175. '@eslint-community/regexpp@4.12.1':
  176. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  177. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  178. '@eslint-sukka/node@6.17.1':
  179. resolution: {integrity: sha512-Lw+q8w8CgXvGKHA8xRm1YQoiSmjUKK9gJUl8kiDuviRE3dPLHBrdULxaiP+O24EINIu5eYykQ9vJFqFbryqKyQ==}
  180. '@eslint-sukka/shared@6.17.1':
  181. resolution: {integrity: sha512-Mi1kFq5oLS1ZuskqqAL8H2F2ol7Dt/JmllChM+aLggZcvzEiw6SLrLKas6TqUs7outcsVzC2QqlGgzubmBMSyg==}
  182. '@eslint/config-array@0.19.2':
  183. resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
  184. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  185. '@eslint/config-helpers@0.1.0':
  186. resolution: {integrity: sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==}
  187. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  188. '@eslint/core@0.12.0':
  189. resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
  190. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  191. '@eslint/eslintrc@3.3.0':
  192. resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
  193. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  194. '@eslint/js@9.22.0':
  195. resolution: {integrity: sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==}
  196. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  197. '@eslint/object-schema@2.1.6':
  198. resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
  199. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  200. '@eslint/plugin-kit@0.2.7':
  201. resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
  202. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  203. '@ghostery/adblocker-content@2.5.0':
  204. resolution: {integrity: sha512-Gn9fslZdacx1m1e3/2LSUPWagLObYmIDbkgvZTtgqT/OHc17VbM71AxWEjtC/xzo5K4PI25958PjvidoEH7ufw==}
  205. '@ghostery/adblocker-extended-selectors@2.5.0':
  206. resolution: {integrity: sha512-/GBAwErjktcBKLjCMl/n+jz2MxXFfTmEGw+hcPtAhEin49eSC09PK1TAdzDPDXkCTF4Jmb/zC+MYtbX1eZ1WsQ==}
  207. '@ghostery/adblocker@2.5.0':
  208. resolution: {integrity: sha512-CcmWiTLKxDqYiTlPyOAWr3xeZYXjWlpu6UOCDkk33k0w7jTgVrdvwbXf8Tv4XE0m3uNX6Idfj4H+Umv8L3AiUw==}
  209. '@henrygd/queue@1.0.7':
  210. resolution: {integrity: sha512-Jmt/iO6yDlz9UYGILkm/Qzi/ckkEiTNZcqDvt3QFLE4OThPeiCj6tKsynHFm/ppl8RumWXAx1dZPBPiRPaaGig==}
  211. '@humanfs/core@0.19.1':
  212. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  213. engines: {node: '>=18.18.0'}
  214. '@humanfs/node@0.16.6':
  215. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  216. engines: {node: '>=18.18.0'}
  217. '@humanwhocodes/module-importer@1.0.1':
  218. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  219. engines: {node: '>=12.22'}
  220. '@humanwhocodes/retry@0.3.1':
  221. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  222. engines: {node: '>=18.18'}
  223. '@humanwhocodes/retry@0.4.2':
  224. resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
  225. engines: {node: '>=18.18'}
  226. '@isaacs/cliui@8.0.2':
  227. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  228. engines: {node: '>=12'}
  229. '@jest/expect-utils@29.7.0':
  230. resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
  231. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  232. '@jest/schemas@29.6.3':
  233. resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
  234. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  235. '@jest/types@29.6.3':
  236. resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
  237. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  238. '@mitata/counters@0.0.8':
  239. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  240. '@napi-rs/wasm-runtime@0.2.7':
  241. resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
  242. '@nodelib/fs.scandir@2.1.5':
  243. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  244. engines: {node: '>= 8'}
  245. '@nodelib/fs.stat@2.0.5':
  246. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  247. engines: {node: '>= 8'}
  248. '@nodelib/fs.walk@1.2.8':
  249. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  250. engines: {node: '>= 8'}
  251. '@oxc-resolver/binding-darwin-arm64@5.0.0':
  252. resolution: {integrity: sha512-zwHAf+owoxSWTDD4dFuwW+FkpaDzbaL30H5Ltocb+RmLyg4WKuteusRLKh5Y8b/cyu7UzhxM0haIqQjyqA1iuA==}
  253. cpu: [arm64]
  254. os: [darwin]
  255. '@oxc-resolver/binding-darwin-x64@5.0.0':
  256. resolution: {integrity: sha512-1lS3aBNVjVQKBvZdHm13+8tSjvu2Tl1Cv4FnUyMYxqx6+rsom2YaOylS5LhDUwfZu0zAgpLMwK6kGpF/UPncNg==}
  257. cpu: [x64]
  258. os: [darwin]
  259. '@oxc-resolver/binding-freebsd-x64@5.0.0':
  260. resolution: {integrity: sha512-q9sRd68wC1/AJ0eu6ClhxlklVfe8gH4wrUkSyEbIYTZ8zY5yjsLY3fpqqsaCvWJUx65nW+XtnAxCGCi5AXr1Mw==}
  261. cpu: [x64]
  262. os: [freebsd]
  263. '@oxc-resolver/binding-linux-arm-gnueabihf@5.0.0':
  264. resolution: {integrity: sha512-catYavWsvqViYnCveQjhrK6yVYDEPFvIOgGLxnz5r2dcgrjpmquzREoyss0L2QG/J5HTTbwqwZ1kk+g56hE/1A==}
  265. cpu: [arm]
  266. os: [linux]
  267. '@oxc-resolver/binding-linux-arm64-gnu@5.0.0':
  268. resolution: {integrity: sha512-l/0pWoQM5kVmJLg4frQ1mKZOXgi0ex/hzvFt8E4WK2ifXr5JgKFUokxsb/oat7f5YzdJJh5r9p+qS/t3dA26Aw==}
  269. cpu: [arm64]
  270. os: [linux]
  271. '@oxc-resolver/binding-linux-arm64-musl@5.0.0':
  272. resolution: {integrity: sha512-bx0oz/oaAW4FGYqpIIxJCnmgb906YfMhTEWCJvYkxjpEI8VKLJEL3PQevYiqDq36SA0yRLJ/sQK2fqry8AFBfA==}
  273. cpu: [arm64]
  274. os: [linux]
  275. '@oxc-resolver/binding-linux-x64-gnu@5.0.0':
  276. resolution: {integrity: sha512-4PH++qbSIhlRsFYdN1P9neDov4OGhTGo5nbQ1D7AL6gWFLo3gdZTc00FM2y8JjeTcPWEXkViZuwpuc0w5i6qHg==}
  277. cpu: [x64]
  278. os: [linux]
  279. '@oxc-resolver/binding-linux-x64-musl@5.0.0':
  280. resolution: {integrity: sha512-mLfQFpX3/5y9oWi0b+9FbWDkL2hM0Y29653beCHiHxAdGyVgb2DsJbK74WkMTwtSz9by8vyBh8jGPZcg1yLZbQ==}
  281. cpu: [x64]
  282. os: [linux]
  283. '@oxc-resolver/binding-wasm32-wasi@5.0.0':
  284. resolution: {integrity: sha512-uEhsAZSo65qsRi6+IfBTEUUFbjg7T2yruJeLYpFfEATpm3ory5Mgo5vx3L0c2/Cz1OUZXBgp3A8x6VMUB2jT2A==}
  285. engines: {node: '>=14.0.0'}
  286. cpu: [wasm32]
  287. '@oxc-resolver/binding-win32-arm64-msvc@5.0.0':
  288. resolution: {integrity: sha512-8DbSso9Jp1ns8AYuZFXdRfAcdJrzZwkFm/RjPuvAPTENsm685dosBF8G6gTHQlHvULnk6o3sa9ygZaTGC/UoEw==}
  289. cpu: [arm64]
  290. os: [win32]
  291. '@oxc-resolver/binding-win32-x64-msvc@5.0.0':
  292. resolution: {integrity: sha512-ylppfPEg63NuRXOPNsXFlgyl37JrtRn0QMO26X3K3Ytp5HtLrMreQMGVtgr30e1l2YmAWqhvmKlCryOqzGPD/g==}
  293. cpu: [x64]
  294. os: [win32]
  295. '@package-json/types@0.0.11':
  296. resolution: {integrity: sha512-allOTUn4Xi2bQMs+mthzHWekgjRBVno+DLOcXk9+6haG5oFu5rlz0pszT3sh1OAkQVFLYrAS4V5CSxWyVwUf7g==}
  297. '@pkgjs/parseargs@0.11.0':
  298. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  299. engines: {node: '>=14'}
  300. '@remusao/guess-url-type@1.3.0':
  301. resolution: {integrity: sha512-SNSJGxH5ckvxb3EUHj4DqlAm/bxNxNv2kx/AESZva/9VfcBokwKNS+C4D1lQdWIDM1R3d3UG+xmVzlkNG8CPTQ==}
  302. '@remusao/small@1.3.0':
  303. resolution: {integrity: sha512-bydAhJI+ywmg5xMUcbqoR8KahetcfkFywEZpsyFZ8EBofilvWxbXnMSe4vnjDI1Y+SWxnNhR4AL/2BAXkf4b8A==}
  304. '@remusao/smaz-compress@1.10.0':
  305. resolution: {integrity: sha512-E/lC8OSU+3bQrUl64vlLyPzIxo7dxF2RvNBe9KzcM4ax43J/d+YMinmMztHyCIHqRbz7rBCtkp3c0KfeIbHmEg==}
  306. '@remusao/smaz-decompress@1.10.0':
  307. resolution: {integrity: sha512-aA5ImUH480Pcs5/cOgToKmFnzi7osSNG6ft+7DdmQTaQEEst3nLq3JLlBEk+gwidURymjbx6DYs60LHaZ415VQ==}
  308. '@remusao/smaz@1.10.0':
  309. resolution: {integrity: sha512-GQzCxmmMpLkyZwcwNgz8TpuBEWl0RUQa8IcvKiYlPxuyYKqyqPkCr0hlHI15ckn3kDUPS68VmTVgyPnLNrdVmg==}
  310. '@remusao/trie@1.5.0':
  311. resolution: {integrity: sha512-UX+3utJKgwCsg6sUozjxd38gNMVRXrY4TNX9VvCdSrlZBS1nZjRPi98ON3QjRAdf6KCguJFyQARRsulTeqQiPg==}
  312. '@sinclair/typebox@0.27.8':
  313. resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
  314. '@swc-node/core@1.13.3':
  315. resolution: {integrity: sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==}
  316. engines: {node: '>= 10'}
  317. peerDependencies:
  318. '@swc/core': '>= 1.4.13'
  319. '@swc/types': '>= 0.1'
  320. '@swc-node/register@1.10.10':
  321. resolution: {integrity: sha512-jYWaI2WNEKz8KZL3sExd2KVL1JMma1/J7z+9iTpv0+fRN7LGMF8VTGGuHI2bug/ztpdZU1G44FG/Kk6ElXL9CQ==}
  322. peerDependencies:
  323. '@swc/core': '>= 1.4.13'
  324. typescript: '>= 4.3'
  325. '@swc-node/sourcemap-support@0.5.1':
  326. resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
  327. '@swc/core-darwin-arm64@1.11.11':
  328. resolution: {integrity: sha512-vJcjGVDB8cZH7zyOkC0AfpFYI/7GHKG0NSsH3tpuKrmoAXJyCYspKPGid7FT53EAlWreN7+Pew+bukYf5j+Fmg==}
  329. engines: {node: '>=10'}
  330. cpu: [arm64]
  331. os: [darwin]
  332. '@swc/core-darwin-x64@1.11.11':
  333. resolution: {integrity: sha512-/N4dGdqEYvD48mCF3QBSycAbbQd3yoZ2YHSzYesQf8usNc2YpIhYqEH3sql02UsxTjEFOJSf1bxZABDdhbSl6A==}
  334. engines: {node: '>=10'}
  335. cpu: [x64]
  336. os: [darwin]
  337. '@swc/core-linux-arm-gnueabihf@1.11.11':
  338. resolution: {integrity: sha512-hsBhKK+wVXdN3x9MrL5GW0yT8o9GxteE5zHAI2HJjRQel3HtW7m5Nvwaq+q8rwMf4YQRd8ydbvwl4iUOZx7i2Q==}
  339. engines: {node: '>=10'}
  340. cpu: [arm]
  341. os: [linux]
  342. '@swc/core-linux-arm64-gnu@1.11.11':
  343. resolution: {integrity: sha512-YOCdxsqbnn/HMPCNM6nrXUpSndLXMUssGTtzT7ffXqr7WuzRg2e170FVDVQFIkb08E7Ku5uOnnUVAChAJQbMOQ==}
  344. engines: {node: '>=10'}
  345. cpu: [arm64]
  346. os: [linux]
  347. '@swc/core-linux-arm64-musl@1.11.11':
  348. resolution: {integrity: sha512-nR2tfdQRRzwqR2XYw9NnBk9Fdvff/b8IiJzDL28gRR2QiJWLaE8LsRovtWrzCOYq6o5Uu9cJ3WbabWthLo4jLw==}
  349. engines: {node: '>=10'}
  350. cpu: [arm64]
  351. os: [linux]
  352. '@swc/core-linux-x64-gnu@1.11.11':
  353. resolution: {integrity: sha512-b4gBp5HA9xNWNC5gsYbdzGBJWx4vKSGybGMGOVWWuF+ynx10+0sA/o4XJGuNHm8TEDuNh9YLKf6QkIO8+GPJ1g==}
  354. engines: {node: '>=10'}
  355. cpu: [x64]
  356. os: [linux]
  357. '@swc/core-linux-x64-musl@1.11.11':
  358. resolution: {integrity: sha512-dEvqmQVswjNvMBwXNb8q5uSvhWrJLdttBSef3s6UC5oDSwOr00t3RQPzyS3n5qmGJ8UMTdPRmsopxmqaODISdg==}
  359. engines: {node: '>=10'}
  360. cpu: [x64]
  361. os: [linux]
  362. '@swc/core-win32-arm64-msvc@1.11.11':
  363. resolution: {integrity: sha512-aZNZznem9WRnw2FbTqVpnclvl8Q2apOBW2B316gZK+qxbe+ktjOUnYaMhdCG3+BYggyIBDOnaJeQrXbKIMmNdw==}
  364. engines: {node: '>=10'}
  365. cpu: [arm64]
  366. os: [win32]
  367. '@swc/core-win32-ia32-msvc@1.11.11':
  368. resolution: {integrity: sha512-DjeJn/IfjgOddmJ8IBbWuDK53Fqw7UvOz7kyI/728CSdDYC3LXigzj3ZYs4VvyeOt+ZcQZUB2HA27edOifomGw==}
  369. engines: {node: '>=10'}
  370. cpu: [ia32]
  371. os: [win32]
  372. '@swc/core-win32-x64-msvc@1.11.11':
  373. resolution: {integrity: sha512-Gp/SLoeMtsU4n0uRoKDOlGrRC6wCfifq7bqLwSlAG8u8MyJYJCcwjg7ggm0rhLdC2vbiZ+lLVl3kkETp+JUvKg==}
  374. engines: {node: '>=10'}
  375. cpu: [x64]
  376. os: [win32]
  377. '@swc/core@1.11.11':
  378. resolution: {integrity: sha512-pCVY2Wn6dV/labNvssk9b3Owi4WOYsapcbWm90XkIj4xH/56Z6gzja9fsU+4MdPuEfC2Smw835nZHcdCFGyX6A==}
  379. engines: {node: '>=10'}
  380. peerDependencies:
  381. '@swc/helpers': '*'
  382. peerDependenciesMeta:
  383. '@swc/helpers':
  384. optional: true
  385. '@swc/counter@0.1.3':
  386. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  387. '@swc/types@0.1.19':
  388. resolution: {integrity: sha512-WkAZaAfj44kh/UFdAQcrMP1I0nwRqpt27u+08LMBYMqmQfwwMofYoMh/48NGkMMRfC4ynpfwRbJuu8ErfNloeA==}
  389. '@tybys/wasm-util@0.9.0':
  390. resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
  391. '@types/async-retry@1.4.9':
  392. resolution: {integrity: sha512-s1ciZQJzRh3708X/m3vPExr5KJlzlZJvXsKpbtE2luqNcbROr64qU+3KpJsYHqWMeaxI839OvXf9PrUSw1Xtyg==}
  393. '@types/better-sqlite3@7.6.12':
  394. resolution: {integrity: sha512-fnQmj8lELIj7BSrZQAdBMHEHX8OZLYIHXqAKT1O7tDfLxaINzf00PMjw22r3N/xXh0w/sGHlO6SVaCQ2mj78lg==}
  395. '@types/dns2@2.0.9':
  396. resolution: {integrity: sha512-+eiPSuo/KfvaaW7DiMf/vrt9mhxbZCCgxoCa/c2qMVSuZQus4BzBuKRh8XBwcUXWAtvI8QuZOp13UODJNq9DXg==}
  397. '@types/doctrine@0.0.9':
  398. resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
  399. '@types/estree@1.0.6':
  400. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  401. '@types/fast-fifo@1.3.0':
  402. resolution: {integrity: sha512-xTVvla2QX5ruNmVUqCFc++xm42xl6RBaroppSleSczvM2rAwClr88MbnrgDGLIStt4RCVegeKO4z2HM5AHFOng==}
  403. '@types/istanbul-lib-coverage@2.0.6':
  404. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  405. '@types/istanbul-lib-report@3.0.3':
  406. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  407. '@types/istanbul-reports@3.0.4':
  408. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  409. '@types/json-schema@7.0.15':
  410. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  411. '@types/mocha@10.0.10':
  412. resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
  413. '@types/node@22.13.10':
  414. resolution: {integrity: sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==}
  415. '@types/punycode@2.1.4':
  416. resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==}
  417. '@types/retry@0.12.5':
  418. resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==}
  419. '@types/stack-utils@2.0.3':
  420. resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
  421. '@types/tar-fs@2.0.4':
  422. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  423. '@types/tar-stream@3.1.3':
  424. resolution: {integrity: sha512-Zbnx4wpkWBMBSu5CytMbrT5ZpMiF55qgM+EpHzR4yIDu7mv52cej8hTkOc6K+LzpkOAbxwn/m7j3iO+/l42YkQ==}
  425. '@types/yargs-parser@21.0.3':
  426. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  427. '@types/yargs@17.0.33':
  428. resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
  429. '@typescript-eslint/eslint-plugin@8.26.1':
  430. resolution: {integrity: sha512-2X3mwqsj9Bd3Ciz508ZUtoQQYpOhU/kWoUqIf49H8Z0+Vbh6UF/y0OEYp0Q0axOGzaBGs7QxRwq0knSQ8khQNA==}
  431. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  432. peerDependencies:
  433. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  434. eslint: ^8.57.0 || ^9.0.0
  435. typescript: '>=4.8.4 <5.9.0'
  436. '@typescript-eslint/parser@8.26.1':
  437. resolution: {integrity: sha512-w6HZUV4NWxqd8BdeFf81t07d7/YV9s7TCWrQQbG5uhuvGUAW+fq1usZ1Hmz9UPNLniFnD8GLSsDpjP0hm1S4lQ==}
  438. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  439. peerDependencies:
  440. eslint: ^8.57.0 || ^9.0.0
  441. typescript: '>=4.8.4 <5.9.0'
  442. '@typescript-eslint/scope-manager@8.26.0':
  443. resolution: {integrity: sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==}
  444. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  445. '@typescript-eslint/scope-manager@8.26.1':
  446. resolution: {integrity: sha512-6EIvbE5cNER8sqBu6V7+KeMZIC1664d2Yjt+B9EWUXrsyWpxx4lEZrmvxgSKRC6gX+efDL/UY9OpPZ267io3mg==}
  447. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  448. '@typescript-eslint/type-utils@8.26.1':
  449. resolution: {integrity: sha512-Kcj/TagJLwoY/5w9JGEFV0dclQdyqw9+VMndxOJKtoFSjfZhLXhYjzsQEeyza03rwHx2vFEGvrJWJBXKleRvZg==}
  450. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  451. peerDependencies:
  452. eslint: ^8.57.0 || ^9.0.0
  453. typescript: '>=4.8.4 <5.9.0'
  454. '@typescript-eslint/types@8.26.0':
  455. resolution: {integrity: sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==}
  456. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  457. '@typescript-eslint/types@8.26.1':
  458. resolution: {integrity: sha512-n4THUQW27VmQMx+3P+B0Yptl7ydfceUj4ON/AQILAASwgYdZ/2dhfymRMh5egRUrvK5lSmaOm77Ry+lmXPOgBQ==}
  459. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  460. '@typescript-eslint/typescript-estree@8.26.0':
  461. resolution: {integrity: sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==}
  462. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  463. peerDependencies:
  464. typescript: '>=4.8.4 <5.9.0'
  465. '@typescript-eslint/typescript-estree@8.26.1':
  466. resolution: {integrity: sha512-yUwPpUHDgdrv1QJ7YQal3cMVBGWfnuCdKbXw1yyjArax3353rEJP1ZA+4F8nOlQ3RfS2hUN/wze3nlY+ZOhvoA==}
  467. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  468. peerDependencies:
  469. typescript: '>=4.8.4 <5.9.0'
  470. '@typescript-eslint/utils@8.26.0':
  471. resolution: {integrity: sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==}
  472. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  473. peerDependencies:
  474. eslint: ^8.57.0 || ^9.0.0
  475. typescript: '>=4.8.4 <5.9.0'
  476. '@typescript-eslint/utils@8.26.1':
  477. resolution: {integrity: sha512-V4Urxa/XtSUroUrnI7q6yUTD3hDtfJ2jzVfeT3VK0ciizfK2q/zGC0iDh1lFMUZR8cImRrep6/q0xd/1ZGPQpg==}
  478. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  479. peerDependencies:
  480. eslint: ^8.57.0 || ^9.0.0
  481. typescript: '>=4.8.4 <5.9.0'
  482. '@typescript-eslint/visitor-keys@8.26.0':
  483. resolution: {integrity: sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==}
  484. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  485. '@typescript-eslint/visitor-keys@8.26.1':
  486. resolution: {integrity: sha512-AjOC3zfnxd6S4Eiy3jwktJPclqhFHNyd8L6Gycf9WUPoKZpgM5PjkxY1X7uSy61xVpiJDhhk7XT2NVsN3ALTWg==}
  487. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  488. acorn-jsx@5.3.2:
  489. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  490. peerDependencies:
  491. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  492. acorn@8.14.0:
  493. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  494. engines: {node: '>=0.4.0'}
  495. hasBin: true
  496. ajv@6.12.6:
  497. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  498. ansi-colors@4.1.3:
  499. resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
  500. engines: {node: '>=6'}
  501. ansi-regex@5.0.1:
  502. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  503. engines: {node: '>=8'}
  504. ansi-regex@6.1.0:
  505. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  506. engines: {node: '>=12'}
  507. ansi-styles@4.3.0:
  508. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  509. engines: {node: '>=8'}
  510. ansi-styles@5.2.0:
  511. resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
  512. engines: {node: '>=10'}
  513. ansi-styles@6.2.1:
  514. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  515. engines: {node: '>=12'}
  516. anymatch@3.1.3:
  517. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  518. engines: {node: '>= 8'}
  519. argparse@2.0.1:
  520. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  521. async-retry@1.3.3:
  522. resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
  523. b4a@1.6.7:
  524. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  525. balanced-match@1.0.2:
  526. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  527. bare-events@2.5.4:
  528. resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
  529. bare-fs@4.0.1:
  530. resolution: {integrity: sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==}
  531. engines: {bare: '>=1.7.0'}
  532. bare-os@3.4.0:
  533. resolution: {integrity: sha512-9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA==}
  534. engines: {bare: '>=1.6.0'}
  535. bare-path@3.0.0:
  536. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  537. bare-stream@2.6.5:
  538. resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
  539. peerDependencies:
  540. bare-buffer: '*'
  541. bare-events: '*'
  542. peerDependenciesMeta:
  543. bare-buffer:
  544. optional: true
  545. bare-events:
  546. optional: true
  547. base64-js@1.5.1:
  548. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  549. better-sqlite3@11.9.0:
  550. resolution: {integrity: sha512-4b9xYnoaskj8eIkke9ZCB42p5bOPabptSku8Rl4Yww70Jf+aHeLvrIjXDJrKQxUEjdppsFb+fdJSjoH4TklROA==}
  551. binary-extensions@2.3.0:
  552. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  553. engines: {node: '>=8'}
  554. bindings@1.5.0:
  555. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  556. bl@4.1.0:
  557. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  558. brace-expansion@1.1.11:
  559. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  560. brace-expansion@2.0.1:
  561. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  562. braces@3.0.3:
  563. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  564. engines: {node: '>=8'}
  565. browser-stdout@1.3.1:
  566. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  567. buffer-from@1.1.2:
  568. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  569. buffer@5.7.1:
  570. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  571. callsites@3.1.0:
  572. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  573. engines: {node: '>=6'}
  574. camelcase@6.3.0:
  575. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  576. engines: {node: '>=10'}
  577. chalk@4.1.2:
  578. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  579. engines: {node: '>=10'}
  580. chokidar@3.6.0:
  581. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  582. engines: {node: '>= 8.10.0'}
  583. chownr@1.1.4:
  584. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  585. ci-info@3.9.0:
  586. resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
  587. engines: {node: '>=8'}
  588. ci-info@4.2.0:
  589. resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==}
  590. engines: {node: '>=8'}
  591. cliui@8.0.1:
  592. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  593. engines: {node: '>=12'}
  594. color-convert@2.0.1:
  595. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  596. engines: {node: '>=7.0.0'}
  597. color-name@1.1.4:
  598. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  599. colorette@2.0.20:
  600. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  601. comment-parser@1.4.1:
  602. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  603. engines: {node: '>= 12.0.0'}
  604. concat-map@0.0.1:
  605. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  606. cross-spawn@7.0.6:
  607. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  608. engines: {node: '>= 8'}
  609. csv-parse@5.6.0:
  610. resolution: {integrity: sha512-l3nz3euub2QMg5ouu5U09Ew9Wf6/wQ8I++ch1loQ0ljmzhmfZYrH9fflS22i/PQEvsPvxCwxgz5q7UB8K1JO4Q==}
  611. debug@3.2.7:
  612. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  613. peerDependencies:
  614. supports-color: '*'
  615. peerDependenciesMeta:
  616. supports-color:
  617. optional: true
  618. debug@4.4.0:
  619. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  620. engines: {node: '>=6.0'}
  621. peerDependencies:
  622. supports-color: '*'
  623. peerDependenciesMeta:
  624. supports-color:
  625. optional: true
  626. decamelize@4.0.0:
  627. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  628. engines: {node: '>=10'}
  629. decompress-response@6.0.0:
  630. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  631. engines: {node: '>=10'}
  632. deep-extend@0.6.0:
  633. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  634. engines: {node: '>=4.0.0'}
  635. deep-is@0.1.4:
  636. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  637. defu@6.1.4:
  638. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  639. detect-libc@2.0.3:
  640. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  641. engines: {node: '>=8'}
  642. diff-sequences@29.6.3:
  643. resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
  644. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  645. diff@5.2.0:
  646. resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
  647. engines: {node: '>=0.3.1'}
  648. dns2@2.1.0:
  649. resolution: {integrity: sha512-m27K11aQalRbmUs7RLaz6aPyceLjAoqjPRNTdE7qUouQpl+PC8Bi67O+i9SuJUPbQC8dxFrczAxfmTPuTKHNkw==}
  650. doctrine@3.0.0:
  651. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  652. engines: {node: '>=6.0.0'}
  653. eastasianwidth@0.2.0:
  654. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  655. emoji-regex@8.0.0:
  656. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  657. emoji-regex@9.2.2:
  658. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  659. end-of-stream@1.4.4:
  660. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  661. enhanced-resolve@5.18.1:
  662. resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
  663. engines: {node: '>=10.13.0'}
  664. escalade@3.2.0:
  665. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  666. engines: {node: '>=6'}
  667. escape-string-regexp@2.0.0:
  668. resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
  669. engines: {node: '>=8'}
  670. escape-string-regexp@4.0.0:
  671. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  672. engines: {node: '>=10'}
  673. eslint-compat-utils@0.5.1:
  674. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  675. engines: {node: '>=12'}
  676. peerDependencies:
  677. eslint: '>=6.0.0'
  678. eslint-compat-utils@0.6.4:
  679. resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
  680. engines: {node: '>=12'}
  681. peerDependencies:
  682. eslint: '>=6.0.0'
  683. eslint-config-sukka@6.17.1:
  684. resolution: {integrity: sha512-YVYZv3b5hCZEI+a4ocIY8qUpHyWvzkfDJyXgnRdgAuGNZ0qENHEablEB+QwNBGI6FMpXTaxlLzC3sYjAGk3m/Q==}
  685. eslint-formatter-sukka@6.17.1:
  686. resolution: {integrity: sha512-3wEnIBjsmNjshZgEpDk0tlbiMoxvt4GnYmaogHGyHv65fhOhg8O8VOHyIaqrkr7BlLW1z8nn4E9sCbxOdXX7ZA==}
  687. eslint-import-resolver-node@0.3.9:
  688. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  689. eslint-import-resolver-oxc@0.13.1:
  690. resolution: {integrity: sha512-QL1NrZ7BjcOggOYeNUijIYBFoD2PBLBtLBEYJaWl1pD7Cx+PGc2P65izZKtJz+wqixZiodsvLVBcDvew1NDI2Q==}
  691. engines: {node: ^16.17.0 || >=18.6.0}
  692. peerDependencies:
  693. '@rspack/cli': '*'
  694. '@rspack/core': '*'
  695. eslint: '*'
  696. eslint-plugin-import: '*'
  697. eslint-plugin-import-x: '*'
  698. vite: '*'
  699. webpack: '*'
  700. webpack-cli: '*'
  701. webpack-merge: '*'
  702. peerDependenciesMeta:
  703. '@rspack/cli':
  704. optional: true
  705. '@rspack/core':
  706. optional: true
  707. eslint-plugin-import:
  708. optional: true
  709. eslint-plugin-import-x:
  710. optional: true
  711. vite:
  712. optional: true
  713. webpack:
  714. optional: true
  715. webpack-cli:
  716. optional: true
  717. webpack-merge:
  718. optional: true
  719. eslint-json-compat-utils@0.2.1:
  720. resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
  721. engines: {node: '>=12'}
  722. peerDependencies:
  723. '@eslint/json': '*'
  724. eslint: '*'
  725. jsonc-eslint-parser: ^2.4.0
  726. peerDependenciesMeta:
  727. '@eslint/json':
  728. optional: true
  729. eslint-plugin-autofix@2.2.0:
  730. resolution: {integrity: sha512-lu8+0r+utyTroROqXIL+a8sUpICi6za22hIzlpb0+x0tQGRnOjhOKU7v8mC/NS/faDoVsw6xW3vUpc+Mcz5NWA==}
  731. engines: {node: '>=18'}
  732. peerDependencies:
  733. eslint: '>=8'
  734. eslint-plugin-de-morgan@1.2.1:
  735. resolution: {integrity: sha512-lzh5DWqdogO6kasbGdWNHy6XOMajv4CRQnEiv/XJFpL1xxG0hxF2uxF+KAkcTzR+w85l4nWoqGbI39ZF+sk4+g==}
  736. engines: {node: ^18.0.0 || >=20.0.0}
  737. peerDependencies:
  738. eslint: '>=8.0.0'
  739. eslint-plugin-es-x@7.8.0:
  740. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  741. engines: {node: ^14.18.0 || >=16.0.0}
  742. peerDependencies:
  743. eslint: '>=8'
  744. eslint-plugin-import-x@4.6.1:
  745. resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==}
  746. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  747. peerDependencies:
  748. eslint: ^8.57.0 || ^9.0.0
  749. eslint-plugin-jsonc@2.19.1:
  750. resolution: {integrity: sha512-MmlAOaZK1+Lg7YoCZPGRjb88ZjT+ct/KTsvcsbZdBm+w8WMzGx+XEmexk0m40P1WV9G2rFV7X3klyRGRpFXEjA==}
  751. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  752. peerDependencies:
  753. eslint: '>=6.0.0'
  754. eslint-plugin-n@17.16.2:
  755. resolution: {integrity: sha512-iQM5Oj+9o0KaeLoObJC/uxNGpktZCkYiTTBo8PkRWq3HwNcRxwpvSDFjBhQ5+HLJzBTy+CLDC5+bw0Z5GyhlOQ==}
  756. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  757. peerDependencies:
  758. eslint: '>=8.23.0'
  759. eslint-plugin-promise@7.2.1:
  760. resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==}
  761. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  762. peerDependencies:
  763. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  764. eslint-plugin-regexp@2.7.0:
  765. resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
  766. engines: {node: ^18 || >=20}
  767. peerDependencies:
  768. eslint: '>=8.44.0'
  769. eslint-plugin-sukka@6.17.1:
  770. resolution: {integrity: sha512-y2Fa4qG49PEleieewrY990CqgDqS0a5cnI34rwwuxoYorGc0zVlzi77zky4Td0lukTyO6Yg6miWtre8dYNa91Q==}
  771. peerDependencies:
  772. typescript: '*'
  773. peerDependenciesMeta:
  774. typescript:
  775. optional: true
  776. eslint-plugin-unused-imports@4.1.4:
  777. resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
  778. peerDependencies:
  779. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  780. eslint: ^9.0.0 || ^8.0.0
  781. peerDependenciesMeta:
  782. '@typescript-eslint/eslint-plugin':
  783. optional: true
  784. eslint-rule-composer@0.3.0:
  785. resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
  786. engines: {node: '>=4.0.0'}
  787. eslint-scope@8.3.0:
  788. resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
  789. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  790. eslint-visitor-keys@3.4.3:
  791. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  792. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  793. eslint-visitor-keys@4.2.0:
  794. resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
  795. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  796. eslint@9.22.0:
  797. resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==}
  798. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  799. hasBin: true
  800. peerDependencies:
  801. jiti: '*'
  802. peerDependenciesMeta:
  803. jiti:
  804. optional: true
  805. espree@10.3.0:
  806. resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
  807. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  808. espree@9.6.1:
  809. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  810. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  811. esquery@1.6.0:
  812. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  813. engines: {node: '>=0.10'}
  814. esrecurse@4.3.0:
  815. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  816. engines: {node: '>=4.0'}
  817. estraverse@5.3.0:
  818. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  819. engines: {node: '>=4.0'}
  820. esutils@2.0.3:
  821. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  822. engines: {node: '>=0.10.0'}
  823. expand-template@2.0.3:
  824. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  825. engines: {node: '>=6'}
  826. expect@29.7.0:
  827. resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
  828. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  829. fast-cidr-tools@0.3.2:
  830. resolution: {integrity: sha512-hH8m1zjBer5VxrFG3dCEIMGEu/hDs/2scCH0vCJqce5ujCEBmZYlCejfZ4IFYTCt1YQard/uXmMzNBs9SR3/qg==}
  831. engines: {node: '>=16'}
  832. fast-deep-equal@3.1.3:
  833. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  834. fast-fifo@1.3.2:
  835. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  836. fast-glob@3.3.3:
  837. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  838. engines: {node: '>=8.6.0'}
  839. fast-json-stable-stringify@2.1.0:
  840. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  841. fast-levenshtein@2.0.6:
  842. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  843. fastq@1.19.0:
  844. resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
  845. fdir@6.4.3:
  846. resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
  847. peerDependencies:
  848. picomatch: ^3 || ^4
  849. peerDependenciesMeta:
  850. picomatch:
  851. optional: true
  852. file-entry-cache@8.0.0:
  853. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  854. engines: {node: '>=16.0.0'}
  855. file-uri-to-path@1.0.0:
  856. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  857. fill-range@7.1.1:
  858. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  859. engines: {node: '>=8'}
  860. find-up@5.0.0:
  861. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  862. engines: {node: '>=10'}
  863. flat-cache@4.0.1:
  864. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  865. engines: {node: '>=16'}
  866. flat@5.0.2:
  867. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  868. hasBin: true
  869. flatted@3.3.2:
  870. resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
  871. foreground-child@3.3.0:
  872. resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
  873. engines: {node: '>=14'}
  874. foxts@1.7.0:
  875. resolution: {integrity: sha512-mWyH/Fmh7TrUSuLgQpm2y3EieseR/v1g1Hp2cG5g5XBpQjuXLzhxMMiIND6egrDu0xkh28tYd4fp3dxam2/VAA==}
  876. foxts@2.0.1:
  877. resolution: {integrity: sha512-p032Uy9DFQEyWa0CjtK+KBlwujoRVzUUO9Z0OUAWLsK01pGQ2oqGX8XipzaVyR2i5yV4wAsQrjLoe7BWEhxH6A==}
  878. fs-constants@1.0.0:
  879. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  880. fsevents@2.3.3:
  881. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  882. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  883. os: [darwin]
  884. function-bind@1.1.2:
  885. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  886. get-caller-file@2.0.5:
  887. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  888. engines: {node: 6.* || 8.* || >= 10.*}
  889. get-tsconfig@4.10.0:
  890. resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
  891. github-from-package@0.0.0:
  892. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  893. glob-parent@5.1.2:
  894. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  895. engines: {node: '>= 6'}
  896. glob-parent@6.0.2:
  897. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  898. engines: {node: '>=10.13.0'}
  899. glob@10.4.5:
  900. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  901. hasBin: true
  902. globals@14.0.0:
  903. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  904. engines: {node: '>=18'}
  905. globals@15.14.0:
  906. resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
  907. engines: {node: '>=18'}
  908. graceful-fs@4.2.11:
  909. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  910. graphemer@1.4.0:
  911. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  912. has-flag@4.0.0:
  913. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  914. engines: {node: '>=8'}
  915. hash-wasm@4.12.0:
  916. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  917. hasown@2.0.2:
  918. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  919. engines: {node: '>= 0.4'}
  920. he@1.2.0:
  921. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  922. hasBin: true
  923. ieee754@1.2.1:
  924. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  925. ignore@5.3.2:
  926. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  927. engines: {node: '>= 4'}
  928. import-fresh@3.3.1:
  929. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  930. engines: {node: '>=6'}
  931. imurmurhash@0.1.4:
  932. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  933. engines: {node: '>=0.8.19'}
  934. inherits@2.0.4:
  935. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  936. ini@1.3.8:
  937. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  938. is-binary-path@2.1.0:
  939. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  940. engines: {node: '>=8'}
  941. is-core-module@2.16.1:
  942. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  943. engines: {node: '>= 0.4'}
  944. is-extglob@2.1.1:
  945. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  946. engines: {node: '>=0.10.0'}
  947. is-fullwidth-code-point@3.0.0:
  948. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  949. engines: {node: '>=8'}
  950. is-glob@4.0.3:
  951. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  952. engines: {node: '>=0.10.0'}
  953. is-number@7.0.0:
  954. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  955. engines: {node: '>=0.12.0'}
  956. is-plain-obj@2.1.0:
  957. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  958. engines: {node: '>=8'}
  959. is-unicode-supported@0.1.0:
  960. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  961. engines: {node: '>=10'}
  962. isexe@2.0.0:
  963. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  964. jackspeak@3.4.3:
  965. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  966. jest-diff@29.7.0:
  967. resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
  968. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  969. jest-get-type@29.6.3:
  970. resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
  971. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  972. jest-matcher-utils@29.7.0:
  973. resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
  974. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  975. jest-message-util@29.7.0:
  976. resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
  977. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  978. jest-util@29.7.0:
  979. resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
  980. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  981. js-tokens@4.0.0:
  982. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  983. js-yaml@4.1.0:
  984. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  985. hasBin: true
  986. jsdoc-type-pratt-parser@4.1.0:
  987. resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
  988. engines: {node: '>=12.0.0'}
  989. json-buffer@3.0.1:
  990. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  991. json-schema-traverse@0.4.1:
  992. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  993. json-stable-stringify-without-jsonify@1.0.1:
  994. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  995. json-stringify-pretty-compact@3.0.0:
  996. resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==}
  997. jsonc-eslint-parser@2.4.0:
  998. resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
  999. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1000. keyv@4.5.4:
  1001. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1002. levn@0.4.1:
  1003. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1004. engines: {node: '>= 0.8.0'}
  1005. locate-path@6.0.0:
  1006. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1007. engines: {node: '>=10'}
  1008. lodash.merge@4.6.2:
  1009. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1010. log-symbols@4.1.0:
  1011. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1012. engines: {node: '>=10'}
  1013. lru-cache@10.4.3:
  1014. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1015. merge2@1.4.1:
  1016. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1017. engines: {node: '>= 8'}
  1018. micromatch@4.0.8:
  1019. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1020. engines: {node: '>=8.6'}
  1021. mimic-response@3.1.0:
  1022. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1023. engines: {node: '>=10'}
  1024. minimatch@3.1.2:
  1025. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1026. minimatch@5.1.6:
  1027. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1028. engines: {node: '>=10'}
  1029. minimatch@9.0.5:
  1030. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1031. engines: {node: '>=16 || 14 >=14.17'}
  1032. minimist@1.2.8:
  1033. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1034. minipass@7.1.2:
  1035. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1036. engines: {node: '>=16 || 14 >=14.17'}
  1037. mitata@1.0.34:
  1038. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1039. mkdirp-classic@0.5.3:
  1040. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1041. mocha@11.1.0:
  1042. resolution: {integrity: sha512-8uJR5RTC2NgpY3GrYcgpZrsEd9zKbPDpob1RezyR2upGHRQtHWofmzTMzTMSV6dru3tj5Ukt0+Vnq1qhFEEwAg==}
  1043. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1044. hasBin: true
  1045. ms@2.1.3:
  1046. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1047. napi-build-utils@2.0.0:
  1048. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1049. natural-compare@1.4.0:
  1050. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1051. node-abi@3.74.0:
  1052. resolution: {integrity: sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==}
  1053. engines: {node: '>=10'}
  1054. normalize-path@3.0.0:
  1055. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1056. engines: {node: '>=0.10.0'}
  1057. once@1.4.0:
  1058. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1059. optionator@0.9.4:
  1060. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1061. engines: {node: '>= 0.8.0'}
  1062. oxc-resolver@5.0.0:
  1063. resolution: {integrity: sha512-66fopyAqCN8Mx4tzNiBXWbk8asCSuxUWN62gwTc3yfRs7JfWhX/eVJCf+fUrfbNOdQVOWn+o8pAKllp76ysMXA==}
  1064. p-limit@3.1.0:
  1065. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1066. engines: {node: '>=10'}
  1067. p-locate@5.0.0:
  1068. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1069. engines: {node: '>=10'}
  1070. package-json-from-dist@1.0.1:
  1071. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1072. parent-module@1.0.1:
  1073. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1074. engines: {node: '>=6'}
  1075. path-exists@4.0.0:
  1076. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1077. engines: {node: '>=8'}
  1078. path-key@3.1.1:
  1079. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1080. engines: {node: '>=8'}
  1081. path-parse@1.0.7:
  1082. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1083. path-scurry@1.11.1:
  1084. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1085. engines: {node: '>=16 || 14 >=14.18'}
  1086. picocolors@1.1.1:
  1087. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1088. picomatch@2.3.1:
  1089. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1090. engines: {node: '>=8.6'}
  1091. picomatch@4.0.2:
  1092. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1093. engines: {node: '>=12'}
  1094. pirates@4.0.6:
  1095. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  1096. engines: {node: '>= 6'}
  1097. prebuild-install@7.1.3:
  1098. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1099. engines: {node: '>=10'}
  1100. hasBin: true
  1101. prelude-ls@1.2.1:
  1102. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1103. engines: {node: '>= 0.8.0'}
  1104. pretty-format@29.7.0:
  1105. resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
  1106. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1107. promise-make-naked@2.1.2:
  1108. resolution: {integrity: sha512-y7s8ZuHIG56JYspB24be9GFkXA1zXL85Ur9u1DKrW/tvyUoPxWgBjnalK6Nc6l7wHBcAW0c3PO07+XOsWTRuhg==}
  1109. pump@3.0.2:
  1110. resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
  1111. punycode@2.3.1:
  1112. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1113. engines: {node: '>=6'}
  1114. queue-microtask@1.2.3:
  1115. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1116. randombytes@2.1.0:
  1117. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1118. rc@1.2.8:
  1119. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1120. hasBin: true
  1121. react-is@18.3.1:
  1122. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  1123. readable-stream@3.6.2:
  1124. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1125. engines: {node: '>= 6'}
  1126. readdirp@3.6.0:
  1127. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1128. engines: {node: '>=8.10.0'}
  1129. refa@0.12.1:
  1130. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1131. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1132. regexp-ast-analysis@0.7.1:
  1133. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1134. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1135. require-directory@2.1.1:
  1136. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1137. engines: {node: '>=0.10.0'}
  1138. resolve-from@4.0.0:
  1139. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1140. engines: {node: '>=4'}
  1141. resolve-pkg-maps@1.0.0:
  1142. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1143. resolve@1.22.10:
  1144. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1145. engines: {node: '>= 0.4'}
  1146. hasBin: true
  1147. retry@0.13.1:
  1148. resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
  1149. engines: {node: '>= 4'}
  1150. reusify@1.0.4:
  1151. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1152. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1153. run-parallel@1.2.0:
  1154. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1155. safe-buffer@5.2.1:
  1156. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1157. scslre@0.3.0:
  1158. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1159. engines: {node: ^14.0.0 || >=16.0.0}
  1160. semver@7.7.1:
  1161. resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
  1162. engines: {node: '>=10'}
  1163. hasBin: true
  1164. serialize-javascript@6.0.2:
  1165. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1166. shebang-command@2.0.0:
  1167. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1168. engines: {node: '>=8'}
  1169. shebang-regex@3.0.0:
  1170. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1171. engines: {node: '>=8'}
  1172. signal-exit@4.1.0:
  1173. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1174. engines: {node: '>=14'}
  1175. simple-concat@1.0.1:
  1176. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1177. simple-get@4.0.1:
  1178. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1179. slash@3.0.0:
  1180. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1181. engines: {node: '>=8'}
  1182. source-map-support@0.5.21:
  1183. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1184. source-map@0.6.1:
  1185. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1186. engines: {node: '>=0.10.0'}
  1187. stable-hash@0.0.4:
  1188. resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
  1189. stable-hash@0.0.5:
  1190. resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
  1191. stack-utils@2.0.6:
  1192. resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
  1193. engines: {node: '>=10'}
  1194. streamx@2.22.0:
  1195. resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
  1196. string-similarity@4.0.4:
  1197. resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
  1198. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1199. string-width@4.2.3:
  1200. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1201. engines: {node: '>=8'}
  1202. string-width@5.1.2:
  1203. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1204. engines: {node: '>=12'}
  1205. string_decoder@1.3.0:
  1206. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1207. strip-ansi@6.0.1:
  1208. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1209. engines: {node: '>=8'}
  1210. strip-ansi@7.1.0:
  1211. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1212. engines: {node: '>=12'}
  1213. strip-json-comments@2.0.1:
  1214. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1215. engines: {node: '>=0.10.0'}
  1216. strip-json-comments@3.1.1:
  1217. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1218. engines: {node: '>=8'}
  1219. supports-color@7.2.0:
  1220. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1221. engines: {node: '>=8'}
  1222. supports-color@8.1.1:
  1223. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1224. engines: {node: '>=10'}
  1225. supports-preserve-symlinks-flag@1.0.0:
  1226. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1227. engines: {node: '>= 0.4'}
  1228. synckit@0.6.2:
  1229. resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
  1230. engines: {node: '>=12.20'}
  1231. tapable@2.2.1:
  1232. resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
  1233. engines: {node: '>=6'}
  1234. tar-fs@2.1.2:
  1235. resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==}
  1236. tar-fs@3.0.8:
  1237. resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==}
  1238. tar-stream@2.2.0:
  1239. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1240. engines: {node: '>=6'}
  1241. tar-stream@3.1.7:
  1242. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1243. text-decoder@1.2.3:
  1244. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1245. tinyexec@0.3.2:
  1246. resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
  1247. tldts-core@6.1.84:
  1248. resolution: {integrity: sha512-NaQa1W76W2aCGjXybvnMYzGSM4x8fvG2AN/pla7qxcg0ZHbooOPhA8kctmOZUDfZyhDL27OGNbwAeig8P4p1vg==}
  1249. tldts-experimental@6.1.84:
  1250. resolution: {integrity: sha512-ee8K2ooTDAJhhGT0FrPAtkql/k8MM0/3O3RRAJ4C9pjuO1wwFnfRbSY6fYT7h2mFrdcDzb6Kre591UroI+pTNA==}
  1251. tldts@6.1.84:
  1252. resolution: {integrity: sha512-aRGIbCIF3teodtUFAYSdQONVmDRy21REM3o6JnqWn5ZkQBJJ4gHxhw6OfwQ+WkSAi3ASamrS4N4nyazWx6uTYg==}
  1253. hasBin: true
  1254. to-regex-range@5.0.1:
  1255. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1256. engines: {node: '>=8.0'}
  1257. ts-api-utils@2.0.1:
  1258. resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
  1259. engines: {node: '>=18.12'}
  1260. peerDependencies:
  1261. typescript: '>=4.8.4'
  1262. tslib@2.8.1:
  1263. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1264. tunnel-agent@0.6.0:
  1265. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1266. type-check@0.4.0:
  1267. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1268. engines: {node: '>= 0.8.0'}
  1269. typescript-eslint@8.26.1:
  1270. resolution: {integrity: sha512-t/oIs9mYyrwZGRpDv3g+3K6nZ5uhKEMt2oNmAPwaY4/ye0+EH4nXIPYNtkYFS6QHm+1DFg34DbglYBz5P9Xysg==}
  1271. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1272. peerDependencies:
  1273. eslint: ^8.57.0 || ^9.0.0
  1274. typescript: '>=4.8.4 <5.9.0'
  1275. typescript@5.8.2:
  1276. resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
  1277. engines: {node: '>=14.17'}
  1278. hasBin: true
  1279. uncrypto@0.1.3:
  1280. resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
  1281. undici-cache-store-better-sqlite3@0.1.1:
  1282. resolution: {integrity: sha512-F/PxGx+QY3oScnFQ/YGbN7AYtqKLTzps0izFi8LddDaobso3SYXyQORuPcnUd2JbqpdxmLLkvS2zSvG6VPPMpw==}
  1283. peerDependencies:
  1284. undici: '>=7.0.0'
  1285. undici-types@6.20.0:
  1286. resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
  1287. undici@7.5.0:
  1288. resolution: {integrity: sha512-NFQG741e8mJ0fLQk90xKxFdaSM7z4+IQpAgsFI36bCDY9Z2+aXXZjVy2uUksMouWfMI9+w5ejOq5zYYTBCQJDQ==}
  1289. engines: {node: '>=20.18.1'}
  1290. uri-js@4.4.1:
  1291. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1292. util-deprecate@1.0.2:
  1293. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1294. webworker-shim@1.1.1:
  1295. resolution: {integrity: sha512-XCWuBjJH3Xn/7SbyUF1WrrCbe6ZEsgaD7kxlFhxIwdkljGYX3BqP/dhG6ge0NBT+V7ZPjR4/BXq5BvbdaxrpKg==}
  1296. which@2.0.2:
  1297. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1298. engines: {node: '>= 8'}
  1299. hasBin: true
  1300. whoiser@1.18.0:
  1301. resolution: {integrity: sha512-QRIGreBuouc8d9i+UVMFqYJSiG7gaoaGX8nKugYDGqnuNLLgjDBwmlKODOIGHveBawza3Kfkk/OuM9VsTUYwaA==}
  1302. engines: {node: '>=15.0.0'}
  1303. why-is-node-running@3.2.2:
  1304. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1305. engines: {node: '>=20.11'}
  1306. hasBin: true
  1307. word-wrap@1.2.5:
  1308. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1309. engines: {node: '>=0.10.0'}
  1310. workerpool@6.5.1:
  1311. resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
  1312. worktank@2.7.3:
  1313. resolution: {integrity: sha512-M0fesnpttBPdvNYBdzRvLDsacN0na9RYWFxwmM/x1+/6mufjduv9/9vBObK8EXDqxRMX/SOYJabpo0UCYYBUdQ==}
  1314. wrap-ansi@7.0.0:
  1315. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1316. engines: {node: '>=10'}
  1317. wrap-ansi@8.1.0:
  1318. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1319. engines: {node: '>=12'}
  1320. wrappy@1.0.2:
  1321. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1322. xbits@0.2.0:
  1323. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1324. y18n@5.0.8:
  1325. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1326. engines: {node: '>=10'}
  1327. yaml@2.7.0:
  1328. resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
  1329. engines: {node: '>= 14'}
  1330. hasBin: true
  1331. yargs-parser@21.1.1:
  1332. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1333. engines: {node: '>=12'}
  1334. yargs-unparser@2.0.0:
  1335. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1336. engines: {node: '>=10'}
  1337. yargs@17.7.2:
  1338. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1339. engines: {node: '>=12'}
  1340. yocto-queue@0.1.0:
  1341. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1342. engines: {node: '>=10'}
  1343. snapshots:
  1344. '@babel/code-frame@7.26.2':
  1345. dependencies:
  1346. '@babel/helper-validator-identifier': 7.25.9
  1347. js-tokens: 4.0.0
  1348. picocolors: 1.1.1
  1349. '@babel/helper-validator-identifier@7.25.9': {}
  1350. '@dual-bundle/import-meta-resolve@4.1.0': {}
  1351. '@emnapi/core@1.3.1':
  1352. dependencies:
  1353. '@emnapi/wasi-threads': 1.0.1
  1354. tslib: 2.8.1
  1355. optional: true
  1356. '@emnapi/runtime@1.3.1':
  1357. dependencies:
  1358. tslib: 2.8.1
  1359. optional: true
  1360. '@emnapi/wasi-threads@1.0.1':
  1361. dependencies:
  1362. tslib: 2.8.1
  1363. optional: true
  1364. '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.22.0)':
  1365. dependencies:
  1366. escape-string-regexp: 4.0.0
  1367. eslint: 9.22.0
  1368. ignore: 5.3.2
  1369. '@eslint-community/eslint-utils@4.4.1(eslint@9.22.0)':
  1370. dependencies:
  1371. eslint: 9.22.0
  1372. eslint-visitor-keys: 3.4.3
  1373. '@eslint-community/regexpp@4.12.1': {}
  1374. '@eslint-sukka/node@6.17.1(eslint@9.22.0)(typescript@5.8.2)':
  1375. dependencies:
  1376. '@eslint-sukka/shared': 6.17.1(eslint@9.22.0)(typescript@5.8.2)
  1377. eslint-plugin-n: 17.16.2(eslint@9.22.0)
  1378. eslint-plugin-sukka: 6.17.1(eslint@9.22.0)(typescript@5.8.2)
  1379. transitivePeerDependencies:
  1380. - eslint
  1381. - supports-color
  1382. - typescript
  1383. '@eslint-sukka/shared@6.17.1(eslint@9.22.0)(typescript@5.8.2)':
  1384. dependencies:
  1385. '@dual-bundle/import-meta-resolve': 4.1.0
  1386. '@package-json/types': 0.0.11
  1387. '@typescript-eslint/utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1388. transitivePeerDependencies:
  1389. - eslint
  1390. - supports-color
  1391. - typescript
  1392. '@eslint/config-array@0.19.2':
  1393. dependencies:
  1394. '@eslint/object-schema': 2.1.6
  1395. debug: 4.4.0(supports-color@8.1.1)
  1396. minimatch: 3.1.2
  1397. transitivePeerDependencies:
  1398. - supports-color
  1399. '@eslint/config-helpers@0.1.0': {}
  1400. '@eslint/core@0.12.0':
  1401. dependencies:
  1402. '@types/json-schema': 7.0.15
  1403. '@eslint/eslintrc@3.3.0':
  1404. dependencies:
  1405. ajv: 6.12.6
  1406. debug: 4.4.0(supports-color@8.1.1)
  1407. espree: 10.3.0
  1408. globals: 14.0.0
  1409. ignore: 5.3.2
  1410. import-fresh: 3.3.1
  1411. js-yaml: 4.1.0
  1412. minimatch: 3.1.2
  1413. strip-json-comments: 3.1.1
  1414. transitivePeerDependencies:
  1415. - supports-color
  1416. '@eslint/js@9.22.0': {}
  1417. '@eslint/object-schema@2.1.6': {}
  1418. '@eslint/plugin-kit@0.2.7':
  1419. dependencies:
  1420. '@eslint/core': 0.12.0
  1421. levn: 0.4.1
  1422. '@ghostery/adblocker-content@2.5.0':
  1423. dependencies:
  1424. '@ghostery/adblocker-extended-selectors': 2.5.0
  1425. '@ghostery/adblocker-extended-selectors@2.5.0': {}
  1426. '@ghostery/adblocker@2.5.0':
  1427. dependencies:
  1428. '@ghostery/adblocker-content': 2.5.0
  1429. '@ghostery/adblocker-extended-selectors': 2.5.0
  1430. '@remusao/guess-url-type': 1.3.0
  1431. '@remusao/small': 1.3.0
  1432. '@remusao/smaz': 1.10.0
  1433. tldts-experimental: 6.1.84
  1434. '@henrygd/queue@1.0.7': {}
  1435. '@humanfs/core@0.19.1': {}
  1436. '@humanfs/node@0.16.6':
  1437. dependencies:
  1438. '@humanfs/core': 0.19.1
  1439. '@humanwhocodes/retry': 0.3.1
  1440. '@humanwhocodes/module-importer@1.0.1': {}
  1441. '@humanwhocodes/retry@0.3.1': {}
  1442. '@humanwhocodes/retry@0.4.2': {}
  1443. '@isaacs/cliui@8.0.2':
  1444. dependencies:
  1445. string-width: 5.1.2
  1446. string-width-cjs: string-width@4.2.3
  1447. strip-ansi: 7.1.0
  1448. strip-ansi-cjs: strip-ansi@6.0.1
  1449. wrap-ansi: 8.1.0
  1450. wrap-ansi-cjs: wrap-ansi@7.0.0
  1451. '@jest/expect-utils@29.7.0':
  1452. dependencies:
  1453. jest-get-type: 29.6.3
  1454. '@jest/schemas@29.6.3':
  1455. dependencies:
  1456. '@sinclair/typebox': 0.27.8
  1457. '@jest/types@29.6.3':
  1458. dependencies:
  1459. '@jest/schemas': 29.6.3
  1460. '@types/istanbul-lib-coverage': 2.0.6
  1461. '@types/istanbul-reports': 3.0.4
  1462. '@types/node': 22.13.10
  1463. '@types/yargs': 17.0.33
  1464. chalk: 4.1.2
  1465. '@mitata/counters@0.0.8': {}
  1466. '@napi-rs/wasm-runtime@0.2.7':
  1467. dependencies:
  1468. '@emnapi/core': 1.3.1
  1469. '@emnapi/runtime': 1.3.1
  1470. '@tybys/wasm-util': 0.9.0
  1471. optional: true
  1472. '@nodelib/fs.scandir@2.1.5':
  1473. dependencies:
  1474. '@nodelib/fs.stat': 2.0.5
  1475. run-parallel: 1.2.0
  1476. '@nodelib/fs.stat@2.0.5': {}
  1477. '@nodelib/fs.walk@1.2.8':
  1478. dependencies:
  1479. '@nodelib/fs.scandir': 2.1.5
  1480. fastq: 1.19.0
  1481. '@oxc-resolver/binding-darwin-arm64@5.0.0':
  1482. optional: true
  1483. '@oxc-resolver/binding-darwin-x64@5.0.0':
  1484. optional: true
  1485. '@oxc-resolver/binding-freebsd-x64@5.0.0':
  1486. optional: true
  1487. '@oxc-resolver/binding-linux-arm-gnueabihf@5.0.0':
  1488. optional: true
  1489. '@oxc-resolver/binding-linux-arm64-gnu@5.0.0':
  1490. optional: true
  1491. '@oxc-resolver/binding-linux-arm64-musl@5.0.0':
  1492. optional: true
  1493. '@oxc-resolver/binding-linux-x64-gnu@5.0.0':
  1494. optional: true
  1495. '@oxc-resolver/binding-linux-x64-musl@5.0.0':
  1496. optional: true
  1497. '@oxc-resolver/binding-wasm32-wasi@5.0.0':
  1498. dependencies:
  1499. '@napi-rs/wasm-runtime': 0.2.7
  1500. optional: true
  1501. '@oxc-resolver/binding-win32-arm64-msvc@5.0.0':
  1502. optional: true
  1503. '@oxc-resolver/binding-win32-x64-msvc@5.0.0':
  1504. optional: true
  1505. '@package-json/types@0.0.11': {}
  1506. '@pkgjs/parseargs@0.11.0':
  1507. optional: true
  1508. '@remusao/guess-url-type@1.3.0': {}
  1509. '@remusao/small@1.3.0': {}
  1510. '@remusao/smaz-compress@1.10.0':
  1511. dependencies:
  1512. '@remusao/trie': 1.5.0
  1513. '@remusao/smaz-decompress@1.10.0': {}
  1514. '@remusao/smaz@1.10.0':
  1515. dependencies:
  1516. '@remusao/smaz-compress': 1.10.0
  1517. '@remusao/smaz-decompress': 1.10.0
  1518. '@remusao/trie@1.5.0': {}
  1519. '@sinclair/typebox@0.27.8': {}
  1520. '@swc-node/core@1.13.3(@swc/core@1.11.11)(@swc/types@0.1.19)':
  1521. dependencies:
  1522. '@swc/core': 1.11.11
  1523. '@swc/types': 0.1.19
  1524. '@swc-node/register@1.10.10(@swc/core@1.11.11)(@swc/types@0.1.19)(typescript@5.8.2)':
  1525. dependencies:
  1526. '@swc-node/core': 1.13.3(@swc/core@1.11.11)(@swc/types@0.1.19)
  1527. '@swc-node/sourcemap-support': 0.5.1
  1528. '@swc/core': 1.11.11
  1529. colorette: 2.0.20
  1530. debug: 4.4.0(supports-color@8.1.1)
  1531. oxc-resolver: 5.0.0
  1532. pirates: 4.0.6
  1533. tslib: 2.8.1
  1534. typescript: 5.8.2
  1535. transitivePeerDependencies:
  1536. - '@swc/types'
  1537. - supports-color
  1538. '@swc-node/sourcemap-support@0.5.1':
  1539. dependencies:
  1540. source-map-support: 0.5.21
  1541. tslib: 2.8.1
  1542. '@swc/core-darwin-arm64@1.11.11':
  1543. optional: true
  1544. '@swc/core-darwin-x64@1.11.11':
  1545. optional: true
  1546. '@swc/core-linux-arm-gnueabihf@1.11.11':
  1547. optional: true
  1548. '@swc/core-linux-arm64-gnu@1.11.11':
  1549. optional: true
  1550. '@swc/core-linux-arm64-musl@1.11.11':
  1551. optional: true
  1552. '@swc/core-linux-x64-gnu@1.11.11':
  1553. optional: true
  1554. '@swc/core-linux-x64-musl@1.11.11':
  1555. optional: true
  1556. '@swc/core-win32-arm64-msvc@1.11.11':
  1557. optional: true
  1558. '@swc/core-win32-ia32-msvc@1.11.11':
  1559. optional: true
  1560. '@swc/core-win32-x64-msvc@1.11.11':
  1561. optional: true
  1562. '@swc/core@1.11.11':
  1563. dependencies:
  1564. '@swc/counter': 0.1.3
  1565. '@swc/types': 0.1.19
  1566. optionalDependencies:
  1567. '@swc/core-darwin-arm64': 1.11.11
  1568. '@swc/core-darwin-x64': 1.11.11
  1569. '@swc/core-linux-arm-gnueabihf': 1.11.11
  1570. '@swc/core-linux-arm64-gnu': 1.11.11
  1571. '@swc/core-linux-arm64-musl': 1.11.11
  1572. '@swc/core-linux-x64-gnu': 1.11.11
  1573. '@swc/core-linux-x64-musl': 1.11.11
  1574. '@swc/core-win32-arm64-msvc': 1.11.11
  1575. '@swc/core-win32-ia32-msvc': 1.11.11
  1576. '@swc/core-win32-x64-msvc': 1.11.11
  1577. '@swc/counter@0.1.3': {}
  1578. '@swc/types@0.1.19':
  1579. dependencies:
  1580. '@swc/counter': 0.1.3
  1581. '@tybys/wasm-util@0.9.0':
  1582. dependencies:
  1583. tslib: 2.8.1
  1584. optional: true
  1585. '@types/async-retry@1.4.9':
  1586. dependencies:
  1587. '@types/retry': 0.12.5
  1588. '@types/better-sqlite3@7.6.12':
  1589. dependencies:
  1590. '@types/node': 22.13.10
  1591. '@types/dns2@2.0.9':
  1592. dependencies:
  1593. '@types/node': 22.13.10
  1594. '@types/doctrine@0.0.9': {}
  1595. '@types/estree@1.0.6': {}
  1596. '@types/fast-fifo@1.3.0': {}
  1597. '@types/istanbul-lib-coverage@2.0.6': {}
  1598. '@types/istanbul-lib-report@3.0.3':
  1599. dependencies:
  1600. '@types/istanbul-lib-coverage': 2.0.6
  1601. '@types/istanbul-reports@3.0.4':
  1602. dependencies:
  1603. '@types/istanbul-lib-report': 3.0.3
  1604. '@types/json-schema@7.0.15': {}
  1605. '@types/mocha@10.0.10': {}
  1606. '@types/node@22.13.10':
  1607. dependencies:
  1608. undici-types: 6.20.0
  1609. '@types/punycode@2.1.4': {}
  1610. '@types/retry@0.12.5': {}
  1611. '@types/stack-utils@2.0.3': {}
  1612. '@types/tar-fs@2.0.4':
  1613. dependencies:
  1614. '@types/node': 22.13.10
  1615. '@types/tar-stream': 3.1.3
  1616. '@types/tar-stream@3.1.3':
  1617. dependencies:
  1618. '@types/node': 22.13.10
  1619. '@types/yargs-parser@21.0.3': {}
  1620. '@types/yargs@17.0.33':
  1621. dependencies:
  1622. '@types/yargs-parser': 21.0.3
  1623. '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2)':
  1624. dependencies:
  1625. '@eslint-community/regexpp': 4.12.1
  1626. '@typescript-eslint/parser': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1627. '@typescript-eslint/scope-manager': 8.26.1
  1628. '@typescript-eslint/type-utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1629. '@typescript-eslint/utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1630. '@typescript-eslint/visitor-keys': 8.26.1
  1631. eslint: 9.22.0
  1632. graphemer: 1.4.0
  1633. ignore: 5.3.2
  1634. natural-compare: 1.4.0
  1635. ts-api-utils: 2.0.1(typescript@5.8.2)
  1636. typescript: 5.8.2
  1637. transitivePeerDependencies:
  1638. - supports-color
  1639. '@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2)':
  1640. dependencies:
  1641. '@typescript-eslint/scope-manager': 8.26.1
  1642. '@typescript-eslint/types': 8.26.1
  1643. '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
  1644. '@typescript-eslint/visitor-keys': 8.26.1
  1645. debug: 4.4.0(supports-color@8.1.1)
  1646. eslint: 9.22.0
  1647. typescript: 5.8.2
  1648. transitivePeerDependencies:
  1649. - supports-color
  1650. '@typescript-eslint/scope-manager@8.26.0':
  1651. dependencies:
  1652. '@typescript-eslint/types': 8.26.0
  1653. '@typescript-eslint/visitor-keys': 8.26.0
  1654. '@typescript-eslint/scope-manager@8.26.1':
  1655. dependencies:
  1656. '@typescript-eslint/types': 8.26.1
  1657. '@typescript-eslint/visitor-keys': 8.26.1
  1658. '@typescript-eslint/type-utils@8.26.1(eslint@9.22.0)(typescript@5.8.2)':
  1659. dependencies:
  1660. '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
  1661. '@typescript-eslint/utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1662. debug: 4.4.0(supports-color@8.1.1)
  1663. eslint: 9.22.0
  1664. ts-api-utils: 2.0.1(typescript@5.8.2)
  1665. typescript: 5.8.2
  1666. transitivePeerDependencies:
  1667. - supports-color
  1668. '@typescript-eslint/types@8.26.0': {}
  1669. '@typescript-eslint/types@8.26.1': {}
  1670. '@typescript-eslint/typescript-estree@8.26.0(typescript@5.8.2)':
  1671. dependencies:
  1672. '@typescript-eslint/types': 8.26.0
  1673. '@typescript-eslint/visitor-keys': 8.26.0
  1674. debug: 4.4.0(supports-color@8.1.1)
  1675. fast-glob: 3.3.3
  1676. is-glob: 4.0.3
  1677. minimatch: 9.0.5
  1678. semver: 7.7.1
  1679. ts-api-utils: 2.0.1(typescript@5.8.2)
  1680. typescript: 5.8.2
  1681. transitivePeerDependencies:
  1682. - supports-color
  1683. '@typescript-eslint/typescript-estree@8.26.1(typescript@5.8.2)':
  1684. dependencies:
  1685. '@typescript-eslint/types': 8.26.1
  1686. '@typescript-eslint/visitor-keys': 8.26.1
  1687. debug: 4.4.0(supports-color@8.1.1)
  1688. fast-glob: 3.3.3
  1689. is-glob: 4.0.3
  1690. minimatch: 9.0.5
  1691. semver: 7.7.1
  1692. ts-api-utils: 2.0.1(typescript@5.8.2)
  1693. typescript: 5.8.2
  1694. transitivePeerDependencies:
  1695. - supports-color
  1696. '@typescript-eslint/utils@8.26.0(eslint@9.22.0)(typescript@5.8.2)':
  1697. dependencies:
  1698. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  1699. '@typescript-eslint/scope-manager': 8.26.0
  1700. '@typescript-eslint/types': 8.26.0
  1701. '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.8.2)
  1702. eslint: 9.22.0
  1703. typescript: 5.8.2
  1704. transitivePeerDependencies:
  1705. - supports-color
  1706. '@typescript-eslint/utils@8.26.1(eslint@9.22.0)(typescript@5.8.2)':
  1707. dependencies:
  1708. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  1709. '@typescript-eslint/scope-manager': 8.26.1
  1710. '@typescript-eslint/types': 8.26.1
  1711. '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.2)
  1712. eslint: 9.22.0
  1713. typescript: 5.8.2
  1714. transitivePeerDependencies:
  1715. - supports-color
  1716. '@typescript-eslint/visitor-keys@8.26.0':
  1717. dependencies:
  1718. '@typescript-eslint/types': 8.26.0
  1719. eslint-visitor-keys: 4.2.0
  1720. '@typescript-eslint/visitor-keys@8.26.1':
  1721. dependencies:
  1722. '@typescript-eslint/types': 8.26.1
  1723. eslint-visitor-keys: 4.2.0
  1724. acorn-jsx@5.3.2(acorn@8.14.0):
  1725. dependencies:
  1726. acorn: 8.14.0
  1727. acorn@8.14.0: {}
  1728. ajv@6.12.6:
  1729. dependencies:
  1730. fast-deep-equal: 3.1.3
  1731. fast-json-stable-stringify: 2.1.0
  1732. json-schema-traverse: 0.4.1
  1733. uri-js: 4.4.1
  1734. ansi-colors@4.1.3: {}
  1735. ansi-regex@5.0.1: {}
  1736. ansi-regex@6.1.0: {}
  1737. ansi-styles@4.3.0:
  1738. dependencies:
  1739. color-convert: 2.0.1
  1740. ansi-styles@5.2.0: {}
  1741. ansi-styles@6.2.1: {}
  1742. anymatch@3.1.3:
  1743. dependencies:
  1744. normalize-path: 3.0.0
  1745. picomatch: 2.3.1
  1746. argparse@2.0.1: {}
  1747. async-retry@1.3.3:
  1748. dependencies:
  1749. retry: 0.13.1
  1750. b4a@1.6.7: {}
  1751. balanced-match@1.0.2: {}
  1752. bare-events@2.5.4:
  1753. optional: true
  1754. bare-fs@4.0.1:
  1755. dependencies:
  1756. bare-events: 2.5.4
  1757. bare-path: 3.0.0
  1758. bare-stream: 2.6.5(bare-events@2.5.4)
  1759. transitivePeerDependencies:
  1760. - bare-buffer
  1761. optional: true
  1762. bare-os@3.4.0:
  1763. optional: true
  1764. bare-path@3.0.0:
  1765. dependencies:
  1766. bare-os: 3.4.0
  1767. optional: true
  1768. bare-stream@2.6.5(bare-events@2.5.4):
  1769. dependencies:
  1770. streamx: 2.22.0
  1771. optionalDependencies:
  1772. bare-events: 2.5.4
  1773. optional: true
  1774. base64-js@1.5.1: {}
  1775. better-sqlite3@11.9.0:
  1776. dependencies:
  1777. bindings: 1.5.0
  1778. prebuild-install: 7.1.3
  1779. binary-extensions@2.3.0: {}
  1780. bindings@1.5.0:
  1781. dependencies:
  1782. file-uri-to-path: 1.0.0
  1783. bl@4.1.0:
  1784. dependencies:
  1785. buffer: 5.7.1
  1786. inherits: 2.0.4
  1787. readable-stream: 3.6.2
  1788. brace-expansion@1.1.11:
  1789. dependencies:
  1790. balanced-match: 1.0.2
  1791. concat-map: 0.0.1
  1792. brace-expansion@2.0.1:
  1793. dependencies:
  1794. balanced-match: 1.0.2
  1795. braces@3.0.3:
  1796. dependencies:
  1797. fill-range: 7.1.1
  1798. browser-stdout@1.3.1: {}
  1799. buffer-from@1.1.2: {}
  1800. buffer@5.7.1:
  1801. dependencies:
  1802. base64-js: 1.5.1
  1803. ieee754: 1.2.1
  1804. callsites@3.1.0: {}
  1805. camelcase@6.3.0: {}
  1806. chalk@4.1.2:
  1807. dependencies:
  1808. ansi-styles: 4.3.0
  1809. supports-color: 7.2.0
  1810. chokidar@3.6.0:
  1811. dependencies:
  1812. anymatch: 3.1.3
  1813. braces: 3.0.3
  1814. glob-parent: 5.1.2
  1815. is-binary-path: 2.1.0
  1816. is-glob: 4.0.3
  1817. normalize-path: 3.0.0
  1818. readdirp: 3.6.0
  1819. optionalDependencies:
  1820. fsevents: 2.3.3
  1821. chownr@1.1.4: {}
  1822. ci-info@3.9.0: {}
  1823. ci-info@4.2.0: {}
  1824. cliui@8.0.1:
  1825. dependencies:
  1826. string-width: 4.2.3
  1827. strip-ansi: 6.0.1
  1828. wrap-ansi: 7.0.0
  1829. color-convert@2.0.1:
  1830. dependencies:
  1831. color-name: 1.1.4
  1832. color-name@1.1.4: {}
  1833. colorette@2.0.20: {}
  1834. comment-parser@1.4.1: {}
  1835. concat-map@0.0.1: {}
  1836. cross-spawn@7.0.6:
  1837. dependencies:
  1838. path-key: 3.1.1
  1839. shebang-command: 2.0.0
  1840. which: 2.0.2
  1841. csv-parse@5.6.0: {}
  1842. debug@3.2.7:
  1843. dependencies:
  1844. ms: 2.1.3
  1845. debug@4.4.0(supports-color@8.1.1):
  1846. dependencies:
  1847. ms: 2.1.3
  1848. optionalDependencies:
  1849. supports-color: 8.1.1
  1850. decamelize@4.0.0: {}
  1851. decompress-response@6.0.0:
  1852. dependencies:
  1853. mimic-response: 3.1.0
  1854. deep-extend@0.6.0: {}
  1855. deep-is@0.1.4: {}
  1856. defu@6.1.4: {}
  1857. detect-libc@2.0.3: {}
  1858. diff-sequences@29.6.3: {}
  1859. diff@5.2.0: {}
  1860. dns2@2.1.0: {}
  1861. doctrine@3.0.0:
  1862. dependencies:
  1863. esutils: 2.0.3
  1864. eastasianwidth@0.2.0: {}
  1865. emoji-regex@8.0.0: {}
  1866. emoji-regex@9.2.2: {}
  1867. end-of-stream@1.4.4:
  1868. dependencies:
  1869. once: 1.4.0
  1870. enhanced-resolve@5.18.1:
  1871. dependencies:
  1872. graceful-fs: 4.2.11
  1873. tapable: 2.2.1
  1874. escalade@3.2.0: {}
  1875. escape-string-regexp@2.0.0: {}
  1876. escape-string-regexp@4.0.0: {}
  1877. eslint-compat-utils@0.5.1(eslint@9.22.0):
  1878. dependencies:
  1879. eslint: 9.22.0
  1880. semver: 7.7.1
  1881. eslint-compat-utils@0.6.4(eslint@9.22.0):
  1882. dependencies:
  1883. eslint: 9.22.0
  1884. semver: 7.7.1
  1885. eslint-config-sukka@6.17.1(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2):
  1886. dependencies:
  1887. '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.22.0)
  1888. '@eslint-sukka/shared': 6.17.1(eslint@9.22.0)(typescript@5.8.2)
  1889. '@eslint/js': 9.22.0
  1890. '@typescript-eslint/parser': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1891. ci-info: 4.2.0
  1892. defu: 6.1.4
  1893. eslint-import-resolver-oxc: 0.13.1(eslint-plugin-import-x@4.6.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)
  1894. eslint-plugin-autofix: 2.2.0(eslint@9.22.0)
  1895. eslint-plugin-de-morgan: 1.2.1(eslint@9.22.0)
  1896. eslint-plugin-import-x: 4.6.1(eslint@9.22.0)(typescript@5.8.2)
  1897. eslint-plugin-jsonc: 2.19.1(eslint@9.22.0)
  1898. eslint-plugin-promise: 7.2.1(eslint@9.22.0)
  1899. eslint-plugin-regexp: 2.7.0(eslint@9.22.0)
  1900. eslint-plugin-sukka: 6.17.1(eslint@9.22.0)(typescript@5.8.2)
  1901. eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)
  1902. foxts: 1.7.0
  1903. jsonc-eslint-parser: 2.4.0
  1904. picocolors: 1.1.1
  1905. typescript-eslint: 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  1906. transitivePeerDependencies:
  1907. - '@eslint/json'
  1908. - '@rspack/cli'
  1909. - '@rspack/core'
  1910. - '@typescript-eslint/eslint-plugin'
  1911. - eslint
  1912. - eslint-plugin-import
  1913. - supports-color
  1914. - typescript
  1915. - vite
  1916. - webpack
  1917. - webpack-cli
  1918. - webpack-merge
  1919. eslint-formatter-sukka@6.17.1:
  1920. dependencies:
  1921. ci-info: 4.2.0
  1922. picocolors: 1.1.1
  1923. eslint-import-resolver-node@0.3.9:
  1924. dependencies:
  1925. debug: 3.2.7
  1926. is-core-module: 2.16.1
  1927. resolve: 1.22.10
  1928. transitivePeerDependencies:
  1929. - supports-color
  1930. eslint-import-resolver-oxc@0.13.1(eslint-plugin-import-x@4.6.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0):
  1931. dependencies:
  1932. eslint: 9.22.0
  1933. oxc-resolver: 5.0.0
  1934. stable-hash: 0.0.5
  1935. optionalDependencies:
  1936. eslint-plugin-import-x: 4.6.1(eslint@9.22.0)(typescript@5.8.2)
  1937. eslint-json-compat-utils@0.2.1(eslint@9.22.0)(jsonc-eslint-parser@2.4.0):
  1938. dependencies:
  1939. eslint: 9.22.0
  1940. esquery: 1.6.0
  1941. jsonc-eslint-parser: 2.4.0
  1942. eslint-plugin-autofix@2.2.0(eslint@9.22.0):
  1943. dependencies:
  1944. eslint: 9.22.0
  1945. eslint-rule-composer: 0.3.0
  1946. espree: 9.6.1
  1947. esutils: 2.0.3
  1948. string-similarity: 4.0.4
  1949. eslint-plugin-de-morgan@1.2.1(eslint@9.22.0):
  1950. dependencies:
  1951. eslint: 9.22.0
  1952. eslint-plugin-es-x@7.8.0(eslint@9.22.0):
  1953. dependencies:
  1954. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  1955. '@eslint-community/regexpp': 4.12.1
  1956. eslint: 9.22.0
  1957. eslint-compat-utils: 0.5.1(eslint@9.22.0)
  1958. eslint-plugin-import-x@4.6.1(eslint@9.22.0)(typescript@5.8.2):
  1959. dependencies:
  1960. '@types/doctrine': 0.0.9
  1961. '@typescript-eslint/scope-manager': 8.26.0
  1962. '@typescript-eslint/utils': 8.26.0(eslint@9.22.0)(typescript@5.8.2)
  1963. debug: 4.4.0(supports-color@8.1.1)
  1964. doctrine: 3.0.0
  1965. enhanced-resolve: 5.18.1
  1966. eslint: 9.22.0
  1967. eslint-import-resolver-node: 0.3.9
  1968. get-tsconfig: 4.10.0
  1969. is-glob: 4.0.3
  1970. minimatch: 9.0.5
  1971. semver: 7.7.1
  1972. stable-hash: 0.0.4
  1973. tslib: 2.8.1
  1974. transitivePeerDependencies:
  1975. - supports-color
  1976. - typescript
  1977. eslint-plugin-jsonc@2.19.1(eslint@9.22.0):
  1978. dependencies:
  1979. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  1980. eslint: 9.22.0
  1981. eslint-compat-utils: 0.6.4(eslint@9.22.0)
  1982. eslint-json-compat-utils: 0.2.1(eslint@9.22.0)(jsonc-eslint-parser@2.4.0)
  1983. espree: 9.6.1
  1984. graphemer: 1.4.0
  1985. jsonc-eslint-parser: 2.4.0
  1986. natural-compare: 1.4.0
  1987. synckit: 0.6.2
  1988. transitivePeerDependencies:
  1989. - '@eslint/json'
  1990. eslint-plugin-n@17.16.2(eslint@9.22.0):
  1991. dependencies:
  1992. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  1993. enhanced-resolve: 5.18.1
  1994. eslint: 9.22.0
  1995. eslint-plugin-es-x: 7.8.0(eslint@9.22.0)
  1996. get-tsconfig: 4.10.0
  1997. globals: 15.14.0
  1998. ignore: 5.3.2
  1999. minimatch: 9.0.5
  2000. semver: 7.7.1
  2001. eslint-plugin-promise@7.2.1(eslint@9.22.0):
  2002. dependencies:
  2003. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  2004. eslint: 9.22.0
  2005. eslint-plugin-regexp@2.7.0(eslint@9.22.0):
  2006. dependencies:
  2007. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  2008. '@eslint-community/regexpp': 4.12.1
  2009. comment-parser: 1.4.1
  2010. eslint: 9.22.0
  2011. jsdoc-type-pratt-parser: 4.1.0
  2012. refa: 0.12.1
  2013. regexp-ast-analysis: 0.7.1
  2014. scslre: 0.3.0
  2015. eslint-plugin-sukka@6.17.1(eslint@9.22.0)(typescript@5.8.2):
  2016. dependencies:
  2017. '@eslint-community/regexpp': 4.12.1
  2018. '@eslint-sukka/shared': 6.17.1(eslint@9.22.0)(typescript@5.8.2)
  2019. '@typescript-eslint/type-utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  2020. '@typescript-eslint/utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  2021. foxts: 1.7.0
  2022. optionalDependencies:
  2023. typescript: 5.8.2
  2024. transitivePeerDependencies:
  2025. - eslint
  2026. - supports-color
  2027. eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0):
  2028. dependencies:
  2029. eslint: 9.22.0
  2030. optionalDependencies:
  2031. '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2)
  2032. eslint-rule-composer@0.3.0: {}
  2033. eslint-scope@8.3.0:
  2034. dependencies:
  2035. esrecurse: 4.3.0
  2036. estraverse: 5.3.0
  2037. eslint-visitor-keys@3.4.3: {}
  2038. eslint-visitor-keys@4.2.0: {}
  2039. eslint@9.22.0:
  2040. dependencies:
  2041. '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0)
  2042. '@eslint-community/regexpp': 4.12.1
  2043. '@eslint/config-array': 0.19.2
  2044. '@eslint/config-helpers': 0.1.0
  2045. '@eslint/core': 0.12.0
  2046. '@eslint/eslintrc': 3.3.0
  2047. '@eslint/js': 9.22.0
  2048. '@eslint/plugin-kit': 0.2.7
  2049. '@humanfs/node': 0.16.6
  2050. '@humanwhocodes/module-importer': 1.0.1
  2051. '@humanwhocodes/retry': 0.4.2
  2052. '@types/estree': 1.0.6
  2053. '@types/json-schema': 7.0.15
  2054. ajv: 6.12.6
  2055. chalk: 4.1.2
  2056. cross-spawn: 7.0.6
  2057. debug: 4.4.0(supports-color@8.1.1)
  2058. escape-string-regexp: 4.0.0
  2059. eslint-scope: 8.3.0
  2060. eslint-visitor-keys: 4.2.0
  2061. espree: 10.3.0
  2062. esquery: 1.6.0
  2063. esutils: 2.0.3
  2064. fast-deep-equal: 3.1.3
  2065. file-entry-cache: 8.0.0
  2066. find-up: 5.0.0
  2067. glob-parent: 6.0.2
  2068. ignore: 5.3.2
  2069. imurmurhash: 0.1.4
  2070. is-glob: 4.0.3
  2071. json-stable-stringify-without-jsonify: 1.0.1
  2072. lodash.merge: 4.6.2
  2073. minimatch: 3.1.2
  2074. natural-compare: 1.4.0
  2075. optionator: 0.9.4
  2076. transitivePeerDependencies:
  2077. - supports-color
  2078. espree@10.3.0:
  2079. dependencies:
  2080. acorn: 8.14.0
  2081. acorn-jsx: 5.3.2(acorn@8.14.0)
  2082. eslint-visitor-keys: 4.2.0
  2083. espree@9.6.1:
  2084. dependencies:
  2085. acorn: 8.14.0
  2086. acorn-jsx: 5.3.2(acorn@8.14.0)
  2087. eslint-visitor-keys: 3.4.3
  2088. esquery@1.6.0:
  2089. dependencies:
  2090. estraverse: 5.3.0
  2091. esrecurse@4.3.0:
  2092. dependencies:
  2093. estraverse: 5.3.0
  2094. estraverse@5.3.0: {}
  2095. esutils@2.0.3: {}
  2096. expand-template@2.0.3: {}
  2097. expect@29.7.0:
  2098. dependencies:
  2099. '@jest/expect-utils': 29.7.0
  2100. jest-get-type: 29.6.3
  2101. jest-matcher-utils: 29.7.0
  2102. jest-message-util: 29.7.0
  2103. jest-util: 29.7.0
  2104. fast-cidr-tools@0.3.2: {}
  2105. fast-deep-equal@3.1.3: {}
  2106. fast-fifo@1.3.2: {}
  2107. fast-glob@3.3.3:
  2108. dependencies:
  2109. '@nodelib/fs.stat': 2.0.5
  2110. '@nodelib/fs.walk': 1.2.8
  2111. glob-parent: 5.1.2
  2112. merge2: 1.4.1
  2113. micromatch: 4.0.8
  2114. fast-json-stable-stringify@2.1.0: {}
  2115. fast-levenshtein@2.0.6: {}
  2116. fastq@1.19.0:
  2117. dependencies:
  2118. reusify: 1.0.4
  2119. fdir@6.4.3(picomatch@4.0.2):
  2120. optionalDependencies:
  2121. picomatch: 4.0.2
  2122. file-entry-cache@8.0.0:
  2123. dependencies:
  2124. flat-cache: 4.0.1
  2125. file-uri-to-path@1.0.0: {}
  2126. fill-range@7.1.1:
  2127. dependencies:
  2128. to-regex-range: 5.0.1
  2129. find-up@5.0.0:
  2130. dependencies:
  2131. locate-path: 6.0.0
  2132. path-exists: 4.0.0
  2133. flat-cache@4.0.1:
  2134. dependencies:
  2135. flatted: 3.3.2
  2136. keyv: 4.5.4
  2137. flat@5.0.2: {}
  2138. flatted@3.3.2: {}
  2139. foreground-child@3.3.0:
  2140. dependencies:
  2141. cross-spawn: 7.0.6
  2142. signal-exit: 4.1.0
  2143. foxts@1.7.0:
  2144. dependencies:
  2145. uncrypto: 0.1.3
  2146. foxts@2.0.1: {}
  2147. fs-constants@1.0.0: {}
  2148. fsevents@2.3.3:
  2149. optional: true
  2150. function-bind@1.1.2: {}
  2151. get-caller-file@2.0.5: {}
  2152. get-tsconfig@4.10.0:
  2153. dependencies:
  2154. resolve-pkg-maps: 1.0.0
  2155. github-from-package@0.0.0: {}
  2156. glob-parent@5.1.2:
  2157. dependencies:
  2158. is-glob: 4.0.3
  2159. glob-parent@6.0.2:
  2160. dependencies:
  2161. is-glob: 4.0.3
  2162. glob@10.4.5:
  2163. dependencies:
  2164. foreground-child: 3.3.0
  2165. jackspeak: 3.4.3
  2166. minimatch: 9.0.5
  2167. minipass: 7.1.2
  2168. package-json-from-dist: 1.0.1
  2169. path-scurry: 1.11.1
  2170. globals@14.0.0: {}
  2171. globals@15.14.0: {}
  2172. graceful-fs@4.2.11: {}
  2173. graphemer@1.4.0: {}
  2174. has-flag@4.0.0: {}
  2175. hash-wasm@4.12.0: {}
  2176. hasown@2.0.2:
  2177. dependencies:
  2178. function-bind: 1.1.2
  2179. he@1.2.0: {}
  2180. ieee754@1.2.1: {}
  2181. ignore@5.3.2: {}
  2182. import-fresh@3.3.1:
  2183. dependencies:
  2184. parent-module: 1.0.1
  2185. resolve-from: 4.0.0
  2186. imurmurhash@0.1.4: {}
  2187. inherits@2.0.4: {}
  2188. ini@1.3.8: {}
  2189. is-binary-path@2.1.0:
  2190. dependencies:
  2191. binary-extensions: 2.3.0
  2192. is-core-module@2.16.1:
  2193. dependencies:
  2194. hasown: 2.0.2
  2195. is-extglob@2.1.1: {}
  2196. is-fullwidth-code-point@3.0.0: {}
  2197. is-glob@4.0.3:
  2198. dependencies:
  2199. is-extglob: 2.1.1
  2200. is-number@7.0.0: {}
  2201. is-plain-obj@2.1.0: {}
  2202. is-unicode-supported@0.1.0: {}
  2203. isexe@2.0.0: {}
  2204. jackspeak@3.4.3:
  2205. dependencies:
  2206. '@isaacs/cliui': 8.0.2
  2207. optionalDependencies:
  2208. '@pkgjs/parseargs': 0.11.0
  2209. jest-diff@29.7.0:
  2210. dependencies:
  2211. chalk: 4.1.2
  2212. diff-sequences: 29.6.3
  2213. jest-get-type: 29.6.3
  2214. pretty-format: 29.7.0
  2215. jest-get-type@29.6.3: {}
  2216. jest-matcher-utils@29.7.0:
  2217. dependencies:
  2218. chalk: 4.1.2
  2219. jest-diff: 29.7.0
  2220. jest-get-type: 29.6.3
  2221. pretty-format: 29.7.0
  2222. jest-message-util@29.7.0:
  2223. dependencies:
  2224. '@babel/code-frame': 7.26.2
  2225. '@jest/types': 29.6.3
  2226. '@types/stack-utils': 2.0.3
  2227. chalk: 4.1.2
  2228. graceful-fs: 4.2.11
  2229. micromatch: 4.0.8
  2230. pretty-format: 29.7.0
  2231. slash: 3.0.0
  2232. stack-utils: 2.0.6
  2233. jest-util@29.7.0:
  2234. dependencies:
  2235. '@jest/types': 29.6.3
  2236. '@types/node': 22.13.10
  2237. chalk: 4.1.2
  2238. ci-info: 3.9.0
  2239. graceful-fs: 4.2.11
  2240. picomatch: 2.3.1
  2241. js-tokens@4.0.0: {}
  2242. js-yaml@4.1.0:
  2243. dependencies:
  2244. argparse: 2.0.1
  2245. jsdoc-type-pratt-parser@4.1.0: {}
  2246. json-buffer@3.0.1: {}
  2247. json-schema-traverse@0.4.1: {}
  2248. json-stable-stringify-without-jsonify@1.0.1: {}
  2249. json-stringify-pretty-compact@3.0.0: {}
  2250. jsonc-eslint-parser@2.4.0:
  2251. dependencies:
  2252. acorn: 8.14.0
  2253. eslint-visitor-keys: 3.4.3
  2254. espree: 9.6.1
  2255. semver: 7.7.1
  2256. keyv@4.5.4:
  2257. dependencies:
  2258. json-buffer: 3.0.1
  2259. levn@0.4.1:
  2260. dependencies:
  2261. prelude-ls: 1.2.1
  2262. type-check: 0.4.0
  2263. locate-path@6.0.0:
  2264. dependencies:
  2265. p-locate: 5.0.0
  2266. lodash.merge@4.6.2: {}
  2267. log-symbols@4.1.0:
  2268. dependencies:
  2269. chalk: 4.1.2
  2270. is-unicode-supported: 0.1.0
  2271. lru-cache@10.4.3: {}
  2272. merge2@1.4.1: {}
  2273. micromatch@4.0.8:
  2274. dependencies:
  2275. braces: 3.0.3
  2276. picomatch: 2.3.1
  2277. mimic-response@3.1.0: {}
  2278. minimatch@3.1.2:
  2279. dependencies:
  2280. brace-expansion: 1.1.11
  2281. minimatch@5.1.6:
  2282. dependencies:
  2283. brace-expansion: 2.0.1
  2284. minimatch@9.0.5:
  2285. dependencies:
  2286. brace-expansion: 2.0.1
  2287. minimist@1.2.8: {}
  2288. minipass@7.1.2: {}
  2289. mitata@1.0.34: {}
  2290. mkdirp-classic@0.5.3: {}
  2291. mocha@11.1.0:
  2292. dependencies:
  2293. ansi-colors: 4.1.3
  2294. browser-stdout: 1.3.1
  2295. chokidar: 3.6.0
  2296. debug: 4.4.0(supports-color@8.1.1)
  2297. diff: 5.2.0
  2298. escape-string-regexp: 4.0.0
  2299. find-up: 5.0.0
  2300. glob: 10.4.5
  2301. he: 1.2.0
  2302. js-yaml: 4.1.0
  2303. log-symbols: 4.1.0
  2304. minimatch: 5.1.6
  2305. ms: 2.1.3
  2306. serialize-javascript: 6.0.2
  2307. strip-json-comments: 3.1.1
  2308. supports-color: 8.1.1
  2309. workerpool: 6.5.1
  2310. yargs: 17.7.2
  2311. yargs-parser: 21.1.1
  2312. yargs-unparser: 2.0.0
  2313. ms@2.1.3: {}
  2314. napi-build-utils@2.0.0: {}
  2315. natural-compare@1.4.0: {}
  2316. node-abi@3.74.0:
  2317. dependencies:
  2318. semver: 7.7.1
  2319. normalize-path@3.0.0: {}
  2320. once@1.4.0:
  2321. dependencies:
  2322. wrappy: 1.0.2
  2323. optionator@0.9.4:
  2324. dependencies:
  2325. deep-is: 0.1.4
  2326. fast-levenshtein: 2.0.6
  2327. levn: 0.4.1
  2328. prelude-ls: 1.2.1
  2329. type-check: 0.4.0
  2330. word-wrap: 1.2.5
  2331. oxc-resolver@5.0.0:
  2332. optionalDependencies:
  2333. '@oxc-resolver/binding-darwin-arm64': 5.0.0
  2334. '@oxc-resolver/binding-darwin-x64': 5.0.0
  2335. '@oxc-resolver/binding-freebsd-x64': 5.0.0
  2336. '@oxc-resolver/binding-linux-arm-gnueabihf': 5.0.0
  2337. '@oxc-resolver/binding-linux-arm64-gnu': 5.0.0
  2338. '@oxc-resolver/binding-linux-arm64-musl': 5.0.0
  2339. '@oxc-resolver/binding-linux-x64-gnu': 5.0.0
  2340. '@oxc-resolver/binding-linux-x64-musl': 5.0.0
  2341. '@oxc-resolver/binding-wasm32-wasi': 5.0.0
  2342. '@oxc-resolver/binding-win32-arm64-msvc': 5.0.0
  2343. '@oxc-resolver/binding-win32-x64-msvc': 5.0.0
  2344. p-limit@3.1.0:
  2345. dependencies:
  2346. yocto-queue: 0.1.0
  2347. p-locate@5.0.0:
  2348. dependencies:
  2349. p-limit: 3.1.0
  2350. package-json-from-dist@1.0.1: {}
  2351. parent-module@1.0.1:
  2352. dependencies:
  2353. callsites: 3.1.0
  2354. path-exists@4.0.0: {}
  2355. path-key@3.1.1: {}
  2356. path-parse@1.0.7: {}
  2357. path-scurry@1.11.1:
  2358. dependencies:
  2359. lru-cache: 10.4.3
  2360. minipass: 7.1.2
  2361. picocolors@1.1.1: {}
  2362. picomatch@2.3.1: {}
  2363. picomatch@4.0.2:
  2364. optional: true
  2365. pirates@4.0.6: {}
  2366. prebuild-install@7.1.3:
  2367. dependencies:
  2368. detect-libc: 2.0.3
  2369. expand-template: 2.0.3
  2370. github-from-package: 0.0.0
  2371. minimist: 1.2.8
  2372. mkdirp-classic: 0.5.3
  2373. napi-build-utils: 2.0.0
  2374. node-abi: 3.74.0
  2375. pump: 3.0.2
  2376. rc: 1.2.8
  2377. simple-get: 4.0.1
  2378. tar-fs: 2.1.2
  2379. tunnel-agent: 0.6.0
  2380. prelude-ls@1.2.1: {}
  2381. pretty-format@29.7.0:
  2382. dependencies:
  2383. '@jest/schemas': 29.6.3
  2384. ansi-styles: 5.2.0
  2385. react-is: 18.3.1
  2386. promise-make-naked@2.1.2: {}
  2387. pump@3.0.2:
  2388. dependencies:
  2389. end-of-stream: 1.4.4
  2390. once: 1.4.0
  2391. punycode@2.3.1: {}
  2392. queue-microtask@1.2.3: {}
  2393. randombytes@2.1.0:
  2394. dependencies:
  2395. safe-buffer: 5.2.1
  2396. rc@1.2.8:
  2397. dependencies:
  2398. deep-extend: 0.6.0
  2399. ini: 1.3.8
  2400. minimist: 1.2.8
  2401. strip-json-comments: 2.0.1
  2402. react-is@18.3.1: {}
  2403. readable-stream@3.6.2:
  2404. dependencies:
  2405. inherits: 2.0.4
  2406. string_decoder: 1.3.0
  2407. util-deprecate: 1.0.2
  2408. readdirp@3.6.0:
  2409. dependencies:
  2410. picomatch: 2.3.1
  2411. refa@0.12.1:
  2412. dependencies:
  2413. '@eslint-community/regexpp': 4.12.1
  2414. regexp-ast-analysis@0.7.1:
  2415. dependencies:
  2416. '@eslint-community/regexpp': 4.12.1
  2417. refa: 0.12.1
  2418. require-directory@2.1.1: {}
  2419. resolve-from@4.0.0: {}
  2420. resolve-pkg-maps@1.0.0: {}
  2421. resolve@1.22.10:
  2422. dependencies:
  2423. is-core-module: 2.16.1
  2424. path-parse: 1.0.7
  2425. supports-preserve-symlinks-flag: 1.0.0
  2426. retry@0.13.1: {}
  2427. reusify@1.0.4: {}
  2428. run-parallel@1.2.0:
  2429. dependencies:
  2430. queue-microtask: 1.2.3
  2431. safe-buffer@5.2.1: {}
  2432. scslre@0.3.0:
  2433. dependencies:
  2434. '@eslint-community/regexpp': 4.12.1
  2435. refa: 0.12.1
  2436. regexp-ast-analysis: 0.7.1
  2437. semver@7.7.1: {}
  2438. serialize-javascript@6.0.2:
  2439. dependencies:
  2440. randombytes: 2.1.0
  2441. shebang-command@2.0.0:
  2442. dependencies:
  2443. shebang-regex: 3.0.0
  2444. shebang-regex@3.0.0: {}
  2445. signal-exit@4.1.0: {}
  2446. simple-concat@1.0.1: {}
  2447. simple-get@4.0.1:
  2448. dependencies:
  2449. decompress-response: 6.0.0
  2450. once: 1.4.0
  2451. simple-concat: 1.0.1
  2452. slash@3.0.0: {}
  2453. source-map-support@0.5.21:
  2454. dependencies:
  2455. buffer-from: 1.1.2
  2456. source-map: 0.6.1
  2457. source-map@0.6.1: {}
  2458. stable-hash@0.0.4: {}
  2459. stable-hash@0.0.5: {}
  2460. stack-utils@2.0.6:
  2461. dependencies:
  2462. escape-string-regexp: 2.0.0
  2463. streamx@2.22.0:
  2464. dependencies:
  2465. fast-fifo: 1.3.2
  2466. text-decoder: 1.2.3
  2467. optionalDependencies:
  2468. bare-events: 2.5.4
  2469. string-similarity@4.0.4: {}
  2470. string-width@4.2.3:
  2471. dependencies:
  2472. emoji-regex: 8.0.0
  2473. is-fullwidth-code-point: 3.0.0
  2474. strip-ansi: 6.0.1
  2475. string-width@5.1.2:
  2476. dependencies:
  2477. eastasianwidth: 0.2.0
  2478. emoji-regex: 9.2.2
  2479. strip-ansi: 7.1.0
  2480. string_decoder@1.3.0:
  2481. dependencies:
  2482. safe-buffer: 5.2.1
  2483. strip-ansi@6.0.1:
  2484. dependencies:
  2485. ansi-regex: 5.0.1
  2486. strip-ansi@7.1.0:
  2487. dependencies:
  2488. ansi-regex: 6.1.0
  2489. strip-json-comments@2.0.1: {}
  2490. strip-json-comments@3.1.1: {}
  2491. supports-color@7.2.0:
  2492. dependencies:
  2493. has-flag: 4.0.0
  2494. supports-color@8.1.1:
  2495. dependencies:
  2496. has-flag: 4.0.0
  2497. supports-preserve-symlinks-flag@1.0.0: {}
  2498. synckit@0.6.2:
  2499. dependencies:
  2500. tslib: 2.8.1
  2501. tapable@2.2.1: {}
  2502. tar-fs@2.1.2:
  2503. dependencies:
  2504. chownr: 1.1.4
  2505. mkdirp-classic: 0.5.3
  2506. pump: 3.0.2
  2507. tar-stream: 2.2.0
  2508. tar-fs@3.0.8:
  2509. dependencies:
  2510. pump: 3.0.2
  2511. tar-stream: 3.1.7
  2512. optionalDependencies:
  2513. bare-fs: 4.0.1
  2514. bare-path: 3.0.0
  2515. transitivePeerDependencies:
  2516. - bare-buffer
  2517. tar-stream@2.2.0:
  2518. dependencies:
  2519. bl: 4.1.0
  2520. end-of-stream: 1.4.4
  2521. fs-constants: 1.0.0
  2522. inherits: 2.0.4
  2523. readable-stream: 3.6.2
  2524. tar-stream@3.1.7:
  2525. dependencies:
  2526. b4a: 1.6.7
  2527. fast-fifo: 1.3.2
  2528. streamx: 2.22.0
  2529. text-decoder@1.2.3:
  2530. dependencies:
  2531. b4a: 1.6.7
  2532. tinyexec@0.3.2: {}
  2533. tldts-core@6.1.84: {}
  2534. tldts-experimental@6.1.84:
  2535. dependencies:
  2536. tldts-core: 6.1.84
  2537. tldts@6.1.84:
  2538. dependencies:
  2539. tldts-core: 6.1.84
  2540. to-regex-range@5.0.1:
  2541. dependencies:
  2542. is-number: 7.0.0
  2543. ts-api-utils@2.0.1(typescript@5.8.2):
  2544. dependencies:
  2545. typescript: 5.8.2
  2546. tslib@2.8.1: {}
  2547. tunnel-agent@0.6.0:
  2548. dependencies:
  2549. safe-buffer: 5.2.1
  2550. type-check@0.4.0:
  2551. dependencies:
  2552. prelude-ls: 1.2.1
  2553. typescript-eslint@8.26.1(eslint@9.22.0)(typescript@5.8.2):
  2554. dependencies:
  2555. '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2)
  2556. '@typescript-eslint/parser': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  2557. '@typescript-eslint/utils': 8.26.1(eslint@9.22.0)(typescript@5.8.2)
  2558. eslint: 9.22.0
  2559. typescript: 5.8.2
  2560. transitivePeerDependencies:
  2561. - supports-color
  2562. typescript@5.8.2: {}
  2563. uncrypto@0.1.3: {}
  2564. undici-cache-store-better-sqlite3@0.1.1(undici@7.5.0):
  2565. dependencies:
  2566. better-sqlite3: 11.9.0
  2567. undici: 7.5.0
  2568. undici-types@6.20.0: {}
  2569. undici@7.5.0: {}
  2570. uri-js@4.4.1:
  2571. dependencies:
  2572. punycode: 2.3.1
  2573. util-deprecate@1.0.2: {}
  2574. webworker-shim@1.1.1: {}
  2575. which@2.0.2:
  2576. dependencies:
  2577. isexe: 2.0.0
  2578. whoiser@1.18.0(patch_hash=01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f):
  2579. dependencies:
  2580. punycode: 2.3.1
  2581. why-is-node-running@3.2.2: {}
  2582. word-wrap@1.2.5: {}
  2583. workerpool@6.5.1: {}
  2584. worktank@2.7.3:
  2585. dependencies:
  2586. promise-make-naked: 2.1.2
  2587. webworker-shim: 1.1.1
  2588. wrap-ansi@7.0.0:
  2589. dependencies:
  2590. ansi-styles: 4.3.0
  2591. string-width: 4.2.3
  2592. strip-ansi: 6.0.1
  2593. wrap-ansi@8.1.0:
  2594. dependencies:
  2595. ansi-styles: 6.2.1
  2596. string-width: 5.1.2
  2597. strip-ansi: 7.1.0
  2598. wrappy@1.0.2: {}
  2599. xbits@0.2.0: {}
  2600. y18n@5.0.8: {}
  2601. yaml@2.7.0: {}
  2602. yargs-parser@21.1.1: {}
  2603. yargs-unparser@2.0.0:
  2604. dependencies:
  2605. camelcase: 6.3.0
  2606. decamelize: 4.0.0
  2607. flat: 5.0.2
  2608. is-plain-obj: 2.1.0
  2609. yargs@17.7.2:
  2610. dependencies:
  2611. cliui: 8.0.1
  2612. escalade: 3.2.0
  2613. get-caller-file: 2.0.5
  2614. require-directory: 2.1.1
  2615. string-width: 4.2.3
  2616. y18n: 5.0.8
  2617. yargs-parser: 21.1.1
  2618. yocto-queue@0.1.0: {}