pnpm-lock.yaml 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696
  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. '@cliqz/adblocker':
  11. specifier: ^1.33.2
  12. version: 1.33.2
  13. '@jsdevtools/ez-spawn':
  14. specifier: ^3.0.4
  15. version: 3.0.4
  16. async-retry:
  17. specifier: ^1.3.3
  18. version: 1.3.3
  19. async-sema:
  20. specifier: ^3.1.1
  21. version: 3.1.1
  22. better-sqlite3:
  23. specifier: ^11.3.0
  24. version: 11.3.0
  25. cacheable-lookup:
  26. specifier: ^6.1.0
  27. version: 6.1.0
  28. ci-info:
  29. specifier: ^4.0.0
  30. version: 4.0.0
  31. cli-table3:
  32. specifier: ^0.6.5
  33. version: 0.6.5
  34. csv-parse:
  35. specifier: ^5.5.6
  36. version: 5.5.6
  37. fast-cidr-tools:
  38. specifier: ^0.3.1
  39. version: 0.3.1
  40. fdir:
  41. specifier: ^6.4.0
  42. version: 6.4.0(picomatch@4.0.2)
  43. foxact:
  44. specifier: ^0.2.38
  45. version: 0.2.38
  46. hash-wasm:
  47. specifier: ^4.11.0
  48. version: 4.11.0
  49. json-stringify-pretty-compact:
  50. specifier: ^3.0.0
  51. version: 3.0.0
  52. make-fetch-happen:
  53. specifier: ^14.0.1
  54. version: 14.0.1
  55. mnemonist:
  56. specifier: ^0.39.8
  57. version: 0.39.8
  58. picocolors:
  59. specifier: ^1.1.0
  60. version: 1.1.0
  61. punycode:
  62. specifier: ^2.3.1
  63. version: 2.3.1
  64. tar-fs:
  65. specifier: ^3.0.6
  66. version: 3.0.6
  67. tldts:
  68. specifier: ^6.1.50
  69. version: 6.1.50
  70. tldts-experimental:
  71. specifier: ^6.1.50
  72. version: 6.1.50
  73. undici:
  74. specifier: ^6.20.0
  75. version: 6.20.0
  76. wtfnode:
  77. specifier: ^0.9.3
  78. version: 0.9.3
  79. yaml:
  80. specifier: ^2.5.1
  81. version: 2.5.1
  82. devDependencies:
  83. '@eslint-sukka/node':
  84. specifier: ^6.7.0
  85. version: 6.7.0(eslint@9.12.0)(typescript@5.6.3)
  86. '@swc-node/register':
  87. specifier: ^1.10.9
  88. version: 1.10.9(@swc/core@1.7.35)(@swc/types@0.1.13)(typescript@5.6.3)
  89. '@swc/core':
  90. specifier: ^1.7.35
  91. version: 1.7.35
  92. '@types/async-retry':
  93. specifier: ^1.4.9
  94. version: 1.4.9
  95. '@types/better-sqlite3':
  96. specifier: ^7.6.11
  97. version: 7.6.11
  98. '@types/chai':
  99. specifier: ^4.3.20
  100. version: 4.3.20
  101. '@types/make-fetch-happen':
  102. specifier: ^10.0.4
  103. version: 10.0.4
  104. '@types/mocha':
  105. specifier: ^10.0.9
  106. version: 10.0.9
  107. '@types/node':
  108. specifier: ^22.7.5
  109. version: 22.7.5
  110. '@types/node-fetch':
  111. specifier: '2'
  112. version: 2.6.11
  113. '@types/punycode':
  114. specifier: ^2.1.4
  115. version: 2.1.4
  116. '@types/tar-fs':
  117. specifier: ^2.0.4
  118. version: 2.0.4
  119. '@types/tar-stream':
  120. specifier: ^3.1.3
  121. version: 3.1.3
  122. '@types/wtfnode':
  123. specifier: ^0.7.3
  124. version: 0.7.3
  125. chai:
  126. specifier: '4'
  127. version: 4.4.1
  128. eslint:
  129. specifier: ^9.12.0
  130. version: 9.12.0
  131. eslint-config-sukka:
  132. specifier: ^6.7.0
  133. version: 6.7.0(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3)
  134. eslint-formatter-sukka:
  135. specifier: ^6.7.0
  136. version: 6.7.0
  137. mitata:
  138. specifier: ^1.0.10
  139. version: 1.0.10
  140. mocha:
  141. specifier: ^10.7.3
  142. version: 10.7.3
  143. typescript:
  144. specifier: ^5.6.3
  145. version: 5.6.3
  146. packages:
  147. '@antfu/utils@0.7.10':
  148. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  149. '@cliqz/adblocker-content@1.33.2':
  150. resolution: {integrity: sha512-OlLfenwU6sxo3/y6IPfnl9ou32IFwRzQXgHrLWZ0IjzcY8ZxpGlh97QcW1D9QyTPj3Ndub6vNJxsnMjNOWDd7g==}
  151. '@cliqz/adblocker-extended-selectors@1.33.2':
  152. resolution: {integrity: sha512-SPL8vZyniuQ1kBmwM0KZyNNHnS8Nd6N0eoGDzkPJqkAW+ntT/v7MBXmlhKmpYhsh773uLZUjF5bSlTQprXtcdw==}
  153. '@cliqz/adblocker@1.33.2':
  154. resolution: {integrity: sha512-S6XHtSsn2+vvCgkqgmMuyZwGjXNfwQtPdzitrELzzNP881gbt7DDdbTBPAF50DOI2ZPDvkXfyoinbY5wEJPD+g==}
  155. '@colors/colors@1.5.0':
  156. resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
  157. engines: {node: '>=0.1.90'}
  158. '@dual-bundle/import-meta-resolve@4.1.0':
  159. resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
  160. '@emnapi/core@1.2.0':
  161. resolution: {integrity: sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==}
  162. '@emnapi/runtime@1.2.0':
  163. resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
  164. '@emnapi/wasi-threads@1.0.1':
  165. resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
  166. '@eslint-community/eslint-plugin-eslint-comments@4.4.0':
  167. resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==}
  168. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  169. peerDependencies:
  170. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  171. '@eslint-community/eslint-utils@4.4.0':
  172. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  173. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  174. peerDependencies:
  175. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  176. '@eslint-community/regexpp@4.11.1':
  177. resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
  178. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  179. '@eslint-sukka/node@6.7.0':
  180. resolution: {integrity: sha512-28MW9Jj29SJ85wQvkg46nl9Spg0d68HOOWsPsMRgg0yq15r/lsQyEjE/Mtx8JybW9dLYNWQW9P7bq3ZNPlxHSg==}
  181. '@eslint-sukka/shared@6.7.0':
  182. resolution: {integrity: sha512-0VF/pfxsmF267y7rN3eF2b1spBJ3YQMsPZt5EGuwUYRdjOkACfWTPj1mSGe/oMD5d4i9IYpP+XlPXsc2i6UdmQ==}
  183. '@eslint/config-array@0.18.0':
  184. resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
  185. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  186. '@eslint/core@0.6.0':
  187. resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
  188. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  189. '@eslint/eslintrc@3.1.0':
  190. resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
  191. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  192. '@eslint/js@9.12.0':
  193. resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==}
  194. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  195. '@eslint/object-schema@2.1.4':
  196. resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
  197. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  198. '@eslint/plugin-kit@0.2.0':
  199. resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
  200. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  201. '@humanfs/core@0.19.0':
  202. resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==}
  203. engines: {node: '>=18.18.0'}
  204. '@humanfs/node@0.16.5':
  205. resolution: {integrity: sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==}
  206. engines: {node: '>=18.18.0'}
  207. '@humanwhocodes/module-importer@1.0.1':
  208. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  209. engines: {node: '>=12.22'}
  210. '@humanwhocodes/retry@0.3.1':
  211. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  212. engines: {node: '>=18.18'}
  213. '@isaacs/cliui@8.0.2':
  214. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  215. engines: {node: '>=12'}
  216. '@isaacs/fs-minipass@4.0.1':
  217. resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
  218. engines: {node: '>=18.0.0'}
  219. '@jsdevtools/ez-spawn@3.0.4':
  220. resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==}
  221. engines: {node: '>=10'}
  222. '@napi-rs/wasm-runtime@0.2.4':
  223. resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
  224. '@nodelib/fs.scandir@2.1.5':
  225. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  226. engines: {node: '>= 8'}
  227. '@nodelib/fs.stat@2.0.5':
  228. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  229. engines: {node: '>= 8'}
  230. '@nodelib/fs.walk@1.2.8':
  231. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  232. engines: {node: '>= 8'}
  233. '@npmcli/agent@3.0.0':
  234. resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==}
  235. engines: {node: ^18.17.0 || >=20.5.0}
  236. '@npmcli/fs@4.0.0':
  237. resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==}
  238. engines: {node: ^18.17.0 || >=20.5.0}
  239. '@oxc-resolver/binding-darwin-arm64@1.10.2':
  240. resolution: {integrity: sha512-aOCZYXqmFL+2sXlaVkYbAOtICGGeTFtmdul8OimQfOXHJods6YHJ2nR6+rEeBcJzaXyXPP18ne1IsEc4AYL1IA==}
  241. cpu: [arm64]
  242. os: [darwin]
  243. '@oxc-resolver/binding-darwin-x64@1.10.2':
  244. resolution: {integrity: sha512-6WD7lHGkoduFZfUgnC2suKOlqttQRKxWsiVXiiGPu3mfXvQAhMd/gekuH1t8vOhFlPJduaww15n5UB0bSjCK+w==}
  245. cpu: [x64]
  246. os: [darwin]
  247. '@oxc-resolver/binding-freebsd-x64@1.10.2':
  248. resolution: {integrity: sha512-nEqHWx/Ot5p7Mafj8qH6vFlLSvHjECxAcZwhnAMqRuQu1NgXC/QM3emkdhVGy7QJgsxZbHpPaF6TERNf5/NL9Q==}
  249. cpu: [x64]
  250. os: [freebsd]
  251. '@oxc-resolver/binding-linux-arm-gnueabihf@1.10.2':
  252. resolution: {integrity: sha512-+AlZI0fPnpfArh8aC5k2295lmQrxa2p8gBLxC3buvCkz0ZpbVLxyyAXz3J2jGwJnmc5MUPLEqPYw6ZlAGH4XHA==}
  253. cpu: [arm]
  254. os: [linux]
  255. '@oxc-resolver/binding-linux-arm64-gnu@1.10.2':
  256. resolution: {integrity: sha512-8fZ8NszFaUZaoA8eUwkF2lHjgUs76aFiewWgG/cjcZmwKp+ErZQLW8eOvIWZ4SohHQ+ScvhVsSaU2PU38c88gw==}
  257. cpu: [arm64]
  258. os: [linux]
  259. '@oxc-resolver/binding-linux-arm64-musl@1.10.2':
  260. resolution: {integrity: sha512-oPrLICrw96Ym9n04FWXWGkbkpF6qJtZ57JSnqI3oQ24xHTt4iWyjHKHQO46NbJAK9sFb3Qce4BzV8faDI5Rifg==}
  261. cpu: [arm64]
  262. os: [linux]
  263. '@oxc-resolver/binding-linux-x64-gnu@1.10.2':
  264. resolution: {integrity: sha512-eli74jTAUiIfqi8IPFqiPxQS69Alcr6w/IFRyf3XxrkxeFGgcgxJkRIxWNTKJ6T3EXxjuma+49LdZn6l9rEj7A==}
  265. cpu: [x64]
  266. os: [linux]
  267. '@oxc-resolver/binding-linux-x64-musl@1.10.2':
  268. resolution: {integrity: sha512-HH9zmjNSQo3rkbqJH5nIjGrtjC+QPrUy0KGGMR/oRCSLuD0cNFJ/Uly1XAugwSm4oEw0+rv6PmeclXmVTKsxhw==}
  269. cpu: [x64]
  270. os: [linux]
  271. '@oxc-resolver/binding-wasm32-wasi@1.10.2':
  272. resolution: {integrity: sha512-3ItX23q33sfVBtMMdMhVDSe0NX5zBHxHfmFiXhSJuwNaVIwGpLFU7WU2nmq9oNdnmTOvjL8vlhOqiGvumBLlRA==}
  273. engines: {node: '>=14.0.0'}
  274. cpu: [wasm32]
  275. '@oxc-resolver/binding-win32-arm64-msvc@1.10.2':
  276. resolution: {integrity: sha512-aVoj2V+jmQ1N+lVy9AhaLmzssJM0lcKt8D0UL83aNLZJ5lSN7hgBuUXTVmL+VF268f167khjo38z+fbELDVm8Q==}
  277. cpu: [arm64]
  278. os: [win32]
  279. '@oxc-resolver/binding-win32-x64-msvc@1.10.2':
  280. resolution: {integrity: sha512-l8BDQWyP0Piw8hlmYPUqTRKLsq+ceG9h+9p6ZrjNzwW9AmJX7T7T2hgoVVHqS6f4WNA/CFkb3RyZP9QTzNkyyA==}
  281. cpu: [x64]
  282. os: [win32]
  283. '@package-json/types@0.0.11':
  284. resolution: {integrity: sha512-allOTUn4Xi2bQMs+mthzHWekgjRBVno+DLOcXk9+6haG5oFu5rlz0pszT3sh1OAkQVFLYrAS4V5CSxWyVwUf7g==}
  285. '@pkgjs/parseargs@0.11.0':
  286. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  287. engines: {node: '>=14'}
  288. '@remusao/guess-url-type@1.3.0':
  289. resolution: {integrity: sha512-SNSJGxH5ckvxb3EUHj4DqlAm/bxNxNv2kx/AESZva/9VfcBokwKNS+C4D1lQdWIDM1R3d3UG+xmVzlkNG8CPTQ==}
  290. '@remusao/small@1.3.0':
  291. resolution: {integrity: sha512-bydAhJI+ywmg5xMUcbqoR8KahetcfkFywEZpsyFZ8EBofilvWxbXnMSe4vnjDI1Y+SWxnNhR4AL/2BAXkf4b8A==}
  292. '@remusao/smaz-compress@1.10.0':
  293. resolution: {integrity: sha512-E/lC8OSU+3bQrUl64vlLyPzIxo7dxF2RvNBe9KzcM4ax43J/d+YMinmMztHyCIHqRbz7rBCtkp3c0KfeIbHmEg==}
  294. '@remusao/smaz-decompress@1.10.0':
  295. resolution: {integrity: sha512-aA5ImUH480Pcs5/cOgToKmFnzi7osSNG6ft+7DdmQTaQEEst3nLq3JLlBEk+gwidURymjbx6DYs60LHaZ415VQ==}
  296. '@remusao/smaz@1.10.0':
  297. resolution: {integrity: sha512-GQzCxmmMpLkyZwcwNgz8TpuBEWl0RUQa8IcvKiYlPxuyYKqyqPkCr0hlHI15ckn3kDUPS68VmTVgyPnLNrdVmg==}
  298. '@remusao/trie@1.5.0':
  299. resolution: {integrity: sha512-UX+3utJKgwCsg6sUozjxd38gNMVRXrY4TNX9VvCdSrlZBS1nZjRPi98ON3QjRAdf6KCguJFyQARRsulTeqQiPg==}
  300. '@stylistic/eslint-plugin-js@2.8.0':
  301. resolution: {integrity: sha512-/e7pSzVMrwBd6yzSDsKHwax3TS96+pd/xSKzELaTkOuYqUhYfj/becWdfDbFSBGQD7BBBCiiE4L8L2cUfu5h+A==}
  302. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  303. peerDependencies:
  304. eslint: '>=8.40.0'
  305. '@stylistic/eslint-plugin-plus@2.8.0':
  306. resolution: {integrity: sha512-NBfv9xuBcG0oIM5323xjW6duxbcLP8WX6lr5XWLmypZo4uf6sdkfrTEdo7AHl17DvKl/2qgurqCwzYV/DiXstQ==}
  307. peerDependencies:
  308. eslint: '*'
  309. '@stylistic/eslint-plugin-ts@2.8.0':
  310. resolution: {integrity: sha512-VukJqkRlC2psLKoIHJ+4R3ZxLJfWeizGGX+X5ZxunjXo4MbxRNtwu5UvXuerABg4s2RV6Z3LFTdm0WvI4+RAMQ==}
  311. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  312. peerDependencies:
  313. eslint: '>=8.40.0'
  314. '@swc-node/core@1.13.3':
  315. resolution: {integrity: sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==}
  316. engines: {node: '>= 10'}
  317. peerDependencies:
  318. '@swc/core': '>= 1.4.13'
  319. '@swc/types': '>= 0.1'
  320. '@swc-node/register@1.10.9':
  321. resolution: {integrity: sha512-iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A==}
  322. peerDependencies:
  323. '@swc/core': '>= 1.4.13'
  324. typescript: '>= 4.3'
  325. '@swc-node/sourcemap-support@0.5.1':
  326. resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
  327. '@swc/core-darwin-arm64@1.7.35':
  328. resolution: {integrity: sha512-BQSSozVxjxS+SVQz6e3GC/+OBWGIK3jfe52pWdANmycdjF3ch7lrCKTHTU7eHwyoJ96mofszPf5AsiVJF34Fwg==}
  329. engines: {node: '>=10'}
  330. cpu: [arm64]
  331. os: [darwin]
  332. '@swc/core-darwin-x64@1.7.35':
  333. resolution: {integrity: sha512-44TYdKN/EWtkU88foXR7IGki9JzhEJzaFOoPevfi9Xe7hjAD/x2+AJOWWqQNzDPMz9+QewLdUVLyR6s5okRgtg==}
  334. engines: {node: '>=10'}
  335. cpu: [x64]
  336. os: [darwin]
  337. '@swc/core-linux-arm-gnueabihf@1.7.35':
  338. resolution: {integrity: sha512-ccfA5h3zxwioD+/z/AmYtkwtKz9m4rWTV7RoHq6Jfsb0cXHrd6tbcvgqRWXra1kASlE+cDWsMtEZygs9dJRtUQ==}
  339. engines: {node: '>=10'}
  340. cpu: [arm]
  341. os: [linux]
  342. '@swc/core-linux-arm64-gnu@1.7.35':
  343. resolution: {integrity: sha512-hx65Qz+G4iG/IVtxJKewC5SJdki8PAPFGl6gC/57Jb0+jA4BIoGLD/J3Q3rCPeoHfdqpkCYpahtyUq8CKx41Jg==}
  344. engines: {node: '>=10'}
  345. cpu: [arm64]
  346. os: [linux]
  347. '@swc/core-linux-arm64-musl@1.7.35':
  348. resolution: {integrity: sha512-kL6tQL9No7UEoEvDRuPxzPTpxrvbwYteNRbdChSSP74j13/55G2/2hLmult5yFFaWuyoyU/2lvzjRL/i8OLZxg==}
  349. engines: {node: '>=10'}
  350. cpu: [arm64]
  351. os: [linux]
  352. '@swc/core-linux-x64-gnu@1.7.35':
  353. resolution: {integrity: sha512-Ke4rcLQSwCQ2LHdJX1FtnqmYNQ3IX6BddKlUtS7mcK13IHkQzZWp0Dcu6MgNA3twzb/dBpKX5GLy07XdGgfmyw==}
  354. engines: {node: '>=10'}
  355. cpu: [x64]
  356. os: [linux]
  357. '@swc/core-linux-x64-musl@1.7.35':
  358. resolution: {integrity: sha512-T30tlLnz0kYyDFyO5RQF5EQ4ENjW9+b56hEGgFUYmfhFhGA4E4V67iEx7KIG4u0whdPG7oy3qjyyIeTb7nElEw==}
  359. engines: {node: '>=10'}
  360. cpu: [x64]
  361. os: [linux]
  362. '@swc/core-win32-arm64-msvc@1.7.35':
  363. resolution: {integrity: sha512-CfM/k8mvtuMyX+okRhemfLt784PLS0KF7Q9djA8/Dtavk0L5Ghnq+XsGltO3d8B8+XZ7YOITsB14CrjehzeHsg==}
  364. engines: {node: '>=10'}
  365. cpu: [arm64]
  366. os: [win32]
  367. '@swc/core-win32-ia32-msvc@1.7.35':
  368. resolution: {integrity: sha512-ATB3uuH8j/RmS64EXQZJSbo2WXfRNpTnQszHME/sGaexsuxeijrp3DTYSFAA3R2Bu6HbIIX6jempe1Au8I3j+A==}
  369. engines: {node: '>=10'}
  370. cpu: [ia32]
  371. os: [win32]
  372. '@swc/core-win32-x64-msvc@1.7.35':
  373. resolution: {integrity: sha512-iDGfQO1571NqWUXtLYDhwIELA/wadH42ioGn+J9R336nWx40YICzy9UQyslWRhqzhQ5kT+QXAW/MoCWc058N6Q==}
  374. engines: {node: '>=10'}
  375. cpu: [x64]
  376. os: [win32]
  377. '@swc/core@1.7.35':
  378. resolution: {integrity: sha512-3cUteCTbr2r5jqfgx0r091sfq5Mgh6F1SQh8XAOnSvtKzwv2bC31mvBHVAieD1uPa2kHJhLav20DQgXOhpEitw==}
  379. engines: {node: '>=10'}
  380. peerDependencies:
  381. '@swc/helpers': '*'
  382. peerDependenciesMeta:
  383. '@swc/helpers':
  384. optional: true
  385. '@swc/counter@0.1.3':
  386. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  387. '@swc/types@0.1.13':
  388. resolution: {integrity: sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==}
  389. '@tybys/wasm-util@0.9.0':
  390. resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
  391. '@types/async-retry@1.4.9':
  392. resolution: {integrity: sha512-s1ciZQJzRh3708X/m3vPExr5KJlzlZJvXsKpbtE2luqNcbROr64qU+3KpJsYHqWMeaxI839OvXf9PrUSw1Xtyg==}
  393. '@types/better-sqlite3@7.6.11':
  394. resolution: {integrity: sha512-i8KcD3PgGtGBLl3+mMYA8PdKkButvPyARxA7IQAd6qeslht13qxb1zzO8dRCtE7U3IoJS782zDBAeoKiM695kg==}
  395. '@types/chai@4.3.20':
  396. resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
  397. '@types/chrome@0.0.270':
  398. resolution: {integrity: sha512-ADvkowV7YnJfycZZxL2brluZ6STGW+9oKG37B422UePf2PCXuFA/XdERI0T18wtuWPx0tmFeZqq6MOXVk1IC+Q==}
  399. '@types/eslint@9.6.1':
  400. resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
  401. '@types/estree@1.0.6':
  402. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  403. '@types/filesystem@0.0.36':
  404. resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==}
  405. '@types/filewriter@0.0.33':
  406. resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==}
  407. '@types/firefox-webext-browser@120.0.4':
  408. resolution: {integrity: sha512-lBrpf08xhiZBigrtdQfUaqX1UauwZ+skbFiL8u2Tdra/rklkKadYmIzTwkNZSWtuZ7OKpFqbE2HHfDoFqvZf6w==}
  409. '@types/har-format@1.2.15':
  410. resolution: {integrity: sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==}
  411. '@types/json-schema@7.0.15':
  412. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  413. '@types/make-fetch-happen@10.0.4':
  414. resolution: {integrity: sha512-jKzweQaEMMAi55ehvR1z0JF6aSVQm/h1BXBhPLOJriaeQBctjw5YbpIGs7zAx9dN0Sa2OO5bcXwCkrlgenoPEA==}
  415. '@types/mocha@10.0.9':
  416. resolution: {integrity: sha512-sicdRoWtYevwxjOHNMPTl3vSfJM6oyW8o1wXeI7uww6b6xHg8eBznQDNSGBCDJmsE8UMxP05JgZRtsKbTqt//Q==}
  417. '@types/node-fetch@2.6.11':
  418. resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
  419. '@types/node@22.7.5':
  420. resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
  421. '@types/punycode@2.1.4':
  422. resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==}
  423. '@types/retry@0.12.5':
  424. resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==}
  425. '@types/ssri@7.1.5':
  426. resolution: {integrity: sha512-odD/56S3B51liILSk5aXJlnYt99S6Rt9EFDDqGtJM26rKHApHcwyU/UoYHrzKkdkHMAIquGWCuHtQTbes+FRQw==}
  427. '@types/tar-fs@2.0.4':
  428. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  429. '@types/tar-stream@3.1.3':
  430. resolution: {integrity: sha512-Zbnx4wpkWBMBSu5CytMbrT5ZpMiF55qgM+EpHzR4yIDu7mv52cej8hTkOc6K+LzpkOAbxwn/m7j3iO+/l42YkQ==}
  431. '@types/wtfnode@0.7.3':
  432. resolution: {integrity: sha512-UMkHpx+o2xRWLJ7PmT3bBzvIA9/0oFw80oPtY/xO4jfdq+Gznn4wP7K9B/JjMxyxy+wF+5oRPIykxeBbEDjwRg==}
  433. '@typescript-eslint/eslint-plugin@8.8.1':
  434. resolution: {integrity: sha512-xfvdgA8AP/vxHgtgU310+WBnLB4uJQ9XdyP17RebG26rLtDrQJV3ZYrcopX91GrHmMoH8bdSwMRh2a//TiJ1jQ==}
  435. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  436. peerDependencies:
  437. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  438. eslint: ^8.57.0 || ^9.0.0
  439. typescript: '*'
  440. peerDependenciesMeta:
  441. typescript:
  442. optional: true
  443. '@typescript-eslint/parser@8.7.0':
  444. resolution: {integrity: sha512-lN0btVpj2unxHlNYLI//BQ7nzbMJYBVQX5+pbNXvGYazdlgYonMn4AhhHifQ+J4fGRYA/m1DjaQjx+fDetqBOQ==}
  445. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  446. peerDependencies:
  447. eslint: ^8.57.0 || ^9.0.0
  448. typescript: '*'
  449. peerDependenciesMeta:
  450. typescript:
  451. optional: true
  452. '@typescript-eslint/parser@8.8.1':
  453. resolution: {integrity: sha512-hQUVn2Lij2NAxVFEdvIGxT9gP1tq2yM83m+by3whWFsWC+1y8pxxxHUFE1UqDu2VsGi2i6RLcv4QvouM84U+ow==}
  454. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  455. peerDependencies:
  456. eslint: ^8.57.0 || ^9.0.0
  457. typescript: '*'
  458. peerDependenciesMeta:
  459. typescript:
  460. optional: true
  461. '@typescript-eslint/scope-manager@8.7.0':
  462. resolution: {integrity: sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==}
  463. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  464. '@typescript-eslint/scope-manager@8.8.1':
  465. resolution: {integrity: sha512-X4JdU+66Mazev/J0gfXlcC/dV6JI37h+93W9BRYXrSn0hrE64IoWgVkO9MSJgEzoWkxONgaQpICWg8vAN74wlA==}
  466. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  467. '@typescript-eslint/type-utils@8.8.1':
  468. resolution: {integrity: sha512-qSVnpcbLP8CALORf0za+vjLYj1Wp8HSoiI8zYU5tHxRVj30702Z1Yw4cLwfNKhTPWp5+P+k1pjmD5Zd1nhxiZA==}
  469. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  470. peerDependencies:
  471. typescript: '*'
  472. peerDependenciesMeta:
  473. typescript:
  474. optional: true
  475. '@typescript-eslint/types@8.7.0':
  476. resolution: {integrity: sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==}
  477. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  478. '@typescript-eslint/types@8.8.1':
  479. resolution: {integrity: sha512-WCcTP4SDXzMd23N27u66zTKMuEevH4uzU8C9jf0RO4E04yVHgQgW+r+TeVTNnO1KIfrL8ebgVVYYMMO3+jC55Q==}
  480. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  481. '@typescript-eslint/typescript-estree@8.7.0':
  482. resolution: {integrity: sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==}
  483. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  484. peerDependencies:
  485. typescript: '*'
  486. peerDependenciesMeta:
  487. typescript:
  488. optional: true
  489. '@typescript-eslint/typescript-estree@8.8.1':
  490. resolution: {integrity: sha512-A5d1R9p+X+1js4JogdNilDuuq+EHZdsH9MjTVxXOdVFfTJXunKJR/v+fNNyO4TnoOn5HqobzfRlc70NC6HTcdg==}
  491. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  492. peerDependencies:
  493. typescript: '*'
  494. peerDependenciesMeta:
  495. typescript:
  496. optional: true
  497. '@typescript-eslint/utils@8.8.1':
  498. resolution: {integrity: sha512-/QkNJDbV0bdL7H7d0/y0qBbV2HTtf0TIyjSDTvvmQEzeVx8jEImEbLuOA4EsvE8gIgqMitns0ifb5uQhMj8d9w==}
  499. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  500. peerDependencies:
  501. eslint: ^8.57.0 || ^9.0.0
  502. '@typescript-eslint/visitor-keys@8.7.0':
  503. resolution: {integrity: sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==}
  504. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  505. '@typescript-eslint/visitor-keys@8.8.1':
  506. resolution: {integrity: sha512-0/TdC3aeRAsW7MDvYRwEc1Uwm0TIBfzjPFgg60UU2Haj5qsCs9cc3zNgY71edqE3LbWfF/WoZQd3lJoDXFQpag==}
  507. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  508. acorn-jsx@5.3.2:
  509. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  510. peerDependencies:
  511. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  512. acorn@8.12.1:
  513. resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
  514. engines: {node: '>=0.4.0'}
  515. hasBin: true
  516. agent-base@7.1.1:
  517. resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
  518. engines: {node: '>= 14'}
  519. ajv@6.12.6:
  520. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  521. ansi-colors@4.1.3:
  522. resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
  523. engines: {node: '>=6'}
  524. ansi-regex@5.0.1:
  525. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  526. engines: {node: '>=8'}
  527. ansi-regex@6.1.0:
  528. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  529. engines: {node: '>=12'}
  530. ansi-styles@4.3.0:
  531. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  532. engines: {node: '>=8'}
  533. ansi-styles@6.2.1:
  534. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  535. engines: {node: '>=12'}
  536. anymatch@3.1.3:
  537. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  538. engines: {node: '>= 8'}
  539. argparse@2.0.1:
  540. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  541. assertion-error@1.1.0:
  542. resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
  543. async-retry@1.3.3:
  544. resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
  545. async-sema@3.1.1:
  546. resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
  547. asynckit@0.4.0:
  548. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  549. b4a@1.6.6:
  550. resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
  551. balanced-match@1.0.2:
  552. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  553. bare-events@2.4.2:
  554. resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==}
  555. bare-fs@2.3.3:
  556. resolution: {integrity: sha512-7RYKL+vZVCyAsMLi5SPu7QGauGGT8avnP/HO571ndEuV4MYdGXvLhtW67FuLPeEI8EiIY7zbbRR9x7x7HU0kgw==}
  557. bare-os@2.4.2:
  558. resolution: {integrity: sha512-HZoJwzC+rZ9lqEemTMiO0luOePoGYNBgsLLgegKR/cljiJvcDNhDZQkzC+NC5Oh0aHbdBNSOHpghwMuB5tqhjg==}
  559. bare-path@2.1.3:
  560. resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
  561. bare-stream@2.2.1:
  562. resolution: {integrity: sha512-YTB47kHwBW9zSG8LD77MIBAAQXjU2WjAkMHeeb7hUplVs6+IoM5I7uEVQNPMB7lj9r8I76UMdoMkGnCodHOLqg==}
  563. base64-js@1.5.1:
  564. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  565. better-sqlite3@11.3.0:
  566. resolution: {integrity: sha512-iHt9j8NPYF3oKCNOO5ZI4JwThjt3Z6J6XrcwG85VNMVzv1ByqrHWv5VILEbCMFWDsoHhXvQ7oC8vgRXFAKgl9w==}
  567. binary-extensions@2.3.0:
  568. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  569. engines: {node: '>=8'}
  570. bindings@1.5.0:
  571. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  572. bl@4.1.0:
  573. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  574. brace-expansion@1.1.11:
  575. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  576. brace-expansion@2.0.1:
  577. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  578. braces@3.0.3:
  579. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  580. engines: {node: '>=8'}
  581. browser-stdout@1.3.1:
  582. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  583. buffer-from@1.1.2:
  584. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  585. buffer@5.7.1:
  586. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  587. cacache@19.0.1:
  588. resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
  589. engines: {node: ^18.17.0 || >=20.5.0}
  590. cacheable-lookup@6.1.0:
  591. resolution: {integrity: sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==}
  592. engines: {node: '>=10.6.0'}
  593. call-me-maybe@1.0.2:
  594. resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
  595. callsites@3.1.0:
  596. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  597. engines: {node: '>=6'}
  598. camelcase@6.3.0:
  599. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  600. engines: {node: '>=10'}
  601. chai@4.4.1:
  602. resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
  603. engines: {node: '>=4'}
  604. chalk@4.1.2:
  605. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  606. engines: {node: '>=10'}
  607. check-error@1.0.3:
  608. resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
  609. chokidar@3.6.0:
  610. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  611. engines: {node: '>= 8.10.0'}
  612. chownr@1.1.4:
  613. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  614. chownr@3.0.0:
  615. resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
  616. engines: {node: '>=18'}
  617. ci-info@4.0.0:
  618. resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
  619. engines: {node: '>=8'}
  620. cli-table3@0.6.5:
  621. resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
  622. engines: {node: 10.* || >= 12.*}
  623. client-only@0.0.1:
  624. resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
  625. cliui@7.0.4:
  626. resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
  627. color-convert@2.0.1:
  628. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  629. engines: {node: '>=7.0.0'}
  630. color-name@1.1.4:
  631. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  632. colorette@2.0.20:
  633. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  634. combined-stream@1.0.8:
  635. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  636. engines: {node: '>= 0.8'}
  637. comment-parser@1.4.1:
  638. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  639. engines: {node: '>= 12.0.0'}
  640. concat-map@0.0.1:
  641. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  642. cross-spawn@7.0.3:
  643. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  644. engines: {node: '>= 8'}
  645. csv-parse@5.5.6:
  646. resolution: {integrity: sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==}
  647. debug@3.2.7:
  648. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  649. peerDependencies:
  650. supports-color: '*'
  651. peerDependenciesMeta:
  652. supports-color:
  653. optional: true
  654. debug@4.3.7:
  655. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  656. engines: {node: '>=6.0'}
  657. peerDependencies:
  658. supports-color: '*'
  659. peerDependenciesMeta:
  660. supports-color:
  661. optional: true
  662. decamelize@4.0.0:
  663. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  664. engines: {node: '>=10'}
  665. decompress-response@6.0.0:
  666. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  667. engines: {node: '>=10'}
  668. deep-eql@4.1.4:
  669. resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
  670. engines: {node: '>=6'}
  671. deep-extend@0.6.0:
  672. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  673. engines: {node: '>=4.0.0'}
  674. deep-is@0.1.4:
  675. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  676. defu@6.1.4:
  677. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  678. delayed-stream@1.0.0:
  679. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  680. engines: {node: '>=0.4.0'}
  681. detect-libc@2.0.3:
  682. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  683. engines: {node: '>=8'}
  684. diff@5.2.0:
  685. resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
  686. engines: {node: '>=0.3.1'}
  687. doctrine@3.0.0:
  688. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  689. engines: {node: '>=6.0.0'}
  690. eastasianwidth@0.2.0:
  691. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  692. emoji-regex@8.0.0:
  693. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  694. emoji-regex@9.2.2:
  695. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  696. encoding@0.1.13:
  697. resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
  698. end-of-stream@1.4.4:
  699. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  700. enhanced-resolve@5.17.1:
  701. resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
  702. engines: {node: '>=10.13.0'}
  703. err-code@2.0.3:
  704. resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
  705. escalade@3.1.2:
  706. resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
  707. engines: {node: '>=6'}
  708. escape-string-regexp@4.0.0:
  709. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  710. engines: {node: '>=10'}
  711. eslint-compat-utils@0.5.1:
  712. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  713. engines: {node: '>=12'}
  714. peerDependencies:
  715. eslint: '>=6.0.0'
  716. eslint-config-sukka@6.7.0:
  717. resolution: {integrity: sha512-THoUWqxt52xtB2JyP+Boha4MzFSYAKmydGsIXMZ5uX2VrHYG3uPqPp3S5YrL6/img+AQjLg2bF+j3w1chumM9A==}
  718. eslint-formatter-sukka@6.7.0:
  719. resolution: {integrity: sha512-h3/mjxwtAPjfvs1FzlzrkxgHw/h9cWlqhwX3IruuGZm9LnYMc6uwBuANToco1f0iWh7chKLXfLPJfz9VPkkOoA==}
  720. eslint-import-resolver-node@0.3.9:
  721. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  722. eslint-import-resolver-ts-bundled@6.7.0:
  723. resolution: {integrity: sha512-0haJVgQKhKa+03bEZPbVVqCg2V1RfY9YjIV765/nBl7niigZLu5Ouny6jNBOOZfXSSH4HEDb+oc09bnMWsrmlA==}
  724. eslint-plugin-antfu@2.7.0:
  725. resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==}
  726. peerDependencies:
  727. eslint: '*'
  728. eslint-plugin-autofix@2.2.0:
  729. resolution: {integrity: sha512-lu8+0r+utyTroROqXIL+a8sUpICi6za22hIzlpb0+x0tQGRnOjhOKU7v8mC/NS/faDoVsw6xW3vUpc+Mcz5NWA==}
  730. engines: {node: '>=18'}
  731. peerDependencies:
  732. eslint: '>=8'
  733. eslint-plugin-es-x@7.8.0:
  734. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  735. engines: {node: ^14.18.0 || >=16.0.0}
  736. peerDependencies:
  737. eslint: '>=8'
  738. eslint-plugin-import-x@4.3.1:
  739. resolution: {integrity: sha512-5TriWkXulDl486XnYYRgsL+VQoS/7mhN/2ci02iLCuL7gdhbiWxnsuL/NTcaKY9fpMgsMFjWZBtIGW7pb+RX0g==}
  740. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  741. peerDependencies:
  742. eslint: ^8.57.0 || ^9.0.0
  743. eslint-plugin-jsonc@2.16.0:
  744. resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==}
  745. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  746. peerDependencies:
  747. eslint: '>=6.0.0'
  748. eslint-plugin-n@17.11.1:
  749. resolution: {integrity: sha512-93IUD82N6tIEgjztVI/l3ElHtC2wTa9boJHrD8iN+NyDxjxz/daZUZKfkedjBZNdg6EqDk4irybUsiPwDqXAEA==}
  750. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  751. peerDependencies:
  752. eslint: '>=8.23.0'
  753. eslint-plugin-promise@7.1.0:
  754. resolution: {integrity: sha512-8trNmPxdAy3W620WKDpaS65NlM5yAumod6XeC4LOb+jxlkG4IVcp68c6dXY2ev+uT4U1PtG57YDV6EGAXN0GbQ==}
  755. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  756. peerDependencies:
  757. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  758. eslint-plugin-regexp@2.6.0:
  759. resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==}
  760. engines: {node: ^18 || >=20}
  761. peerDependencies:
  762. eslint: '>=8.44.0'
  763. eslint-plugin-sukka@6.7.0:
  764. resolution: {integrity: sha512-wUgdP3PqmJ8VSW0uTuf+irLyaHccVwdl0417NsdVFXG3k0o6B9ABjBgJWSoBUoqNAGXCNVlO4fzsciFgXfXgDw==}
  765. peerDependencies:
  766. typescript: '*'
  767. peerDependenciesMeta:
  768. typescript:
  769. optional: true
  770. eslint-plugin-unused-imports@4.1.4:
  771. resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
  772. peerDependencies:
  773. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  774. eslint: ^9.0.0 || ^8.0.0
  775. peerDependenciesMeta:
  776. '@typescript-eslint/eslint-plugin':
  777. optional: true
  778. eslint-rule-composer@0.3.0:
  779. resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
  780. engines: {node: '>=4.0.0'}
  781. eslint-scope@8.1.0:
  782. resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==}
  783. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  784. eslint-visitor-keys@3.4.3:
  785. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  786. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  787. eslint-visitor-keys@4.1.0:
  788. resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==}
  789. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  790. eslint@9.12.0:
  791. resolution: {integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==}
  792. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  793. hasBin: true
  794. peerDependencies:
  795. jiti: '*'
  796. peerDependenciesMeta:
  797. jiti:
  798. optional: true
  799. espree@10.2.0:
  800. resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==}
  801. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  802. espree@9.6.1:
  803. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  804. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  805. esquery@1.6.0:
  806. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  807. engines: {node: '>=0.10'}
  808. esrecurse@4.3.0:
  809. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  810. engines: {node: '>=4.0'}
  811. estraverse@5.3.0:
  812. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  813. engines: {node: '>=4.0'}
  814. esutils@2.0.3:
  815. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  816. engines: {node: '>=0.10.0'}
  817. expand-template@2.0.3:
  818. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  819. engines: {node: '>=6'}
  820. fast-cidr-tools@0.3.1:
  821. resolution: {integrity: sha512-CixbR87xxUYpoZBR6xyFmOkhoOnd8YtmSW956evigw+AOc20fXAn3FXGL5eFAPpGcrs7qzOOEjEPxVMnvRJ87Q==}
  822. engines: {node: '>=16'}
  823. fast-deep-equal@3.1.3:
  824. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  825. fast-fifo@1.3.2:
  826. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  827. fast-glob@3.3.2:
  828. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  829. engines: {node: '>=8.6.0'}
  830. fast-json-stable-stringify@2.1.0:
  831. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  832. fast-levenshtein@2.0.6:
  833. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  834. fastq@1.17.1:
  835. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  836. fdir@6.4.0:
  837. resolution: {integrity: sha512-3oB133prH1o4j/L5lLW7uOCF1PlD+/It2L0eL/iAqWMB91RBbqTewABqxhj0ibBd90EEmWZq7ntIWzVaWcXTGQ==}
  838. peerDependencies:
  839. picomatch: ^3 || ^4
  840. peerDependenciesMeta:
  841. picomatch:
  842. optional: true
  843. file-entry-cache@8.0.0:
  844. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  845. engines: {node: '>=16.0.0'}
  846. file-uri-to-path@1.0.0:
  847. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  848. fill-range@7.1.1:
  849. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  850. engines: {node: '>=8'}
  851. find-up@5.0.0:
  852. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  853. engines: {node: '>=10'}
  854. flat-cache@4.0.1:
  855. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  856. engines: {node: '>=16'}
  857. flat@5.0.2:
  858. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  859. hasBin: true
  860. flatted@3.3.1:
  861. resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
  862. foreground-child@3.3.0:
  863. resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
  864. engines: {node: '>=14'}
  865. form-data@4.0.1:
  866. resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
  867. engines: {node: '>= 6'}
  868. foxact@0.2.38:
  869. resolution: {integrity: sha512-ClxI9lwzhWpE/JIGfPjSpUNqG6MccNq60jrxuPidNl4CAUrATba4ViQTBFn1Zc5+9q9nAFXWaZKendXIbGvrvQ==}
  870. peerDependencies:
  871. react: '*'
  872. peerDependenciesMeta:
  873. react:
  874. optional: true
  875. fs-constants@1.0.0:
  876. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  877. fs-minipass@3.0.3:
  878. resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
  879. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  880. fs.realpath@1.0.0:
  881. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  882. fsevents@2.3.3:
  883. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  884. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  885. os: [darwin]
  886. function-bind@1.1.2:
  887. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  888. get-caller-file@2.0.5:
  889. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  890. engines: {node: 6.* || 8.* || >= 10.*}
  891. get-func-name@2.0.2:
  892. resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
  893. get-tsconfig@4.8.1:
  894. resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
  895. github-from-package@0.0.0:
  896. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  897. glob-parent@5.1.2:
  898. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  899. engines: {node: '>= 6'}
  900. glob-parent@6.0.2:
  901. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  902. engines: {node: '>=10.13.0'}
  903. glob@10.4.5:
  904. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  905. hasBin: true
  906. glob@8.1.0:
  907. resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
  908. engines: {node: '>=12'}
  909. deprecated: Glob versions prior to v9 are no longer supported
  910. globals@14.0.0:
  911. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  912. engines: {node: '>=18'}
  913. globals@15.11.0:
  914. resolution: {integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==}
  915. engines: {node: '>=18'}
  916. graceful-fs@4.2.11:
  917. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  918. graphemer@1.4.0:
  919. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  920. has-flag@4.0.0:
  921. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  922. engines: {node: '>=8'}
  923. hash-wasm@4.11.0:
  924. resolution: {integrity: sha512-HVusNXlVqHe0fzIzdQOGolnFN6mX/fqcrSAOcTBXdvzrXVHwTz11vXeKRmkR5gTuwVpvHZEIyKoePDvuAR+XwQ==}
  925. hasown@2.0.2:
  926. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  927. engines: {node: '>= 0.4'}
  928. he@1.2.0:
  929. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  930. hasBin: true
  931. http-cache-semantics@4.1.1:
  932. resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
  933. http-proxy-agent@7.0.2:
  934. resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
  935. engines: {node: '>= 14'}
  936. https-proxy-agent@7.0.5:
  937. resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
  938. engines: {node: '>= 14'}
  939. iconv-lite@0.6.3:
  940. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  941. engines: {node: '>=0.10.0'}
  942. ieee754@1.2.1:
  943. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  944. ignore@5.3.2:
  945. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  946. engines: {node: '>= 4'}
  947. import-fresh@3.3.0:
  948. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  949. engines: {node: '>=6'}
  950. imurmurhash@0.1.4:
  951. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  952. engines: {node: '>=0.8.19'}
  953. inflight@1.0.6:
  954. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  955. 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.
  956. inherits@2.0.4:
  957. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  958. ini@1.3.8:
  959. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  960. ip-address@9.0.5:
  961. resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
  962. engines: {node: '>= 12'}
  963. is-binary-path@2.1.0:
  964. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  965. engines: {node: '>=8'}
  966. is-core-module@2.15.1:
  967. resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
  968. engines: {node: '>= 0.4'}
  969. is-extglob@2.1.1:
  970. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  971. engines: {node: '>=0.10.0'}
  972. is-fullwidth-code-point@3.0.0:
  973. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  974. engines: {node: '>=8'}
  975. is-glob@4.0.3:
  976. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  977. engines: {node: '>=0.10.0'}
  978. is-number@7.0.0:
  979. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  980. engines: {node: '>=0.12.0'}
  981. is-plain-obj@2.1.0:
  982. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  983. engines: {node: '>=8'}
  984. is-unicode-supported@0.1.0:
  985. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  986. engines: {node: '>=10'}
  987. isexe@2.0.0:
  988. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  989. jackspeak@3.4.3:
  990. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  991. js-yaml@4.1.0:
  992. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  993. hasBin: true
  994. jsbn@1.1.0:
  995. resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
  996. jsdoc-type-pratt-parser@4.1.0:
  997. resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
  998. engines: {node: '>=12.0.0'}
  999. json-buffer@3.0.1:
  1000. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1001. json-schema-traverse@0.4.1:
  1002. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1003. json-stable-stringify-without-jsonify@1.0.1:
  1004. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1005. json-stringify-pretty-compact@3.0.0:
  1006. resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==}
  1007. jsonc-eslint-parser@2.4.0:
  1008. resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
  1009. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1010. keyv@4.5.4:
  1011. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1012. levn@0.4.1:
  1013. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1014. engines: {node: '>= 0.8.0'}
  1015. locate-path@6.0.0:
  1016. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1017. engines: {node: '>=10'}
  1018. lodash.merge@4.6.2:
  1019. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1020. log-symbols@4.1.0:
  1021. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1022. engines: {node: '>=10'}
  1023. loupe@2.3.7:
  1024. resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
  1025. lru-cache@10.4.3:
  1026. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1027. make-fetch-happen@14.0.1:
  1028. resolution: {integrity: sha512-Z1ndm71UQdcK362F5Wg4IFRBZq4MGeCz+uor5iPROkSjEWEoc1Zn7OSKPvmg01S9XOI8mr+GlRr+W4ABz4ZgdA==}
  1029. engines: {node: ^18.17.0 || >=20.5.0}
  1030. merge2@1.4.1:
  1031. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1032. engines: {node: '>= 8'}
  1033. micromatch@4.0.8:
  1034. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1035. engines: {node: '>=8.6'}
  1036. mime-db@1.52.0:
  1037. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  1038. engines: {node: '>= 0.6'}
  1039. mime-types@2.1.35:
  1040. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  1041. engines: {node: '>= 0.6'}
  1042. mimic-response@3.1.0:
  1043. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1044. engines: {node: '>=10'}
  1045. minimatch@3.1.2:
  1046. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1047. minimatch@5.1.6:
  1048. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1049. engines: {node: '>=10'}
  1050. minimatch@9.0.5:
  1051. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1052. engines: {node: '>=16 || 14 >=14.17'}
  1053. minimist@1.2.8:
  1054. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1055. minipass-collect@2.0.1:
  1056. resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
  1057. engines: {node: '>=16 || 14 >=14.17'}
  1058. minipass-fetch@4.0.0:
  1059. resolution: {integrity: sha512-2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w==}
  1060. engines: {node: ^18.17.0 || >=20.5.0}
  1061. minipass-flush@1.0.5:
  1062. resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
  1063. engines: {node: '>= 8'}
  1064. minipass-pipeline@1.2.4:
  1065. resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
  1066. engines: {node: '>=8'}
  1067. minipass-sized@1.0.3:
  1068. resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
  1069. engines: {node: '>=8'}
  1070. minipass@3.3.6:
  1071. resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
  1072. engines: {node: '>=8'}
  1073. minipass@7.1.2:
  1074. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1075. engines: {node: '>=16 || 14 >=14.17'}
  1076. minizlib@3.0.1:
  1077. resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
  1078. engines: {node: '>= 18'}
  1079. mitata@1.0.10:
  1080. resolution: {integrity: sha512-pn21sHg5+AiTqj7z7aCeNlkEXMYhAykl1zbGqp1sbTJKRe8lhNokoyubLmvwbY5sWb8B+VDQByn3UyRmdBDQ1w==}
  1081. mkdirp-classic@0.5.3:
  1082. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1083. mkdirp@3.0.1:
  1084. resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
  1085. engines: {node: '>=10'}
  1086. hasBin: true
  1087. mnemonist@0.39.8:
  1088. resolution: {integrity: sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==}
  1089. mocha@10.7.3:
  1090. resolution: {integrity: sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==}
  1091. engines: {node: '>= 14.0.0'}
  1092. hasBin: true
  1093. ms@2.1.3:
  1094. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1095. napi-build-utils@1.0.2:
  1096. resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
  1097. natural-compare@1.4.0:
  1098. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1099. negotiator@0.6.3:
  1100. resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
  1101. engines: {node: '>= 0.6'}
  1102. node-abi@3.65.0:
  1103. resolution: {integrity: sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==}
  1104. engines: {node: '>=10'}
  1105. normalize-path@3.0.0:
  1106. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1107. engines: {node: '>=0.10.0'}
  1108. obliterator@2.0.4:
  1109. resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==}
  1110. once@1.4.0:
  1111. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1112. optionator@0.9.4:
  1113. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1114. engines: {node: '>= 0.8.0'}
  1115. oxc-resolver@1.10.2:
  1116. resolution: {integrity: sha512-NIbwVqoU8Bhl7PVtItHCg+VFFokIDwBgIgFUwFG2Y8ePhxftFh5xG+KLar5PLWXlCP4WunPIuXD3jr3v6/MfRw==}
  1117. p-limit@3.1.0:
  1118. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1119. engines: {node: '>=10'}
  1120. p-locate@5.0.0:
  1121. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1122. engines: {node: '>=10'}
  1123. p-map@7.0.2:
  1124. resolution: {integrity: sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==}
  1125. engines: {node: '>=18'}
  1126. package-json-from-dist@1.0.1:
  1127. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1128. parent-module@1.0.1:
  1129. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1130. engines: {node: '>=6'}
  1131. path-exists@4.0.0:
  1132. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1133. engines: {node: '>=8'}
  1134. path-key@3.1.1:
  1135. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1136. engines: {node: '>=8'}
  1137. path-parse@1.0.7:
  1138. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1139. path-scurry@1.11.1:
  1140. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1141. engines: {node: '>=16 || 14 >=14.18'}
  1142. pathval@1.1.1:
  1143. resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
  1144. picocolors@1.1.0:
  1145. resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
  1146. picomatch@2.3.1:
  1147. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1148. engines: {node: '>=8.6'}
  1149. picomatch@4.0.2:
  1150. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1151. engines: {node: '>=12'}
  1152. pirates@4.0.6:
  1153. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  1154. engines: {node: '>= 6'}
  1155. prebuild-install@7.1.2:
  1156. resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
  1157. engines: {node: '>=10'}
  1158. hasBin: true
  1159. prelude-ls@1.2.1:
  1160. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1161. engines: {node: '>= 0.8.0'}
  1162. proc-log@5.0.0:
  1163. resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
  1164. engines: {node: ^18.17.0 || >=20.5.0}
  1165. promise-retry@2.0.1:
  1166. resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
  1167. engines: {node: '>=10'}
  1168. pump@3.0.0:
  1169. resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
  1170. punycode@2.3.1:
  1171. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1172. engines: {node: '>=6'}
  1173. queue-microtask@1.2.3:
  1174. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1175. queue-tick@1.0.1:
  1176. resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
  1177. randombytes@2.1.0:
  1178. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1179. rc@1.2.8:
  1180. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1181. hasBin: true
  1182. readable-stream@3.6.2:
  1183. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1184. engines: {node: '>= 6'}
  1185. readdirp@3.6.0:
  1186. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1187. engines: {node: '>=8.10.0'}
  1188. refa@0.12.1:
  1189. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1190. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1191. regexp-ast-analysis@0.7.1:
  1192. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1193. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1194. require-directory@2.1.1:
  1195. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1196. engines: {node: '>=0.10.0'}
  1197. resolve-from@4.0.0:
  1198. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1199. engines: {node: '>=4'}
  1200. resolve-pkg-maps@1.0.0:
  1201. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1202. resolve@1.22.8:
  1203. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1204. hasBin: true
  1205. retry@0.12.0:
  1206. resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
  1207. engines: {node: '>= 4'}
  1208. retry@0.13.1:
  1209. resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
  1210. engines: {node: '>= 4'}
  1211. reusify@1.0.4:
  1212. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1213. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1214. rimraf@5.0.10:
  1215. resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
  1216. hasBin: true
  1217. run-parallel@1.2.0:
  1218. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1219. safe-buffer@5.2.1:
  1220. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1221. safer-buffer@2.1.2:
  1222. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  1223. scslre@0.3.0:
  1224. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1225. engines: {node: ^14.0.0 || >=16.0.0}
  1226. semver@7.6.3:
  1227. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  1228. engines: {node: '>=10'}
  1229. hasBin: true
  1230. serialize-javascript@6.0.2:
  1231. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1232. server-only@0.0.1:
  1233. resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
  1234. shebang-command@2.0.0:
  1235. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1236. engines: {node: '>=8'}
  1237. shebang-regex@3.0.0:
  1238. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1239. engines: {node: '>=8'}
  1240. signal-exit@4.1.0:
  1241. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1242. engines: {node: '>=14'}
  1243. simple-concat@1.0.1:
  1244. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1245. simple-get@4.0.1:
  1246. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1247. smart-buffer@4.2.0:
  1248. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  1249. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  1250. socks-proxy-agent@8.0.4:
  1251. resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==}
  1252. engines: {node: '>= 14'}
  1253. socks@2.8.3:
  1254. resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
  1255. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  1256. source-map-support@0.5.21:
  1257. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1258. source-map@0.6.1:
  1259. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1260. engines: {node: '>=0.10.0'}
  1261. sprintf-js@1.1.3:
  1262. resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
  1263. ssri@12.0.0:
  1264. resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
  1265. engines: {node: ^18.17.0 || >=20.5.0}
  1266. stable-hash@0.0.4:
  1267. resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
  1268. streamx@2.20.0:
  1269. resolution: {integrity: sha512-ZGd1LhDeGFucr1CUCTBOS58ZhEendd0ttpGT3usTvosS4ntIwKN9LJFp+OeCSprsCPL14BXVRZlHGRY1V9PVzQ==}
  1270. string-argv@0.3.2:
  1271. resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
  1272. engines: {node: '>=0.6.19'}
  1273. string-similarity@4.0.4:
  1274. resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
  1275. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1276. string-width@4.2.3:
  1277. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1278. engines: {node: '>=8'}
  1279. string-width@5.1.2:
  1280. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1281. engines: {node: '>=12'}
  1282. string_decoder@1.3.0:
  1283. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1284. strip-ansi@6.0.1:
  1285. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1286. engines: {node: '>=8'}
  1287. strip-ansi@7.1.0:
  1288. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1289. engines: {node: '>=12'}
  1290. strip-json-comments@2.0.1:
  1291. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1292. engines: {node: '>=0.10.0'}
  1293. strip-json-comments@3.1.1:
  1294. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1295. engines: {node: '>=8'}
  1296. supports-color@7.2.0:
  1297. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1298. engines: {node: '>=8'}
  1299. supports-color@8.1.1:
  1300. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1301. engines: {node: '>=10'}
  1302. supports-preserve-symlinks-flag@1.0.0:
  1303. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1304. engines: {node: '>= 0.4'}
  1305. synckit@0.6.2:
  1306. resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
  1307. engines: {node: '>=12.20'}
  1308. tapable@2.2.1:
  1309. resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
  1310. engines: {node: '>=6'}
  1311. tar-fs@2.1.1:
  1312. resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
  1313. tar-fs@3.0.6:
  1314. resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==}
  1315. tar-stream@2.2.0:
  1316. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1317. engines: {node: '>=6'}
  1318. tar-stream@3.1.7:
  1319. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1320. tar@7.4.3:
  1321. resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
  1322. engines: {node: '>=18'}
  1323. text-decoder@1.1.1:
  1324. resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==}
  1325. text-table@0.2.0:
  1326. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1327. tldts-core@6.1.50:
  1328. resolution: {integrity: sha512-na2EcZqmdA2iV9zHV7OHQDxxdciEpxrjbkp+aHmZgnZKHzoElLajP59np5/4+sare9fQBfixgvXKx8ev1d7ytw==}
  1329. tldts-experimental@6.1.50:
  1330. resolution: {integrity: sha512-11HJNqCCbZb6g3CuEOGmFxqia8Nx7sT97IOo4nC3VArbjh6pvgE2+onemkxSbeDSZIcpNFobRGOOIo1J8DSHgQ==}
  1331. tldts@6.1.50:
  1332. resolution: {integrity: sha512-q9GOap6q3KCsLMdOjXhWU5jVZ8/1dIib898JBRLsN+tBhENpBDcAVQbE0epADOjw11FhQQy9AcbqKGBQPUfTQA==}
  1333. hasBin: true
  1334. to-regex-range@5.0.1:
  1335. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1336. engines: {node: '>=8.0'}
  1337. ts-api-utils@1.3.0:
  1338. resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
  1339. engines: {node: '>=16'}
  1340. peerDependencies:
  1341. typescript: '>=4.2.0'
  1342. tslib@2.7.0:
  1343. resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
  1344. tunnel-agent@0.6.0:
  1345. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1346. type-check@0.4.0:
  1347. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1348. engines: {node: '>= 0.8.0'}
  1349. type-detect@4.0.8:
  1350. resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
  1351. engines: {node: '>=4'}
  1352. typescript-eslint@8.8.1:
  1353. resolution: {integrity: sha512-R0dsXFt6t4SAFjUSKFjMh4pXDtq04SsFKCVGDP3ZOzNP7itF0jBcZYU4fMsZr4y7O7V7Nc751dDeESbe4PbQMQ==}
  1354. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1355. peerDependencies:
  1356. typescript: '*'
  1357. peerDependenciesMeta:
  1358. typescript:
  1359. optional: true
  1360. typescript@5.6.3:
  1361. resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
  1362. engines: {node: '>=14.17'}
  1363. hasBin: true
  1364. undici-types@6.19.8:
  1365. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  1366. undici@6.20.0:
  1367. resolution: {integrity: sha512-AITZfPuxubm31Sx0vr8bteSalEbs9wQb/BOBi9FPlD9Qpd6HxZ4Q0+hI742jBhkPb4RT2v5MQzaW5VhRVyj+9A==}
  1368. engines: {node: '>=18.17'}
  1369. unique-filename@4.0.0:
  1370. resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
  1371. engines: {node: ^18.17.0 || >=20.5.0}
  1372. unique-slug@5.0.0:
  1373. resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
  1374. engines: {node: ^18.17.0 || >=20.5.0}
  1375. uri-js@4.4.1:
  1376. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1377. util-deprecate@1.0.2:
  1378. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1379. which@2.0.2:
  1380. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1381. engines: {node: '>= 8'}
  1382. hasBin: true
  1383. word-wrap@1.2.5:
  1384. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1385. engines: {node: '>=0.10.0'}
  1386. workerpool@6.5.1:
  1387. resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
  1388. wrap-ansi@7.0.0:
  1389. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1390. engines: {node: '>=10'}
  1391. wrap-ansi@8.1.0:
  1392. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1393. engines: {node: '>=12'}
  1394. wrappy@1.0.2:
  1395. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1396. wtfnode@0.9.3:
  1397. resolution: {integrity: sha512-MXjgxJovNVYUkD85JBZTKT5S5ng/e56sNuRZlid7HcGTNrIODa5UPtqE3i0daj7fJ2SGj5Um2VmiphQVyVKK5A==}
  1398. hasBin: true
  1399. y18n@5.0.8:
  1400. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1401. engines: {node: '>=10'}
  1402. yallist@4.0.0:
  1403. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  1404. yallist@5.0.0:
  1405. resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
  1406. engines: {node: '>=18'}
  1407. yaml@2.5.1:
  1408. resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
  1409. engines: {node: '>= 14'}
  1410. hasBin: true
  1411. yargs-parser@20.2.9:
  1412. resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
  1413. engines: {node: '>=10'}
  1414. yargs-unparser@2.0.0:
  1415. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1416. engines: {node: '>=10'}
  1417. yargs@16.2.0:
  1418. resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
  1419. engines: {node: '>=10'}
  1420. yocto-queue@0.1.0:
  1421. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1422. engines: {node: '>=10'}
  1423. snapshots:
  1424. '@antfu/utils@0.7.10': {}
  1425. '@cliqz/adblocker-content@1.33.2':
  1426. dependencies:
  1427. '@cliqz/adblocker-extended-selectors': 1.33.2
  1428. '@cliqz/adblocker-extended-selectors@1.33.2': {}
  1429. '@cliqz/adblocker@1.33.2':
  1430. dependencies:
  1431. '@cliqz/adblocker-content': 1.33.2
  1432. '@cliqz/adblocker-extended-selectors': 1.33.2
  1433. '@remusao/guess-url-type': 1.3.0
  1434. '@remusao/small': 1.3.0
  1435. '@remusao/smaz': 1.10.0
  1436. '@types/chrome': 0.0.270
  1437. '@types/firefox-webext-browser': 120.0.4
  1438. tldts-experimental: 6.1.50
  1439. '@colors/colors@1.5.0':
  1440. optional: true
  1441. '@dual-bundle/import-meta-resolve@4.1.0': {}
  1442. '@emnapi/core@1.2.0':
  1443. dependencies:
  1444. '@emnapi/wasi-threads': 1.0.1
  1445. tslib: 2.7.0
  1446. optional: true
  1447. '@emnapi/runtime@1.2.0':
  1448. dependencies:
  1449. tslib: 2.7.0
  1450. optional: true
  1451. '@emnapi/wasi-threads@1.0.1':
  1452. dependencies:
  1453. tslib: 2.7.0
  1454. optional: true
  1455. '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.12.0)':
  1456. dependencies:
  1457. escape-string-regexp: 4.0.0
  1458. eslint: 9.12.0
  1459. ignore: 5.3.2
  1460. '@eslint-community/eslint-utils@4.4.0(eslint@9.12.0)':
  1461. dependencies:
  1462. eslint: 9.12.0
  1463. eslint-visitor-keys: 3.4.3
  1464. '@eslint-community/regexpp@4.11.1': {}
  1465. '@eslint-sukka/node@6.7.0(eslint@9.12.0)(typescript@5.6.3)':
  1466. dependencies:
  1467. '@eslint-sukka/shared': 6.7.0(eslint@9.12.0)(typescript@5.6.3)
  1468. eslint-plugin-n: 17.11.1(eslint@9.12.0)
  1469. eslint-plugin-sukka: 6.7.0(eslint@9.12.0)(typescript@5.6.3)
  1470. transitivePeerDependencies:
  1471. - eslint
  1472. - supports-color
  1473. - typescript
  1474. '@eslint-sukka/shared@6.7.0(eslint@9.12.0)(typescript@5.6.3)':
  1475. dependencies:
  1476. '@dual-bundle/import-meta-resolve': 4.1.0
  1477. '@package-json/types': 0.0.11
  1478. '@types/eslint': 9.6.1
  1479. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  1480. transitivePeerDependencies:
  1481. - eslint
  1482. - supports-color
  1483. - typescript
  1484. '@eslint/config-array@0.18.0':
  1485. dependencies:
  1486. '@eslint/object-schema': 2.1.4
  1487. debug: 4.3.7(supports-color@8.1.1)
  1488. minimatch: 3.1.2
  1489. transitivePeerDependencies:
  1490. - supports-color
  1491. '@eslint/core@0.6.0': {}
  1492. '@eslint/eslintrc@3.1.0':
  1493. dependencies:
  1494. ajv: 6.12.6
  1495. debug: 4.3.7(supports-color@8.1.1)
  1496. espree: 10.2.0
  1497. globals: 14.0.0
  1498. ignore: 5.3.2
  1499. import-fresh: 3.3.0
  1500. js-yaml: 4.1.0
  1501. minimatch: 3.1.2
  1502. strip-json-comments: 3.1.1
  1503. transitivePeerDependencies:
  1504. - supports-color
  1505. '@eslint/js@9.12.0': {}
  1506. '@eslint/object-schema@2.1.4': {}
  1507. '@eslint/plugin-kit@0.2.0':
  1508. dependencies:
  1509. levn: 0.4.1
  1510. '@humanfs/core@0.19.0': {}
  1511. '@humanfs/node@0.16.5':
  1512. dependencies:
  1513. '@humanfs/core': 0.19.0
  1514. '@humanwhocodes/retry': 0.3.1
  1515. '@humanwhocodes/module-importer@1.0.1': {}
  1516. '@humanwhocodes/retry@0.3.1': {}
  1517. '@isaacs/cliui@8.0.2':
  1518. dependencies:
  1519. string-width: 5.1.2
  1520. string-width-cjs: string-width@4.2.3
  1521. strip-ansi: 7.1.0
  1522. strip-ansi-cjs: strip-ansi@6.0.1
  1523. wrap-ansi: 8.1.0
  1524. wrap-ansi-cjs: wrap-ansi@7.0.0
  1525. '@isaacs/fs-minipass@4.0.1':
  1526. dependencies:
  1527. minipass: 7.1.2
  1528. '@jsdevtools/ez-spawn@3.0.4':
  1529. dependencies:
  1530. call-me-maybe: 1.0.2
  1531. cross-spawn: 7.0.3
  1532. string-argv: 0.3.2
  1533. type-detect: 4.0.8
  1534. '@napi-rs/wasm-runtime@0.2.4':
  1535. dependencies:
  1536. '@emnapi/core': 1.2.0
  1537. '@emnapi/runtime': 1.2.0
  1538. '@tybys/wasm-util': 0.9.0
  1539. optional: true
  1540. '@nodelib/fs.scandir@2.1.5':
  1541. dependencies:
  1542. '@nodelib/fs.stat': 2.0.5
  1543. run-parallel: 1.2.0
  1544. '@nodelib/fs.stat@2.0.5': {}
  1545. '@nodelib/fs.walk@1.2.8':
  1546. dependencies:
  1547. '@nodelib/fs.scandir': 2.1.5
  1548. fastq: 1.17.1
  1549. '@npmcli/agent@3.0.0':
  1550. dependencies:
  1551. agent-base: 7.1.1
  1552. http-proxy-agent: 7.0.2
  1553. https-proxy-agent: 7.0.5
  1554. lru-cache: 10.4.3
  1555. socks-proxy-agent: 8.0.4
  1556. transitivePeerDependencies:
  1557. - supports-color
  1558. '@npmcli/fs@4.0.0':
  1559. dependencies:
  1560. semver: 7.6.3
  1561. '@oxc-resolver/binding-darwin-arm64@1.10.2':
  1562. optional: true
  1563. '@oxc-resolver/binding-darwin-x64@1.10.2':
  1564. optional: true
  1565. '@oxc-resolver/binding-freebsd-x64@1.10.2':
  1566. optional: true
  1567. '@oxc-resolver/binding-linux-arm-gnueabihf@1.10.2':
  1568. optional: true
  1569. '@oxc-resolver/binding-linux-arm64-gnu@1.10.2':
  1570. optional: true
  1571. '@oxc-resolver/binding-linux-arm64-musl@1.10.2':
  1572. optional: true
  1573. '@oxc-resolver/binding-linux-x64-gnu@1.10.2':
  1574. optional: true
  1575. '@oxc-resolver/binding-linux-x64-musl@1.10.2':
  1576. optional: true
  1577. '@oxc-resolver/binding-wasm32-wasi@1.10.2':
  1578. dependencies:
  1579. '@napi-rs/wasm-runtime': 0.2.4
  1580. optional: true
  1581. '@oxc-resolver/binding-win32-arm64-msvc@1.10.2':
  1582. optional: true
  1583. '@oxc-resolver/binding-win32-x64-msvc@1.10.2':
  1584. optional: true
  1585. '@package-json/types@0.0.11': {}
  1586. '@pkgjs/parseargs@0.11.0':
  1587. optional: true
  1588. '@remusao/guess-url-type@1.3.0': {}
  1589. '@remusao/small@1.3.0': {}
  1590. '@remusao/smaz-compress@1.10.0':
  1591. dependencies:
  1592. '@remusao/trie': 1.5.0
  1593. '@remusao/smaz-decompress@1.10.0': {}
  1594. '@remusao/smaz@1.10.0':
  1595. dependencies:
  1596. '@remusao/smaz-compress': 1.10.0
  1597. '@remusao/smaz-decompress': 1.10.0
  1598. '@remusao/trie@1.5.0': {}
  1599. '@stylistic/eslint-plugin-js@2.8.0(eslint@9.12.0)':
  1600. dependencies:
  1601. eslint: 9.12.0
  1602. eslint-visitor-keys: 4.1.0
  1603. espree: 10.2.0
  1604. '@stylistic/eslint-plugin-plus@2.8.0(eslint@9.12.0)':
  1605. dependencies:
  1606. eslint: 9.12.0
  1607. '@stylistic/eslint-plugin-ts@2.8.0(eslint@9.12.0)(typescript@5.6.3)':
  1608. dependencies:
  1609. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  1610. eslint: 9.12.0
  1611. eslint-visitor-keys: 4.1.0
  1612. espree: 10.2.0
  1613. transitivePeerDependencies:
  1614. - supports-color
  1615. - typescript
  1616. '@swc-node/core@1.13.3(@swc/core@1.7.35)(@swc/types@0.1.13)':
  1617. dependencies:
  1618. '@swc/core': 1.7.35
  1619. '@swc/types': 0.1.13
  1620. '@swc-node/register@1.10.9(@swc/core@1.7.35)(@swc/types@0.1.13)(typescript@5.6.3)':
  1621. dependencies:
  1622. '@swc-node/core': 1.13.3(@swc/core@1.7.35)(@swc/types@0.1.13)
  1623. '@swc-node/sourcemap-support': 0.5.1
  1624. '@swc/core': 1.7.35
  1625. colorette: 2.0.20
  1626. debug: 4.3.7(supports-color@8.1.1)
  1627. oxc-resolver: 1.10.2
  1628. pirates: 4.0.6
  1629. tslib: 2.7.0
  1630. typescript: 5.6.3
  1631. transitivePeerDependencies:
  1632. - '@swc/types'
  1633. - supports-color
  1634. '@swc-node/sourcemap-support@0.5.1':
  1635. dependencies:
  1636. source-map-support: 0.5.21
  1637. tslib: 2.7.0
  1638. '@swc/core-darwin-arm64@1.7.35':
  1639. optional: true
  1640. '@swc/core-darwin-x64@1.7.35':
  1641. optional: true
  1642. '@swc/core-linux-arm-gnueabihf@1.7.35':
  1643. optional: true
  1644. '@swc/core-linux-arm64-gnu@1.7.35':
  1645. optional: true
  1646. '@swc/core-linux-arm64-musl@1.7.35':
  1647. optional: true
  1648. '@swc/core-linux-x64-gnu@1.7.35':
  1649. optional: true
  1650. '@swc/core-linux-x64-musl@1.7.35':
  1651. optional: true
  1652. '@swc/core-win32-arm64-msvc@1.7.35':
  1653. optional: true
  1654. '@swc/core-win32-ia32-msvc@1.7.35':
  1655. optional: true
  1656. '@swc/core-win32-x64-msvc@1.7.35':
  1657. optional: true
  1658. '@swc/core@1.7.35':
  1659. dependencies:
  1660. '@swc/counter': 0.1.3
  1661. '@swc/types': 0.1.13
  1662. optionalDependencies:
  1663. '@swc/core-darwin-arm64': 1.7.35
  1664. '@swc/core-darwin-x64': 1.7.35
  1665. '@swc/core-linux-arm-gnueabihf': 1.7.35
  1666. '@swc/core-linux-arm64-gnu': 1.7.35
  1667. '@swc/core-linux-arm64-musl': 1.7.35
  1668. '@swc/core-linux-x64-gnu': 1.7.35
  1669. '@swc/core-linux-x64-musl': 1.7.35
  1670. '@swc/core-win32-arm64-msvc': 1.7.35
  1671. '@swc/core-win32-ia32-msvc': 1.7.35
  1672. '@swc/core-win32-x64-msvc': 1.7.35
  1673. '@swc/counter@0.1.3': {}
  1674. '@swc/types@0.1.13':
  1675. dependencies:
  1676. '@swc/counter': 0.1.3
  1677. '@tybys/wasm-util@0.9.0':
  1678. dependencies:
  1679. tslib: 2.7.0
  1680. optional: true
  1681. '@types/async-retry@1.4.9':
  1682. dependencies:
  1683. '@types/retry': 0.12.5
  1684. '@types/better-sqlite3@7.6.11':
  1685. dependencies:
  1686. '@types/node': 22.7.5
  1687. '@types/chai@4.3.20': {}
  1688. '@types/chrome@0.0.270':
  1689. dependencies:
  1690. '@types/filesystem': 0.0.36
  1691. '@types/har-format': 1.2.15
  1692. '@types/eslint@9.6.1':
  1693. dependencies:
  1694. '@types/estree': 1.0.6
  1695. '@types/json-schema': 7.0.15
  1696. '@types/estree@1.0.6': {}
  1697. '@types/filesystem@0.0.36':
  1698. dependencies:
  1699. '@types/filewriter': 0.0.33
  1700. '@types/filewriter@0.0.33': {}
  1701. '@types/firefox-webext-browser@120.0.4': {}
  1702. '@types/har-format@1.2.15': {}
  1703. '@types/json-schema@7.0.15': {}
  1704. '@types/make-fetch-happen@10.0.4':
  1705. dependencies:
  1706. '@types/node-fetch': 2.6.11
  1707. '@types/retry': 0.12.5
  1708. '@types/ssri': 7.1.5
  1709. '@types/mocha@10.0.9': {}
  1710. '@types/node-fetch@2.6.11':
  1711. dependencies:
  1712. '@types/node': 22.7.5
  1713. form-data: 4.0.1
  1714. '@types/node@22.7.5':
  1715. dependencies:
  1716. undici-types: 6.19.8
  1717. '@types/punycode@2.1.4': {}
  1718. '@types/retry@0.12.5': {}
  1719. '@types/ssri@7.1.5':
  1720. dependencies:
  1721. '@types/node': 22.7.5
  1722. '@types/tar-fs@2.0.4':
  1723. dependencies:
  1724. '@types/node': 22.7.5
  1725. '@types/tar-stream': 3.1.3
  1726. '@types/tar-stream@3.1.3':
  1727. dependencies:
  1728. '@types/node': 22.7.5
  1729. '@types/wtfnode@0.7.3': {}
  1730. '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3)':
  1731. dependencies:
  1732. '@eslint-community/regexpp': 4.11.1
  1733. '@typescript-eslint/parser': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  1734. '@typescript-eslint/scope-manager': 8.8.1
  1735. '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  1736. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  1737. '@typescript-eslint/visitor-keys': 8.8.1
  1738. eslint: 9.12.0
  1739. graphemer: 1.4.0
  1740. ignore: 5.3.2
  1741. natural-compare: 1.4.0
  1742. ts-api-utils: 1.3.0(typescript@5.6.3)
  1743. optionalDependencies:
  1744. typescript: 5.6.3
  1745. transitivePeerDependencies:
  1746. - supports-color
  1747. '@typescript-eslint/parser@8.7.0(eslint@9.12.0)(typescript@5.6.3)':
  1748. dependencies:
  1749. '@typescript-eslint/scope-manager': 8.7.0
  1750. '@typescript-eslint/types': 8.7.0
  1751. '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.3)
  1752. '@typescript-eslint/visitor-keys': 8.7.0
  1753. debug: 4.3.7(supports-color@8.1.1)
  1754. eslint: 9.12.0
  1755. optionalDependencies:
  1756. typescript: 5.6.3
  1757. transitivePeerDependencies:
  1758. - supports-color
  1759. '@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3)':
  1760. dependencies:
  1761. '@typescript-eslint/scope-manager': 8.8.1
  1762. '@typescript-eslint/types': 8.8.1
  1763. '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
  1764. '@typescript-eslint/visitor-keys': 8.8.1
  1765. debug: 4.3.7(supports-color@8.1.1)
  1766. eslint: 9.12.0
  1767. optionalDependencies:
  1768. typescript: 5.6.3
  1769. transitivePeerDependencies:
  1770. - supports-color
  1771. '@typescript-eslint/scope-manager@8.7.0':
  1772. dependencies:
  1773. '@typescript-eslint/types': 8.7.0
  1774. '@typescript-eslint/visitor-keys': 8.7.0
  1775. '@typescript-eslint/scope-manager@8.8.1':
  1776. dependencies:
  1777. '@typescript-eslint/types': 8.8.1
  1778. '@typescript-eslint/visitor-keys': 8.8.1
  1779. '@typescript-eslint/type-utils@8.8.1(eslint@9.12.0)(typescript@5.6.3)':
  1780. dependencies:
  1781. '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
  1782. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  1783. debug: 4.3.7(supports-color@8.1.1)
  1784. ts-api-utils: 1.3.0(typescript@5.6.3)
  1785. optionalDependencies:
  1786. typescript: 5.6.3
  1787. transitivePeerDependencies:
  1788. - eslint
  1789. - supports-color
  1790. '@typescript-eslint/types@8.7.0': {}
  1791. '@typescript-eslint/types@8.8.1': {}
  1792. '@typescript-eslint/typescript-estree@8.7.0(typescript@5.6.3)':
  1793. dependencies:
  1794. '@typescript-eslint/types': 8.7.0
  1795. '@typescript-eslint/visitor-keys': 8.7.0
  1796. debug: 4.3.7(supports-color@8.1.1)
  1797. fast-glob: 3.3.2
  1798. is-glob: 4.0.3
  1799. minimatch: 9.0.5
  1800. semver: 7.6.3
  1801. ts-api-utils: 1.3.0(typescript@5.6.3)
  1802. optionalDependencies:
  1803. typescript: 5.6.3
  1804. transitivePeerDependencies:
  1805. - supports-color
  1806. '@typescript-eslint/typescript-estree@8.8.1(typescript@5.6.3)':
  1807. dependencies:
  1808. '@typescript-eslint/types': 8.8.1
  1809. '@typescript-eslint/visitor-keys': 8.8.1
  1810. debug: 4.3.7(supports-color@8.1.1)
  1811. fast-glob: 3.3.2
  1812. is-glob: 4.0.3
  1813. minimatch: 9.0.5
  1814. semver: 7.6.3
  1815. ts-api-utils: 1.3.0(typescript@5.6.3)
  1816. optionalDependencies:
  1817. typescript: 5.6.3
  1818. transitivePeerDependencies:
  1819. - supports-color
  1820. '@typescript-eslint/utils@8.8.1(eslint@9.12.0)(typescript@5.6.3)':
  1821. dependencies:
  1822. '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0)
  1823. '@typescript-eslint/scope-manager': 8.8.1
  1824. '@typescript-eslint/types': 8.8.1
  1825. '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
  1826. eslint: 9.12.0
  1827. transitivePeerDependencies:
  1828. - supports-color
  1829. - typescript
  1830. '@typescript-eslint/visitor-keys@8.7.0':
  1831. dependencies:
  1832. '@typescript-eslint/types': 8.7.0
  1833. eslint-visitor-keys: 3.4.3
  1834. '@typescript-eslint/visitor-keys@8.8.1':
  1835. dependencies:
  1836. '@typescript-eslint/types': 8.8.1
  1837. eslint-visitor-keys: 3.4.3
  1838. acorn-jsx@5.3.2(acorn@8.12.1):
  1839. dependencies:
  1840. acorn: 8.12.1
  1841. acorn@8.12.1: {}
  1842. agent-base@7.1.1:
  1843. dependencies:
  1844. debug: 4.3.7(supports-color@8.1.1)
  1845. transitivePeerDependencies:
  1846. - supports-color
  1847. ajv@6.12.6:
  1848. dependencies:
  1849. fast-deep-equal: 3.1.3
  1850. fast-json-stable-stringify: 2.1.0
  1851. json-schema-traverse: 0.4.1
  1852. uri-js: 4.4.1
  1853. ansi-colors@4.1.3: {}
  1854. ansi-regex@5.0.1: {}
  1855. ansi-regex@6.1.0: {}
  1856. ansi-styles@4.3.0:
  1857. dependencies:
  1858. color-convert: 2.0.1
  1859. ansi-styles@6.2.1: {}
  1860. anymatch@3.1.3:
  1861. dependencies:
  1862. normalize-path: 3.0.0
  1863. picomatch: 2.3.1
  1864. argparse@2.0.1: {}
  1865. assertion-error@1.1.0: {}
  1866. async-retry@1.3.3:
  1867. dependencies:
  1868. retry: 0.13.1
  1869. async-sema@3.1.1: {}
  1870. asynckit@0.4.0: {}
  1871. b4a@1.6.6: {}
  1872. balanced-match@1.0.2: {}
  1873. bare-events@2.4.2:
  1874. optional: true
  1875. bare-fs@2.3.3:
  1876. dependencies:
  1877. bare-events: 2.4.2
  1878. bare-path: 2.1.3
  1879. bare-stream: 2.2.1
  1880. optional: true
  1881. bare-os@2.4.2:
  1882. optional: true
  1883. bare-path@2.1.3:
  1884. dependencies:
  1885. bare-os: 2.4.2
  1886. optional: true
  1887. bare-stream@2.2.1:
  1888. dependencies:
  1889. b4a: 1.6.6
  1890. streamx: 2.20.0
  1891. optional: true
  1892. base64-js@1.5.1: {}
  1893. better-sqlite3@11.3.0:
  1894. dependencies:
  1895. bindings: 1.5.0
  1896. prebuild-install: 7.1.2
  1897. binary-extensions@2.3.0: {}
  1898. bindings@1.5.0:
  1899. dependencies:
  1900. file-uri-to-path: 1.0.0
  1901. bl@4.1.0:
  1902. dependencies:
  1903. buffer: 5.7.1
  1904. inherits: 2.0.4
  1905. readable-stream: 3.6.2
  1906. brace-expansion@1.1.11:
  1907. dependencies:
  1908. balanced-match: 1.0.2
  1909. concat-map: 0.0.1
  1910. brace-expansion@2.0.1:
  1911. dependencies:
  1912. balanced-match: 1.0.2
  1913. braces@3.0.3:
  1914. dependencies:
  1915. fill-range: 7.1.1
  1916. browser-stdout@1.3.1: {}
  1917. buffer-from@1.1.2: {}
  1918. buffer@5.7.1:
  1919. dependencies:
  1920. base64-js: 1.5.1
  1921. ieee754: 1.2.1
  1922. cacache@19.0.1:
  1923. dependencies:
  1924. '@npmcli/fs': 4.0.0
  1925. fs-minipass: 3.0.3
  1926. glob: 10.4.5
  1927. lru-cache: 10.4.3
  1928. minipass: 7.1.2
  1929. minipass-collect: 2.0.1
  1930. minipass-flush: 1.0.5
  1931. minipass-pipeline: 1.2.4
  1932. p-map: 7.0.2
  1933. ssri: 12.0.0
  1934. tar: 7.4.3
  1935. unique-filename: 4.0.0
  1936. cacheable-lookup@6.1.0: {}
  1937. call-me-maybe@1.0.2: {}
  1938. callsites@3.1.0: {}
  1939. camelcase@6.3.0: {}
  1940. chai@4.4.1:
  1941. dependencies:
  1942. assertion-error: 1.1.0
  1943. check-error: 1.0.3
  1944. deep-eql: 4.1.4
  1945. get-func-name: 2.0.2
  1946. loupe: 2.3.7
  1947. pathval: 1.1.1
  1948. type-detect: 4.0.8
  1949. chalk@4.1.2:
  1950. dependencies:
  1951. ansi-styles: 4.3.0
  1952. supports-color: 7.2.0
  1953. check-error@1.0.3:
  1954. dependencies:
  1955. get-func-name: 2.0.2
  1956. chokidar@3.6.0:
  1957. dependencies:
  1958. anymatch: 3.1.3
  1959. braces: 3.0.3
  1960. glob-parent: 5.1.2
  1961. is-binary-path: 2.1.0
  1962. is-glob: 4.0.3
  1963. normalize-path: 3.0.0
  1964. readdirp: 3.6.0
  1965. optionalDependencies:
  1966. fsevents: 2.3.3
  1967. chownr@1.1.4: {}
  1968. chownr@3.0.0: {}
  1969. ci-info@4.0.0: {}
  1970. cli-table3@0.6.5:
  1971. dependencies:
  1972. string-width: 4.2.3
  1973. optionalDependencies:
  1974. '@colors/colors': 1.5.0
  1975. client-only@0.0.1: {}
  1976. cliui@7.0.4:
  1977. dependencies:
  1978. string-width: 4.2.3
  1979. strip-ansi: 6.0.1
  1980. wrap-ansi: 7.0.0
  1981. color-convert@2.0.1:
  1982. dependencies:
  1983. color-name: 1.1.4
  1984. color-name@1.1.4: {}
  1985. colorette@2.0.20: {}
  1986. combined-stream@1.0.8:
  1987. dependencies:
  1988. delayed-stream: 1.0.0
  1989. comment-parser@1.4.1: {}
  1990. concat-map@0.0.1: {}
  1991. cross-spawn@7.0.3:
  1992. dependencies:
  1993. path-key: 3.1.1
  1994. shebang-command: 2.0.0
  1995. which: 2.0.2
  1996. csv-parse@5.5.6: {}
  1997. debug@3.2.7:
  1998. dependencies:
  1999. ms: 2.1.3
  2000. debug@4.3.7(supports-color@8.1.1):
  2001. dependencies:
  2002. ms: 2.1.3
  2003. optionalDependencies:
  2004. supports-color: 8.1.1
  2005. decamelize@4.0.0: {}
  2006. decompress-response@6.0.0:
  2007. dependencies:
  2008. mimic-response: 3.1.0
  2009. deep-eql@4.1.4:
  2010. dependencies:
  2011. type-detect: 4.0.8
  2012. deep-extend@0.6.0: {}
  2013. deep-is@0.1.4: {}
  2014. defu@6.1.4: {}
  2015. delayed-stream@1.0.0: {}
  2016. detect-libc@2.0.3: {}
  2017. diff@5.2.0: {}
  2018. doctrine@3.0.0:
  2019. dependencies:
  2020. esutils: 2.0.3
  2021. eastasianwidth@0.2.0: {}
  2022. emoji-regex@8.0.0: {}
  2023. emoji-regex@9.2.2: {}
  2024. encoding@0.1.13:
  2025. dependencies:
  2026. iconv-lite: 0.6.3
  2027. optional: true
  2028. end-of-stream@1.4.4:
  2029. dependencies:
  2030. once: 1.4.0
  2031. enhanced-resolve@5.17.1:
  2032. dependencies:
  2033. graceful-fs: 4.2.11
  2034. tapable: 2.2.1
  2035. err-code@2.0.3: {}
  2036. escalade@3.1.2: {}
  2037. escape-string-regexp@4.0.0: {}
  2038. eslint-compat-utils@0.5.1(eslint@9.12.0):
  2039. dependencies:
  2040. eslint: 9.12.0
  2041. semver: 7.6.3
  2042. eslint-config-sukka@6.7.0(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3):
  2043. dependencies:
  2044. '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.12.0)
  2045. '@eslint-sukka/shared': 6.7.0(eslint@9.12.0)(typescript@5.6.3)
  2046. '@eslint/js': 9.12.0
  2047. '@stylistic/eslint-plugin-js': 2.8.0(eslint@9.12.0)
  2048. '@stylistic/eslint-plugin-plus': 2.8.0(eslint@9.12.0)
  2049. '@stylistic/eslint-plugin-ts': 2.8.0(eslint@9.12.0)(typescript@5.6.3)
  2050. '@typescript-eslint/parser': 8.7.0(eslint@9.12.0)(typescript@5.6.3)
  2051. ci-info: 4.0.0
  2052. defu: 6.1.4
  2053. eslint-import-resolver-ts-bundled: 6.7.0
  2054. eslint-plugin-antfu: 2.7.0(eslint@9.12.0)
  2055. eslint-plugin-autofix: 2.2.0(eslint@9.12.0)
  2056. eslint-plugin-import-x: 4.3.1(eslint@9.12.0)(typescript@5.6.3)
  2057. eslint-plugin-jsonc: 2.16.0(eslint@9.12.0)
  2058. eslint-plugin-promise: 7.1.0(eslint@9.12.0)
  2059. eslint-plugin-regexp: 2.6.0(eslint@9.12.0)
  2060. eslint-plugin-sukka: 6.7.0(eslint@9.12.0)(typescript@5.6.3)
  2061. eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)
  2062. jsonc-eslint-parser: 2.4.0
  2063. picocolors: 1.1.0
  2064. typescript-eslint: 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  2065. transitivePeerDependencies:
  2066. - '@typescript-eslint/eslint-plugin'
  2067. - eslint
  2068. - supports-color
  2069. - typescript
  2070. eslint-formatter-sukka@6.7.0:
  2071. dependencies:
  2072. ci-info: 4.0.0
  2073. picocolors: 1.1.0
  2074. eslint-import-resolver-node@0.3.9:
  2075. dependencies:
  2076. debug: 3.2.7
  2077. is-core-module: 2.15.1
  2078. resolve: 1.22.8
  2079. transitivePeerDependencies:
  2080. - supports-color
  2081. eslint-import-resolver-ts-bundled@6.7.0:
  2082. dependencies:
  2083. enhanced-resolve: 5.17.1
  2084. eslint-plugin-antfu@2.7.0(eslint@9.12.0):
  2085. dependencies:
  2086. '@antfu/utils': 0.7.10
  2087. eslint: 9.12.0
  2088. eslint-plugin-autofix@2.2.0(eslint@9.12.0):
  2089. dependencies:
  2090. eslint: 9.12.0
  2091. eslint-rule-composer: 0.3.0
  2092. espree: 9.6.1
  2093. esutils: 2.0.3
  2094. string-similarity: 4.0.4
  2095. eslint-plugin-es-x@7.8.0(eslint@9.12.0):
  2096. dependencies:
  2097. '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0)
  2098. '@eslint-community/regexpp': 4.11.1
  2099. eslint: 9.12.0
  2100. eslint-compat-utils: 0.5.1(eslint@9.12.0)
  2101. eslint-plugin-import-x@4.3.1(eslint@9.12.0)(typescript@5.6.3):
  2102. dependencies:
  2103. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  2104. debug: 4.3.7(supports-color@8.1.1)
  2105. doctrine: 3.0.0
  2106. eslint: 9.12.0
  2107. eslint-import-resolver-node: 0.3.9
  2108. get-tsconfig: 4.8.1
  2109. is-glob: 4.0.3
  2110. minimatch: 9.0.5
  2111. semver: 7.6.3
  2112. stable-hash: 0.0.4
  2113. tslib: 2.7.0
  2114. transitivePeerDependencies:
  2115. - supports-color
  2116. - typescript
  2117. eslint-plugin-jsonc@2.16.0(eslint@9.12.0):
  2118. dependencies:
  2119. '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0)
  2120. eslint: 9.12.0
  2121. eslint-compat-utils: 0.5.1(eslint@9.12.0)
  2122. espree: 9.6.1
  2123. graphemer: 1.4.0
  2124. jsonc-eslint-parser: 2.4.0
  2125. natural-compare: 1.4.0
  2126. synckit: 0.6.2
  2127. eslint-plugin-n@17.11.1(eslint@9.12.0):
  2128. dependencies:
  2129. '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0)
  2130. enhanced-resolve: 5.17.1
  2131. eslint: 9.12.0
  2132. eslint-plugin-es-x: 7.8.0(eslint@9.12.0)
  2133. get-tsconfig: 4.8.1
  2134. globals: 15.11.0
  2135. ignore: 5.3.2
  2136. minimatch: 9.0.5
  2137. semver: 7.6.3
  2138. eslint-plugin-promise@7.1.0(eslint@9.12.0):
  2139. dependencies:
  2140. eslint: 9.12.0
  2141. eslint-plugin-regexp@2.6.0(eslint@9.12.0):
  2142. dependencies:
  2143. '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0)
  2144. '@eslint-community/regexpp': 4.11.1
  2145. comment-parser: 1.4.1
  2146. eslint: 9.12.0
  2147. jsdoc-type-pratt-parser: 4.1.0
  2148. refa: 0.12.1
  2149. regexp-ast-analysis: 0.7.1
  2150. scslre: 0.3.0
  2151. eslint-plugin-sukka@6.7.0(eslint@9.12.0)(typescript@5.6.3):
  2152. dependencies:
  2153. '@eslint-sukka/shared': 6.7.0(eslint@9.12.0)(typescript@5.6.3)
  2154. '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  2155. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  2156. optionalDependencies:
  2157. typescript: 5.6.3
  2158. transitivePeerDependencies:
  2159. - eslint
  2160. - supports-color
  2161. eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0):
  2162. dependencies:
  2163. eslint: 9.12.0
  2164. optionalDependencies:
  2165. '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3)
  2166. eslint-rule-composer@0.3.0: {}
  2167. eslint-scope@8.1.0:
  2168. dependencies:
  2169. esrecurse: 4.3.0
  2170. estraverse: 5.3.0
  2171. eslint-visitor-keys@3.4.3: {}
  2172. eslint-visitor-keys@4.1.0: {}
  2173. eslint@9.12.0:
  2174. dependencies:
  2175. '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0)
  2176. '@eslint-community/regexpp': 4.11.1
  2177. '@eslint/config-array': 0.18.0
  2178. '@eslint/core': 0.6.0
  2179. '@eslint/eslintrc': 3.1.0
  2180. '@eslint/js': 9.12.0
  2181. '@eslint/plugin-kit': 0.2.0
  2182. '@humanfs/node': 0.16.5
  2183. '@humanwhocodes/module-importer': 1.0.1
  2184. '@humanwhocodes/retry': 0.3.1
  2185. '@types/estree': 1.0.6
  2186. '@types/json-schema': 7.0.15
  2187. ajv: 6.12.6
  2188. chalk: 4.1.2
  2189. cross-spawn: 7.0.3
  2190. debug: 4.3.7(supports-color@8.1.1)
  2191. escape-string-regexp: 4.0.0
  2192. eslint-scope: 8.1.0
  2193. eslint-visitor-keys: 4.1.0
  2194. espree: 10.2.0
  2195. esquery: 1.6.0
  2196. esutils: 2.0.3
  2197. fast-deep-equal: 3.1.3
  2198. file-entry-cache: 8.0.0
  2199. find-up: 5.0.0
  2200. glob-parent: 6.0.2
  2201. ignore: 5.3.2
  2202. imurmurhash: 0.1.4
  2203. is-glob: 4.0.3
  2204. json-stable-stringify-without-jsonify: 1.0.1
  2205. lodash.merge: 4.6.2
  2206. minimatch: 3.1.2
  2207. natural-compare: 1.4.0
  2208. optionator: 0.9.4
  2209. text-table: 0.2.0
  2210. transitivePeerDependencies:
  2211. - supports-color
  2212. espree@10.2.0:
  2213. dependencies:
  2214. acorn: 8.12.1
  2215. acorn-jsx: 5.3.2(acorn@8.12.1)
  2216. eslint-visitor-keys: 4.1.0
  2217. espree@9.6.1:
  2218. dependencies:
  2219. acorn: 8.12.1
  2220. acorn-jsx: 5.3.2(acorn@8.12.1)
  2221. eslint-visitor-keys: 3.4.3
  2222. esquery@1.6.0:
  2223. dependencies:
  2224. estraverse: 5.3.0
  2225. esrecurse@4.3.0:
  2226. dependencies:
  2227. estraverse: 5.3.0
  2228. estraverse@5.3.0: {}
  2229. esutils@2.0.3: {}
  2230. expand-template@2.0.3: {}
  2231. fast-cidr-tools@0.3.1: {}
  2232. fast-deep-equal@3.1.3: {}
  2233. fast-fifo@1.3.2: {}
  2234. fast-glob@3.3.2:
  2235. dependencies:
  2236. '@nodelib/fs.stat': 2.0.5
  2237. '@nodelib/fs.walk': 1.2.8
  2238. glob-parent: 5.1.2
  2239. merge2: 1.4.1
  2240. micromatch: 4.0.8
  2241. fast-json-stable-stringify@2.1.0: {}
  2242. fast-levenshtein@2.0.6: {}
  2243. fastq@1.17.1:
  2244. dependencies:
  2245. reusify: 1.0.4
  2246. fdir@6.4.0(picomatch@4.0.2):
  2247. optionalDependencies:
  2248. picomatch: 4.0.2
  2249. file-entry-cache@8.0.0:
  2250. dependencies:
  2251. flat-cache: 4.0.1
  2252. file-uri-to-path@1.0.0: {}
  2253. fill-range@7.1.1:
  2254. dependencies:
  2255. to-regex-range: 5.0.1
  2256. find-up@5.0.0:
  2257. dependencies:
  2258. locate-path: 6.0.0
  2259. path-exists: 4.0.0
  2260. flat-cache@4.0.1:
  2261. dependencies:
  2262. flatted: 3.3.1
  2263. keyv: 4.5.4
  2264. flat@5.0.2: {}
  2265. flatted@3.3.1: {}
  2266. foreground-child@3.3.0:
  2267. dependencies:
  2268. cross-spawn: 7.0.3
  2269. signal-exit: 4.1.0
  2270. form-data@4.0.1:
  2271. dependencies:
  2272. asynckit: 0.4.0
  2273. combined-stream: 1.0.8
  2274. mime-types: 2.1.35
  2275. foxact@0.2.38:
  2276. dependencies:
  2277. client-only: 0.0.1
  2278. server-only: 0.0.1
  2279. fs-constants@1.0.0: {}
  2280. fs-minipass@3.0.3:
  2281. dependencies:
  2282. minipass: 7.1.2
  2283. fs.realpath@1.0.0: {}
  2284. fsevents@2.3.3:
  2285. optional: true
  2286. function-bind@1.1.2: {}
  2287. get-caller-file@2.0.5: {}
  2288. get-func-name@2.0.2: {}
  2289. get-tsconfig@4.8.1:
  2290. dependencies:
  2291. resolve-pkg-maps: 1.0.0
  2292. github-from-package@0.0.0: {}
  2293. glob-parent@5.1.2:
  2294. dependencies:
  2295. is-glob: 4.0.3
  2296. glob-parent@6.0.2:
  2297. dependencies:
  2298. is-glob: 4.0.3
  2299. glob@10.4.5:
  2300. dependencies:
  2301. foreground-child: 3.3.0
  2302. jackspeak: 3.4.3
  2303. minimatch: 9.0.5
  2304. minipass: 7.1.2
  2305. package-json-from-dist: 1.0.1
  2306. path-scurry: 1.11.1
  2307. glob@8.1.0:
  2308. dependencies:
  2309. fs.realpath: 1.0.0
  2310. inflight: 1.0.6
  2311. inherits: 2.0.4
  2312. minimatch: 5.1.6
  2313. once: 1.4.0
  2314. globals@14.0.0: {}
  2315. globals@15.11.0: {}
  2316. graceful-fs@4.2.11: {}
  2317. graphemer@1.4.0: {}
  2318. has-flag@4.0.0: {}
  2319. hash-wasm@4.11.0: {}
  2320. hasown@2.0.2:
  2321. dependencies:
  2322. function-bind: 1.1.2
  2323. he@1.2.0: {}
  2324. http-cache-semantics@4.1.1: {}
  2325. http-proxy-agent@7.0.2:
  2326. dependencies:
  2327. agent-base: 7.1.1
  2328. debug: 4.3.7(supports-color@8.1.1)
  2329. transitivePeerDependencies:
  2330. - supports-color
  2331. https-proxy-agent@7.0.5:
  2332. dependencies:
  2333. agent-base: 7.1.1
  2334. debug: 4.3.7(supports-color@8.1.1)
  2335. transitivePeerDependencies:
  2336. - supports-color
  2337. iconv-lite@0.6.3:
  2338. dependencies:
  2339. safer-buffer: 2.1.2
  2340. optional: true
  2341. ieee754@1.2.1: {}
  2342. ignore@5.3.2: {}
  2343. import-fresh@3.3.0:
  2344. dependencies:
  2345. parent-module: 1.0.1
  2346. resolve-from: 4.0.0
  2347. imurmurhash@0.1.4: {}
  2348. inflight@1.0.6:
  2349. dependencies:
  2350. once: 1.4.0
  2351. wrappy: 1.0.2
  2352. inherits@2.0.4: {}
  2353. ini@1.3.8: {}
  2354. ip-address@9.0.5:
  2355. dependencies:
  2356. jsbn: 1.1.0
  2357. sprintf-js: 1.1.3
  2358. is-binary-path@2.1.0:
  2359. dependencies:
  2360. binary-extensions: 2.3.0
  2361. is-core-module@2.15.1:
  2362. dependencies:
  2363. hasown: 2.0.2
  2364. is-extglob@2.1.1: {}
  2365. is-fullwidth-code-point@3.0.0: {}
  2366. is-glob@4.0.3:
  2367. dependencies:
  2368. is-extglob: 2.1.1
  2369. is-number@7.0.0: {}
  2370. is-plain-obj@2.1.0: {}
  2371. is-unicode-supported@0.1.0: {}
  2372. isexe@2.0.0: {}
  2373. jackspeak@3.4.3:
  2374. dependencies:
  2375. '@isaacs/cliui': 8.0.2
  2376. optionalDependencies:
  2377. '@pkgjs/parseargs': 0.11.0
  2378. js-yaml@4.1.0:
  2379. dependencies:
  2380. argparse: 2.0.1
  2381. jsbn@1.1.0: {}
  2382. jsdoc-type-pratt-parser@4.1.0: {}
  2383. json-buffer@3.0.1: {}
  2384. json-schema-traverse@0.4.1: {}
  2385. json-stable-stringify-without-jsonify@1.0.1: {}
  2386. json-stringify-pretty-compact@3.0.0: {}
  2387. jsonc-eslint-parser@2.4.0:
  2388. dependencies:
  2389. acorn: 8.12.1
  2390. eslint-visitor-keys: 3.4.3
  2391. espree: 9.6.1
  2392. semver: 7.6.3
  2393. keyv@4.5.4:
  2394. dependencies:
  2395. json-buffer: 3.0.1
  2396. levn@0.4.1:
  2397. dependencies:
  2398. prelude-ls: 1.2.1
  2399. type-check: 0.4.0
  2400. locate-path@6.0.0:
  2401. dependencies:
  2402. p-locate: 5.0.0
  2403. lodash.merge@4.6.2: {}
  2404. log-symbols@4.1.0:
  2405. dependencies:
  2406. chalk: 4.1.2
  2407. is-unicode-supported: 0.1.0
  2408. loupe@2.3.7:
  2409. dependencies:
  2410. get-func-name: 2.0.2
  2411. lru-cache@10.4.3: {}
  2412. make-fetch-happen@14.0.1:
  2413. dependencies:
  2414. '@npmcli/agent': 3.0.0
  2415. cacache: 19.0.1
  2416. http-cache-semantics: 4.1.1
  2417. minipass: 7.1.2
  2418. minipass-fetch: 4.0.0
  2419. minipass-flush: 1.0.5
  2420. minipass-pipeline: 1.2.4
  2421. negotiator: 0.6.3
  2422. proc-log: 5.0.0
  2423. promise-retry: 2.0.1
  2424. ssri: 12.0.0
  2425. transitivePeerDependencies:
  2426. - supports-color
  2427. merge2@1.4.1: {}
  2428. micromatch@4.0.8:
  2429. dependencies:
  2430. braces: 3.0.3
  2431. picomatch: 2.3.1
  2432. mime-db@1.52.0: {}
  2433. mime-types@2.1.35:
  2434. dependencies:
  2435. mime-db: 1.52.0
  2436. mimic-response@3.1.0: {}
  2437. minimatch@3.1.2:
  2438. dependencies:
  2439. brace-expansion: 1.1.11
  2440. minimatch@5.1.6:
  2441. dependencies:
  2442. brace-expansion: 2.0.1
  2443. minimatch@9.0.5:
  2444. dependencies:
  2445. brace-expansion: 2.0.1
  2446. minimist@1.2.8: {}
  2447. minipass-collect@2.0.1:
  2448. dependencies:
  2449. minipass: 7.1.2
  2450. minipass-fetch@4.0.0:
  2451. dependencies:
  2452. minipass: 7.1.2
  2453. minipass-sized: 1.0.3
  2454. minizlib: 3.0.1
  2455. optionalDependencies:
  2456. encoding: 0.1.13
  2457. minipass-flush@1.0.5:
  2458. dependencies:
  2459. minipass: 3.3.6
  2460. minipass-pipeline@1.2.4:
  2461. dependencies:
  2462. minipass: 3.3.6
  2463. minipass-sized@1.0.3:
  2464. dependencies:
  2465. minipass: 3.3.6
  2466. minipass@3.3.6:
  2467. dependencies:
  2468. yallist: 4.0.0
  2469. minipass@7.1.2: {}
  2470. minizlib@3.0.1:
  2471. dependencies:
  2472. minipass: 7.1.2
  2473. rimraf: 5.0.10
  2474. mitata@1.0.10: {}
  2475. mkdirp-classic@0.5.3: {}
  2476. mkdirp@3.0.1: {}
  2477. mnemonist@0.39.8:
  2478. dependencies:
  2479. obliterator: 2.0.4
  2480. mocha@10.7.3:
  2481. dependencies:
  2482. ansi-colors: 4.1.3
  2483. browser-stdout: 1.3.1
  2484. chokidar: 3.6.0
  2485. debug: 4.3.7(supports-color@8.1.1)
  2486. diff: 5.2.0
  2487. escape-string-regexp: 4.0.0
  2488. find-up: 5.0.0
  2489. glob: 8.1.0
  2490. he: 1.2.0
  2491. js-yaml: 4.1.0
  2492. log-symbols: 4.1.0
  2493. minimatch: 5.1.6
  2494. ms: 2.1.3
  2495. serialize-javascript: 6.0.2
  2496. strip-json-comments: 3.1.1
  2497. supports-color: 8.1.1
  2498. workerpool: 6.5.1
  2499. yargs: 16.2.0
  2500. yargs-parser: 20.2.9
  2501. yargs-unparser: 2.0.0
  2502. ms@2.1.3: {}
  2503. napi-build-utils@1.0.2: {}
  2504. natural-compare@1.4.0: {}
  2505. negotiator@0.6.3: {}
  2506. node-abi@3.65.0:
  2507. dependencies:
  2508. semver: 7.6.3
  2509. normalize-path@3.0.0: {}
  2510. obliterator@2.0.4: {}
  2511. once@1.4.0:
  2512. dependencies:
  2513. wrappy: 1.0.2
  2514. optionator@0.9.4:
  2515. dependencies:
  2516. deep-is: 0.1.4
  2517. fast-levenshtein: 2.0.6
  2518. levn: 0.4.1
  2519. prelude-ls: 1.2.1
  2520. type-check: 0.4.0
  2521. word-wrap: 1.2.5
  2522. oxc-resolver@1.10.2:
  2523. optionalDependencies:
  2524. '@oxc-resolver/binding-darwin-arm64': 1.10.2
  2525. '@oxc-resolver/binding-darwin-x64': 1.10.2
  2526. '@oxc-resolver/binding-freebsd-x64': 1.10.2
  2527. '@oxc-resolver/binding-linux-arm-gnueabihf': 1.10.2
  2528. '@oxc-resolver/binding-linux-arm64-gnu': 1.10.2
  2529. '@oxc-resolver/binding-linux-arm64-musl': 1.10.2
  2530. '@oxc-resolver/binding-linux-x64-gnu': 1.10.2
  2531. '@oxc-resolver/binding-linux-x64-musl': 1.10.2
  2532. '@oxc-resolver/binding-wasm32-wasi': 1.10.2
  2533. '@oxc-resolver/binding-win32-arm64-msvc': 1.10.2
  2534. '@oxc-resolver/binding-win32-x64-msvc': 1.10.2
  2535. p-limit@3.1.0:
  2536. dependencies:
  2537. yocto-queue: 0.1.0
  2538. p-locate@5.0.0:
  2539. dependencies:
  2540. p-limit: 3.1.0
  2541. p-map@7.0.2: {}
  2542. package-json-from-dist@1.0.1: {}
  2543. parent-module@1.0.1:
  2544. dependencies:
  2545. callsites: 3.1.0
  2546. path-exists@4.0.0: {}
  2547. path-key@3.1.1: {}
  2548. path-parse@1.0.7: {}
  2549. path-scurry@1.11.1:
  2550. dependencies:
  2551. lru-cache: 10.4.3
  2552. minipass: 7.1.2
  2553. pathval@1.1.1: {}
  2554. picocolors@1.1.0: {}
  2555. picomatch@2.3.1: {}
  2556. picomatch@4.0.2:
  2557. optional: true
  2558. pirates@4.0.6: {}
  2559. prebuild-install@7.1.2:
  2560. dependencies:
  2561. detect-libc: 2.0.3
  2562. expand-template: 2.0.3
  2563. github-from-package: 0.0.0
  2564. minimist: 1.2.8
  2565. mkdirp-classic: 0.5.3
  2566. napi-build-utils: 1.0.2
  2567. node-abi: 3.65.0
  2568. pump: 3.0.0
  2569. rc: 1.2.8
  2570. simple-get: 4.0.1
  2571. tar-fs: 2.1.1
  2572. tunnel-agent: 0.6.0
  2573. prelude-ls@1.2.1: {}
  2574. proc-log@5.0.0: {}
  2575. promise-retry@2.0.1:
  2576. dependencies:
  2577. err-code: 2.0.3
  2578. retry: 0.12.0
  2579. pump@3.0.0:
  2580. dependencies:
  2581. end-of-stream: 1.4.4
  2582. once: 1.4.0
  2583. punycode@2.3.1: {}
  2584. queue-microtask@1.2.3: {}
  2585. queue-tick@1.0.1: {}
  2586. randombytes@2.1.0:
  2587. dependencies:
  2588. safe-buffer: 5.2.1
  2589. rc@1.2.8:
  2590. dependencies:
  2591. deep-extend: 0.6.0
  2592. ini: 1.3.8
  2593. minimist: 1.2.8
  2594. strip-json-comments: 2.0.1
  2595. readable-stream@3.6.2:
  2596. dependencies:
  2597. inherits: 2.0.4
  2598. string_decoder: 1.3.0
  2599. util-deprecate: 1.0.2
  2600. readdirp@3.6.0:
  2601. dependencies:
  2602. picomatch: 2.3.1
  2603. refa@0.12.1:
  2604. dependencies:
  2605. '@eslint-community/regexpp': 4.11.1
  2606. regexp-ast-analysis@0.7.1:
  2607. dependencies:
  2608. '@eslint-community/regexpp': 4.11.1
  2609. refa: 0.12.1
  2610. require-directory@2.1.1: {}
  2611. resolve-from@4.0.0: {}
  2612. resolve-pkg-maps@1.0.0: {}
  2613. resolve@1.22.8:
  2614. dependencies:
  2615. is-core-module: 2.15.1
  2616. path-parse: 1.0.7
  2617. supports-preserve-symlinks-flag: 1.0.0
  2618. retry@0.12.0: {}
  2619. retry@0.13.1: {}
  2620. reusify@1.0.4: {}
  2621. rimraf@5.0.10:
  2622. dependencies:
  2623. glob: 10.4.5
  2624. run-parallel@1.2.0:
  2625. dependencies:
  2626. queue-microtask: 1.2.3
  2627. safe-buffer@5.2.1: {}
  2628. safer-buffer@2.1.2:
  2629. optional: true
  2630. scslre@0.3.0:
  2631. dependencies:
  2632. '@eslint-community/regexpp': 4.11.1
  2633. refa: 0.12.1
  2634. regexp-ast-analysis: 0.7.1
  2635. semver@7.6.3: {}
  2636. serialize-javascript@6.0.2:
  2637. dependencies:
  2638. randombytes: 2.1.0
  2639. server-only@0.0.1: {}
  2640. shebang-command@2.0.0:
  2641. dependencies:
  2642. shebang-regex: 3.0.0
  2643. shebang-regex@3.0.0: {}
  2644. signal-exit@4.1.0: {}
  2645. simple-concat@1.0.1: {}
  2646. simple-get@4.0.1:
  2647. dependencies:
  2648. decompress-response: 6.0.0
  2649. once: 1.4.0
  2650. simple-concat: 1.0.1
  2651. smart-buffer@4.2.0: {}
  2652. socks-proxy-agent@8.0.4:
  2653. dependencies:
  2654. agent-base: 7.1.1
  2655. debug: 4.3.7(supports-color@8.1.1)
  2656. socks: 2.8.3
  2657. transitivePeerDependencies:
  2658. - supports-color
  2659. socks@2.8.3:
  2660. dependencies:
  2661. ip-address: 9.0.5
  2662. smart-buffer: 4.2.0
  2663. source-map-support@0.5.21:
  2664. dependencies:
  2665. buffer-from: 1.1.2
  2666. source-map: 0.6.1
  2667. source-map@0.6.1: {}
  2668. sprintf-js@1.1.3: {}
  2669. ssri@12.0.0:
  2670. dependencies:
  2671. minipass: 7.1.2
  2672. stable-hash@0.0.4: {}
  2673. streamx@2.20.0:
  2674. dependencies:
  2675. fast-fifo: 1.3.2
  2676. queue-tick: 1.0.1
  2677. text-decoder: 1.1.1
  2678. optionalDependencies:
  2679. bare-events: 2.4.2
  2680. string-argv@0.3.2: {}
  2681. string-similarity@4.0.4: {}
  2682. string-width@4.2.3:
  2683. dependencies:
  2684. emoji-regex: 8.0.0
  2685. is-fullwidth-code-point: 3.0.0
  2686. strip-ansi: 6.0.1
  2687. string-width@5.1.2:
  2688. dependencies:
  2689. eastasianwidth: 0.2.0
  2690. emoji-regex: 9.2.2
  2691. strip-ansi: 7.1.0
  2692. string_decoder@1.3.0:
  2693. dependencies:
  2694. safe-buffer: 5.2.1
  2695. strip-ansi@6.0.1:
  2696. dependencies:
  2697. ansi-regex: 5.0.1
  2698. strip-ansi@7.1.0:
  2699. dependencies:
  2700. ansi-regex: 6.1.0
  2701. strip-json-comments@2.0.1: {}
  2702. strip-json-comments@3.1.1: {}
  2703. supports-color@7.2.0:
  2704. dependencies:
  2705. has-flag: 4.0.0
  2706. supports-color@8.1.1:
  2707. dependencies:
  2708. has-flag: 4.0.0
  2709. supports-preserve-symlinks-flag@1.0.0: {}
  2710. synckit@0.6.2:
  2711. dependencies:
  2712. tslib: 2.7.0
  2713. tapable@2.2.1: {}
  2714. tar-fs@2.1.1:
  2715. dependencies:
  2716. chownr: 1.1.4
  2717. mkdirp-classic: 0.5.3
  2718. pump: 3.0.0
  2719. tar-stream: 2.2.0
  2720. tar-fs@3.0.6:
  2721. dependencies:
  2722. pump: 3.0.0
  2723. tar-stream: 3.1.7
  2724. optionalDependencies:
  2725. bare-fs: 2.3.3
  2726. bare-path: 2.1.3
  2727. tar-stream@2.2.0:
  2728. dependencies:
  2729. bl: 4.1.0
  2730. end-of-stream: 1.4.4
  2731. fs-constants: 1.0.0
  2732. inherits: 2.0.4
  2733. readable-stream: 3.6.2
  2734. tar-stream@3.1.7:
  2735. dependencies:
  2736. b4a: 1.6.6
  2737. fast-fifo: 1.3.2
  2738. streamx: 2.20.0
  2739. tar@7.4.3:
  2740. dependencies:
  2741. '@isaacs/fs-minipass': 4.0.1
  2742. chownr: 3.0.0
  2743. minipass: 7.1.2
  2744. minizlib: 3.0.1
  2745. mkdirp: 3.0.1
  2746. yallist: 5.0.0
  2747. text-decoder@1.1.1:
  2748. dependencies:
  2749. b4a: 1.6.6
  2750. text-table@0.2.0: {}
  2751. tldts-core@6.1.50: {}
  2752. tldts-experimental@6.1.50:
  2753. dependencies:
  2754. tldts-core: 6.1.50
  2755. tldts@6.1.50:
  2756. dependencies:
  2757. tldts-core: 6.1.50
  2758. to-regex-range@5.0.1:
  2759. dependencies:
  2760. is-number: 7.0.0
  2761. ts-api-utils@1.3.0(typescript@5.6.3):
  2762. dependencies:
  2763. typescript: 5.6.3
  2764. tslib@2.7.0: {}
  2765. tunnel-agent@0.6.0:
  2766. dependencies:
  2767. safe-buffer: 5.2.1
  2768. type-check@0.4.0:
  2769. dependencies:
  2770. prelude-ls: 1.2.1
  2771. type-detect@4.0.8: {}
  2772. typescript-eslint@8.8.1(eslint@9.12.0)(typescript@5.6.3):
  2773. dependencies:
  2774. '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.6.3))(eslint@9.12.0)(typescript@5.6.3)
  2775. '@typescript-eslint/parser': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  2776. '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.6.3)
  2777. optionalDependencies:
  2778. typescript: 5.6.3
  2779. transitivePeerDependencies:
  2780. - eslint
  2781. - supports-color
  2782. typescript@5.6.3: {}
  2783. undici-types@6.19.8: {}
  2784. undici@6.20.0: {}
  2785. unique-filename@4.0.0:
  2786. dependencies:
  2787. unique-slug: 5.0.0
  2788. unique-slug@5.0.0:
  2789. dependencies:
  2790. imurmurhash: 0.1.4
  2791. uri-js@4.4.1:
  2792. dependencies:
  2793. punycode: 2.3.1
  2794. util-deprecate@1.0.2: {}
  2795. which@2.0.2:
  2796. dependencies:
  2797. isexe: 2.0.0
  2798. word-wrap@1.2.5: {}
  2799. workerpool@6.5.1: {}
  2800. wrap-ansi@7.0.0:
  2801. dependencies:
  2802. ansi-styles: 4.3.0
  2803. string-width: 4.2.3
  2804. strip-ansi: 6.0.1
  2805. wrap-ansi@8.1.0:
  2806. dependencies:
  2807. ansi-styles: 6.2.1
  2808. string-width: 5.1.2
  2809. strip-ansi: 7.1.0
  2810. wrappy@1.0.2: {}
  2811. wtfnode@0.9.3: {}
  2812. y18n@5.0.8: {}
  2813. yallist@4.0.0: {}
  2814. yallist@5.0.0: {}
  2815. yaml@2.5.1: {}
  2816. yargs-parser@20.2.9: {}
  2817. yargs-unparser@2.0.0:
  2818. dependencies:
  2819. camelcase: 6.3.0
  2820. decamelize: 4.0.0
  2821. flat: 5.0.2
  2822. is-plain-obj: 2.1.0
  2823. yargs@16.2.0:
  2824. dependencies:
  2825. cliui: 7.0.4
  2826. escalade: 3.1.2
  2827. get-caller-file: 2.0.5
  2828. require-directory: 2.1.1
  2829. string-width: 4.2.3
  2830. y18n: 5.0.8
  2831. yargs-parser: 20.2.9
  2832. yocto-queue@0.1.0: {}