pnpm-lock.yaml 97 KB

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