pnpm-lock.yaml 118 KB

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