pnpm-lock.yaml 107 KB

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