pnpm-lock.yaml 121 KB

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