pnpm-lock.yaml 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147
  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.31.4
  12. version: 1.31.4
  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.2.1
  24. version: 11.2.1
  25. ci-info:
  26. specifier: ^4.0.0
  27. version: 4.0.0
  28. csv-parse:
  29. specifier: ^5.5.6
  30. version: 5.5.6
  31. fast-cidr-tools:
  32. specifier: ^0.2.5
  33. version: 0.2.5
  34. fdir:
  35. specifier: ^6.3.0
  36. version: 6.3.0(picomatch@4.0.2)
  37. foxact:
  38. specifier: ^0.2.37
  39. version: 0.2.37
  40. json-stringify-pretty-compact:
  41. specifier: ^3.0.0
  42. version: 3.0.0
  43. mnemonist:
  44. specifier: ^0.39.8
  45. version: 0.39.8
  46. picocolors:
  47. specifier: ^1.0.1
  48. version: 1.0.1
  49. punycode:
  50. specifier: ^2.3.1
  51. version: 2.3.1
  52. table:
  53. specifier: ^6.8.2
  54. version: 6.8.2
  55. tar-stream:
  56. specifier: ^3.1.7
  57. version: 3.1.7
  58. tldts:
  59. specifier: ^6.1.41
  60. version: 6.1.41
  61. tldts-experimental:
  62. specifier: ^6.1.41
  63. version: 6.1.41
  64. yaml:
  65. specifier: ^2.5.0
  66. version: 2.5.0
  67. devDependencies:
  68. '@eslint-sukka/node':
  69. specifier: ^6.2.1
  70. version: 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  71. '@swc-node/register':
  72. specifier: ^1.10.9
  73. version: 1.10.9(@swc/core@1.7.18)(@swc/types@0.1.12)(typescript@5.5.4)
  74. '@swc/core':
  75. specifier: ^1.7.18
  76. version: 1.7.18
  77. '@types/async-retry':
  78. specifier: ^1.4.8
  79. version: 1.4.8
  80. '@types/better-sqlite3':
  81. specifier: ^7.6.11
  82. version: 7.6.11
  83. '@types/chai':
  84. specifier: ^4.3.17
  85. version: 4.3.17
  86. '@types/mocha':
  87. specifier: ^10.0.7
  88. version: 10.0.7
  89. '@types/punycode':
  90. specifier: ^2.1.4
  91. version: 2.1.4
  92. '@types/tar-stream':
  93. specifier: ^3.1.3
  94. version: 3.1.3
  95. chai:
  96. specifier: '4'
  97. version: 4.4.1
  98. eslint:
  99. specifier: ^9.9.1
  100. version: 9.9.1
  101. eslint-config-sukka:
  102. specifier: ^6.2.1
  103. version: 6.2.1(@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4)
  104. eslint-formatter-sukka:
  105. specifier: ^6.2.1
  106. version: 6.2.1
  107. mitata:
  108. specifier: ^0.1.11
  109. version: 0.1.11
  110. mocha:
  111. specifier: ^10.7.3
  112. version: 10.7.3
  113. typescript:
  114. specifier: ^5.5.4
  115. version: 5.5.4
  116. packages:
  117. '@cliqz/adblocker-content@1.31.4':
  118. resolution: {integrity: sha512-LLqyDOIQ75Rcsc2GNP3zxrn4M4TKyRMQVlkVgF1GrpQdg57cXej79hQUx9tR5Fuw0IttkU9bKG09zjdFhOREvA==}
  119. '@cliqz/adblocker-extended-selectors@1.31.4':
  120. resolution: {integrity: sha512-/blCnZhuDc/EdtWSGk3XDWysLuazH+CMZnN5e4X7kWVbWR78CCrCX0FeagufQr6+T+I2iD0fmM5Ks6Rjh3tyiQ==}
  121. '@cliqz/adblocker@1.31.4':
  122. resolution: {integrity: sha512-l8XKvOOk1WqagqnYLvQ6mRTXIT1xfUEnm16VpURKpmMNloSv38a2BEXz0YS/UB0YDjTmxma/BJ6F3+zCZd5r4g==}
  123. '@dual-bundle/import-meta-resolve@4.1.0':
  124. resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
  125. '@emnapi/core@1.2.0':
  126. resolution: {integrity: sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==}
  127. '@emnapi/runtime@1.2.0':
  128. resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
  129. '@emnapi/wasi-threads@1.0.1':
  130. resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
  131. '@eslint-community/eslint-plugin-eslint-comments@4.4.0':
  132. resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==}
  133. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  134. peerDependencies:
  135. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  136. '@eslint-community/eslint-utils@4.4.0':
  137. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  138. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  139. peerDependencies:
  140. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  141. '@eslint-community/regexpp@4.11.0':
  142. resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
  143. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  144. '@eslint-sukka/node@6.2.1':
  145. resolution: {integrity: sha512-YECk5BbbqPkibjXQ5HuX6OWyTqkZ1TiHJjnE3ruSkbD6769J4Hil1xEcp2UrwLuQ6JOAf2FhuCW2e4iP1r+8Wg==}
  146. '@eslint-sukka/shared@6.2.1':
  147. resolution: {integrity: sha512-EQJaN5yNrvrRS1iIvJ8nCASKM/0aJ2/mAP8B9KLrHuorahIDi9C3U0ZyORobHZM7uLjQD05HWswG+ATpO5bsMA==}
  148. '@eslint/compat@1.1.1':
  149. resolution: {integrity: sha512-lpHyRyplhGPL5mGEh6M9O5nnKk0Gz4bFI+Zu6tKlPpDUN7XshWvH9C/px4UVm87IAANE0W81CEsNGbS1KlzXpA==}
  150. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  151. '@eslint/config-array@0.18.0':
  152. resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
  153. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  154. '@eslint/eslintrc@3.1.0':
  155. resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
  156. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  157. '@eslint/js@9.9.1':
  158. resolution: {integrity: sha512-xIDQRsfg5hNBqHz04H1R3scSVwmI+KUbqjsQKHKQ1DAUSaUjYPReZZmS/5PNiKu1fUvzDd6H7DEDKACSEhu+TQ==}
  159. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  160. '@eslint/object-schema@2.1.4':
  161. resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
  162. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  163. '@humanwhocodes/module-importer@1.0.1':
  164. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  165. engines: {node: '>=12.22'}
  166. '@humanwhocodes/retry@0.3.0':
  167. resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
  168. engines: {node: '>=18.18'}
  169. '@jsdevtools/ez-spawn@3.0.4':
  170. resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==}
  171. engines: {node: '>=10'}
  172. '@napi-rs/wasm-runtime@0.2.4':
  173. resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
  174. '@nodelib/fs.scandir@2.1.5':
  175. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  176. engines: {node: '>= 8'}
  177. '@nodelib/fs.stat@2.0.5':
  178. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  179. engines: {node: '>= 8'}
  180. '@nodelib/fs.walk@1.2.8':
  181. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  182. engines: {node: '>= 8'}
  183. '@oxc-resolver/binding-darwin-arm64@1.10.2':
  184. resolution: {integrity: sha512-aOCZYXqmFL+2sXlaVkYbAOtICGGeTFtmdul8OimQfOXHJods6YHJ2nR6+rEeBcJzaXyXPP18ne1IsEc4AYL1IA==}
  185. cpu: [arm64]
  186. os: [darwin]
  187. '@oxc-resolver/binding-darwin-x64@1.10.2':
  188. resolution: {integrity: sha512-6WD7lHGkoduFZfUgnC2suKOlqttQRKxWsiVXiiGPu3mfXvQAhMd/gekuH1t8vOhFlPJduaww15n5UB0bSjCK+w==}
  189. cpu: [x64]
  190. os: [darwin]
  191. '@oxc-resolver/binding-freebsd-x64@1.10.2':
  192. resolution: {integrity: sha512-nEqHWx/Ot5p7Mafj8qH6vFlLSvHjECxAcZwhnAMqRuQu1NgXC/QM3emkdhVGy7QJgsxZbHpPaF6TERNf5/NL9Q==}
  193. cpu: [x64]
  194. os: [freebsd]
  195. '@oxc-resolver/binding-linux-arm-gnueabihf@1.10.2':
  196. resolution: {integrity: sha512-+AlZI0fPnpfArh8aC5k2295lmQrxa2p8gBLxC3buvCkz0ZpbVLxyyAXz3J2jGwJnmc5MUPLEqPYw6ZlAGH4XHA==}
  197. cpu: [arm]
  198. os: [linux]
  199. '@oxc-resolver/binding-linux-arm64-gnu@1.10.2':
  200. resolution: {integrity: sha512-8fZ8NszFaUZaoA8eUwkF2lHjgUs76aFiewWgG/cjcZmwKp+ErZQLW8eOvIWZ4SohHQ+ScvhVsSaU2PU38c88gw==}
  201. cpu: [arm64]
  202. os: [linux]
  203. '@oxc-resolver/binding-linux-arm64-musl@1.10.2':
  204. resolution: {integrity: sha512-oPrLICrw96Ym9n04FWXWGkbkpF6qJtZ57JSnqI3oQ24xHTt4iWyjHKHQO46NbJAK9sFb3Qce4BzV8faDI5Rifg==}
  205. cpu: [arm64]
  206. os: [linux]
  207. '@oxc-resolver/binding-linux-x64-gnu@1.10.2':
  208. resolution: {integrity: sha512-eli74jTAUiIfqi8IPFqiPxQS69Alcr6w/IFRyf3XxrkxeFGgcgxJkRIxWNTKJ6T3EXxjuma+49LdZn6l9rEj7A==}
  209. cpu: [x64]
  210. os: [linux]
  211. '@oxc-resolver/binding-linux-x64-musl@1.10.2':
  212. resolution: {integrity: sha512-HH9zmjNSQo3rkbqJH5nIjGrtjC+QPrUy0KGGMR/oRCSLuD0cNFJ/Uly1XAugwSm4oEw0+rv6PmeclXmVTKsxhw==}
  213. cpu: [x64]
  214. os: [linux]
  215. '@oxc-resolver/binding-wasm32-wasi@1.10.2':
  216. resolution: {integrity: sha512-3ItX23q33sfVBtMMdMhVDSe0NX5zBHxHfmFiXhSJuwNaVIwGpLFU7WU2nmq9oNdnmTOvjL8vlhOqiGvumBLlRA==}
  217. engines: {node: '>=14.0.0'}
  218. cpu: [wasm32]
  219. '@oxc-resolver/binding-win32-arm64-msvc@1.10.2':
  220. resolution: {integrity: sha512-aVoj2V+jmQ1N+lVy9AhaLmzssJM0lcKt8D0UL83aNLZJ5lSN7hgBuUXTVmL+VF268f167khjo38z+fbELDVm8Q==}
  221. cpu: [arm64]
  222. os: [win32]
  223. '@oxc-resolver/binding-win32-x64-msvc@1.10.2':
  224. resolution: {integrity: sha512-l8BDQWyP0Piw8hlmYPUqTRKLsq+ceG9h+9p6ZrjNzwW9AmJX7T7T2hgoVVHqS6f4WNA/CFkb3RyZP9QTzNkyyA==}
  225. cpu: [x64]
  226. os: [win32]
  227. '@remusao/guess-url-type@1.3.0':
  228. resolution: {integrity: sha512-SNSJGxH5ckvxb3EUHj4DqlAm/bxNxNv2kx/AESZva/9VfcBokwKNS+C4D1lQdWIDM1R3d3UG+xmVzlkNG8CPTQ==}
  229. '@remusao/small@1.3.0':
  230. resolution: {integrity: sha512-bydAhJI+ywmg5xMUcbqoR8KahetcfkFywEZpsyFZ8EBofilvWxbXnMSe4vnjDI1Y+SWxnNhR4AL/2BAXkf4b8A==}
  231. '@remusao/smaz-compress@1.10.0':
  232. resolution: {integrity: sha512-E/lC8OSU+3bQrUl64vlLyPzIxo7dxF2RvNBe9KzcM4ax43J/d+YMinmMztHyCIHqRbz7rBCtkp3c0KfeIbHmEg==}
  233. '@remusao/smaz-decompress@1.10.0':
  234. resolution: {integrity: sha512-aA5ImUH480Pcs5/cOgToKmFnzi7osSNG6ft+7DdmQTaQEEst3nLq3JLlBEk+gwidURymjbx6DYs60LHaZ415VQ==}
  235. '@remusao/smaz@1.10.0':
  236. resolution: {integrity: sha512-GQzCxmmMpLkyZwcwNgz8TpuBEWl0RUQa8IcvKiYlPxuyYKqyqPkCr0hlHI15ckn3kDUPS68VmTVgyPnLNrdVmg==}
  237. '@remusao/trie@1.5.0':
  238. resolution: {integrity: sha512-UX+3utJKgwCsg6sUozjxd38gNMVRXrY4TNX9VvCdSrlZBS1nZjRPi98ON3QjRAdf6KCguJFyQARRsulTeqQiPg==}
  239. '@stylistic/eslint-plugin-js@2.6.4':
  240. resolution: {integrity: sha512-kx1hS3xTvzxZLdr/DCU/dLBE++vcP97sHeEFX2QXhk1Ipa4K1rzPOLw1HCbf4mU3s+7kHP5eYpDe+QteEOFLug==}
  241. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  242. peerDependencies:
  243. eslint: '>=8.40.0'
  244. '@stylistic/eslint-plugin-plus@2.6.4':
  245. resolution: {integrity: sha512-EuRvtxhf7Hv8OoMIePulP/6rBJIgPTu1l5GAm1780WcF1Cl8bOZXIn84Pdac5pNv6lVlzCOFm8MD3VE+2YROuA==}
  246. peerDependencies:
  247. eslint: '*'
  248. '@stylistic/eslint-plugin-ts@2.6.4':
  249. resolution: {integrity: sha512-yxL8Hj6WkObw1jfiLpBzKy5yfxY6vwlwO4miq34ySErUjUecPV5jxfVbOe4q1QDPKemQGPq93v7sAQS5PzM8lA==}
  250. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  251. peerDependencies:
  252. eslint: '>=8.40.0'
  253. '@swc-node/core@1.13.3':
  254. resolution: {integrity: sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==}
  255. engines: {node: '>= 10'}
  256. peerDependencies:
  257. '@swc/core': '>= 1.4.13'
  258. '@swc/types': '>= 0.1'
  259. '@swc-node/register@1.10.9':
  260. resolution: {integrity: sha512-iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A==}
  261. peerDependencies:
  262. '@swc/core': '>= 1.4.13'
  263. typescript: '>= 4.3'
  264. '@swc-node/sourcemap-support@0.5.1':
  265. resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
  266. '@swc/core-darwin-arm64@1.7.18':
  267. resolution: {integrity: sha512-MwLc5U+VGPMZm8MjlFBjEB2wyT1EK0NNJ3tn+ps9fmxdFP+PL8EpMiY1O1F2t1ydy2OzBtZz81sycjM9RieFBg==}
  268. engines: {node: '>=10'}
  269. cpu: [arm64]
  270. os: [darwin]
  271. '@swc/core-darwin-x64@1.7.18':
  272. resolution: {integrity: sha512-IkukOQUw7/14VkHp446OkYGCZEHqZg9pTmTdBawlUyz2JwZMSn2VodCl7aFSdGCsU4Cwni8zKA8CCgkCCAELhw==}
  273. engines: {node: '>=10'}
  274. cpu: [x64]
  275. os: [darwin]
  276. '@swc/core-linux-arm-gnueabihf@1.7.18':
  277. resolution: {integrity: sha512-ATnb6jJaBeXCqrTUawWdoOy7eP9SCI7UMcfXlYIMxX4otKKspLPAEuGA5RaNxlCcj9ObyO0J3YGbtZ6hhD2pjg==}
  278. engines: {node: '>=10'}
  279. cpu: [arm]
  280. os: [linux]
  281. '@swc/core-linux-arm64-gnu@1.7.18':
  282. resolution: {integrity: sha512-poHtH7zL7lEp9K2inY90lGHJABWxURAOgWNeZqrcR5+jwIe7q5KBisysH09Zf/JNF9+6iNns+U0xgWTNJzBuGA==}
  283. engines: {node: '>=10'}
  284. cpu: [arm64]
  285. os: [linux]
  286. '@swc/core-linux-arm64-musl@1.7.18':
  287. resolution: {integrity: sha512-qnNI1WmcOV7Wz1ZDyK6WrOlzLvJ01rnni8ec950mMHWkLRMP53QvCvhF3S+7gFplWBwWJTOOPPUqJp/PlSxWyQ==}
  288. engines: {node: '>=10'}
  289. cpu: [arm64]
  290. os: [linux]
  291. '@swc/core-linux-x64-gnu@1.7.18':
  292. resolution: {integrity: sha512-x9SCqCLzwtlqtD5At3I1a7Gco+EuXnzrJGoucmkpeQohshHuwa+cskqsXO6u1Dz0jXJEuHbBZB9va1wYYfjgFg==}
  293. engines: {node: '>=10'}
  294. cpu: [x64]
  295. os: [linux]
  296. '@swc/core-linux-x64-musl@1.7.18':
  297. resolution: {integrity: sha512-qtj8iOpMMgKjzxTv+islmEY0JBsbd93nka0gzcTTmGZxKtL5jSUsYQvkxwNPZr5M9NU1fgaR3n1vE6lFmtY0IQ==}
  298. engines: {node: '>=10'}
  299. cpu: [x64]
  300. os: [linux]
  301. '@swc/core-win32-arm64-msvc@1.7.18':
  302. resolution: {integrity: sha512-ltX/Ol9+Qu4SXmISCeuwVgAjSa8nzHTymknpozzVMgjXUoZMoz6lcynfKL1nCh5XLgqh0XNHUKLti5YFF8LrrA==}
  303. engines: {node: '>=10'}
  304. cpu: [arm64]
  305. os: [win32]
  306. '@swc/core-win32-ia32-msvc@1.7.18':
  307. resolution: {integrity: sha512-RgTcFP3wgyxnQbTCJrlgBJmgpeTXo8t807GU9GxApAXfpLZJ3swJ2GgFUmIJVdLWyffSHF5BEkF3FmF6mtH5AQ==}
  308. engines: {node: '>=10'}
  309. cpu: [ia32]
  310. os: [win32]
  311. '@swc/core-win32-x64-msvc@1.7.18':
  312. resolution: {integrity: sha512-XbZ0wAgzR757+DhQcnv60Y/bK9yuWPhDNRQVFFQVRsowvK3+c6EblyfUSytIidpXgyYFzlprq/9A9ZlO/wvDWw==}
  313. engines: {node: '>=10'}
  314. cpu: [x64]
  315. os: [win32]
  316. '@swc/core@1.7.18':
  317. resolution: {integrity: sha512-qL9v5N5S38ijmqiQRvCFUUx2vmxWT/JJ2rswElnyaHkOHuVoAFhBB90Ywj4RKjh3R0zOjhEcemENTyF3q3G6WQ==}
  318. engines: {node: '>=10'}
  319. peerDependencies:
  320. '@swc/helpers': '*'
  321. peerDependenciesMeta:
  322. '@swc/helpers':
  323. optional: true
  324. '@swc/counter@0.1.3':
  325. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  326. '@swc/types@0.1.12':
  327. resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
  328. '@tybys/wasm-util@0.9.0':
  329. resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
  330. '@types/async-retry@1.4.8':
  331. resolution: {integrity: sha512-Qup/B5PWLe86yI5I3av6ePGaeQrIHNKCwbsQotD6aHQ6YkHsMUxVZkZsmx/Ry3VZQ6uysHwTjQ7666+k6UjVJA==}
  332. '@types/better-sqlite3@7.6.11':
  333. resolution: {integrity: sha512-i8KcD3PgGtGBLl3+mMYA8PdKkButvPyARxA7IQAd6qeslht13qxb1zzO8dRCtE7U3IoJS782zDBAeoKiM695kg==}
  334. '@types/chai@4.3.17':
  335. resolution: {integrity: sha512-zmZ21EWzR71B4Sscphjief5djsLre50M6lI622OSySTmn9DB3j+C3kWroHfBQWXbOBwbgg/M8CG/hUxDLIloow==}
  336. '@types/chrome@0.0.270':
  337. resolution: {integrity: sha512-ADvkowV7YnJfycZZxL2brluZ6STGW+9oKG37B422UePf2PCXuFA/XdERI0T18wtuWPx0tmFeZqq6MOXVk1IC+Q==}
  338. '@types/eslint@9.6.0':
  339. resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
  340. '@types/estree@1.0.5':
  341. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  342. '@types/filesystem@0.0.36':
  343. resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==}
  344. '@types/filewriter@0.0.33':
  345. resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==}
  346. '@types/firefox-webext-browser@120.0.4':
  347. resolution: {integrity: sha512-lBrpf08xhiZBigrtdQfUaqX1UauwZ+skbFiL8u2Tdra/rklkKadYmIzTwkNZSWtuZ7OKpFqbE2HHfDoFqvZf6w==}
  348. '@types/har-format@1.2.15':
  349. resolution: {integrity: sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==}
  350. '@types/json-schema@7.0.15':
  351. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  352. '@types/mocha@10.0.7':
  353. resolution: {integrity: sha512-GN8yJ1mNTcFcah/wKEFIJckJx9iJLoMSzWcfRRuxz/Jk+U6KQNnml+etbtxFK8lPjzOw3zp4Ha/kjSst9fsHYw==}
  354. '@types/node@20.14.11':
  355. resolution: {integrity: sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==}
  356. '@types/punycode@2.1.4':
  357. resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==}
  358. '@types/retry@0.12.5':
  359. resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==}
  360. '@types/tar-stream@3.1.3':
  361. resolution: {integrity: sha512-Zbnx4wpkWBMBSu5CytMbrT5ZpMiF55qgM+EpHzR4yIDu7mv52cej8hTkOc6K+LzpkOAbxwn/m7j3iO+/l42YkQ==}
  362. '@typescript-eslint/eslint-plugin@8.2.0':
  363. resolution: {integrity: sha512-02tJIs655em7fvt9gps/+4k4OsKULYGtLBPJfOsmOq1+3cdClYiF0+d6mHu6qDnTcg88wJBkcPLpQhq7FyDz0A==}
  364. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  365. peerDependencies:
  366. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  367. eslint: ^8.57.0 || ^9.0.0
  368. typescript: '*'
  369. peerDependenciesMeta:
  370. typescript:
  371. optional: true
  372. '@typescript-eslint/parser@8.2.0':
  373. resolution: {integrity: sha512-j3Di+o0lHgPrb7FxL3fdEy6LJ/j2NE8u+AP/5cQ9SKb+JLH6V6UHDqJ+e0hXBkHP1wn1YDFjYCS9LBQsZDlDEg==}
  374. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  375. peerDependencies:
  376. eslint: ^8.57.0 || ^9.0.0
  377. typescript: '*'
  378. peerDependenciesMeta:
  379. typescript:
  380. optional: true
  381. '@typescript-eslint/scope-manager@7.18.0':
  382. resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
  383. engines: {node: ^18.18.0 || >=20.0.0}
  384. '@typescript-eslint/scope-manager@8.2.0':
  385. resolution: {integrity: sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==}
  386. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  387. '@typescript-eslint/type-utils@8.2.0':
  388. resolution: {integrity: sha512-g1CfXGFMQdT5S+0PSO0fvGXUaiSkl73U1n9LTK5aRAFnPlJ8dLKkXr4AaLFvPedW8lVDoMgLLE3JN98ZZfsj0w==}
  389. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  390. peerDependencies:
  391. typescript: '*'
  392. peerDependenciesMeta:
  393. typescript:
  394. optional: true
  395. '@typescript-eslint/types@7.18.0':
  396. resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
  397. engines: {node: ^18.18.0 || >=20.0.0}
  398. '@typescript-eslint/types@8.0.0-alpha.36':
  399. resolution: {integrity: sha512-D+w5uE8Y83K/P5VQZyKKi4pwTL2YkWOwtQOVJQI38Rp8f3pmY+Jmcps3wkSFSJK8wifTlvoHwwIBf1FsdCW/EA==}
  400. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  401. '@typescript-eslint/types@8.2.0':
  402. resolution: {integrity: sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==}
  403. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  404. '@typescript-eslint/typescript-estree@7.18.0':
  405. resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
  406. engines: {node: ^18.18.0 || >=20.0.0}
  407. peerDependencies:
  408. typescript: '*'
  409. peerDependenciesMeta:
  410. typescript:
  411. optional: true
  412. '@typescript-eslint/typescript-estree@8.2.0':
  413. resolution: {integrity: sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==}
  414. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  415. peerDependencies:
  416. typescript: '*'
  417. peerDependenciesMeta:
  418. typescript:
  419. optional: true
  420. '@typescript-eslint/utils@7.18.0':
  421. resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
  422. engines: {node: ^18.18.0 || >=20.0.0}
  423. peerDependencies:
  424. eslint: ^8.56.0
  425. '@typescript-eslint/utils@8.2.0':
  426. resolution: {integrity: sha512-O46eaYKDlV3TvAVDNcoDzd5N550ckSe8G4phko++OCSC1dYIb9LTc3HDGYdWqWIAT5qDUKphO6sd9RrpIJJPfg==}
  427. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  428. peerDependencies:
  429. eslint: ^8.57.0 || ^9.0.0
  430. '@typescript-eslint/visitor-keys@7.18.0':
  431. resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
  432. engines: {node: ^18.18.0 || >=20.0.0}
  433. '@typescript-eslint/visitor-keys@8.2.0':
  434. resolution: {integrity: sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==}
  435. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  436. acorn-jsx@5.3.2:
  437. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  438. peerDependencies:
  439. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  440. acorn@8.12.1:
  441. resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
  442. engines: {node: '>=0.4.0'}
  443. hasBin: true
  444. ajv@6.12.6:
  445. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  446. ajv@8.17.1:
  447. resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
  448. ansi-colors@4.1.3:
  449. resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
  450. engines: {node: '>=6'}
  451. ansi-regex@5.0.1:
  452. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  453. engines: {node: '>=8'}
  454. ansi-styles@4.3.0:
  455. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  456. engines: {node: '>=8'}
  457. anymatch@3.1.3:
  458. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  459. engines: {node: '>= 8'}
  460. argparse@2.0.1:
  461. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  462. array-union@2.1.0:
  463. resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
  464. engines: {node: '>=8'}
  465. assertion-error@1.1.0:
  466. resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
  467. astral-regex@2.0.0:
  468. resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
  469. engines: {node: '>=8'}
  470. async-retry@1.3.3:
  471. resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
  472. async-sema@3.1.1:
  473. resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
  474. b4a@1.6.6:
  475. resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
  476. balanced-match@1.0.2:
  477. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  478. bare-events@2.4.2:
  479. resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==}
  480. base64-js@1.5.1:
  481. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  482. better-sqlite3@11.2.1:
  483. resolution: {integrity: sha512-Xbt1d68wQnUuFIEVsbt6V+RG30zwgbtCGQ4QOcXVrOH0FE4eHk64FWZ9NUfRHS4/x1PXqwz/+KOrnXD7f0WieA==}
  484. binary-extensions@2.3.0:
  485. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  486. engines: {node: '>=8'}
  487. bindings@1.5.0:
  488. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  489. bl@4.1.0:
  490. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  491. brace-expansion@1.1.11:
  492. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  493. brace-expansion@2.0.1:
  494. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  495. braces@3.0.3:
  496. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  497. engines: {node: '>=8'}
  498. browser-stdout@1.3.1:
  499. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  500. buffer-from@1.1.2:
  501. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  502. buffer@5.7.1:
  503. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  504. call-me-maybe@1.0.2:
  505. resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
  506. callsites@3.1.0:
  507. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  508. engines: {node: '>=6'}
  509. camelcase@6.3.0:
  510. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  511. engines: {node: '>=10'}
  512. chai@4.4.1:
  513. resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
  514. engines: {node: '>=4'}
  515. chalk@4.1.2:
  516. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  517. engines: {node: '>=10'}
  518. check-error@1.0.3:
  519. resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
  520. chokidar@3.6.0:
  521. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  522. engines: {node: '>= 8.10.0'}
  523. chownr@1.1.4:
  524. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  525. ci-info@4.0.0:
  526. resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
  527. engines: {node: '>=8'}
  528. client-only@0.0.1:
  529. resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
  530. cliui@7.0.4:
  531. resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
  532. color-convert@2.0.1:
  533. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  534. engines: {node: '>=7.0.0'}
  535. color-name@1.1.4:
  536. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  537. colorette@2.0.20:
  538. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  539. comment-parser@1.4.1:
  540. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  541. engines: {node: '>= 12.0.0'}
  542. concat-map@0.0.1:
  543. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  544. cross-spawn@7.0.3:
  545. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  546. engines: {node: '>= 8'}
  547. csv-parse@5.5.6:
  548. resolution: {integrity: sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==}
  549. debug@3.2.7:
  550. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  551. peerDependencies:
  552. supports-color: '*'
  553. peerDependenciesMeta:
  554. supports-color:
  555. optional: true
  556. debug@4.3.5:
  557. resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
  558. engines: {node: '>=6.0'}
  559. peerDependencies:
  560. supports-color: '*'
  561. peerDependenciesMeta:
  562. supports-color:
  563. optional: true
  564. debug@4.3.6:
  565. resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
  566. engines: {node: '>=6.0'}
  567. peerDependencies:
  568. supports-color: '*'
  569. peerDependenciesMeta:
  570. supports-color:
  571. optional: true
  572. decamelize@4.0.0:
  573. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  574. engines: {node: '>=10'}
  575. decompress-response@6.0.0:
  576. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  577. engines: {node: '>=10'}
  578. deep-eql@4.1.4:
  579. resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
  580. engines: {node: '>=6'}
  581. deep-extend@0.6.0:
  582. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  583. engines: {node: '>=4.0.0'}
  584. deep-is@0.1.4:
  585. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  586. defu@6.1.4:
  587. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  588. detect-libc@2.0.3:
  589. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  590. engines: {node: '>=8'}
  591. diff@5.2.0:
  592. resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
  593. engines: {node: '>=0.3.1'}
  594. dir-glob@3.0.1:
  595. resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
  596. engines: {node: '>=8'}
  597. doctrine@3.0.0:
  598. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  599. engines: {node: '>=6.0.0'}
  600. emoji-regex@8.0.0:
  601. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  602. end-of-stream@1.4.4:
  603. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  604. enhanced-resolve@5.17.1:
  605. resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
  606. engines: {node: '>=10.13.0'}
  607. escalade@3.1.2:
  608. resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
  609. engines: {node: '>=6'}
  610. escape-string-regexp@4.0.0:
  611. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  612. engines: {node: '>=10'}
  613. eslint-compat-utils@0.5.1:
  614. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  615. engines: {node: '>=12'}
  616. peerDependencies:
  617. eslint: '>=6.0.0'
  618. eslint-config-sukka@6.2.1:
  619. resolution: {integrity: sha512-nAbgHGRcIodmWnTF3i+XR4JarAv+51qMf3FI6DnP0XHXyP0/C20WeDnkHGO14tl+cH+17ogW7j59OjRGX0trqg==}
  620. eslint-formatter-sukka@6.2.1:
  621. resolution: {integrity: sha512-TO2PVI2MUveyhwTXxMdal70hF9C29aPTDhRwVhbnZbsFrKdifBw91k0CH/nwzaNMw5J7ZT8+De5O+VKp2eXFDw==}
  622. eslint-import-resolver-node@0.3.9:
  623. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  624. eslint-import-resolver-ts-bundled@6.2.1:
  625. resolution: {integrity: sha512-TQO1DMxODFizOYsTiHyEYrrD7SV9+GsCDsw6gpDadAuExPqmoX771O2kgUXHKC6Msec6P3dwl0M2Z0t9J2hbfw==}
  626. eslint-plugin-autofix@2.1.0:
  627. resolution: {integrity: sha512-4ya5flaJ7P+s4WeCe7mVd5Mmv0ayghl9Xz1MDewQqDNXn3SFkvTMqbCuJT5fsTl+BdtJ/CFNV48YrABohQu1VQ==}
  628. engines: {node: '>=18'}
  629. peerDependencies:
  630. eslint: '>=8'
  631. eslint-plugin-deprecation@3.0.0:
  632. resolution: {integrity: sha512-JuVLdNg/uf0Adjg2tpTyYoYaMbwQNn/c78P1HcccokvhtRphgnRjZDKmhlxbxYptppex03zO76f97DD/yQHv7A==}
  633. peerDependencies:
  634. eslint: ^8.0.0
  635. typescript: ^4.2.4 || ^5.0.0
  636. eslint-plugin-es-x@7.8.0:
  637. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  638. engines: {node: ^14.18.0 || >=16.0.0}
  639. peerDependencies:
  640. eslint: '>=8'
  641. eslint-plugin-import-x@3.1.0:
  642. resolution: {integrity: sha512-/UbPA+bYY7nIxcjL3kpcDY3UNdoLHFhyBFzHox2M0ypcUoueTn6woZUUmzzi5et/dXChksasYYFeKE2wshOrhg==}
  643. engines: {node: '>=16'}
  644. peerDependencies:
  645. eslint: ^8.56.0 || ^9.0.0-0
  646. eslint-plugin-jsonc@2.16.0:
  647. resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==}
  648. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  649. peerDependencies:
  650. eslint: '>=6.0.0'
  651. eslint-plugin-n@17.10.2:
  652. resolution: {integrity: sha512-e+s4eAf5NtJaxPhTNu3qMO0Iz40WANS93w9LQgYcvuljgvDmWi/a3rh+OrNyMHeng6aOWGJO0rCg5lH4zi8yTw==}
  653. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  654. peerDependencies:
  655. eslint: '>=8.23.0'
  656. eslint-plugin-promise@7.1.0:
  657. resolution: {integrity: sha512-8trNmPxdAy3W620WKDpaS65NlM5yAumod6XeC4LOb+jxlkG4IVcp68c6dXY2ev+uT4U1PtG57YDV6EGAXN0GbQ==}
  658. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  659. peerDependencies:
  660. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  661. eslint-plugin-regexp@2.6.0:
  662. resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==}
  663. engines: {node: ^18 || >=20}
  664. peerDependencies:
  665. eslint: '>=8.44.0'
  666. eslint-plugin-sukka-ts@6.2.1:
  667. resolution: {integrity: sha512-6MdBMpVYs+yNydmy44kaMfN27dQwIBOAsVB4j9ghWfsdqyF16aeuJt+I8UWRCcfMEN+LQXF315RsqdyMfnPpFw==}
  668. eslint-plugin-sukka@6.2.1:
  669. resolution: {integrity: sha512-OdXbLhCElg1rcOcnP5mcpSV8TqRpksopynYNkrFEoKcSy69kGIA53rdH2AhaRXAdXZbuWRHJ1YBuBf3Lq08WNQ==}
  670. eslint-plugin-unused-imports@4.1.3:
  671. resolution: {integrity: sha512-lqrNZIZjFMUr7P06eoKtQLwyVRibvG7N+LtfKtObYGizAAGrcqLkc3tDx+iAik2z7q0j/XI3ihjupIqxhFabFA==}
  672. peerDependencies:
  673. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  674. eslint: ^9.0.0 || ^8.0.0
  675. peerDependenciesMeta:
  676. '@typescript-eslint/eslint-plugin':
  677. optional: true
  678. eslint-rule-composer@0.3.0:
  679. resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
  680. engines: {node: '>=4.0.0'}
  681. eslint-scope@8.0.2:
  682. resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
  683. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  684. eslint-visitor-keys@3.4.3:
  685. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  686. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  687. eslint-visitor-keys@4.0.0:
  688. resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
  689. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  690. eslint@9.9.1:
  691. resolution: {integrity: sha512-dHvhrbfr4xFQ9/dq+jcVneZMyRYLjggWjk6RVsIiHsP8Rz6yZ8LvZ//iU4TrZF+SXWG+JkNF2OyiZRvzgRDqMg==}
  692. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  693. hasBin: true
  694. peerDependencies:
  695. jiti: '*'
  696. peerDependenciesMeta:
  697. jiti:
  698. optional: true
  699. espree@10.1.0:
  700. resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
  701. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  702. espree@9.6.1:
  703. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  704. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  705. esquery@1.6.0:
  706. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  707. engines: {node: '>=0.10'}
  708. esrecurse@4.3.0:
  709. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  710. engines: {node: '>=4.0'}
  711. estraverse@5.3.0:
  712. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  713. engines: {node: '>=4.0'}
  714. esutils@2.0.3:
  715. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  716. engines: {node: '>=0.10.0'}
  717. expand-template@2.0.3:
  718. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  719. engines: {node: '>=6'}
  720. fast-cidr-tools@0.2.5:
  721. resolution: {integrity: sha512-7/NO0T7mMlpOzm9b5wMhqZn6VO4CvQ0tQ8X0Nw/6uE74GRN+qV6lBZzlHlbtPAAutKqE3jThAL6WbON+7hNz1g==}
  722. engines: {node: '>=16'}
  723. fast-deep-equal@3.1.3:
  724. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  725. fast-fifo@1.3.2:
  726. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  727. fast-glob@3.3.2:
  728. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  729. engines: {node: '>=8.6.0'}
  730. fast-json-stable-stringify@2.1.0:
  731. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  732. fast-levenshtein@2.0.6:
  733. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  734. fast-uri@3.0.1:
  735. resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
  736. fastq@1.17.1:
  737. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  738. fdir@6.3.0:
  739. resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
  740. peerDependencies:
  741. picomatch: ^3 || ^4
  742. peerDependenciesMeta:
  743. picomatch:
  744. optional: true
  745. file-entry-cache@8.0.0:
  746. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  747. engines: {node: '>=16.0.0'}
  748. file-uri-to-path@1.0.0:
  749. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  750. fill-range@7.1.1:
  751. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  752. engines: {node: '>=8'}
  753. find-up@5.0.0:
  754. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  755. engines: {node: '>=10'}
  756. flat-cache@4.0.1:
  757. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  758. engines: {node: '>=16'}
  759. flat@5.0.2:
  760. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  761. hasBin: true
  762. flatted@3.3.1:
  763. resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
  764. foxact@0.2.37:
  765. resolution: {integrity: sha512-nzK7n3JAnmCWO3GJXe4ry196s7wlOUnJVBn/RQ9Og1FJ/pEaRi94atLGFmzM0CVDgIbSFdMnH49PtkWjSqtMSw==}
  766. peerDependencies:
  767. react: '*'
  768. peerDependenciesMeta:
  769. react:
  770. optional: true
  771. fs-constants@1.0.0:
  772. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  773. fs.realpath@1.0.0:
  774. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  775. fsevents@2.3.3:
  776. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  777. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  778. os: [darwin]
  779. function-bind@1.1.2:
  780. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  781. get-caller-file@2.0.5:
  782. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  783. engines: {node: 6.* || 8.* || >= 10.*}
  784. get-func-name@2.0.2:
  785. resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
  786. get-tsconfig@4.7.6:
  787. resolution: {integrity: sha512-ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==}
  788. github-from-package@0.0.0:
  789. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  790. glob-parent@5.1.2:
  791. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  792. engines: {node: '>= 6'}
  793. glob-parent@6.0.2:
  794. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  795. engines: {node: '>=10.13.0'}
  796. glob@8.1.0:
  797. resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
  798. engines: {node: '>=12'}
  799. deprecated: Glob versions prior to v9 are no longer supported
  800. globals@14.0.0:
  801. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  802. engines: {node: '>=18'}
  803. globals@15.9.0:
  804. resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==}
  805. engines: {node: '>=18'}
  806. globby@11.1.0:
  807. resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
  808. engines: {node: '>=10'}
  809. graceful-fs@4.2.11:
  810. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  811. graphemer@1.4.0:
  812. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  813. has-flag@4.0.0:
  814. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  815. engines: {node: '>=8'}
  816. hasown@2.0.2:
  817. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  818. engines: {node: '>= 0.4'}
  819. he@1.2.0:
  820. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  821. hasBin: true
  822. ieee754@1.2.1:
  823. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  824. ignore@5.3.1:
  825. resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
  826. engines: {node: '>= 4'}
  827. ignore@5.3.2:
  828. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  829. engines: {node: '>= 4'}
  830. import-fresh@3.3.0:
  831. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  832. engines: {node: '>=6'}
  833. imurmurhash@0.1.4:
  834. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  835. engines: {node: '>=0.8.19'}
  836. inflight@1.0.6:
  837. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  838. 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.
  839. inherits@2.0.4:
  840. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  841. ini@1.3.8:
  842. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  843. is-binary-path@2.1.0:
  844. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  845. engines: {node: '>=8'}
  846. is-core-module@2.15.1:
  847. resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
  848. engines: {node: '>= 0.4'}
  849. is-extglob@2.1.1:
  850. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  851. engines: {node: '>=0.10.0'}
  852. is-fullwidth-code-point@3.0.0:
  853. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  854. engines: {node: '>=8'}
  855. is-glob@4.0.3:
  856. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  857. engines: {node: '>=0.10.0'}
  858. is-number@7.0.0:
  859. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  860. engines: {node: '>=0.12.0'}
  861. is-path-inside@3.0.3:
  862. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  863. engines: {node: '>=8'}
  864. is-plain-obj@2.1.0:
  865. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  866. engines: {node: '>=8'}
  867. is-unicode-supported@0.1.0:
  868. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  869. engines: {node: '>=10'}
  870. isexe@2.0.0:
  871. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  872. js-yaml@4.1.0:
  873. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  874. hasBin: true
  875. jsdoc-type-pratt-parser@4.1.0:
  876. resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
  877. engines: {node: '>=12.0.0'}
  878. json-buffer@3.0.1:
  879. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  880. json-schema-traverse@0.4.1:
  881. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  882. json-schema-traverse@1.0.0:
  883. resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
  884. json-stable-stringify-without-jsonify@1.0.1:
  885. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  886. json-stringify-pretty-compact@3.0.0:
  887. resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==}
  888. jsonc-eslint-parser@2.4.0:
  889. resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
  890. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  891. keyv@4.5.4:
  892. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  893. levn@0.4.1:
  894. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  895. engines: {node: '>= 0.8.0'}
  896. locate-path@6.0.0:
  897. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  898. engines: {node: '>=10'}
  899. lodash.merge@4.6.2:
  900. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  901. lodash.truncate@4.4.2:
  902. resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
  903. lodash@4.17.21:
  904. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  905. log-symbols@4.1.0:
  906. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  907. engines: {node: '>=10'}
  908. loupe@2.3.7:
  909. resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
  910. merge2@1.4.1:
  911. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  912. engines: {node: '>= 8'}
  913. micromatch@4.0.8:
  914. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  915. engines: {node: '>=8.6'}
  916. mimic-response@3.1.0:
  917. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  918. engines: {node: '>=10'}
  919. minimatch@3.1.2:
  920. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  921. minimatch@5.1.6:
  922. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  923. engines: {node: '>=10'}
  924. minimatch@9.0.5:
  925. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  926. engines: {node: '>=16 || 14 >=14.17'}
  927. minimist@1.2.8:
  928. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  929. mitata@0.1.11:
  930. resolution: {integrity: sha512-cs6FiWcnRxn7atVumm8wA8R70XCDmMXgVgb/qWUSjr5dwuIBr7zC+22mbGYPlbyFixlIOjuP//A0e72Q1ZoGDw==}
  931. mkdirp-classic@0.5.3:
  932. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  933. mnemonist@0.39.8:
  934. resolution: {integrity: sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==}
  935. mocha@10.7.3:
  936. resolution: {integrity: sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==}
  937. engines: {node: '>= 14.0.0'}
  938. hasBin: true
  939. ms@2.1.2:
  940. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  941. ms@2.1.3:
  942. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  943. napi-build-utils@1.0.2:
  944. resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
  945. natural-compare@1.4.0:
  946. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  947. node-abi@3.65.0:
  948. resolution: {integrity: sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==}
  949. engines: {node: '>=10'}
  950. normalize-path@3.0.0:
  951. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  952. engines: {node: '>=0.10.0'}
  953. obliterator@2.0.4:
  954. resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==}
  955. once@1.4.0:
  956. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  957. optionator@0.9.4:
  958. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  959. engines: {node: '>= 0.8.0'}
  960. oxc-resolver@1.10.2:
  961. resolution: {integrity: sha512-NIbwVqoU8Bhl7PVtItHCg+VFFokIDwBgIgFUwFG2Y8ePhxftFh5xG+KLar5PLWXlCP4WunPIuXD3jr3v6/MfRw==}
  962. p-limit@3.1.0:
  963. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  964. engines: {node: '>=10'}
  965. p-locate@5.0.0:
  966. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  967. engines: {node: '>=10'}
  968. parent-module@1.0.1:
  969. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  970. engines: {node: '>=6'}
  971. path-exists@4.0.0:
  972. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  973. engines: {node: '>=8'}
  974. path-key@3.1.1:
  975. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  976. engines: {node: '>=8'}
  977. path-parse@1.0.7:
  978. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  979. path-type@4.0.0:
  980. resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
  981. engines: {node: '>=8'}
  982. pathval@1.1.1:
  983. resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
  984. picocolors@1.0.1:
  985. resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
  986. picomatch@2.3.1:
  987. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  988. engines: {node: '>=8.6'}
  989. picomatch@4.0.2:
  990. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  991. engines: {node: '>=12'}
  992. pirates@4.0.6:
  993. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  994. engines: {node: '>= 6'}
  995. prebuild-install@7.1.2:
  996. resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
  997. engines: {node: '>=10'}
  998. hasBin: true
  999. prelude-ls@1.2.1:
  1000. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1001. engines: {node: '>= 0.8.0'}
  1002. pump@3.0.0:
  1003. resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
  1004. punycode@2.3.1:
  1005. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1006. engines: {node: '>=6'}
  1007. queue-microtask@1.2.3:
  1008. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1009. queue-tick@1.0.1:
  1010. resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
  1011. randombytes@2.1.0:
  1012. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1013. rc@1.2.8:
  1014. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1015. hasBin: true
  1016. readable-stream@3.6.2:
  1017. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1018. engines: {node: '>= 6'}
  1019. readdirp@3.6.0:
  1020. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1021. engines: {node: '>=8.10.0'}
  1022. refa@0.12.1:
  1023. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1024. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1025. regexp-ast-analysis@0.7.1:
  1026. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1027. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1028. require-directory@2.1.1:
  1029. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1030. engines: {node: '>=0.10.0'}
  1031. require-from-string@2.0.2:
  1032. resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
  1033. engines: {node: '>=0.10.0'}
  1034. resolve-from@4.0.0:
  1035. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1036. engines: {node: '>=4'}
  1037. resolve-pkg-maps@1.0.0:
  1038. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1039. resolve@1.22.8:
  1040. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1041. hasBin: true
  1042. retry@0.13.1:
  1043. resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
  1044. engines: {node: '>= 4'}
  1045. reusify@1.0.4:
  1046. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1047. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1048. run-parallel@1.2.0:
  1049. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1050. safe-buffer@5.2.1:
  1051. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1052. scslre@0.3.0:
  1053. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1054. engines: {node: ^14.0.0 || >=16.0.0}
  1055. semver@7.6.3:
  1056. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  1057. engines: {node: '>=10'}
  1058. hasBin: true
  1059. serialize-javascript@6.0.2:
  1060. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1061. server-only@0.0.1:
  1062. resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
  1063. shebang-command@2.0.0:
  1064. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1065. engines: {node: '>=8'}
  1066. shebang-regex@3.0.0:
  1067. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1068. engines: {node: '>=8'}
  1069. simple-concat@1.0.1:
  1070. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1071. simple-get@4.0.1:
  1072. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1073. slash@3.0.0:
  1074. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1075. engines: {node: '>=8'}
  1076. slice-ansi@4.0.0:
  1077. resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
  1078. engines: {node: '>=10'}
  1079. source-map-support@0.5.21:
  1080. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1081. source-map@0.6.1:
  1082. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1083. engines: {node: '>=0.10.0'}
  1084. stable-hash@0.0.4:
  1085. resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
  1086. streamx@2.18.0:
  1087. resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==}
  1088. string-argv@0.3.2:
  1089. resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
  1090. engines: {node: '>=0.6.19'}
  1091. string-similarity@4.0.4:
  1092. resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
  1093. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1094. string-width@4.2.3:
  1095. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1096. engines: {node: '>=8'}
  1097. string_decoder@1.3.0:
  1098. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1099. strip-ansi@6.0.1:
  1100. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1101. engines: {node: '>=8'}
  1102. strip-json-comments@2.0.1:
  1103. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1104. engines: {node: '>=0.10.0'}
  1105. strip-json-comments@3.1.1:
  1106. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1107. engines: {node: '>=8'}
  1108. supports-color@7.2.0:
  1109. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1110. engines: {node: '>=8'}
  1111. supports-color@8.1.1:
  1112. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1113. engines: {node: '>=10'}
  1114. supports-preserve-symlinks-flag@1.0.0:
  1115. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1116. engines: {node: '>= 0.4'}
  1117. synckit@0.6.2:
  1118. resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
  1119. engines: {node: '>=12.20'}
  1120. table@6.8.2:
  1121. resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
  1122. engines: {node: '>=10.0.0'}
  1123. tapable@2.2.1:
  1124. resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
  1125. engines: {node: '>=6'}
  1126. tar-fs@2.1.1:
  1127. resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
  1128. tar-stream@2.2.0:
  1129. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1130. engines: {node: '>=6'}
  1131. tar-stream@3.1.7:
  1132. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1133. text-decoder@1.1.1:
  1134. resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==}
  1135. text-table@0.2.0:
  1136. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1137. tldts-core@6.1.41:
  1138. resolution: {integrity: sha512-SkwZgo1ZzMp2ziMBwci5VBnLR9VywCi02jSgMX5TO5kf9fdaBsxZkblLff3NlJNTcH0vfvEsgw2B7jVR556Vgw==}
  1139. tldts-experimental@6.1.41:
  1140. resolution: {integrity: sha512-sHpzKl2XpmoByBEZvEyTcq/58YPSdA4LDXN2yFQDm7P+i8z8FTDH9IAGkz/GKdgHtP2Doc50BvoHrgm1y/hqmg==}
  1141. tldts@6.1.41:
  1142. resolution: {integrity: sha512-RNpUkL5fYD2DTQQCdr8QMDp6UL0ThtpXT3q3+qPE05dIT+RK2I3M0VByVbQN1dEhLUGzimivVwxK2By9epLk6w==}
  1143. hasBin: true
  1144. to-regex-range@5.0.1:
  1145. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1146. engines: {node: '>=8.0'}
  1147. ts-api-utils@1.3.0:
  1148. resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
  1149. engines: {node: '>=16'}
  1150. peerDependencies:
  1151. typescript: '>=4.2.0'
  1152. tslib@2.6.3:
  1153. resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
  1154. tslib@2.7.0:
  1155. resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
  1156. tunnel-agent@0.6.0:
  1157. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1158. type-check@0.4.0:
  1159. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1160. engines: {node: '>= 0.8.0'}
  1161. type-detect@4.0.8:
  1162. resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
  1163. engines: {node: '>=4'}
  1164. type-fest@4.25.0:
  1165. resolution: {integrity: sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==}
  1166. engines: {node: '>=16'}
  1167. typescript-eslint@8.2.0:
  1168. resolution: {integrity: sha512-DmnqaPcML0xYwUzgNbM1XaKXpEb7BShYf2P1tkUmmcl8hyeG7Pj08Er7R9bNy6AufabywzJcOybQAtnD/c9DGw==}
  1169. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1170. peerDependencies:
  1171. typescript: '*'
  1172. peerDependenciesMeta:
  1173. typescript:
  1174. optional: true
  1175. typescript@5.5.4:
  1176. resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
  1177. engines: {node: '>=14.17'}
  1178. hasBin: true
  1179. undici-types@5.26.5:
  1180. resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
  1181. uri-js@4.4.1:
  1182. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1183. util-deprecate@1.0.2:
  1184. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1185. which@2.0.2:
  1186. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1187. engines: {node: '>= 8'}
  1188. hasBin: true
  1189. word-wrap@1.2.5:
  1190. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1191. engines: {node: '>=0.10.0'}
  1192. workerpool@6.5.1:
  1193. resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
  1194. wrap-ansi@7.0.0:
  1195. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1196. engines: {node: '>=10'}
  1197. wrappy@1.0.2:
  1198. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1199. y18n@5.0.8:
  1200. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1201. engines: {node: '>=10'}
  1202. yaml@2.5.0:
  1203. resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
  1204. engines: {node: '>= 14'}
  1205. hasBin: true
  1206. yargs-parser@20.2.9:
  1207. resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
  1208. engines: {node: '>=10'}
  1209. yargs-unparser@2.0.0:
  1210. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1211. engines: {node: '>=10'}
  1212. yargs@16.2.0:
  1213. resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
  1214. engines: {node: '>=10'}
  1215. yocto-queue@0.1.0:
  1216. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1217. engines: {node: '>=10'}
  1218. snapshots:
  1219. '@cliqz/adblocker-content@1.31.4':
  1220. dependencies:
  1221. '@cliqz/adblocker-extended-selectors': 1.31.4
  1222. '@cliqz/adblocker-extended-selectors@1.31.4': {}
  1223. '@cliqz/adblocker@1.31.4':
  1224. dependencies:
  1225. '@cliqz/adblocker-content': 1.31.4
  1226. '@cliqz/adblocker-extended-selectors': 1.31.4
  1227. '@remusao/guess-url-type': 1.3.0
  1228. '@remusao/small': 1.3.0
  1229. '@remusao/smaz': 1.10.0
  1230. '@types/chrome': 0.0.270
  1231. '@types/firefox-webext-browser': 120.0.4
  1232. tldts-experimental: 6.1.41
  1233. '@dual-bundle/import-meta-resolve@4.1.0': {}
  1234. '@emnapi/core@1.2.0':
  1235. dependencies:
  1236. '@emnapi/wasi-threads': 1.0.1
  1237. tslib: 2.6.3
  1238. optional: true
  1239. '@emnapi/runtime@1.2.0':
  1240. dependencies:
  1241. tslib: 2.6.3
  1242. optional: true
  1243. '@emnapi/wasi-threads@1.0.1':
  1244. dependencies:
  1245. tslib: 2.6.3
  1246. optional: true
  1247. '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.9.1)':
  1248. dependencies:
  1249. escape-string-regexp: 4.0.0
  1250. eslint: 9.9.1
  1251. ignore: 5.3.2
  1252. '@eslint-community/eslint-utils@4.4.0(eslint@9.9.1)':
  1253. dependencies:
  1254. eslint: 9.9.1
  1255. eslint-visitor-keys: 3.4.3
  1256. '@eslint-community/regexpp@4.11.0': {}
  1257. '@eslint-sukka/node@6.2.1(eslint@9.9.1)(typescript@5.5.4)':
  1258. dependencies:
  1259. '@eslint-sukka/shared': 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1260. eslint-plugin-n: 17.10.2(eslint@9.9.1)
  1261. eslint-plugin-sukka: 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1262. transitivePeerDependencies:
  1263. - eslint
  1264. - supports-color
  1265. - typescript
  1266. '@eslint-sukka/shared@6.2.1(eslint@9.9.1)(typescript@5.5.4)':
  1267. dependencies:
  1268. '@dual-bundle/import-meta-resolve': 4.1.0
  1269. '@types/eslint': 9.6.0
  1270. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1271. type-fest: 4.25.0
  1272. transitivePeerDependencies:
  1273. - eslint
  1274. - supports-color
  1275. - typescript
  1276. '@eslint/compat@1.1.1': {}
  1277. '@eslint/config-array@0.18.0':
  1278. dependencies:
  1279. '@eslint/object-schema': 2.1.4
  1280. debug: 4.3.5(supports-color@8.1.1)
  1281. minimatch: 3.1.2
  1282. transitivePeerDependencies:
  1283. - supports-color
  1284. '@eslint/eslintrc@3.1.0':
  1285. dependencies:
  1286. ajv: 6.12.6
  1287. debug: 4.3.5(supports-color@8.1.1)
  1288. espree: 10.1.0
  1289. globals: 14.0.0
  1290. ignore: 5.3.1
  1291. import-fresh: 3.3.0
  1292. js-yaml: 4.1.0
  1293. minimatch: 3.1.2
  1294. strip-json-comments: 3.1.1
  1295. transitivePeerDependencies:
  1296. - supports-color
  1297. '@eslint/js@9.9.1': {}
  1298. '@eslint/object-schema@2.1.4': {}
  1299. '@humanwhocodes/module-importer@1.0.1': {}
  1300. '@humanwhocodes/retry@0.3.0': {}
  1301. '@jsdevtools/ez-spawn@3.0.4':
  1302. dependencies:
  1303. call-me-maybe: 1.0.2
  1304. cross-spawn: 7.0.3
  1305. string-argv: 0.3.2
  1306. type-detect: 4.0.8
  1307. '@napi-rs/wasm-runtime@0.2.4':
  1308. dependencies:
  1309. '@emnapi/core': 1.2.0
  1310. '@emnapi/runtime': 1.2.0
  1311. '@tybys/wasm-util': 0.9.0
  1312. optional: true
  1313. '@nodelib/fs.scandir@2.1.5':
  1314. dependencies:
  1315. '@nodelib/fs.stat': 2.0.5
  1316. run-parallel: 1.2.0
  1317. '@nodelib/fs.stat@2.0.5': {}
  1318. '@nodelib/fs.walk@1.2.8':
  1319. dependencies:
  1320. '@nodelib/fs.scandir': 2.1.5
  1321. fastq: 1.17.1
  1322. '@oxc-resolver/binding-darwin-arm64@1.10.2':
  1323. optional: true
  1324. '@oxc-resolver/binding-darwin-x64@1.10.2':
  1325. optional: true
  1326. '@oxc-resolver/binding-freebsd-x64@1.10.2':
  1327. optional: true
  1328. '@oxc-resolver/binding-linux-arm-gnueabihf@1.10.2':
  1329. optional: true
  1330. '@oxc-resolver/binding-linux-arm64-gnu@1.10.2':
  1331. optional: true
  1332. '@oxc-resolver/binding-linux-arm64-musl@1.10.2':
  1333. optional: true
  1334. '@oxc-resolver/binding-linux-x64-gnu@1.10.2':
  1335. optional: true
  1336. '@oxc-resolver/binding-linux-x64-musl@1.10.2':
  1337. optional: true
  1338. '@oxc-resolver/binding-wasm32-wasi@1.10.2':
  1339. dependencies:
  1340. '@napi-rs/wasm-runtime': 0.2.4
  1341. optional: true
  1342. '@oxc-resolver/binding-win32-arm64-msvc@1.10.2':
  1343. optional: true
  1344. '@oxc-resolver/binding-win32-x64-msvc@1.10.2':
  1345. optional: true
  1346. '@remusao/guess-url-type@1.3.0': {}
  1347. '@remusao/small@1.3.0': {}
  1348. '@remusao/smaz-compress@1.10.0':
  1349. dependencies:
  1350. '@remusao/trie': 1.5.0
  1351. '@remusao/smaz-decompress@1.10.0': {}
  1352. '@remusao/smaz@1.10.0':
  1353. dependencies:
  1354. '@remusao/smaz-compress': 1.10.0
  1355. '@remusao/smaz-decompress': 1.10.0
  1356. '@remusao/trie@1.5.0': {}
  1357. '@stylistic/eslint-plugin-js@2.6.4(eslint@9.9.1)':
  1358. dependencies:
  1359. '@types/eslint': 9.6.0
  1360. acorn: 8.12.1
  1361. eslint: 9.9.1
  1362. eslint-visitor-keys: 4.0.0
  1363. espree: 10.1.0
  1364. '@stylistic/eslint-plugin-plus@2.6.4(eslint@9.9.1)':
  1365. dependencies:
  1366. '@types/eslint': 9.6.0
  1367. eslint: 9.9.1
  1368. '@stylistic/eslint-plugin-ts@2.6.4(eslint@9.9.1)(typescript@5.5.4)':
  1369. dependencies:
  1370. '@stylistic/eslint-plugin-js': 2.6.4(eslint@9.9.1)
  1371. '@types/eslint': 9.6.0
  1372. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1373. eslint: 9.9.1
  1374. transitivePeerDependencies:
  1375. - supports-color
  1376. - typescript
  1377. '@swc-node/core@1.13.3(@swc/core@1.7.18)(@swc/types@0.1.12)':
  1378. dependencies:
  1379. '@swc/core': 1.7.18
  1380. '@swc/types': 0.1.12
  1381. '@swc-node/register@1.10.9(@swc/core@1.7.18)(@swc/types@0.1.12)(typescript@5.5.4)':
  1382. dependencies:
  1383. '@swc-node/core': 1.13.3(@swc/core@1.7.18)(@swc/types@0.1.12)
  1384. '@swc-node/sourcemap-support': 0.5.1
  1385. '@swc/core': 1.7.18
  1386. colorette: 2.0.20
  1387. debug: 4.3.5(supports-color@8.1.1)
  1388. oxc-resolver: 1.10.2
  1389. pirates: 4.0.6
  1390. tslib: 2.6.3
  1391. typescript: 5.5.4
  1392. transitivePeerDependencies:
  1393. - '@swc/types'
  1394. - supports-color
  1395. '@swc-node/sourcemap-support@0.5.1':
  1396. dependencies:
  1397. source-map-support: 0.5.21
  1398. tslib: 2.6.3
  1399. '@swc/core-darwin-arm64@1.7.18':
  1400. optional: true
  1401. '@swc/core-darwin-x64@1.7.18':
  1402. optional: true
  1403. '@swc/core-linux-arm-gnueabihf@1.7.18':
  1404. optional: true
  1405. '@swc/core-linux-arm64-gnu@1.7.18':
  1406. optional: true
  1407. '@swc/core-linux-arm64-musl@1.7.18':
  1408. optional: true
  1409. '@swc/core-linux-x64-gnu@1.7.18':
  1410. optional: true
  1411. '@swc/core-linux-x64-musl@1.7.18':
  1412. optional: true
  1413. '@swc/core-win32-arm64-msvc@1.7.18':
  1414. optional: true
  1415. '@swc/core-win32-ia32-msvc@1.7.18':
  1416. optional: true
  1417. '@swc/core-win32-x64-msvc@1.7.18':
  1418. optional: true
  1419. '@swc/core@1.7.18':
  1420. dependencies:
  1421. '@swc/counter': 0.1.3
  1422. '@swc/types': 0.1.12
  1423. optionalDependencies:
  1424. '@swc/core-darwin-arm64': 1.7.18
  1425. '@swc/core-darwin-x64': 1.7.18
  1426. '@swc/core-linux-arm-gnueabihf': 1.7.18
  1427. '@swc/core-linux-arm64-gnu': 1.7.18
  1428. '@swc/core-linux-arm64-musl': 1.7.18
  1429. '@swc/core-linux-x64-gnu': 1.7.18
  1430. '@swc/core-linux-x64-musl': 1.7.18
  1431. '@swc/core-win32-arm64-msvc': 1.7.18
  1432. '@swc/core-win32-ia32-msvc': 1.7.18
  1433. '@swc/core-win32-x64-msvc': 1.7.18
  1434. '@swc/counter@0.1.3': {}
  1435. '@swc/types@0.1.12':
  1436. dependencies:
  1437. '@swc/counter': 0.1.3
  1438. '@tybys/wasm-util@0.9.0':
  1439. dependencies:
  1440. tslib: 2.6.3
  1441. optional: true
  1442. '@types/async-retry@1.4.8':
  1443. dependencies:
  1444. '@types/retry': 0.12.5
  1445. '@types/better-sqlite3@7.6.11':
  1446. dependencies:
  1447. '@types/node': 20.14.11
  1448. '@types/chai@4.3.17': {}
  1449. '@types/chrome@0.0.270':
  1450. dependencies:
  1451. '@types/filesystem': 0.0.36
  1452. '@types/har-format': 1.2.15
  1453. '@types/eslint@9.6.0':
  1454. dependencies:
  1455. '@types/estree': 1.0.5
  1456. '@types/json-schema': 7.0.15
  1457. '@types/estree@1.0.5': {}
  1458. '@types/filesystem@0.0.36':
  1459. dependencies:
  1460. '@types/filewriter': 0.0.33
  1461. '@types/filewriter@0.0.33': {}
  1462. '@types/firefox-webext-browser@120.0.4': {}
  1463. '@types/har-format@1.2.15': {}
  1464. '@types/json-schema@7.0.15': {}
  1465. '@types/mocha@10.0.7': {}
  1466. '@types/node@20.14.11':
  1467. dependencies:
  1468. undici-types: 5.26.5
  1469. '@types/punycode@2.1.4': {}
  1470. '@types/retry@0.12.5': {}
  1471. '@types/tar-stream@3.1.3':
  1472. dependencies:
  1473. '@types/node': 20.14.11
  1474. '@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4)':
  1475. dependencies:
  1476. '@eslint-community/regexpp': 4.11.0
  1477. '@typescript-eslint/parser': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1478. '@typescript-eslint/scope-manager': 8.2.0
  1479. '@typescript-eslint/type-utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1480. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1481. '@typescript-eslint/visitor-keys': 8.2.0
  1482. eslint: 9.9.1
  1483. graphemer: 1.4.0
  1484. ignore: 5.3.2
  1485. natural-compare: 1.4.0
  1486. ts-api-utils: 1.3.0(typescript@5.5.4)
  1487. optionalDependencies:
  1488. typescript: 5.5.4
  1489. transitivePeerDependencies:
  1490. - supports-color
  1491. '@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4)':
  1492. dependencies:
  1493. '@typescript-eslint/scope-manager': 8.2.0
  1494. '@typescript-eslint/types': 8.2.0
  1495. '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4)
  1496. '@typescript-eslint/visitor-keys': 8.2.0
  1497. debug: 4.3.6
  1498. eslint: 9.9.1
  1499. optionalDependencies:
  1500. typescript: 5.5.4
  1501. transitivePeerDependencies:
  1502. - supports-color
  1503. '@typescript-eslint/scope-manager@7.18.0':
  1504. dependencies:
  1505. '@typescript-eslint/types': 7.18.0
  1506. '@typescript-eslint/visitor-keys': 7.18.0
  1507. '@typescript-eslint/scope-manager@8.2.0':
  1508. dependencies:
  1509. '@typescript-eslint/types': 8.2.0
  1510. '@typescript-eslint/visitor-keys': 8.2.0
  1511. '@typescript-eslint/type-utils@8.2.0(eslint@9.9.1)(typescript@5.5.4)':
  1512. dependencies:
  1513. '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4)
  1514. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1515. debug: 4.3.6
  1516. ts-api-utils: 1.3.0(typescript@5.5.4)
  1517. optionalDependencies:
  1518. typescript: 5.5.4
  1519. transitivePeerDependencies:
  1520. - eslint
  1521. - supports-color
  1522. '@typescript-eslint/types@7.18.0': {}
  1523. '@typescript-eslint/types@8.0.0-alpha.36': {}
  1524. '@typescript-eslint/types@8.2.0': {}
  1525. '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)':
  1526. dependencies:
  1527. '@typescript-eslint/types': 7.18.0
  1528. '@typescript-eslint/visitor-keys': 7.18.0
  1529. debug: 4.3.6
  1530. globby: 11.1.0
  1531. is-glob: 4.0.3
  1532. minimatch: 9.0.5
  1533. semver: 7.6.3
  1534. ts-api-utils: 1.3.0(typescript@5.5.4)
  1535. optionalDependencies:
  1536. typescript: 5.5.4
  1537. transitivePeerDependencies:
  1538. - supports-color
  1539. '@typescript-eslint/typescript-estree@8.2.0(typescript@5.5.4)':
  1540. dependencies:
  1541. '@typescript-eslint/types': 8.2.0
  1542. '@typescript-eslint/visitor-keys': 8.2.0
  1543. debug: 4.3.6
  1544. globby: 11.1.0
  1545. is-glob: 4.0.3
  1546. minimatch: 9.0.5
  1547. semver: 7.6.3
  1548. ts-api-utils: 1.3.0(typescript@5.5.4)
  1549. optionalDependencies:
  1550. typescript: 5.5.4
  1551. transitivePeerDependencies:
  1552. - supports-color
  1553. '@typescript-eslint/utils@7.18.0(eslint@9.9.1)(typescript@5.5.4)':
  1554. dependencies:
  1555. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1556. '@typescript-eslint/scope-manager': 7.18.0
  1557. '@typescript-eslint/types': 7.18.0
  1558. '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
  1559. eslint: 9.9.1
  1560. transitivePeerDependencies:
  1561. - supports-color
  1562. - typescript
  1563. '@typescript-eslint/utils@8.2.0(eslint@9.9.1)(typescript@5.5.4)':
  1564. dependencies:
  1565. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1566. '@typescript-eslint/scope-manager': 8.2.0
  1567. '@typescript-eslint/types': 8.2.0
  1568. '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4)
  1569. eslint: 9.9.1
  1570. transitivePeerDependencies:
  1571. - supports-color
  1572. - typescript
  1573. '@typescript-eslint/visitor-keys@7.18.0':
  1574. dependencies:
  1575. '@typescript-eslint/types': 7.18.0
  1576. eslint-visitor-keys: 3.4.3
  1577. '@typescript-eslint/visitor-keys@8.2.0':
  1578. dependencies:
  1579. '@typescript-eslint/types': 8.0.0-alpha.36
  1580. eslint-visitor-keys: 3.4.3
  1581. acorn-jsx@5.3.2(acorn@8.12.1):
  1582. dependencies:
  1583. acorn: 8.12.1
  1584. acorn@8.12.1: {}
  1585. ajv@6.12.6:
  1586. dependencies:
  1587. fast-deep-equal: 3.1.3
  1588. fast-json-stable-stringify: 2.1.0
  1589. json-schema-traverse: 0.4.1
  1590. uri-js: 4.4.1
  1591. ajv@8.17.1:
  1592. dependencies:
  1593. fast-deep-equal: 3.1.3
  1594. fast-uri: 3.0.1
  1595. json-schema-traverse: 1.0.0
  1596. require-from-string: 2.0.2
  1597. ansi-colors@4.1.3: {}
  1598. ansi-regex@5.0.1: {}
  1599. ansi-styles@4.3.0:
  1600. dependencies:
  1601. color-convert: 2.0.1
  1602. anymatch@3.1.3:
  1603. dependencies:
  1604. normalize-path: 3.0.0
  1605. picomatch: 2.3.1
  1606. argparse@2.0.1: {}
  1607. array-union@2.1.0: {}
  1608. assertion-error@1.1.0: {}
  1609. astral-regex@2.0.0: {}
  1610. async-retry@1.3.3:
  1611. dependencies:
  1612. retry: 0.13.1
  1613. async-sema@3.1.1: {}
  1614. b4a@1.6.6: {}
  1615. balanced-match@1.0.2: {}
  1616. bare-events@2.4.2:
  1617. optional: true
  1618. base64-js@1.5.1: {}
  1619. better-sqlite3@11.2.1:
  1620. dependencies:
  1621. bindings: 1.5.0
  1622. prebuild-install: 7.1.2
  1623. binary-extensions@2.3.0: {}
  1624. bindings@1.5.0:
  1625. dependencies:
  1626. file-uri-to-path: 1.0.0
  1627. bl@4.1.0:
  1628. dependencies:
  1629. buffer: 5.7.1
  1630. inherits: 2.0.4
  1631. readable-stream: 3.6.2
  1632. brace-expansion@1.1.11:
  1633. dependencies:
  1634. balanced-match: 1.0.2
  1635. concat-map: 0.0.1
  1636. brace-expansion@2.0.1:
  1637. dependencies:
  1638. balanced-match: 1.0.2
  1639. braces@3.0.3:
  1640. dependencies:
  1641. fill-range: 7.1.1
  1642. browser-stdout@1.3.1: {}
  1643. buffer-from@1.1.2: {}
  1644. buffer@5.7.1:
  1645. dependencies:
  1646. base64-js: 1.5.1
  1647. ieee754: 1.2.1
  1648. call-me-maybe@1.0.2: {}
  1649. callsites@3.1.0: {}
  1650. camelcase@6.3.0: {}
  1651. chai@4.4.1:
  1652. dependencies:
  1653. assertion-error: 1.1.0
  1654. check-error: 1.0.3
  1655. deep-eql: 4.1.4
  1656. get-func-name: 2.0.2
  1657. loupe: 2.3.7
  1658. pathval: 1.1.1
  1659. type-detect: 4.0.8
  1660. chalk@4.1.2:
  1661. dependencies:
  1662. ansi-styles: 4.3.0
  1663. supports-color: 7.2.0
  1664. check-error@1.0.3:
  1665. dependencies:
  1666. get-func-name: 2.0.2
  1667. chokidar@3.6.0:
  1668. dependencies:
  1669. anymatch: 3.1.3
  1670. braces: 3.0.3
  1671. glob-parent: 5.1.2
  1672. is-binary-path: 2.1.0
  1673. is-glob: 4.0.3
  1674. normalize-path: 3.0.0
  1675. readdirp: 3.6.0
  1676. optionalDependencies:
  1677. fsevents: 2.3.3
  1678. chownr@1.1.4: {}
  1679. ci-info@4.0.0: {}
  1680. client-only@0.0.1: {}
  1681. cliui@7.0.4:
  1682. dependencies:
  1683. string-width: 4.2.3
  1684. strip-ansi: 6.0.1
  1685. wrap-ansi: 7.0.0
  1686. color-convert@2.0.1:
  1687. dependencies:
  1688. color-name: 1.1.4
  1689. color-name@1.1.4: {}
  1690. colorette@2.0.20: {}
  1691. comment-parser@1.4.1: {}
  1692. concat-map@0.0.1: {}
  1693. cross-spawn@7.0.3:
  1694. dependencies:
  1695. path-key: 3.1.1
  1696. shebang-command: 2.0.0
  1697. which: 2.0.2
  1698. csv-parse@5.5.6: {}
  1699. debug@3.2.7:
  1700. dependencies:
  1701. ms: 2.1.3
  1702. debug@4.3.5(supports-color@8.1.1):
  1703. dependencies:
  1704. ms: 2.1.2
  1705. optionalDependencies:
  1706. supports-color: 8.1.1
  1707. debug@4.3.6:
  1708. dependencies:
  1709. ms: 2.1.2
  1710. decamelize@4.0.0: {}
  1711. decompress-response@6.0.0:
  1712. dependencies:
  1713. mimic-response: 3.1.0
  1714. deep-eql@4.1.4:
  1715. dependencies:
  1716. type-detect: 4.0.8
  1717. deep-extend@0.6.0: {}
  1718. deep-is@0.1.4: {}
  1719. defu@6.1.4: {}
  1720. detect-libc@2.0.3: {}
  1721. diff@5.2.0: {}
  1722. dir-glob@3.0.1:
  1723. dependencies:
  1724. path-type: 4.0.0
  1725. doctrine@3.0.0:
  1726. dependencies:
  1727. esutils: 2.0.3
  1728. emoji-regex@8.0.0: {}
  1729. end-of-stream@1.4.4:
  1730. dependencies:
  1731. once: 1.4.0
  1732. enhanced-resolve@5.17.1:
  1733. dependencies:
  1734. graceful-fs: 4.2.11
  1735. tapable: 2.2.1
  1736. escalade@3.1.2: {}
  1737. escape-string-regexp@4.0.0: {}
  1738. eslint-compat-utils@0.5.1(eslint@9.9.1):
  1739. dependencies:
  1740. eslint: 9.9.1
  1741. semver: 7.6.3
  1742. eslint-config-sukka@6.2.1(@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4):
  1743. dependencies:
  1744. '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.9.1)
  1745. '@eslint-sukka/shared': 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1746. '@eslint/compat': 1.1.1
  1747. '@eslint/js': 9.9.1
  1748. '@stylistic/eslint-plugin-js': 2.6.4(eslint@9.9.1)
  1749. '@stylistic/eslint-plugin-plus': 2.6.4(eslint@9.9.1)
  1750. '@stylistic/eslint-plugin-ts': 2.6.4(eslint@9.9.1)(typescript@5.5.4)
  1751. '@typescript-eslint/parser': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1752. ci-info: 4.0.0
  1753. defu: 6.1.4
  1754. eslint-import-resolver-ts-bundled: 6.2.1
  1755. eslint-plugin-autofix: 2.1.0(eslint@9.9.1)
  1756. eslint-plugin-deprecation: 3.0.0(eslint@9.9.1)(typescript@5.5.4)
  1757. eslint-plugin-import-x: 3.1.0(eslint@9.9.1)(typescript@5.5.4)
  1758. eslint-plugin-jsonc: 2.16.0(eslint@9.9.1)
  1759. eslint-plugin-promise: 7.1.0(eslint@9.9.1)
  1760. eslint-plugin-regexp: 2.6.0(eslint@9.9.1)
  1761. eslint-plugin-sukka: 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1762. eslint-plugin-sukka-ts: 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1763. eslint-plugin-unused-imports: 4.1.3(@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)
  1764. jsonc-eslint-parser: 2.4.0
  1765. picocolors: 1.0.1
  1766. typescript-eslint: 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1767. transitivePeerDependencies:
  1768. - '@typescript-eslint/eslint-plugin'
  1769. - eslint
  1770. - supports-color
  1771. - typescript
  1772. eslint-formatter-sukka@6.2.1:
  1773. dependencies:
  1774. ci-info: 4.0.0
  1775. picocolors: 1.0.1
  1776. eslint-import-resolver-node@0.3.9:
  1777. dependencies:
  1778. debug: 3.2.7
  1779. is-core-module: 2.15.1
  1780. resolve: 1.22.8
  1781. transitivePeerDependencies:
  1782. - supports-color
  1783. eslint-import-resolver-ts-bundled@6.2.1:
  1784. dependencies:
  1785. enhanced-resolve: 5.17.1
  1786. eslint-plugin-autofix@2.1.0(eslint@9.9.1):
  1787. dependencies:
  1788. eslint: 9.9.1
  1789. eslint-rule-composer: 0.3.0
  1790. espree: 9.6.1
  1791. esutils: 2.0.3
  1792. lodash: 4.17.21
  1793. string-similarity: 4.0.4
  1794. eslint-plugin-deprecation@3.0.0(eslint@9.9.1)(typescript@5.5.4):
  1795. dependencies:
  1796. '@typescript-eslint/utils': 7.18.0(eslint@9.9.1)(typescript@5.5.4)
  1797. eslint: 9.9.1
  1798. ts-api-utils: 1.3.0(typescript@5.5.4)
  1799. tslib: 2.7.0
  1800. typescript: 5.5.4
  1801. transitivePeerDependencies:
  1802. - supports-color
  1803. eslint-plugin-es-x@7.8.0(eslint@9.9.1):
  1804. dependencies:
  1805. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1806. '@eslint-community/regexpp': 4.11.0
  1807. eslint: 9.9.1
  1808. eslint-compat-utils: 0.5.1(eslint@9.9.1)
  1809. eslint-plugin-import-x@3.1.0(eslint@9.9.1)(typescript@5.5.4):
  1810. dependencies:
  1811. '@typescript-eslint/utils': 7.18.0(eslint@9.9.1)(typescript@5.5.4)
  1812. debug: 4.3.6
  1813. doctrine: 3.0.0
  1814. eslint: 9.9.1
  1815. eslint-import-resolver-node: 0.3.9
  1816. get-tsconfig: 4.7.6
  1817. is-glob: 4.0.3
  1818. minimatch: 9.0.5
  1819. semver: 7.6.3
  1820. stable-hash: 0.0.4
  1821. tslib: 2.7.0
  1822. transitivePeerDependencies:
  1823. - supports-color
  1824. - typescript
  1825. eslint-plugin-jsonc@2.16.0(eslint@9.9.1):
  1826. dependencies:
  1827. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1828. eslint: 9.9.1
  1829. eslint-compat-utils: 0.5.1(eslint@9.9.1)
  1830. espree: 9.6.1
  1831. graphemer: 1.4.0
  1832. jsonc-eslint-parser: 2.4.0
  1833. natural-compare: 1.4.0
  1834. synckit: 0.6.2
  1835. eslint-plugin-n@17.10.2(eslint@9.9.1):
  1836. dependencies:
  1837. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1838. enhanced-resolve: 5.17.1
  1839. eslint: 9.9.1
  1840. eslint-plugin-es-x: 7.8.0(eslint@9.9.1)
  1841. get-tsconfig: 4.7.6
  1842. globals: 15.9.0
  1843. ignore: 5.3.2
  1844. minimatch: 9.0.5
  1845. semver: 7.6.3
  1846. eslint-plugin-promise@7.1.0(eslint@9.9.1):
  1847. dependencies:
  1848. eslint: 9.9.1
  1849. eslint-plugin-regexp@2.6.0(eslint@9.9.1):
  1850. dependencies:
  1851. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1852. '@eslint-community/regexpp': 4.11.0
  1853. comment-parser: 1.4.1
  1854. eslint: 9.9.1
  1855. jsdoc-type-pratt-parser: 4.1.0
  1856. refa: 0.12.1
  1857. regexp-ast-analysis: 0.7.1
  1858. scslre: 0.3.0
  1859. eslint-plugin-sukka-ts@6.2.1(eslint@9.9.1)(typescript@5.5.4):
  1860. dependencies:
  1861. '@eslint-sukka/shared': 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1862. '@typescript-eslint/type-utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1863. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1864. transitivePeerDependencies:
  1865. - eslint
  1866. - supports-color
  1867. - typescript
  1868. eslint-plugin-sukka@6.2.1(eslint@9.9.1)(typescript@5.5.4):
  1869. dependencies:
  1870. '@eslint-sukka/shared': 6.2.1(eslint@9.9.1)(typescript@5.5.4)
  1871. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  1872. transitivePeerDependencies:
  1873. - eslint
  1874. - supports-color
  1875. - typescript
  1876. eslint-plugin-unused-imports@4.1.3(@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1):
  1877. dependencies:
  1878. eslint: 9.9.1
  1879. optionalDependencies:
  1880. '@typescript-eslint/eslint-plugin': 8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4)
  1881. eslint-rule-composer@0.3.0: {}
  1882. eslint-scope@8.0.2:
  1883. dependencies:
  1884. esrecurse: 4.3.0
  1885. estraverse: 5.3.0
  1886. eslint-visitor-keys@3.4.3: {}
  1887. eslint-visitor-keys@4.0.0: {}
  1888. eslint@9.9.1:
  1889. dependencies:
  1890. '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1)
  1891. '@eslint-community/regexpp': 4.11.0
  1892. '@eslint/config-array': 0.18.0
  1893. '@eslint/eslintrc': 3.1.0
  1894. '@eslint/js': 9.9.1
  1895. '@humanwhocodes/module-importer': 1.0.1
  1896. '@humanwhocodes/retry': 0.3.0
  1897. '@nodelib/fs.walk': 1.2.8
  1898. ajv: 6.12.6
  1899. chalk: 4.1.2
  1900. cross-spawn: 7.0.3
  1901. debug: 4.3.5(supports-color@8.1.1)
  1902. escape-string-regexp: 4.0.0
  1903. eslint-scope: 8.0.2
  1904. eslint-visitor-keys: 4.0.0
  1905. espree: 10.1.0
  1906. esquery: 1.6.0
  1907. esutils: 2.0.3
  1908. fast-deep-equal: 3.1.3
  1909. file-entry-cache: 8.0.0
  1910. find-up: 5.0.0
  1911. glob-parent: 6.0.2
  1912. ignore: 5.3.1
  1913. imurmurhash: 0.1.4
  1914. is-glob: 4.0.3
  1915. is-path-inside: 3.0.3
  1916. json-stable-stringify-without-jsonify: 1.0.1
  1917. levn: 0.4.1
  1918. lodash.merge: 4.6.2
  1919. minimatch: 3.1.2
  1920. natural-compare: 1.4.0
  1921. optionator: 0.9.4
  1922. strip-ansi: 6.0.1
  1923. text-table: 0.2.0
  1924. transitivePeerDependencies:
  1925. - supports-color
  1926. espree@10.1.0:
  1927. dependencies:
  1928. acorn: 8.12.1
  1929. acorn-jsx: 5.3.2(acorn@8.12.1)
  1930. eslint-visitor-keys: 4.0.0
  1931. espree@9.6.1:
  1932. dependencies:
  1933. acorn: 8.12.1
  1934. acorn-jsx: 5.3.2(acorn@8.12.1)
  1935. eslint-visitor-keys: 3.4.3
  1936. esquery@1.6.0:
  1937. dependencies:
  1938. estraverse: 5.3.0
  1939. esrecurse@4.3.0:
  1940. dependencies:
  1941. estraverse: 5.3.0
  1942. estraverse@5.3.0: {}
  1943. esutils@2.0.3: {}
  1944. expand-template@2.0.3: {}
  1945. fast-cidr-tools@0.2.5: {}
  1946. fast-deep-equal@3.1.3: {}
  1947. fast-fifo@1.3.2: {}
  1948. fast-glob@3.3.2:
  1949. dependencies:
  1950. '@nodelib/fs.stat': 2.0.5
  1951. '@nodelib/fs.walk': 1.2.8
  1952. glob-parent: 5.1.2
  1953. merge2: 1.4.1
  1954. micromatch: 4.0.8
  1955. fast-json-stable-stringify@2.1.0: {}
  1956. fast-levenshtein@2.0.6: {}
  1957. fast-uri@3.0.1: {}
  1958. fastq@1.17.1:
  1959. dependencies:
  1960. reusify: 1.0.4
  1961. fdir@6.3.0(picomatch@4.0.2):
  1962. optionalDependencies:
  1963. picomatch: 4.0.2
  1964. file-entry-cache@8.0.0:
  1965. dependencies:
  1966. flat-cache: 4.0.1
  1967. file-uri-to-path@1.0.0: {}
  1968. fill-range@7.1.1:
  1969. dependencies:
  1970. to-regex-range: 5.0.1
  1971. find-up@5.0.0:
  1972. dependencies:
  1973. locate-path: 6.0.0
  1974. path-exists: 4.0.0
  1975. flat-cache@4.0.1:
  1976. dependencies:
  1977. flatted: 3.3.1
  1978. keyv: 4.5.4
  1979. flat@5.0.2: {}
  1980. flatted@3.3.1: {}
  1981. foxact@0.2.37:
  1982. dependencies:
  1983. client-only: 0.0.1
  1984. server-only: 0.0.1
  1985. fs-constants@1.0.0: {}
  1986. fs.realpath@1.0.0: {}
  1987. fsevents@2.3.3:
  1988. optional: true
  1989. function-bind@1.1.2: {}
  1990. get-caller-file@2.0.5: {}
  1991. get-func-name@2.0.2: {}
  1992. get-tsconfig@4.7.6:
  1993. dependencies:
  1994. resolve-pkg-maps: 1.0.0
  1995. github-from-package@0.0.0: {}
  1996. glob-parent@5.1.2:
  1997. dependencies:
  1998. is-glob: 4.0.3
  1999. glob-parent@6.0.2:
  2000. dependencies:
  2001. is-glob: 4.0.3
  2002. glob@8.1.0:
  2003. dependencies:
  2004. fs.realpath: 1.0.0
  2005. inflight: 1.0.6
  2006. inherits: 2.0.4
  2007. minimatch: 5.1.6
  2008. once: 1.4.0
  2009. globals@14.0.0: {}
  2010. globals@15.9.0: {}
  2011. globby@11.1.0:
  2012. dependencies:
  2013. array-union: 2.1.0
  2014. dir-glob: 3.0.1
  2015. fast-glob: 3.3.2
  2016. ignore: 5.3.2
  2017. merge2: 1.4.1
  2018. slash: 3.0.0
  2019. graceful-fs@4.2.11: {}
  2020. graphemer@1.4.0: {}
  2021. has-flag@4.0.0: {}
  2022. hasown@2.0.2:
  2023. dependencies:
  2024. function-bind: 1.1.2
  2025. he@1.2.0: {}
  2026. ieee754@1.2.1: {}
  2027. ignore@5.3.1: {}
  2028. ignore@5.3.2: {}
  2029. import-fresh@3.3.0:
  2030. dependencies:
  2031. parent-module: 1.0.1
  2032. resolve-from: 4.0.0
  2033. imurmurhash@0.1.4: {}
  2034. inflight@1.0.6:
  2035. dependencies:
  2036. once: 1.4.0
  2037. wrappy: 1.0.2
  2038. inherits@2.0.4: {}
  2039. ini@1.3.8: {}
  2040. is-binary-path@2.1.0:
  2041. dependencies:
  2042. binary-extensions: 2.3.0
  2043. is-core-module@2.15.1:
  2044. dependencies:
  2045. hasown: 2.0.2
  2046. is-extglob@2.1.1: {}
  2047. is-fullwidth-code-point@3.0.0: {}
  2048. is-glob@4.0.3:
  2049. dependencies:
  2050. is-extglob: 2.1.1
  2051. is-number@7.0.0: {}
  2052. is-path-inside@3.0.3: {}
  2053. is-plain-obj@2.1.0: {}
  2054. is-unicode-supported@0.1.0: {}
  2055. isexe@2.0.0: {}
  2056. js-yaml@4.1.0:
  2057. dependencies:
  2058. argparse: 2.0.1
  2059. jsdoc-type-pratt-parser@4.1.0: {}
  2060. json-buffer@3.0.1: {}
  2061. json-schema-traverse@0.4.1: {}
  2062. json-schema-traverse@1.0.0: {}
  2063. json-stable-stringify-without-jsonify@1.0.1: {}
  2064. json-stringify-pretty-compact@3.0.0: {}
  2065. jsonc-eslint-parser@2.4.0:
  2066. dependencies:
  2067. acorn: 8.12.1
  2068. eslint-visitor-keys: 3.4.3
  2069. espree: 9.6.1
  2070. semver: 7.6.3
  2071. keyv@4.5.4:
  2072. dependencies:
  2073. json-buffer: 3.0.1
  2074. levn@0.4.1:
  2075. dependencies:
  2076. prelude-ls: 1.2.1
  2077. type-check: 0.4.0
  2078. locate-path@6.0.0:
  2079. dependencies:
  2080. p-locate: 5.0.0
  2081. lodash.merge@4.6.2: {}
  2082. lodash.truncate@4.4.2: {}
  2083. lodash@4.17.21: {}
  2084. log-symbols@4.1.0:
  2085. dependencies:
  2086. chalk: 4.1.2
  2087. is-unicode-supported: 0.1.0
  2088. loupe@2.3.7:
  2089. dependencies:
  2090. get-func-name: 2.0.2
  2091. merge2@1.4.1: {}
  2092. micromatch@4.0.8:
  2093. dependencies:
  2094. braces: 3.0.3
  2095. picomatch: 2.3.1
  2096. mimic-response@3.1.0: {}
  2097. minimatch@3.1.2:
  2098. dependencies:
  2099. brace-expansion: 1.1.11
  2100. minimatch@5.1.6:
  2101. dependencies:
  2102. brace-expansion: 2.0.1
  2103. minimatch@9.0.5:
  2104. dependencies:
  2105. brace-expansion: 2.0.1
  2106. minimist@1.2.8: {}
  2107. mitata@0.1.11: {}
  2108. mkdirp-classic@0.5.3: {}
  2109. mnemonist@0.39.8:
  2110. dependencies:
  2111. obliterator: 2.0.4
  2112. mocha@10.7.3:
  2113. dependencies:
  2114. ansi-colors: 4.1.3
  2115. browser-stdout: 1.3.1
  2116. chokidar: 3.6.0
  2117. debug: 4.3.5(supports-color@8.1.1)
  2118. diff: 5.2.0
  2119. escape-string-regexp: 4.0.0
  2120. find-up: 5.0.0
  2121. glob: 8.1.0
  2122. he: 1.2.0
  2123. js-yaml: 4.1.0
  2124. log-symbols: 4.1.0
  2125. minimatch: 5.1.6
  2126. ms: 2.1.3
  2127. serialize-javascript: 6.0.2
  2128. strip-json-comments: 3.1.1
  2129. supports-color: 8.1.1
  2130. workerpool: 6.5.1
  2131. yargs: 16.2.0
  2132. yargs-parser: 20.2.9
  2133. yargs-unparser: 2.0.0
  2134. ms@2.1.2: {}
  2135. ms@2.1.3: {}
  2136. napi-build-utils@1.0.2: {}
  2137. natural-compare@1.4.0: {}
  2138. node-abi@3.65.0:
  2139. dependencies:
  2140. semver: 7.6.3
  2141. normalize-path@3.0.0: {}
  2142. obliterator@2.0.4: {}
  2143. once@1.4.0:
  2144. dependencies:
  2145. wrappy: 1.0.2
  2146. optionator@0.9.4:
  2147. dependencies:
  2148. deep-is: 0.1.4
  2149. fast-levenshtein: 2.0.6
  2150. levn: 0.4.1
  2151. prelude-ls: 1.2.1
  2152. type-check: 0.4.0
  2153. word-wrap: 1.2.5
  2154. oxc-resolver@1.10.2:
  2155. optionalDependencies:
  2156. '@oxc-resolver/binding-darwin-arm64': 1.10.2
  2157. '@oxc-resolver/binding-darwin-x64': 1.10.2
  2158. '@oxc-resolver/binding-freebsd-x64': 1.10.2
  2159. '@oxc-resolver/binding-linux-arm-gnueabihf': 1.10.2
  2160. '@oxc-resolver/binding-linux-arm64-gnu': 1.10.2
  2161. '@oxc-resolver/binding-linux-arm64-musl': 1.10.2
  2162. '@oxc-resolver/binding-linux-x64-gnu': 1.10.2
  2163. '@oxc-resolver/binding-linux-x64-musl': 1.10.2
  2164. '@oxc-resolver/binding-wasm32-wasi': 1.10.2
  2165. '@oxc-resolver/binding-win32-arm64-msvc': 1.10.2
  2166. '@oxc-resolver/binding-win32-x64-msvc': 1.10.2
  2167. p-limit@3.1.0:
  2168. dependencies:
  2169. yocto-queue: 0.1.0
  2170. p-locate@5.0.0:
  2171. dependencies:
  2172. p-limit: 3.1.0
  2173. parent-module@1.0.1:
  2174. dependencies:
  2175. callsites: 3.1.0
  2176. path-exists@4.0.0: {}
  2177. path-key@3.1.1: {}
  2178. path-parse@1.0.7: {}
  2179. path-type@4.0.0: {}
  2180. pathval@1.1.1: {}
  2181. picocolors@1.0.1: {}
  2182. picomatch@2.3.1: {}
  2183. picomatch@4.0.2:
  2184. optional: true
  2185. pirates@4.0.6: {}
  2186. prebuild-install@7.1.2:
  2187. dependencies:
  2188. detect-libc: 2.0.3
  2189. expand-template: 2.0.3
  2190. github-from-package: 0.0.0
  2191. minimist: 1.2.8
  2192. mkdirp-classic: 0.5.3
  2193. napi-build-utils: 1.0.2
  2194. node-abi: 3.65.0
  2195. pump: 3.0.0
  2196. rc: 1.2.8
  2197. simple-get: 4.0.1
  2198. tar-fs: 2.1.1
  2199. tunnel-agent: 0.6.0
  2200. prelude-ls@1.2.1: {}
  2201. pump@3.0.0:
  2202. dependencies:
  2203. end-of-stream: 1.4.4
  2204. once: 1.4.0
  2205. punycode@2.3.1: {}
  2206. queue-microtask@1.2.3: {}
  2207. queue-tick@1.0.1: {}
  2208. randombytes@2.1.0:
  2209. dependencies:
  2210. safe-buffer: 5.2.1
  2211. rc@1.2.8:
  2212. dependencies:
  2213. deep-extend: 0.6.0
  2214. ini: 1.3.8
  2215. minimist: 1.2.8
  2216. strip-json-comments: 2.0.1
  2217. readable-stream@3.6.2:
  2218. dependencies:
  2219. inherits: 2.0.4
  2220. string_decoder: 1.3.0
  2221. util-deprecate: 1.0.2
  2222. readdirp@3.6.0:
  2223. dependencies:
  2224. picomatch: 2.3.1
  2225. refa@0.12.1:
  2226. dependencies:
  2227. '@eslint-community/regexpp': 4.11.0
  2228. regexp-ast-analysis@0.7.1:
  2229. dependencies:
  2230. '@eslint-community/regexpp': 4.11.0
  2231. refa: 0.12.1
  2232. require-directory@2.1.1: {}
  2233. require-from-string@2.0.2: {}
  2234. resolve-from@4.0.0: {}
  2235. resolve-pkg-maps@1.0.0: {}
  2236. resolve@1.22.8:
  2237. dependencies:
  2238. is-core-module: 2.15.1
  2239. path-parse: 1.0.7
  2240. supports-preserve-symlinks-flag: 1.0.0
  2241. retry@0.13.1: {}
  2242. reusify@1.0.4: {}
  2243. run-parallel@1.2.0:
  2244. dependencies:
  2245. queue-microtask: 1.2.3
  2246. safe-buffer@5.2.1: {}
  2247. scslre@0.3.0:
  2248. dependencies:
  2249. '@eslint-community/regexpp': 4.11.0
  2250. refa: 0.12.1
  2251. regexp-ast-analysis: 0.7.1
  2252. semver@7.6.3: {}
  2253. serialize-javascript@6.0.2:
  2254. dependencies:
  2255. randombytes: 2.1.0
  2256. server-only@0.0.1: {}
  2257. shebang-command@2.0.0:
  2258. dependencies:
  2259. shebang-regex: 3.0.0
  2260. shebang-regex@3.0.0: {}
  2261. simple-concat@1.0.1: {}
  2262. simple-get@4.0.1:
  2263. dependencies:
  2264. decompress-response: 6.0.0
  2265. once: 1.4.0
  2266. simple-concat: 1.0.1
  2267. slash@3.0.0: {}
  2268. slice-ansi@4.0.0:
  2269. dependencies:
  2270. ansi-styles: 4.3.0
  2271. astral-regex: 2.0.0
  2272. is-fullwidth-code-point: 3.0.0
  2273. source-map-support@0.5.21:
  2274. dependencies:
  2275. buffer-from: 1.1.2
  2276. source-map: 0.6.1
  2277. source-map@0.6.1: {}
  2278. stable-hash@0.0.4: {}
  2279. streamx@2.18.0:
  2280. dependencies:
  2281. fast-fifo: 1.3.2
  2282. queue-tick: 1.0.1
  2283. text-decoder: 1.1.1
  2284. optionalDependencies:
  2285. bare-events: 2.4.2
  2286. string-argv@0.3.2: {}
  2287. string-similarity@4.0.4: {}
  2288. string-width@4.2.3:
  2289. dependencies:
  2290. emoji-regex: 8.0.0
  2291. is-fullwidth-code-point: 3.0.0
  2292. strip-ansi: 6.0.1
  2293. string_decoder@1.3.0:
  2294. dependencies:
  2295. safe-buffer: 5.2.1
  2296. strip-ansi@6.0.1:
  2297. dependencies:
  2298. ansi-regex: 5.0.1
  2299. strip-json-comments@2.0.1: {}
  2300. strip-json-comments@3.1.1: {}
  2301. supports-color@7.2.0:
  2302. dependencies:
  2303. has-flag: 4.0.0
  2304. supports-color@8.1.1:
  2305. dependencies:
  2306. has-flag: 4.0.0
  2307. supports-preserve-symlinks-flag@1.0.0: {}
  2308. synckit@0.6.2:
  2309. dependencies:
  2310. tslib: 2.7.0
  2311. table@6.8.2:
  2312. dependencies:
  2313. ajv: 8.17.1
  2314. lodash.truncate: 4.4.2
  2315. slice-ansi: 4.0.0
  2316. string-width: 4.2.3
  2317. strip-ansi: 6.0.1
  2318. tapable@2.2.1: {}
  2319. tar-fs@2.1.1:
  2320. dependencies:
  2321. chownr: 1.1.4
  2322. mkdirp-classic: 0.5.3
  2323. pump: 3.0.0
  2324. tar-stream: 2.2.0
  2325. tar-stream@2.2.0:
  2326. dependencies:
  2327. bl: 4.1.0
  2328. end-of-stream: 1.4.4
  2329. fs-constants: 1.0.0
  2330. inherits: 2.0.4
  2331. readable-stream: 3.6.2
  2332. tar-stream@3.1.7:
  2333. dependencies:
  2334. b4a: 1.6.6
  2335. fast-fifo: 1.3.2
  2336. streamx: 2.18.0
  2337. text-decoder@1.1.1:
  2338. dependencies:
  2339. b4a: 1.6.6
  2340. text-table@0.2.0: {}
  2341. tldts-core@6.1.41: {}
  2342. tldts-experimental@6.1.41:
  2343. dependencies:
  2344. tldts-core: 6.1.41
  2345. tldts@6.1.41:
  2346. dependencies:
  2347. tldts-core: 6.1.41
  2348. to-regex-range@5.0.1:
  2349. dependencies:
  2350. is-number: 7.0.0
  2351. ts-api-utils@1.3.0(typescript@5.5.4):
  2352. dependencies:
  2353. typescript: 5.5.4
  2354. tslib@2.6.3: {}
  2355. tslib@2.7.0: {}
  2356. tunnel-agent@0.6.0:
  2357. dependencies:
  2358. safe-buffer: 5.2.1
  2359. type-check@0.4.0:
  2360. dependencies:
  2361. prelude-ls: 1.2.1
  2362. type-detect@4.0.8: {}
  2363. type-fest@4.25.0: {}
  2364. typescript-eslint@8.2.0(eslint@9.9.1)(typescript@5.5.4):
  2365. dependencies:
  2366. '@typescript-eslint/eslint-plugin': 8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.1)(typescript@5.5.4))(eslint@9.9.1)(typescript@5.5.4)
  2367. '@typescript-eslint/parser': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  2368. '@typescript-eslint/utils': 8.2.0(eslint@9.9.1)(typescript@5.5.4)
  2369. optionalDependencies:
  2370. typescript: 5.5.4
  2371. transitivePeerDependencies:
  2372. - eslint
  2373. - supports-color
  2374. typescript@5.5.4: {}
  2375. undici-types@5.26.5: {}
  2376. uri-js@4.4.1:
  2377. dependencies:
  2378. punycode: 2.3.1
  2379. util-deprecate@1.0.2: {}
  2380. which@2.0.2:
  2381. dependencies:
  2382. isexe: 2.0.0
  2383. word-wrap@1.2.5: {}
  2384. workerpool@6.5.1: {}
  2385. wrap-ansi@7.0.0:
  2386. dependencies:
  2387. ansi-styles: 4.3.0
  2388. string-width: 4.2.3
  2389. strip-ansi: 6.0.1
  2390. wrappy@1.0.2: {}
  2391. y18n@5.0.8: {}
  2392. yaml@2.5.0: {}
  2393. yargs-parser@20.2.9: {}
  2394. yargs-unparser@2.0.0:
  2395. dependencies:
  2396. camelcase: 6.3.0
  2397. decamelize: 4.0.0
  2398. flat: 5.0.2
  2399. is-plain-obj: 2.1.0
  2400. yargs@16.2.0:
  2401. dependencies:
  2402. cliui: 7.0.4
  2403. escalade: 3.1.2
  2404. get-caller-file: 2.0.5
  2405. require-directory: 2.1.1
  2406. string-width: 4.2.3
  2407. y18n: 5.0.8
  2408. yargs-parser: 20.2.9
  2409. yocto-queue@0.1.0: {}