pnpm-lock.yaml 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. overrides:
  6. has: npm:@nolyfill/has@latest
  7. patchedDependencies:
  8. whoiser:
  9. hash: 01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f
  10. path: patches/whoiser.patch
  11. importers:
  12. .:
  13. dependencies:
  14. '@ghostery/adblocker':
  15. specifier: ^2.5.1
  16. version: 2.5.1
  17. '@henrygd/queue':
  18. specifier: ^1.0.7
  19. version: 1.0.7
  20. '@mitata/counters':
  21. specifier: ^0.0.8
  22. version: 0.0.8
  23. async-retry:
  24. specifier: ^1.3.3
  25. version: 1.3.3
  26. better-sqlite3:
  27. specifier: ^11.9.1
  28. version: 11.9.1
  29. ci-info:
  30. specifier: ^4.2.0
  31. version: 4.2.0
  32. csv-parse:
  33. specifier: ^5.6.0
  34. version: 5.6.0
  35. dns2:
  36. specifier: ^2.1.0
  37. version: 2.1.0
  38. fast-cidr-tools:
  39. specifier: ^0.3.2
  40. version: 0.3.2
  41. fast-fifo:
  42. specifier: ^1.3.2
  43. version: 1.3.2
  44. fdir:
  45. specifier: ^6.4.4
  46. version: 6.4.4(picomatch@4.0.2)
  47. foxts:
  48. specifier: ^3.0.1
  49. version: 3.0.1
  50. hash-wasm:
  51. specifier: ^4.12.0
  52. version: 4.12.0
  53. json-stringify-pretty-compact:
  54. specifier: 3.0.0
  55. version: 3.0.0
  56. picocolors:
  57. specifier: ^1.1.1
  58. version: 1.1.1
  59. punycode:
  60. specifier: ^2.3.1
  61. version: 2.3.1
  62. tar-fs:
  63. specifier: ^3.0.8
  64. version: 3.0.8
  65. tldts:
  66. specifier: ^6.1.86
  67. version: 6.1.86
  68. tldts-experimental:
  69. specifier: ^6.1.86
  70. version: 6.1.86
  71. undici:
  72. specifier: ^7.8.0
  73. version: 7.8.0
  74. undici-cache-store-better-sqlite3:
  75. specifier: ^1.0.0
  76. version: 1.0.0(undici@7.8.0)
  77. whoiser:
  78. specifier: ^1.18.0
  79. version: 1.18.0(patch_hash=01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f)
  80. why-is-node-running:
  81. specifier: ^3.2.2
  82. version: 3.2.2
  83. worktank:
  84. specifier: ^2.7.3
  85. version: 2.7.3
  86. xbits:
  87. specifier: ^0.2.0
  88. version: 0.2.0
  89. yaml:
  90. specifier: ^2.7.1
  91. version: 2.7.1
  92. yauzl-promise:
  93. specifier: ^4.0.0
  94. version: 4.0.0
  95. devDependencies:
  96. '@eslint-sukka/node':
  97. specifier: ^6.18.2
  98. version: 6.18.2(eslint@9.25.1)(typescript@5.8.3)
  99. '@swc-node/register':
  100. specifier: ^1.10.10
  101. version: 1.10.10(@swc/core@1.11.22)(@swc/types@0.1.21)(typescript@5.8.3)
  102. '@swc/core':
  103. specifier: ^1.11.22
  104. version: 1.11.22
  105. '@types/async-retry':
  106. specifier: ^1.4.9
  107. version: 1.4.9
  108. '@types/better-sqlite3':
  109. specifier: ^7.6.13
  110. version: 7.6.13
  111. '@types/dns2':
  112. specifier: ^2.0.9
  113. version: 2.0.9
  114. '@types/fast-fifo':
  115. specifier: ^1.3.0
  116. version: 1.3.0
  117. '@types/mocha':
  118. specifier: ^10.0.10
  119. version: 10.0.10
  120. '@types/node':
  121. specifier: ^22.15.2
  122. version: 22.15.2
  123. '@types/punycode':
  124. specifier: ^2.1.4
  125. version: 2.1.4
  126. '@types/tar-fs':
  127. specifier: ^2.0.4
  128. version: 2.0.4
  129. '@types/yauzl-promise':
  130. specifier: ^4.0.1
  131. version: 4.0.1
  132. eslint:
  133. specifier: ^9.25.1
  134. version: 9.25.1
  135. eslint-config-sukka:
  136. specifier: ^6.18.2
  137. version: 6.18.2(@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3)
  138. eslint-formatter-sukka:
  139. specifier: ^6.18.2
  140. version: 6.18.2
  141. expect:
  142. specifier: ^29.7.0
  143. version: 29.7.0
  144. mitata:
  145. specifier: ^1.0.34
  146. version: 1.0.34
  147. mocha:
  148. specifier: ^11.1.0
  149. version: 11.1.0
  150. tinyexec:
  151. specifier: ^1.0.1
  152. version: 1.0.1
  153. typescript:
  154. specifier: ^5.8.3
  155. version: 5.8.3
  156. packages:
  157. '@babel/code-frame@7.26.2':
  158. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  159. engines: {node: '>=6.9.0'}
  160. '@babel/helper-validator-identifier@7.25.9':
  161. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  162. engines: {node: '>=6.9.0'}
  163. '@babel/runtime@7.27.0':
  164. resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
  165. engines: {node: '>=6.9.0'}
  166. '@dual-bundle/import-meta-resolve@4.1.0':
  167. resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
  168. '@emnapi/core@1.3.1':
  169. resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
  170. '@emnapi/core@1.4.0':
  171. resolution: {integrity: sha512-H+N/FqT07NmLmt6OFFtDfwe8PNygprzBikrEMyQfgqSmT0vzE515Pz7R8izwB9q/zsH/MA64AKoul3sA6/CzVg==}
  172. '@emnapi/runtime@1.3.1':
  173. resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
  174. '@emnapi/runtime@1.4.0':
  175. resolution: {integrity: sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==}
  176. '@emnapi/wasi-threads@1.0.1':
  177. resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
  178. '@eslint-community/eslint-plugin-eslint-comments@4.4.1':
  179. resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
  180. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  181. peerDependencies:
  182. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  183. '@eslint-community/eslint-utils@4.5.1':
  184. resolution: {integrity: sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==}
  185. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  186. peerDependencies:
  187. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  188. '@eslint-community/regexpp@4.12.1':
  189. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  190. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  191. '@eslint-sukka/node@6.18.2':
  192. resolution: {integrity: sha512-4kRafTttiIwK+uK/gDPEjNBSOjADCXRgDihZOqOaVNw3POD4I8h5Y6csUJuVMdHBo4Y+BbgQ7Mcr88Jcw0Nn7w==}
  193. '@eslint-sukka/shared@6.18.2':
  194. resolution: {integrity: sha512-EsNL5R4L0yBwwRJCgSNNn+jhZvqwAQ0eUxIk87oDtTWIeTLHEMYZXUC5CQekCa/tGKuuG7y4mYqeK5/oDFyGtg==}
  195. '@eslint/config-array@0.20.0':
  196. resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
  197. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  198. '@eslint/config-helpers@0.2.1':
  199. resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
  200. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  201. '@eslint/core@0.13.0':
  202. resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
  203. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  204. '@eslint/eslintrc@3.3.1':
  205. resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
  206. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  207. '@eslint/js@9.24.0':
  208. resolution: {integrity: sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==}
  209. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  210. '@eslint/js@9.25.1':
  211. resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
  212. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  213. '@eslint/object-schema@2.1.6':
  214. resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
  215. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  216. '@eslint/plugin-kit@0.2.8':
  217. resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
  218. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  219. '@ghostery/adblocker-content@2.5.1':
  220. resolution: {integrity: sha512-Im0GiRxKdyWWWiIQBBOzA4nHecvPjOvMvT+GqsTHjcVqz+xFC22Jw1BPoniOjVYnOhS/XxtQZOdjm6A2Cbffew==}
  221. '@ghostery/adblocker-extended-selectors@2.5.1':
  222. resolution: {integrity: sha512-UR9p/uEUmTXyQKkfCKwYesLkqJAGIyeFS2jDzIGgYDRyHGVlxu7Gcl/cdZehikTzBtrGtzc3X69amaUjvUyUJw==}
  223. '@ghostery/adblocker@2.5.1':
  224. resolution: {integrity: sha512-/sSSVLwb3ojIFw0owwffsGdCDOeMI02L/nXFIJD2exRAwG8hOETYwCGO7KwSyH2bnVTHtnIQYD1+hfeqQN+I5A==}
  225. '@henrygd/queue@1.0.7':
  226. resolution: {integrity: sha512-Jmt/iO6yDlz9UYGILkm/Qzi/ckkEiTNZcqDvt3QFLE4OThPeiCj6tKsynHFm/ppl8RumWXAx1dZPBPiRPaaGig==}
  227. '@humanfs/core@0.19.1':
  228. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  229. engines: {node: '>=18.18.0'}
  230. '@humanfs/node@0.16.6':
  231. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  232. engines: {node: '>=18.18.0'}
  233. '@humanwhocodes/module-importer@1.0.1':
  234. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  235. engines: {node: '>=12.22'}
  236. '@humanwhocodes/retry@0.3.1':
  237. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  238. engines: {node: '>=18.18'}
  239. '@humanwhocodes/retry@0.4.2':
  240. resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
  241. engines: {node: '>=18.18'}
  242. '@isaacs/cliui@8.0.2':
  243. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  244. engines: {node: '>=12'}
  245. '@jest/expect-utils@29.7.0':
  246. resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
  247. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  248. '@jest/schemas@29.6.3':
  249. resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
  250. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  251. '@jest/types@29.6.3':
  252. resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
  253. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  254. '@mitata/counters@0.0.8':
  255. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  256. '@napi-rs/wasm-runtime@0.2.7':
  257. resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
  258. '@napi-rs/wasm-runtime@0.2.8':
  259. resolution: {integrity: sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==}
  260. '@node-rs/crc32-android-arm-eabi@1.10.6':
  261. resolution: {integrity: sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==}
  262. engines: {node: '>= 10'}
  263. cpu: [arm]
  264. os: [android]
  265. '@node-rs/crc32-android-arm64@1.10.6':
  266. resolution: {integrity: sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==}
  267. engines: {node: '>= 10'}
  268. cpu: [arm64]
  269. os: [android]
  270. '@node-rs/crc32-darwin-arm64@1.10.6':
  271. resolution: {integrity: sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==}
  272. engines: {node: '>= 10'}
  273. cpu: [arm64]
  274. os: [darwin]
  275. '@node-rs/crc32-darwin-x64@1.10.6':
  276. resolution: {integrity: sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==}
  277. engines: {node: '>= 10'}
  278. cpu: [x64]
  279. os: [darwin]
  280. '@node-rs/crc32-freebsd-x64@1.10.6':
  281. resolution: {integrity: sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==}
  282. engines: {node: '>= 10'}
  283. cpu: [x64]
  284. os: [freebsd]
  285. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  286. resolution: {integrity: sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==}
  287. engines: {node: '>= 10'}
  288. cpu: [arm]
  289. os: [linux]
  290. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  291. resolution: {integrity: sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==}
  292. engines: {node: '>= 10'}
  293. cpu: [arm64]
  294. os: [linux]
  295. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  296. resolution: {integrity: sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==}
  297. engines: {node: '>= 10'}
  298. cpu: [arm64]
  299. os: [linux]
  300. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  301. resolution: {integrity: sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==}
  302. engines: {node: '>= 10'}
  303. cpu: [x64]
  304. os: [linux]
  305. '@node-rs/crc32-linux-x64-musl@1.10.6':
  306. resolution: {integrity: sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==}
  307. engines: {node: '>= 10'}
  308. cpu: [x64]
  309. os: [linux]
  310. '@node-rs/crc32-wasm32-wasi@1.10.6':
  311. resolution: {integrity: sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==}
  312. engines: {node: '>=14.0.0'}
  313. cpu: [wasm32]
  314. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  315. resolution: {integrity: sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==}
  316. engines: {node: '>= 10'}
  317. cpu: [arm64]
  318. os: [win32]
  319. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  320. resolution: {integrity: sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==}
  321. engines: {node: '>= 10'}
  322. cpu: [ia32]
  323. os: [win32]
  324. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  325. resolution: {integrity: sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==}
  326. engines: {node: '>= 10'}
  327. cpu: [x64]
  328. os: [win32]
  329. '@node-rs/crc32@1.10.6':
  330. resolution: {integrity: sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==}
  331. engines: {node: '>= 10'}
  332. '@nodelib/fs.scandir@2.1.5':
  333. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  334. engines: {node: '>= 8'}
  335. '@nodelib/fs.stat@2.0.5':
  336. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  337. engines: {node: '>= 8'}
  338. '@nodelib/fs.walk@1.2.8':
  339. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  340. engines: {node: '>= 8'}
  341. '@oxc-resolver/binding-darwin-arm64@5.0.0':
  342. resolution: {integrity: sha512-zwHAf+owoxSWTDD4dFuwW+FkpaDzbaL30H5Ltocb+RmLyg4WKuteusRLKh5Y8b/cyu7UzhxM0haIqQjyqA1iuA==}
  343. cpu: [arm64]
  344. os: [darwin]
  345. '@oxc-resolver/binding-darwin-x64@5.0.0':
  346. resolution: {integrity: sha512-1lS3aBNVjVQKBvZdHm13+8tSjvu2Tl1Cv4FnUyMYxqx6+rsom2YaOylS5LhDUwfZu0zAgpLMwK6kGpF/UPncNg==}
  347. cpu: [x64]
  348. os: [darwin]
  349. '@oxc-resolver/binding-freebsd-x64@5.0.0':
  350. resolution: {integrity: sha512-q9sRd68wC1/AJ0eu6ClhxlklVfe8gH4wrUkSyEbIYTZ8zY5yjsLY3fpqqsaCvWJUx65nW+XtnAxCGCi5AXr1Mw==}
  351. cpu: [x64]
  352. os: [freebsd]
  353. '@oxc-resolver/binding-linux-arm-gnueabihf@5.0.0':
  354. resolution: {integrity: sha512-catYavWsvqViYnCveQjhrK6yVYDEPFvIOgGLxnz5r2dcgrjpmquzREoyss0L2QG/J5HTTbwqwZ1kk+g56hE/1A==}
  355. cpu: [arm]
  356. os: [linux]
  357. '@oxc-resolver/binding-linux-arm64-gnu@5.0.0':
  358. resolution: {integrity: sha512-l/0pWoQM5kVmJLg4frQ1mKZOXgi0ex/hzvFt8E4WK2ifXr5JgKFUokxsb/oat7f5YzdJJh5r9p+qS/t3dA26Aw==}
  359. cpu: [arm64]
  360. os: [linux]
  361. '@oxc-resolver/binding-linux-arm64-musl@5.0.0':
  362. resolution: {integrity: sha512-bx0oz/oaAW4FGYqpIIxJCnmgb906YfMhTEWCJvYkxjpEI8VKLJEL3PQevYiqDq36SA0yRLJ/sQK2fqry8AFBfA==}
  363. cpu: [arm64]
  364. os: [linux]
  365. '@oxc-resolver/binding-linux-x64-gnu@5.0.0':
  366. resolution: {integrity: sha512-4PH++qbSIhlRsFYdN1P9neDov4OGhTGo5nbQ1D7AL6gWFLo3gdZTc00FM2y8JjeTcPWEXkViZuwpuc0w5i6qHg==}
  367. cpu: [x64]
  368. os: [linux]
  369. '@oxc-resolver/binding-linux-x64-musl@5.0.0':
  370. resolution: {integrity: sha512-mLfQFpX3/5y9oWi0b+9FbWDkL2hM0Y29653beCHiHxAdGyVgb2DsJbK74WkMTwtSz9by8vyBh8jGPZcg1yLZbQ==}
  371. cpu: [x64]
  372. os: [linux]
  373. '@oxc-resolver/binding-wasm32-wasi@5.0.0':
  374. resolution: {integrity: sha512-uEhsAZSo65qsRi6+IfBTEUUFbjg7T2yruJeLYpFfEATpm3ory5Mgo5vx3L0c2/Cz1OUZXBgp3A8x6VMUB2jT2A==}
  375. engines: {node: '>=14.0.0'}
  376. cpu: [wasm32]
  377. '@oxc-resolver/binding-win32-arm64-msvc@5.0.0':
  378. resolution: {integrity: sha512-8DbSso9Jp1ns8AYuZFXdRfAcdJrzZwkFm/RjPuvAPTENsm685dosBF8G6gTHQlHvULnk6o3sa9ygZaTGC/UoEw==}
  379. cpu: [arm64]
  380. os: [win32]
  381. '@oxc-resolver/binding-win32-x64-msvc@5.0.0':
  382. resolution: {integrity: sha512-ylppfPEg63NuRXOPNsXFlgyl37JrtRn0QMO26X3K3Ytp5HtLrMreQMGVtgr30e1l2YmAWqhvmKlCryOqzGPD/g==}
  383. cpu: [x64]
  384. os: [win32]
  385. '@package-json/types@0.0.11':
  386. resolution: {integrity: sha512-allOTUn4Xi2bQMs+mthzHWekgjRBVno+DLOcXk9+6haG5oFu5rlz0pszT3sh1OAkQVFLYrAS4V5CSxWyVwUf7g==}
  387. '@pkgjs/parseargs@0.11.0':
  388. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  389. engines: {node: '>=14'}
  390. '@pkgr/core@0.2.1':
  391. resolution: {integrity: sha512-VzgHzGblFmUeBmmrk55zPyrQIArQN4vujc9shWytaPdB3P7qhi0cpaiKIr7tlCmFv2lYUwnLospIqjL9ZSAhhg==}
  392. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  393. '@remusao/guess-url-type@2.0.0':
  394. resolution: {integrity: sha512-L98gV/X/GESt5Tgqq/PxpZYClVqeq6/5InrRKl4elq4qXbdZjHlNTgRhXb1xIaUBkikzv410sXw3QaBUYyXt8g==}
  395. '@remusao/small@2.0.0':
  396. resolution: {integrity: sha512-1ksGCbl1hSeO4CV/uk0qv2vUdZ1ZRdIMzSn0HFsHTJnmWSDk2li+T5eCI9BtweYe0uVQhCvbMjk/3qwsN6fuYg==}
  397. '@remusao/smaz-compress@2.1.0':
  398. resolution: {integrity: sha512-IyuzXxd5F1p5WAvA6Td9ny+wh3sj9szMmdZtQ8Fb5/yE4lIwujXCz0e702u62r3XU47qsQcR/CjSRaw65u7iGA==}
  399. '@remusao/smaz-decompress@2.1.0':
  400. resolution: {integrity: sha512-TlM/ibBOMiCRniuBjv4x4nIcVbOb1o6DdK+p5OM+zHNndEu9za2C1Bd+PSqnsVCn15Fv2HcLVWGpqh2hKs9uuw==}
  401. '@remusao/smaz@2.1.0':
  402. resolution: {integrity: sha512-hTn/ZuBY4LYaqvprTdW3U+uU4xrw5JusxqHIhUzroQlrT6l4LFQRi+aJE/SOv09iS7eO/pqg6Ec3Go+gKiWH8A==}
  403. '@remusao/trie@2.0.0':
  404. resolution: {integrity: sha512-YmVfZrd+igKXJMuAvsNdDnUAyoNw7M+9e2ij6UsaZFZGQzLd75pbxhiuFmdphEXi/s3uXe25+wtFRWjLA2Ho0Q==}
  405. '@sinclair/typebox@0.27.8':
  406. resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
  407. '@swc-node/core@1.13.3':
  408. resolution: {integrity: sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==}
  409. engines: {node: '>= 10'}
  410. peerDependencies:
  411. '@swc/core': '>= 1.4.13'
  412. '@swc/types': '>= 0.1'
  413. '@swc-node/register@1.10.10':
  414. resolution: {integrity: sha512-jYWaI2WNEKz8KZL3sExd2KVL1JMma1/J7z+9iTpv0+fRN7LGMF8VTGGuHI2bug/ztpdZU1G44FG/Kk6ElXL9CQ==}
  415. peerDependencies:
  416. '@swc/core': '>= 1.4.13'
  417. typescript: '>= 4.3'
  418. '@swc-node/sourcemap-support@0.5.1':
  419. resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
  420. '@swc/core-darwin-arm64@1.11.22':
  421. resolution: {integrity: sha512-upSiFQfo1TE2QM3+KpBcp5SrOdKKjoc+oUoD1mmBDU2Wv4Bjjv16Z2I5ADvIqMV+b87AhYW+4Qu6iVrQD7j96Q==}
  422. engines: {node: '>=10'}
  423. cpu: [arm64]
  424. os: [darwin]
  425. '@swc/core-darwin-x64@1.11.22':
  426. resolution: {integrity: sha512-8PEuF/gxIMJVK21DjuCOtzdqstn2DqnxVhpAYfXEtm3WmMqLIOIZBypF/xafAozyaHws4aB/5xmz8/7rPsjavw==}
  427. engines: {node: '>=10'}
  428. cpu: [x64]
  429. os: [darwin]
  430. '@swc/core-linux-arm-gnueabihf@1.11.22':
  431. resolution: {integrity: sha512-NIPTXvqtn9e7oQHgdaxM9Z/anHoXC3Fg4ZAgw5rSGa1OlnKKupt5sdfJamNggSi+eAtyoFcyfkgqHnfe2u63HA==}
  432. engines: {node: '>=10'}
  433. cpu: [arm]
  434. os: [linux]
  435. '@swc/core-linux-arm64-gnu@1.11.22':
  436. resolution: {integrity: sha512-xZ+bgS60c5r8kAeYsLNjJJhhQNkXdidQ277pUabSlu5GjR0CkQUPQ+L9hFeHf8DITEqpPBPRiAiiJsWq5eqMBg==}
  437. engines: {node: '>=10'}
  438. cpu: [arm64]
  439. os: [linux]
  440. '@swc/core-linux-arm64-musl@1.11.22':
  441. resolution: {integrity: sha512-JhrP/q5VqQl2eJR0xKYIkKTPjgf8CRsAmRnjJA2PtZhfQ543YbYvUqxyXSRyBOxdyX8JwzuAxIPEAlKlT7PPuQ==}
  442. engines: {node: '>=10'}
  443. cpu: [arm64]
  444. os: [linux]
  445. '@swc/core-linux-x64-gnu@1.11.22':
  446. resolution: {integrity: sha512-htmAVL+U01gk9GyziVUP0UWYaUQBgrsiP7Ytf6uDffrySyn/FclUS3MDPocNydqYsOpj3OpNKPxkaHK+F+X5fg==}
  447. engines: {node: '>=10'}
  448. cpu: [x64]
  449. os: [linux]
  450. '@swc/core-linux-x64-musl@1.11.22':
  451. resolution: {integrity: sha512-PL0VHbduWPX+ANoyOzr58jBiL2VnD0xGSFwPy7NRZ1Pr6SNWm4jw3x2u6RjLArGhS5EcWp64BSk9ZxqmTV3FEg==}
  452. engines: {node: '>=10'}
  453. cpu: [x64]
  454. os: [linux]
  455. '@swc/core-win32-arm64-msvc@1.11.22':
  456. resolution: {integrity: sha512-moJvFhhTVGoMeEThtdF7hQog80Q00CS06v5uB+32VRuv+I31+4WPRyGlTWHO+oY4rReNcXut/mlDHPH7p0LdFg==}
  457. engines: {node: '>=10'}
  458. cpu: [arm64]
  459. os: [win32]
  460. '@swc/core-win32-ia32-msvc@1.11.22':
  461. resolution: {integrity: sha512-/jnsPJJz89F1aKHIb5ScHkwyzBciz2AjEq2m9tDvQdIdVufdJ4SpEDEN9FqsRNRLcBHjtbLs6bnboA+B+pRFXw==}
  462. engines: {node: '>=10'}
  463. cpu: [ia32]
  464. os: [win32]
  465. '@swc/core-win32-x64-msvc@1.11.22':
  466. resolution: {integrity: sha512-lc93Y8Mku7LCFGqIxJ91coXZp2HeoDcFZSHCL90Wttg5xhk5xVM9uUCP+OdQsSsEixLF34h5DbT9ObzP8rAdRw==}
  467. engines: {node: '>=10'}
  468. cpu: [x64]
  469. os: [win32]
  470. '@swc/core@1.11.22':
  471. resolution: {integrity: sha512-mjPYbqq8XjwqSE0hEPT9CzaJDyxql97LgK4iyvYlwVSQhdN1uK0DBG4eP9PxYzCS2MUGAXB34WFLegdUj5HGpg==}
  472. engines: {node: '>=10'}
  473. peerDependencies:
  474. '@swc/helpers': '>=0.5.17'
  475. peerDependenciesMeta:
  476. '@swc/helpers':
  477. optional: true
  478. '@swc/counter@0.1.3':
  479. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  480. '@swc/types@0.1.21':
  481. resolution: {integrity: sha512-2YEtj5HJVbKivud9N4bpPBAyZhj4S2Ipe5LkUG94alTpr7in/GU/EARgPAd3BwU+YOmFVJC2+kjqhGRi3r0ZpQ==}
  482. '@tybys/wasm-util@0.9.0':
  483. resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
  484. '@types/async-retry@1.4.9':
  485. resolution: {integrity: sha512-s1ciZQJzRh3708X/m3vPExr5KJlzlZJvXsKpbtE2luqNcbROr64qU+3KpJsYHqWMeaxI839OvXf9PrUSw1Xtyg==}
  486. '@types/better-sqlite3@7.6.13':
  487. resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
  488. '@types/dns2@2.0.9':
  489. resolution: {integrity: sha512-+eiPSuo/KfvaaW7DiMf/vrt9mhxbZCCgxoCa/c2qMVSuZQus4BzBuKRh8XBwcUXWAtvI8QuZOp13UODJNq9DXg==}
  490. '@types/doctrine@0.0.9':
  491. resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
  492. '@types/estree@1.0.6':
  493. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  494. '@types/fast-fifo@1.3.0':
  495. resolution: {integrity: sha512-xTVvla2QX5ruNmVUqCFc++xm42xl6RBaroppSleSczvM2rAwClr88MbnrgDGLIStt4RCVegeKO4z2HM5AHFOng==}
  496. '@types/istanbul-lib-coverage@2.0.6':
  497. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  498. '@types/istanbul-lib-report@3.0.3':
  499. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  500. '@types/istanbul-reports@3.0.4':
  501. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  502. '@types/json-schema@7.0.15':
  503. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  504. '@types/mocha@10.0.10':
  505. resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
  506. '@types/node@22.15.2':
  507. resolution: {integrity: sha512-uKXqKN9beGoMdBfcaTY1ecwz6ctxuJAcUlwE55938g0ZJ8lRxwAZqRz2AJ4pzpt5dHdTPMB863UZ0ESiFUcP7A==}
  508. '@types/punycode@2.1.4':
  509. resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==}
  510. '@types/retry@0.12.5':
  511. resolution: {integrity: sha512-3xSjTp3v03X/lSQLkczaN9UIEwJMoMCA1+Nb5HfbJEQWogdeQIyVtTvxPXDQjZ5zws8rFQfVfRdz03ARihPJgw==}
  512. '@types/stack-utils@2.0.3':
  513. resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
  514. '@types/tar-fs@2.0.4':
  515. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  516. '@types/tar-stream@3.1.3':
  517. resolution: {integrity: sha512-Zbnx4wpkWBMBSu5CytMbrT5ZpMiF55qgM+EpHzR4yIDu7mv52cej8hTkOc6K+LzpkOAbxwn/m7j3iO+/l42YkQ==}
  518. '@types/yargs-parser@21.0.3':
  519. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  520. '@types/yargs@17.0.33':
  521. resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
  522. '@types/yauzl-promise@4.0.1':
  523. resolution: {integrity: sha512-qYEC3rJwqiJpdQ9b+bPNeuSY0c3JUM8vIuDy08qfuVN7xHm3ZDsHn2kGphUIB0ruEXrPGNXZ64nMUcu4fDjViQ==}
  524. '@typescript-eslint/eslint-plugin@8.29.1':
  525. resolution: {integrity: sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==}
  526. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  527. peerDependencies:
  528. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  529. eslint: ^8.57.0 || ^9.0.0
  530. typescript: '>=4.8.4 <5.9.0'
  531. '@typescript-eslint/parser@8.29.1':
  532. resolution: {integrity: sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==}
  533. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  534. peerDependencies:
  535. eslint: ^8.57.0 || ^9.0.0
  536. typescript: '>=4.8.4 <5.9.0'
  537. '@typescript-eslint/scope-manager@8.29.0':
  538. resolution: {integrity: sha512-aO1PVsq7Gm+tcghabUpzEnVSFMCU4/nYIgC2GOatJcllvWfnhrgW0ZEbnTxm36QsikmCN1K/6ZgM7fok2I7xNw==}
  539. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  540. '@typescript-eslint/scope-manager@8.29.1':
  541. resolution: {integrity: sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==}
  542. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  543. '@typescript-eslint/type-utils@8.29.1':
  544. resolution: {integrity: sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==}
  545. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  546. peerDependencies:
  547. eslint: ^8.57.0 || ^9.0.0
  548. typescript: '>=4.8.4 <5.9.0'
  549. '@typescript-eslint/types@8.29.0':
  550. resolution: {integrity: sha512-wcJL/+cOXV+RE3gjCyl/V2G877+2faqvlgtso/ZRbTCnZazh0gXhe+7gbAnfubzN2bNsBtZjDvlh7ero8uIbzg==}
  551. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  552. '@typescript-eslint/types@8.29.1':
  553. resolution: {integrity: sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==}
  554. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  555. '@typescript-eslint/typescript-estree@8.29.0':
  556. resolution: {integrity: sha512-yOfen3jE9ISZR/hHpU/bmNvTtBW1NjRbkSFdZOksL1N+ybPEE7UVGMwqvS6CP022Rp00Sb0tdiIkhSCe6NI8ow==}
  557. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  558. peerDependencies:
  559. typescript: '>=4.8.4 <5.9.0'
  560. '@typescript-eslint/typescript-estree@8.29.1':
  561. resolution: {integrity: sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==}
  562. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  563. peerDependencies:
  564. typescript: '>=4.8.4 <5.9.0'
  565. '@typescript-eslint/utils@8.29.0':
  566. resolution: {integrity: sha512-gX/A0Mz9Bskm8avSWFcK0gP7cZpbY4AIo6B0hWYFCaIsz750oaiWR4Jr2CI+PQhfW1CpcQr9OlfPS+kMFegjXA==}
  567. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  568. peerDependencies:
  569. eslint: ^8.57.0 || ^9.0.0
  570. typescript: '>=4.8.4 <5.9.0'
  571. '@typescript-eslint/utils@8.29.1':
  572. resolution: {integrity: sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==}
  573. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  574. peerDependencies:
  575. eslint: ^8.57.0 || ^9.0.0
  576. typescript: '>=4.8.4 <5.9.0'
  577. '@typescript-eslint/visitor-keys@8.29.0':
  578. resolution: {integrity: sha512-Sne/pVz8ryR03NFK21VpN88dZ2FdQXOlq3VIklbrTYEt8yXtRFr9tvUhqvCeKjqYk5FSim37sHbooT6vzBTZcg==}
  579. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  580. '@typescript-eslint/visitor-keys@8.29.1':
  581. resolution: {integrity: sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==}
  582. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  583. '@unrs/resolver-binding-darwin-arm64@1.4.1':
  584. resolution: {integrity: sha512-8Tv+Bsd0BjGwfEedIyor4inw8atppRxM5BdUnIt+3mAm/QXUm7Dw74CHnXpfZKXkp07EXJGiA8hStqCINAWhdw==}
  585. cpu: [arm64]
  586. os: [darwin]
  587. '@unrs/resolver-binding-darwin-x64@1.4.1':
  588. resolution: {integrity: sha512-X8c3PhWziEMKAzZz+YAYWfwawi5AEgzy/hmfizAB4C70gMHLKmInJcp1270yYAOs7z07YVFI220pp50z24Jk3A==}
  589. cpu: [x64]
  590. os: [darwin]
  591. '@unrs/resolver-binding-freebsd-x64@1.4.1':
  592. resolution: {integrity: sha512-UUr/nREy1UdtxXQnmLaaTXFGOcGxPwNIzeJdb3KXai3TKtC1UgNOB9s8KOA4TaxOUBR/qVgL5BvBwmUjD5yuVA==}
  593. cpu: [x64]
  594. os: [freebsd]
  595. '@unrs/resolver-binding-linux-arm-gnueabihf@1.4.1':
  596. resolution: {integrity: sha512-e3pII53dEeS8inkX6A1ad2UXE0nuoWCqik4kOxaDnls0uJUq0ntdj5d9IYd+bv5TDwf9DSge/xPOvCmRYH+Tsw==}
  597. cpu: [arm]
  598. os: [linux]
  599. '@unrs/resolver-binding-linux-arm-musleabihf@1.4.1':
  600. resolution: {integrity: sha512-e/AKKd9gR+HNmVyDEPI/PIz2t0DrA3cyonHNhHVjrkxe8pMCiYiqhtn1+h+yIpHUtUlM6Y1FNIdivFa+r7wrEQ==}
  601. cpu: [arm]
  602. os: [linux]
  603. '@unrs/resolver-binding-linux-arm64-gnu@1.4.1':
  604. resolution: {integrity: sha512-vtIu34luF1jRktlHtiwm2mjuE8oJCsFiFr8hT5+tFQdqFKjPhbJXn83LswKsOhy0GxAEevpXDI4xxEwkjuXIPA==}
  605. cpu: [arm64]
  606. os: [linux]
  607. '@unrs/resolver-binding-linux-arm64-musl@1.4.1':
  608. resolution: {integrity: sha512-H3PaOuGyhFXiyJd+09uPhGl4gocmhyi1BRzvsP8Lv5AQO3p3/ZY7WjV4t2NkBksm9tMjf3YbOVHyPWi2eWsNYw==}
  609. cpu: [arm64]
  610. os: [linux]
  611. '@unrs/resolver-binding-linux-ppc64-gnu@1.4.1':
  612. resolution: {integrity: sha512-4+GmJcaaFntCi1S01YByqp8wLMjV/FyQyHVGm0vedIhL1Vfx7uHkz/sZmKsidRwokBGuxi92GFmSzqT2O8KcNA==}
  613. cpu: [ppc64]
  614. os: [linux]
  615. '@unrs/resolver-binding-linux-s390x-gnu@1.4.1':
  616. resolution: {integrity: sha512-6RDQVCmtFYTlhy89D5ixTqo9bTQqFhvNN0Ey1wJs5r+01Dq15gPHRXv2jF2bQATtMrOfYwv+R2ZR9ew1N1N3YQ==}
  617. cpu: [s390x]
  618. os: [linux]
  619. '@unrs/resolver-binding-linux-x64-gnu@1.4.1':
  620. resolution: {integrity: sha512-XpU9uzIkD86+19NjCXxlVPISMUrVXsXo5htxtuG+uJ59p5JauSRZsIxQxzzfKzkxEjdvANPM/lS1HFoX6A6QeA==}
  621. cpu: [x64]
  622. os: [linux]
  623. '@unrs/resolver-binding-linux-x64-musl@1.4.1':
  624. resolution: {integrity: sha512-3CDjG/spbTKCSHl66QP2ekHSD+H34i7utuDIM5gzoNBcZ1gTO0Op09Wx5cikXnhORRf9+HyDWzm37vU1PLSM1A==}
  625. cpu: [x64]
  626. os: [linux]
  627. '@unrs/resolver-binding-wasm32-wasi@1.4.1':
  628. resolution: {integrity: sha512-50tYhvbCTnuzMn7vmP8IV2UKF7ITo1oihygEYq9wW2DUb/Y+QMqBHJUSCABRngATjZ4shOK6f2+s0gQX6ElENQ==}
  629. engines: {node: '>=14.0.0'}
  630. cpu: [wasm32]
  631. '@unrs/resolver-binding-win32-arm64-msvc@1.4.1':
  632. resolution: {integrity: sha512-KyJiIne/AqV4IW0wyQO34wSMuJwy3VxVQOfIXIPyQ/Up6y/zi2P/WwXb78gHsLiGRUqCA9LOoCX+6dQZde0g1g==}
  633. cpu: [arm64]
  634. os: [win32]
  635. '@unrs/resolver-binding-win32-ia32-msvc@1.4.1':
  636. resolution: {integrity: sha512-y2NUD7pygrBolN2NoXUrwVqBpKPhF8DiSNE5oB5/iFO49r2DpoYqdj5HPb3F42fPBH5qNqj6Zg63+xCEzAD2hw==}
  637. cpu: [ia32]
  638. os: [win32]
  639. '@unrs/resolver-binding-win32-x64-msvc@1.4.1':
  640. resolution: {integrity: sha512-hVXaObGI2lGFmrtT77KSbPQ3I+zk9IU500wobjk0+oX59vg/0VqAzABNtt3YSQYgXTC2a/LYxekLfND/wlt0yQ==}
  641. cpu: [x64]
  642. os: [win32]
  643. acorn-jsx@5.3.2:
  644. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  645. peerDependencies:
  646. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  647. acorn@8.14.0:
  648. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  649. engines: {node: '>=0.4.0'}
  650. hasBin: true
  651. ajv@6.12.6:
  652. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  653. ansi-colors@4.1.3:
  654. resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
  655. engines: {node: '>=6'}
  656. ansi-regex@5.0.1:
  657. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  658. engines: {node: '>=8'}
  659. ansi-regex@6.1.0:
  660. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  661. engines: {node: '>=12'}
  662. ansi-styles@4.3.0:
  663. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  664. engines: {node: '>=8'}
  665. ansi-styles@5.2.0:
  666. resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
  667. engines: {node: '>=10'}
  668. ansi-styles@6.2.1:
  669. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  670. engines: {node: '>=12'}
  671. anymatch@3.1.3:
  672. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  673. engines: {node: '>= 8'}
  674. argparse@2.0.1:
  675. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  676. array-timsort@1.0.3:
  677. resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
  678. async-retry@1.3.3:
  679. resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
  680. b4a@1.6.7:
  681. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  682. balanced-match@1.0.2:
  683. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  684. bare-events@2.5.4:
  685. resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
  686. bare-fs@4.0.1:
  687. resolution: {integrity: sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==}
  688. engines: {bare: '>=1.7.0'}
  689. bare-os@3.4.0:
  690. resolution: {integrity: sha512-9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA==}
  691. engines: {bare: '>=1.6.0'}
  692. bare-path@3.0.0:
  693. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  694. bare-stream@2.6.5:
  695. resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
  696. peerDependencies:
  697. bare-buffer: '*'
  698. bare-events: '*'
  699. peerDependenciesMeta:
  700. bare-buffer:
  701. optional: true
  702. bare-events:
  703. optional: true
  704. base64-js@1.5.1:
  705. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  706. better-sqlite3@11.9.1:
  707. resolution: {integrity: sha512-Ba0KR+Fzxh2jDRhdg6TSH0SJGzb8C0aBY4hR8w8madIdIzzC6Y1+kx5qR6eS1Z+Gy20h6ZU28aeyg0z1VIrShQ==}
  708. binary-extensions@2.3.0:
  709. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  710. engines: {node: '>=8'}
  711. bindings@1.5.0:
  712. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  713. bl@4.1.0:
  714. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  715. brace-expansion@1.1.11:
  716. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  717. brace-expansion@2.0.1:
  718. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  719. braces@3.0.3:
  720. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  721. engines: {node: '>=8'}
  722. browser-stdout@1.3.1:
  723. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  724. buffer-from@1.1.2:
  725. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  726. buffer@5.7.1:
  727. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  728. callsites@3.1.0:
  729. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  730. engines: {node: '>=6'}
  731. camelcase@6.3.0:
  732. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  733. engines: {node: '>=10'}
  734. chalk@4.1.2:
  735. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  736. engines: {node: '>=10'}
  737. chokidar@3.6.0:
  738. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  739. engines: {node: '>= 8.10.0'}
  740. chownr@1.1.4:
  741. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  742. ci-info@3.9.0:
  743. resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
  744. engines: {node: '>=8'}
  745. ci-info@4.2.0:
  746. resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==}
  747. engines: {node: '>=8'}
  748. cliui@8.0.1:
  749. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  750. engines: {node: '>=12'}
  751. color-convert@2.0.1:
  752. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  753. engines: {node: '>=7.0.0'}
  754. color-name@1.1.4:
  755. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  756. colorette@2.0.20:
  757. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  758. comment-json@4.2.5:
  759. resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
  760. engines: {node: '>= 6'}
  761. comment-parser@1.4.1:
  762. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  763. engines: {node: '>= 12.0.0'}
  764. concat-map@0.0.1:
  765. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  766. core-util-is@1.0.3:
  767. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  768. cross-spawn@7.0.6:
  769. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  770. engines: {node: '>= 8'}
  771. csv-parse@5.6.0:
  772. resolution: {integrity: sha512-l3nz3euub2QMg5ouu5U09Ew9Wf6/wQ8I++ch1loQ0ljmzhmfZYrH9fflS22i/PQEvsPvxCwxgz5q7UB8K1JO4Q==}
  773. debug@3.2.7:
  774. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  775. peerDependencies:
  776. supports-color: '*'
  777. peerDependenciesMeta:
  778. supports-color:
  779. optional: true
  780. debug@4.4.0:
  781. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  782. engines: {node: '>=6.0'}
  783. peerDependencies:
  784. supports-color: '*'
  785. peerDependenciesMeta:
  786. supports-color:
  787. optional: true
  788. decamelize@4.0.0:
  789. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  790. engines: {node: '>=10'}
  791. decompress-response@6.0.0:
  792. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  793. engines: {node: '>=10'}
  794. deep-extend@0.6.0:
  795. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  796. engines: {node: '>=4.0.0'}
  797. deep-is@0.1.4:
  798. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  799. define-data-property@1.1.4:
  800. resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
  801. engines: {node: '>= 0.4'}
  802. define-properties@1.2.1:
  803. resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
  804. engines: {node: '>= 0.4'}
  805. defu@6.1.4:
  806. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  807. detect-libc@2.0.3:
  808. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  809. engines: {node: '>=8'}
  810. diff-sequences@29.6.3:
  811. resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
  812. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  813. diff@5.2.0:
  814. resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
  815. engines: {node: '>=0.3.1'}
  816. dns2@2.1.0:
  817. resolution: {integrity: sha512-m27K11aQalRbmUs7RLaz6aPyceLjAoqjPRNTdE7qUouQpl+PC8Bi67O+i9SuJUPbQC8dxFrczAxfmTPuTKHNkw==}
  818. doctrine@3.0.0:
  819. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  820. engines: {node: '>=6.0.0'}
  821. eastasianwidth@0.2.0:
  822. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  823. emoji-regex@8.0.0:
  824. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  825. emoji-regex@9.2.2:
  826. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  827. end-of-stream@1.4.4:
  828. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  829. enhanced-resolve@5.18.1:
  830. resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
  831. engines: {node: '>=10.13.0'}
  832. es-define-property@1.0.1:
  833. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  834. engines: {node: '>= 0.4'}
  835. es-errors@1.3.0:
  836. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  837. engines: {node: '>= 0.4'}
  838. escalade@3.2.0:
  839. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  840. engines: {node: '>=6'}
  841. escape-string-regexp@2.0.0:
  842. resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
  843. engines: {node: '>=8'}
  844. escape-string-regexp@4.0.0:
  845. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  846. engines: {node: '>=10'}
  847. eslint-compat-utils@0.5.1:
  848. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  849. engines: {node: '>=12'}
  850. peerDependencies:
  851. eslint: '>=6.0.0'
  852. eslint-compat-utils@0.6.4:
  853. resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
  854. engines: {node: '>=12'}
  855. peerDependencies:
  856. eslint: '>=6.0.0'
  857. eslint-config-sukka@6.18.2:
  858. resolution: {integrity: sha512-UkmuGOSPO3vGtIrcu2ZBySllkVUzd35uJxMsSQ+1tXAnMJ+t0P417LgJkeBoZMXOzvl38dCDPj8jzhhbRrilRQ==}
  859. eslint-formatter-sukka@6.18.2:
  860. resolution: {integrity: sha512-LKD2od3+3/c0X5m+GFhsa/ZumFXviJmZXLnbC2BN2Kl/C9UBFDDiii7SR/97gEYcQlsEjkPI3eCvjU7RS+lGcA==}
  861. eslint-import-resolver-node@0.3.9:
  862. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  863. eslint-import-resolver-typescript@4.3.2:
  864. resolution: {integrity: sha512-T2LqBXj87ndEC9t1LrDiPkzalSFzD4rrXr6BTzGdgMx1jdQM4T972guQvg7Ih+LNO51GURXI/qMHS5GF3h1ilw==}
  865. engines: {node: ^16.17.0 || >=18.6.0}
  866. peerDependencies:
  867. eslint: '*'
  868. eslint-plugin-import: '*'
  869. eslint-plugin-import-x: '*'
  870. peerDependenciesMeta:
  871. eslint-plugin-import:
  872. optional: true
  873. eslint-plugin-import-x:
  874. optional: true
  875. eslint-json-compat-utils@0.2.1:
  876. resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
  877. engines: {node: '>=12'}
  878. peerDependencies:
  879. '@eslint/json': '*'
  880. eslint: '*'
  881. jsonc-eslint-parser: ^2.4.0
  882. peerDependenciesMeta:
  883. '@eslint/json':
  884. optional: true
  885. eslint-plugin-autofix@2.2.0:
  886. resolution: {integrity: sha512-lu8+0r+utyTroROqXIL+a8sUpICi6za22hIzlpb0+x0tQGRnOjhOKU7v8mC/NS/faDoVsw6xW3vUpc+Mcz5NWA==}
  887. engines: {node: '>=18'}
  888. peerDependencies:
  889. eslint: '>=8'
  890. eslint-plugin-de-morgan@1.2.1:
  891. resolution: {integrity: sha512-lzh5DWqdogO6kasbGdWNHy6XOMajv4CRQnEiv/XJFpL1xxG0hxF2uxF+KAkcTzR+w85l4nWoqGbI39ZF+sk4+g==}
  892. engines: {node: ^18.0.0 || >=20.0.0}
  893. peerDependencies:
  894. eslint: '>=8.0.0'
  895. eslint-plugin-es-x@7.8.0:
  896. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  897. engines: {node: ^14.18.0 || >=16.0.0}
  898. peerDependencies:
  899. eslint: '>=8'
  900. eslint-plugin-import-x@4.10.2:
  901. resolution: {integrity: sha512-jO3Y6+zBUyTX5MVbbLSzoz6fe65t+WEBaXStRLM4EBhZWbuSwAH3cLwARtM0Yp4zRtZGp9sL2zzK7G9JkHR8LA==}
  902. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  903. peerDependencies:
  904. eslint: ^8.57.0 || ^9.0.0
  905. eslint-plugin-jsonc@2.20.0:
  906. resolution: {integrity: sha512-FRgCn9Hzk5eKboCbVMrr9QrhM0eO4G+WKH8IFXoaeqhM/2kuWzbStJn4kkr0VWL8J5H8RYZF+Aoam1vlBaZVkw==}
  907. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  908. peerDependencies:
  909. eslint: '>=6.0.0'
  910. eslint-plugin-n@17.17.0:
  911. resolution: {integrity: sha512-2VvPK7Mo73z1rDFb6pTvkH6kFibAmnTubFq5l83vePxu0WiY1s0LOtj2WHb6Sa40R3w4mnh8GFYbHBQyMlotKw==}
  912. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  913. peerDependencies:
  914. eslint: '>=8.23.0'
  915. eslint-plugin-paths@1.1.0:
  916. resolution: {integrity: sha512-Ye633sqwSy/GE5dLUI4zpxXoekIyQOD8FyYi2H0YkBws3Q4xjX/ycIzpDWt7BDAlKhbXYGk2BgP9qmNFnEX03w==}
  917. eslint-plugin-promise@7.2.1:
  918. resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==}
  919. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  920. peerDependencies:
  921. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  922. eslint-plugin-regexp@2.7.0:
  923. resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
  924. engines: {node: ^18 || >=20}
  925. peerDependencies:
  926. eslint: '>=8.44.0'
  927. eslint-plugin-sukka@6.18.2:
  928. resolution: {integrity: sha512-WrEu+axSnoJvoQIdTvsopPV3nKYeUqAEdE3eSYljFbjbswPqx4DhMvqCAOqFMHMGIwYYzoBps/hvD2YpjKVPIA==}
  929. peerDependencies:
  930. typescript: '*'
  931. peerDependenciesMeta:
  932. typescript:
  933. optional: true
  934. eslint-plugin-unused-imports@4.1.4:
  935. resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
  936. peerDependencies:
  937. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  938. eslint: ^9.0.0 || ^8.0.0
  939. peerDependenciesMeta:
  940. '@typescript-eslint/eslint-plugin':
  941. optional: true
  942. eslint-rule-composer@0.3.0:
  943. resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==}
  944. engines: {node: '>=4.0.0'}
  945. eslint-scope@8.3.0:
  946. resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
  947. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  948. eslint-visitor-keys@3.4.3:
  949. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  950. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  951. eslint-visitor-keys@4.2.0:
  952. resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
  953. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  954. eslint@9.25.1:
  955. resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
  956. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  957. hasBin: true
  958. peerDependencies:
  959. jiti: '*'
  960. peerDependenciesMeta:
  961. jiti:
  962. optional: true
  963. espree@10.3.0:
  964. resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
  965. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  966. espree@9.6.1:
  967. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  968. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  969. esprima@4.0.1:
  970. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  971. engines: {node: '>=4'}
  972. hasBin: true
  973. esquery@1.6.0:
  974. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  975. engines: {node: '>=0.10'}
  976. esrecurse@4.3.0:
  977. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  978. engines: {node: '>=4.0'}
  979. estraverse@5.3.0:
  980. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  981. engines: {node: '>=4.0'}
  982. esutils@2.0.3:
  983. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  984. engines: {node: '>=0.10.0'}
  985. expand-template@2.0.3:
  986. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  987. engines: {node: '>=6'}
  988. expect@29.7.0:
  989. resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
  990. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  991. fast-cidr-tools@0.3.2:
  992. resolution: {integrity: sha512-hH8m1zjBer5VxrFG3dCEIMGEu/hDs/2scCH0vCJqce5ujCEBmZYlCejfZ4IFYTCt1YQard/uXmMzNBs9SR3/qg==}
  993. engines: {node: '>=16'}
  994. fast-deep-equal@3.1.3:
  995. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  996. fast-fifo@1.3.2:
  997. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  998. fast-glob@3.3.3:
  999. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  1000. engines: {node: '>=8.6.0'}
  1001. fast-json-stable-stringify@2.1.0:
  1002. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1003. fast-levenshtein@2.0.6:
  1004. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1005. fastq@1.19.0:
  1006. resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
  1007. fdir@6.4.4:
  1008. resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
  1009. peerDependencies:
  1010. picomatch: ^3 || ^4
  1011. peerDependenciesMeta:
  1012. picomatch:
  1013. optional: true
  1014. file-entry-cache@8.0.0:
  1015. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1016. engines: {node: '>=16.0.0'}
  1017. file-uri-to-path@1.0.0:
  1018. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1019. fill-range@7.1.1:
  1020. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  1021. engines: {node: '>=8'}
  1022. find-up@5.0.0:
  1023. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1024. engines: {node: '>=10'}
  1025. flat-cache@4.0.1:
  1026. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1027. engines: {node: '>=16'}
  1028. flat@5.0.2:
  1029. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1030. hasBin: true
  1031. flatted@3.3.2:
  1032. resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
  1033. foreground-child@3.3.0:
  1034. resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
  1035. engines: {node: '>=14'}
  1036. foxts@3.0.1:
  1037. resolution: {integrity: sha512-c8t5vWw0VrUZ3QnBarcj542zLqEmbnXswMv5NzmKDy1MXPr8wMS+9BJT3iDZKfrmF3ZF3P30Mi8iDsdHCiEWuA==}
  1038. fs-constants@1.0.0:
  1039. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1040. fsevents@2.3.3:
  1041. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1042. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1043. os: [darwin]
  1044. function-bind@1.1.2:
  1045. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1046. get-caller-file@2.0.5:
  1047. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1048. engines: {node: 6.* || 8.* || >= 10.*}
  1049. get-tsconfig@4.10.0:
  1050. resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
  1051. github-from-package@0.0.0:
  1052. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1053. glob-parent@5.1.2:
  1054. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1055. engines: {node: '>= 6'}
  1056. glob-parent@6.0.2:
  1057. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1058. engines: {node: '>=10.13.0'}
  1059. glob@10.4.5:
  1060. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1061. hasBin: true
  1062. globals@14.0.0:
  1063. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  1064. engines: {node: '>=18'}
  1065. globals@15.14.0:
  1066. resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
  1067. engines: {node: '>=18'}
  1068. globalthis@1.0.4:
  1069. resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
  1070. engines: {node: '>= 0.4'}
  1071. gopd@1.2.0:
  1072. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1073. engines: {node: '>= 0.4'}
  1074. graceful-fs@4.2.11:
  1075. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1076. graphemer@1.4.0:
  1077. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  1078. has-flag@4.0.0:
  1079. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1080. engines: {node: '>=8'}
  1081. has-own-prop@2.0.0:
  1082. resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==}
  1083. engines: {node: '>=8'}
  1084. has-property-descriptors@1.0.2:
  1085. resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
  1086. hash-wasm@4.12.0:
  1087. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1088. hasown@2.0.2:
  1089. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1090. engines: {node: '>= 0.4'}
  1091. he@1.2.0:
  1092. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1093. hasBin: true
  1094. ieee754@1.2.1:
  1095. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1096. ignore@5.3.2:
  1097. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1098. engines: {node: '>= 4'}
  1099. import-fresh@3.3.1:
  1100. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  1101. engines: {node: '>=6'}
  1102. imurmurhash@0.1.4:
  1103. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1104. engines: {node: '>=0.8.19'}
  1105. inherits@2.0.4:
  1106. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1107. ini@1.3.8:
  1108. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1109. is-binary-path@2.1.0:
  1110. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  1111. engines: {node: '>=8'}
  1112. is-bun-module@2.0.0:
  1113. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1114. is-core-module@2.16.1:
  1115. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  1116. engines: {node: '>= 0.4'}
  1117. is-extglob@2.1.1:
  1118. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1119. engines: {node: '>=0.10.0'}
  1120. is-fullwidth-code-point@3.0.0:
  1121. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1122. engines: {node: '>=8'}
  1123. is-glob@4.0.3:
  1124. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1125. engines: {node: '>=0.10.0'}
  1126. is-it-type@5.1.2:
  1127. resolution: {integrity: sha512-q/gOZQTNYABAxaXWnBKZjTFH4yACvWEFtgVOj+LbgxYIgAJG1xVmUZOsECSrZPIemYUQvaQWVilSFVbh4Eyt8A==}
  1128. engines: {node: '>=12'}
  1129. is-number@7.0.0:
  1130. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1131. engines: {node: '>=0.12.0'}
  1132. is-plain-obj@2.1.0:
  1133. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1134. engines: {node: '>=8'}
  1135. is-unicode-supported@0.1.0:
  1136. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1137. engines: {node: '>=10'}
  1138. isexe@2.0.0:
  1139. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1140. jackspeak@3.4.3:
  1141. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1142. jest-diff@29.7.0:
  1143. resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
  1144. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1145. jest-get-type@29.6.3:
  1146. resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
  1147. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1148. jest-matcher-utils@29.7.0:
  1149. resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
  1150. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1151. jest-message-util@29.7.0:
  1152. resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
  1153. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1154. jest-util@29.7.0:
  1155. resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
  1156. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1157. js-tokens@4.0.0:
  1158. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1159. js-yaml@4.1.0:
  1160. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1161. hasBin: true
  1162. jsdoc-type-pratt-parser@4.1.0:
  1163. resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
  1164. engines: {node: '>=12.0.0'}
  1165. json-buffer@3.0.1:
  1166. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1167. json-schema-traverse@0.4.1:
  1168. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1169. json-stable-stringify-without-jsonify@1.0.1:
  1170. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1171. json-stringify-pretty-compact@3.0.0:
  1172. resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==}
  1173. jsonc-eslint-parser@2.4.0:
  1174. resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
  1175. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  1176. keyv@4.5.4:
  1177. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1178. levn@0.4.1:
  1179. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1180. engines: {node: '>= 0.8.0'}
  1181. locate-path@6.0.0:
  1182. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1183. engines: {node: '>=10'}
  1184. lodash.merge@4.6.2:
  1185. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  1186. log-symbols@4.1.0:
  1187. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1188. engines: {node: '>=10'}
  1189. lru-cache@10.4.3:
  1190. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1191. merge2@1.4.1:
  1192. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1193. engines: {node: '>= 8'}
  1194. micromatch@4.0.8:
  1195. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  1196. engines: {node: '>=8.6'}
  1197. mimic-response@3.1.0:
  1198. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1199. engines: {node: '>=10'}
  1200. minimatch@3.1.2:
  1201. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  1202. minimatch@5.1.6:
  1203. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  1204. engines: {node: '>=10'}
  1205. minimatch@9.0.5:
  1206. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1207. engines: {node: '>=16 || 14 >=14.17'}
  1208. minimist@1.2.8:
  1209. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1210. minipass@7.1.2:
  1211. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1212. engines: {node: '>=16 || 14 >=14.17'}
  1213. mitata@1.0.34:
  1214. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1215. mkdirp-classic@0.5.3:
  1216. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1217. mocha@11.1.0:
  1218. resolution: {integrity: sha512-8uJR5RTC2NgpY3GrYcgpZrsEd9zKbPDpob1RezyR2upGHRQtHWofmzTMzTMSV6dru3tj5Ukt0+Vnq1qhFEEwAg==}
  1219. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1220. hasBin: true
  1221. ms@2.1.3:
  1222. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1223. napi-build-utils@2.0.0:
  1224. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1225. natural-compare@1.4.0:
  1226. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1227. node-abi@3.74.0:
  1228. resolution: {integrity: sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==}
  1229. engines: {node: '>=10'}
  1230. normalize-path@3.0.0:
  1231. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1232. engines: {node: '>=0.10.0'}
  1233. object-keys@1.1.1:
  1234. resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
  1235. engines: {node: '>= 0.4'}
  1236. once@1.4.0:
  1237. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1238. optionator@0.9.4:
  1239. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1240. engines: {node: '>= 0.8.0'}
  1241. oxc-resolver@5.0.0:
  1242. resolution: {integrity: sha512-66fopyAqCN8Mx4tzNiBXWbk8asCSuxUWN62gwTc3yfRs7JfWhX/eVJCf+fUrfbNOdQVOWn+o8pAKllp76ysMXA==}
  1243. p-limit@3.1.0:
  1244. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1245. engines: {node: '>=10'}
  1246. p-locate@5.0.0:
  1247. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1248. engines: {node: '>=10'}
  1249. package-json-from-dist@1.0.1:
  1250. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1251. parent-module@1.0.1:
  1252. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  1253. engines: {node: '>=6'}
  1254. path-exists@4.0.0:
  1255. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1256. engines: {node: '>=8'}
  1257. path-key@3.1.1:
  1258. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1259. engines: {node: '>=8'}
  1260. path-parse@1.0.7:
  1261. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1262. path-scurry@1.11.1:
  1263. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1264. engines: {node: '>=16 || 14 >=14.18'}
  1265. picocolors@1.1.1:
  1266. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1267. picomatch@2.3.1:
  1268. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1269. engines: {node: '>=8.6'}
  1270. picomatch@4.0.2:
  1271. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  1272. engines: {node: '>=12'}
  1273. pirates@4.0.6:
  1274. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  1275. engines: {node: '>= 6'}
  1276. prebuild-install@7.1.3:
  1277. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1278. engines: {node: '>=10'}
  1279. hasBin: true
  1280. prelude-ls@1.2.1:
  1281. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1282. engines: {node: '>= 0.8.0'}
  1283. pretty-format@29.7.0:
  1284. resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
  1285. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  1286. promise-make-naked@2.1.2:
  1287. resolution: {integrity: sha512-y7s8ZuHIG56JYspB24be9GFkXA1zXL85Ur9u1DKrW/tvyUoPxWgBjnalK6Nc6l7wHBcAW0c3PO07+XOsWTRuhg==}
  1288. pump@3.0.2:
  1289. resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
  1290. punycode@2.3.1:
  1291. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1292. engines: {node: '>=6'}
  1293. queue-microtask@1.2.3:
  1294. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1295. randombytes@2.1.0:
  1296. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1297. rc@1.2.8:
  1298. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1299. hasBin: true
  1300. react-is@18.3.1:
  1301. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  1302. readable-stream@3.6.2:
  1303. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1304. engines: {node: '>= 6'}
  1305. readdirp@3.6.0:
  1306. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1307. engines: {node: '>=8.10.0'}
  1308. refa@0.12.1:
  1309. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1310. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1311. regenerator-runtime@0.14.1:
  1312. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  1313. regexp-ast-analysis@0.7.1:
  1314. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1315. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1316. repeat-string@1.6.1:
  1317. resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
  1318. engines: {node: '>=0.10'}
  1319. require-directory@2.1.1:
  1320. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1321. engines: {node: '>=0.10.0'}
  1322. resolve-from@4.0.0:
  1323. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1324. engines: {node: '>=4'}
  1325. resolve-pkg-maps@1.0.0:
  1326. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1327. resolve@1.22.10:
  1328. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1329. engines: {node: '>= 0.4'}
  1330. hasBin: true
  1331. retry@0.13.1:
  1332. resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
  1333. engines: {node: '>= 4'}
  1334. reusify@1.0.4:
  1335. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1336. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1337. run-parallel@1.2.0:
  1338. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1339. safe-buffer@5.2.1:
  1340. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  1341. scslre@0.3.0:
  1342. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1343. engines: {node: ^14.0.0 || >=16.0.0}
  1344. semver@7.7.1:
  1345. resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
  1346. engines: {node: '>=10'}
  1347. hasBin: true
  1348. serialize-javascript@6.0.2:
  1349. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1350. shebang-command@2.0.0:
  1351. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1352. engines: {node: '>=8'}
  1353. shebang-regex@3.0.0:
  1354. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1355. engines: {node: '>=8'}
  1356. signal-exit@4.1.0:
  1357. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1358. engines: {node: '>=14'}
  1359. simple-concat@1.0.1:
  1360. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1361. simple-get@4.0.1:
  1362. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1363. simple-invariant@2.0.1:
  1364. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1365. engines: {node: '>=10'}
  1366. slash@3.0.0:
  1367. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  1368. engines: {node: '>=8'}
  1369. source-map-support@0.5.21:
  1370. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1371. source-map@0.6.1:
  1372. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1373. engines: {node: '>=0.10.0'}
  1374. stable-hash@0.0.5:
  1375. resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
  1376. stack-utils@2.0.6:
  1377. resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
  1378. engines: {node: '>=10'}
  1379. streamx@2.22.0:
  1380. resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
  1381. string-similarity@4.0.4:
  1382. resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
  1383. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1384. string-width@4.2.3:
  1385. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1386. engines: {node: '>=8'}
  1387. string-width@5.1.2:
  1388. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1389. engines: {node: '>=12'}
  1390. string_decoder@1.3.0:
  1391. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1392. strip-ansi@6.0.1:
  1393. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1394. engines: {node: '>=8'}
  1395. strip-ansi@7.1.0:
  1396. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1397. engines: {node: '>=12'}
  1398. strip-json-comments@2.0.1:
  1399. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1400. engines: {node: '>=0.10.0'}
  1401. strip-json-comments@3.1.1:
  1402. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1403. engines: {node: '>=8'}
  1404. supports-color@7.2.0:
  1405. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1406. engines: {node: '>=8'}
  1407. supports-color@8.1.1:
  1408. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1409. engines: {node: '>=10'}
  1410. supports-preserve-symlinks-flag@1.0.0:
  1411. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1412. engines: {node: '>= 0.4'}
  1413. synckit@0.6.2:
  1414. resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
  1415. engines: {node: '>=12.20'}
  1416. tapable@2.2.1:
  1417. resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
  1418. engines: {node: '>=6'}
  1419. tar-fs@2.1.2:
  1420. resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==}
  1421. tar-fs@3.0.8:
  1422. resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==}
  1423. tar-stream@2.2.0:
  1424. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1425. engines: {node: '>=6'}
  1426. tar-stream@3.1.7:
  1427. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1428. text-decoder@1.2.3:
  1429. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1430. tinyexec@1.0.1:
  1431. resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
  1432. tinyglobby@0.2.12:
  1433. resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
  1434. engines: {node: '>=12.0.0'}
  1435. tldts-core@6.1.86:
  1436. resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
  1437. tldts-experimental@6.1.86:
  1438. resolution: {integrity: sha512-X3N3+SrwSajvANDyIBFa6tf/nO0VoqaXvvINSnQkZMGbzNlD+9G7Xb24Mtk3ZBVZJRGY7UynAJJL8kRVt6Z46Q==}
  1439. tldts@6.1.86:
  1440. resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
  1441. hasBin: true
  1442. to-regex-range@5.0.1:
  1443. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1444. engines: {node: '>=8.0'}
  1445. ts-api-utils@2.0.1:
  1446. resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
  1447. engines: {node: '>=18.12'}
  1448. peerDependencies:
  1449. typescript: '>=4.8.4'
  1450. tslib@2.8.1:
  1451. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1452. tunnel-agent@0.6.0:
  1453. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1454. type-check@0.4.0:
  1455. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1456. engines: {node: '>= 0.8.0'}
  1457. typescript-eslint@8.29.1:
  1458. resolution: {integrity: sha512-f8cDkvndhbQMPcysk6CUSGBWV+g1utqdn71P5YKwMumVMOG/5k7cHq0KyG4O52nB0oKS4aN2Tp5+wB4APJGC+w==}
  1459. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1460. peerDependencies:
  1461. eslint: ^8.57.0 || ^9.0.0
  1462. typescript: '>=4.8.4 <5.9.0'
  1463. typescript@5.8.3:
  1464. resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
  1465. engines: {node: '>=14.17'}
  1466. hasBin: true
  1467. undici-cache-store-better-sqlite3@1.0.0:
  1468. resolution: {integrity: sha512-bYwnd02xu+q7UVCR20Cnb+tVJVB5f1cKP7BUc/sxafEMhgWbRQ5S/pRNZP9Ykl2sasy2bHzSJPGXlOF+/ju4+Q==}
  1469. peerDependencies:
  1470. undici: '>=7.0.0'
  1471. undici-types@6.21.0:
  1472. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  1473. undici@7.8.0:
  1474. resolution: {integrity: sha512-vFv1GA99b7eKO1HG/4RPu2Is3FBTWBrmzqzO0mz+rLxN3yXkE4mqRcb8g8fHxzX4blEysrNZLqg5RbJLqX5buA==}
  1475. engines: {node: '>=20.18.1'}
  1476. unrs-resolver@1.4.1:
  1477. resolution: {integrity: sha512-MhPB3wBI5BR8TGieTb08XuYlE8oFVEXdSAgat3psdlRyejl8ojQ8iqPcjh094qCZ1r+TnkxzP6BeCd/umfHckQ==}
  1478. uri-js@4.4.1:
  1479. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1480. util-deprecate@1.0.2:
  1481. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1482. webworker-shim@1.1.1:
  1483. resolution: {integrity: sha512-XCWuBjJH3Xn/7SbyUF1WrrCbe6ZEsgaD7kxlFhxIwdkljGYX3BqP/dhG6ge0NBT+V7ZPjR4/BXq5BvbdaxrpKg==}
  1484. which@2.0.2:
  1485. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1486. engines: {node: '>= 8'}
  1487. hasBin: true
  1488. whoiser@1.18.0:
  1489. resolution: {integrity: sha512-QRIGreBuouc8d9i+UVMFqYJSiG7gaoaGX8nKugYDGqnuNLLgjDBwmlKODOIGHveBawza3Kfkk/OuM9VsTUYwaA==}
  1490. engines: {node: '>=15.0.0'}
  1491. why-is-node-running@3.2.2:
  1492. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1493. engines: {node: '>=20.11'}
  1494. hasBin: true
  1495. word-wrap@1.2.5:
  1496. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1497. engines: {node: '>=0.10.0'}
  1498. workerpool@6.5.1:
  1499. resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
  1500. worktank@2.7.3:
  1501. resolution: {integrity: sha512-M0fesnpttBPdvNYBdzRvLDsacN0na9RYWFxwmM/x1+/6mufjduv9/9vBObK8EXDqxRMX/SOYJabpo0UCYYBUdQ==}
  1502. wrap-ansi@7.0.0:
  1503. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1504. engines: {node: '>=10'}
  1505. wrap-ansi@8.1.0:
  1506. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1507. engines: {node: '>=12'}
  1508. wrappy@1.0.2:
  1509. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1510. xbits@0.2.0:
  1511. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1512. y18n@5.0.8:
  1513. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1514. engines: {node: '>=10'}
  1515. yaml@2.7.1:
  1516. resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
  1517. engines: {node: '>= 14'}
  1518. hasBin: true
  1519. yargs-parser@21.1.1:
  1520. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1521. engines: {node: '>=12'}
  1522. yargs-unparser@2.0.0:
  1523. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1524. engines: {node: '>=10'}
  1525. yargs@17.7.2:
  1526. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1527. engines: {node: '>=12'}
  1528. yauzl-promise@4.0.0:
  1529. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1530. engines: {node: '>=16'}
  1531. yocto-queue@0.1.0:
  1532. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1533. engines: {node: '>=10'}
  1534. snapshots:
  1535. '@babel/code-frame@7.26.2':
  1536. dependencies:
  1537. '@babel/helper-validator-identifier': 7.25.9
  1538. js-tokens: 4.0.0
  1539. picocolors: 1.1.1
  1540. '@babel/helper-validator-identifier@7.25.9': {}
  1541. '@babel/runtime@7.27.0':
  1542. dependencies:
  1543. regenerator-runtime: 0.14.1
  1544. '@dual-bundle/import-meta-resolve@4.1.0': {}
  1545. '@emnapi/core@1.3.1':
  1546. dependencies:
  1547. '@emnapi/wasi-threads': 1.0.1
  1548. tslib: 2.8.1
  1549. optional: true
  1550. '@emnapi/core@1.4.0':
  1551. dependencies:
  1552. '@emnapi/wasi-threads': 1.0.1
  1553. tslib: 2.8.1
  1554. optional: true
  1555. '@emnapi/runtime@1.3.1':
  1556. dependencies:
  1557. tslib: 2.8.1
  1558. optional: true
  1559. '@emnapi/runtime@1.4.0':
  1560. dependencies:
  1561. tslib: 2.8.1
  1562. optional: true
  1563. '@emnapi/wasi-threads@1.0.1':
  1564. dependencies:
  1565. tslib: 2.8.1
  1566. optional: true
  1567. '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.25.1)':
  1568. dependencies:
  1569. escape-string-regexp: 4.0.0
  1570. eslint: 9.25.1
  1571. ignore: 5.3.2
  1572. '@eslint-community/eslint-utils@4.5.1(eslint@9.25.1)':
  1573. dependencies:
  1574. eslint: 9.25.1
  1575. eslint-visitor-keys: 3.4.3
  1576. '@eslint-community/regexpp@4.12.1': {}
  1577. '@eslint-sukka/node@6.18.2(eslint@9.25.1)(typescript@5.8.3)':
  1578. dependencies:
  1579. '@eslint-sukka/shared': 6.18.2(eslint@9.25.1)(typescript@5.8.3)
  1580. eslint-plugin-n: 17.17.0(eslint@9.25.1)
  1581. eslint-plugin-sukka: 6.18.2(eslint@9.25.1)(typescript@5.8.3)
  1582. transitivePeerDependencies:
  1583. - eslint
  1584. - supports-color
  1585. - typescript
  1586. '@eslint-sukka/shared@6.18.2(eslint@9.25.1)(typescript@5.8.3)':
  1587. dependencies:
  1588. '@dual-bundle/import-meta-resolve': 4.1.0
  1589. '@package-json/types': 0.0.11
  1590. '@typescript-eslint/utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  1591. transitivePeerDependencies:
  1592. - eslint
  1593. - supports-color
  1594. - typescript
  1595. '@eslint/config-array@0.20.0':
  1596. dependencies:
  1597. '@eslint/object-schema': 2.1.6
  1598. debug: 4.4.0(supports-color@8.1.1)
  1599. minimatch: 3.1.2
  1600. transitivePeerDependencies:
  1601. - supports-color
  1602. '@eslint/config-helpers@0.2.1': {}
  1603. '@eslint/core@0.13.0':
  1604. dependencies:
  1605. '@types/json-schema': 7.0.15
  1606. '@eslint/eslintrc@3.3.1':
  1607. dependencies:
  1608. ajv: 6.12.6
  1609. debug: 4.4.0(supports-color@8.1.1)
  1610. espree: 10.3.0
  1611. globals: 14.0.0
  1612. ignore: 5.3.2
  1613. import-fresh: 3.3.1
  1614. js-yaml: 4.1.0
  1615. minimatch: 3.1.2
  1616. strip-json-comments: 3.1.1
  1617. transitivePeerDependencies:
  1618. - supports-color
  1619. '@eslint/js@9.24.0': {}
  1620. '@eslint/js@9.25.1': {}
  1621. '@eslint/object-schema@2.1.6': {}
  1622. '@eslint/plugin-kit@0.2.8':
  1623. dependencies:
  1624. '@eslint/core': 0.13.0
  1625. levn: 0.4.1
  1626. '@ghostery/adblocker-content@2.5.1':
  1627. dependencies:
  1628. '@ghostery/adblocker-extended-selectors': 2.5.1
  1629. '@ghostery/adblocker-extended-selectors@2.5.1': {}
  1630. '@ghostery/adblocker@2.5.1':
  1631. dependencies:
  1632. '@ghostery/adblocker-content': 2.5.1
  1633. '@ghostery/adblocker-extended-selectors': 2.5.1
  1634. '@remusao/guess-url-type': 2.0.0
  1635. '@remusao/small': 2.0.0
  1636. '@remusao/smaz': 2.1.0
  1637. tldts-experimental: 6.1.86
  1638. '@henrygd/queue@1.0.7': {}
  1639. '@humanfs/core@0.19.1': {}
  1640. '@humanfs/node@0.16.6':
  1641. dependencies:
  1642. '@humanfs/core': 0.19.1
  1643. '@humanwhocodes/retry': 0.3.1
  1644. '@humanwhocodes/module-importer@1.0.1': {}
  1645. '@humanwhocodes/retry@0.3.1': {}
  1646. '@humanwhocodes/retry@0.4.2': {}
  1647. '@isaacs/cliui@8.0.2':
  1648. dependencies:
  1649. string-width: 5.1.2
  1650. string-width-cjs: string-width@4.2.3
  1651. strip-ansi: 7.1.0
  1652. strip-ansi-cjs: strip-ansi@6.0.1
  1653. wrap-ansi: 8.1.0
  1654. wrap-ansi-cjs: wrap-ansi@7.0.0
  1655. '@jest/expect-utils@29.7.0':
  1656. dependencies:
  1657. jest-get-type: 29.6.3
  1658. '@jest/schemas@29.6.3':
  1659. dependencies:
  1660. '@sinclair/typebox': 0.27.8
  1661. '@jest/types@29.6.3':
  1662. dependencies:
  1663. '@jest/schemas': 29.6.3
  1664. '@types/istanbul-lib-coverage': 2.0.6
  1665. '@types/istanbul-reports': 3.0.4
  1666. '@types/node': 22.15.2
  1667. '@types/yargs': 17.0.33
  1668. chalk: 4.1.2
  1669. '@mitata/counters@0.0.8': {}
  1670. '@napi-rs/wasm-runtime@0.2.7':
  1671. dependencies:
  1672. '@emnapi/core': 1.3.1
  1673. '@emnapi/runtime': 1.3.1
  1674. '@tybys/wasm-util': 0.9.0
  1675. optional: true
  1676. '@napi-rs/wasm-runtime@0.2.8':
  1677. dependencies:
  1678. '@emnapi/core': 1.4.0
  1679. '@emnapi/runtime': 1.4.0
  1680. '@tybys/wasm-util': 0.9.0
  1681. optional: true
  1682. '@node-rs/crc32-android-arm-eabi@1.10.6':
  1683. optional: true
  1684. '@node-rs/crc32-android-arm64@1.10.6':
  1685. optional: true
  1686. '@node-rs/crc32-darwin-arm64@1.10.6':
  1687. optional: true
  1688. '@node-rs/crc32-darwin-x64@1.10.6':
  1689. optional: true
  1690. '@node-rs/crc32-freebsd-x64@1.10.6':
  1691. optional: true
  1692. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  1693. optional: true
  1694. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  1695. optional: true
  1696. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  1697. optional: true
  1698. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  1699. optional: true
  1700. '@node-rs/crc32-linux-x64-musl@1.10.6':
  1701. optional: true
  1702. '@node-rs/crc32-wasm32-wasi@1.10.6':
  1703. dependencies:
  1704. '@napi-rs/wasm-runtime': 0.2.8
  1705. optional: true
  1706. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  1707. optional: true
  1708. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  1709. optional: true
  1710. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  1711. optional: true
  1712. '@node-rs/crc32@1.10.6':
  1713. optionalDependencies:
  1714. '@node-rs/crc32-android-arm-eabi': 1.10.6
  1715. '@node-rs/crc32-android-arm64': 1.10.6
  1716. '@node-rs/crc32-darwin-arm64': 1.10.6
  1717. '@node-rs/crc32-darwin-x64': 1.10.6
  1718. '@node-rs/crc32-freebsd-x64': 1.10.6
  1719. '@node-rs/crc32-linux-arm-gnueabihf': 1.10.6
  1720. '@node-rs/crc32-linux-arm64-gnu': 1.10.6
  1721. '@node-rs/crc32-linux-arm64-musl': 1.10.6
  1722. '@node-rs/crc32-linux-x64-gnu': 1.10.6
  1723. '@node-rs/crc32-linux-x64-musl': 1.10.6
  1724. '@node-rs/crc32-wasm32-wasi': 1.10.6
  1725. '@node-rs/crc32-win32-arm64-msvc': 1.10.6
  1726. '@node-rs/crc32-win32-ia32-msvc': 1.10.6
  1727. '@node-rs/crc32-win32-x64-msvc': 1.10.6
  1728. '@nodelib/fs.scandir@2.1.5':
  1729. dependencies:
  1730. '@nodelib/fs.stat': 2.0.5
  1731. run-parallel: 1.2.0
  1732. '@nodelib/fs.stat@2.0.5': {}
  1733. '@nodelib/fs.walk@1.2.8':
  1734. dependencies:
  1735. '@nodelib/fs.scandir': 2.1.5
  1736. fastq: 1.19.0
  1737. '@oxc-resolver/binding-darwin-arm64@5.0.0':
  1738. optional: true
  1739. '@oxc-resolver/binding-darwin-x64@5.0.0':
  1740. optional: true
  1741. '@oxc-resolver/binding-freebsd-x64@5.0.0':
  1742. optional: true
  1743. '@oxc-resolver/binding-linux-arm-gnueabihf@5.0.0':
  1744. optional: true
  1745. '@oxc-resolver/binding-linux-arm64-gnu@5.0.0':
  1746. optional: true
  1747. '@oxc-resolver/binding-linux-arm64-musl@5.0.0':
  1748. optional: true
  1749. '@oxc-resolver/binding-linux-x64-gnu@5.0.0':
  1750. optional: true
  1751. '@oxc-resolver/binding-linux-x64-musl@5.0.0':
  1752. optional: true
  1753. '@oxc-resolver/binding-wasm32-wasi@5.0.0':
  1754. dependencies:
  1755. '@napi-rs/wasm-runtime': 0.2.7
  1756. optional: true
  1757. '@oxc-resolver/binding-win32-arm64-msvc@5.0.0':
  1758. optional: true
  1759. '@oxc-resolver/binding-win32-x64-msvc@5.0.0':
  1760. optional: true
  1761. '@package-json/types@0.0.11': {}
  1762. '@pkgjs/parseargs@0.11.0':
  1763. optional: true
  1764. '@pkgr/core@0.2.1': {}
  1765. '@remusao/guess-url-type@2.0.0': {}
  1766. '@remusao/small@2.0.0': {}
  1767. '@remusao/smaz-compress@2.1.0':
  1768. dependencies:
  1769. '@remusao/trie': 2.0.0
  1770. '@remusao/smaz-decompress@2.1.0': {}
  1771. '@remusao/smaz@2.1.0':
  1772. dependencies:
  1773. '@remusao/smaz-compress': 2.1.0
  1774. '@remusao/smaz-decompress': 2.1.0
  1775. '@remusao/trie@2.0.0': {}
  1776. '@sinclair/typebox@0.27.8': {}
  1777. '@swc-node/core@1.13.3(@swc/core@1.11.22)(@swc/types@0.1.21)':
  1778. dependencies:
  1779. '@swc/core': 1.11.22
  1780. '@swc/types': 0.1.21
  1781. '@swc-node/register@1.10.10(@swc/core@1.11.22)(@swc/types@0.1.21)(typescript@5.8.3)':
  1782. dependencies:
  1783. '@swc-node/core': 1.13.3(@swc/core@1.11.22)(@swc/types@0.1.21)
  1784. '@swc-node/sourcemap-support': 0.5.1
  1785. '@swc/core': 1.11.22
  1786. colorette: 2.0.20
  1787. debug: 4.4.0(supports-color@8.1.1)
  1788. oxc-resolver: 5.0.0
  1789. pirates: 4.0.6
  1790. tslib: 2.8.1
  1791. typescript: 5.8.3
  1792. transitivePeerDependencies:
  1793. - '@swc/types'
  1794. - supports-color
  1795. '@swc-node/sourcemap-support@0.5.1':
  1796. dependencies:
  1797. source-map-support: 0.5.21
  1798. tslib: 2.8.1
  1799. '@swc/core-darwin-arm64@1.11.22':
  1800. optional: true
  1801. '@swc/core-darwin-x64@1.11.22':
  1802. optional: true
  1803. '@swc/core-linux-arm-gnueabihf@1.11.22':
  1804. optional: true
  1805. '@swc/core-linux-arm64-gnu@1.11.22':
  1806. optional: true
  1807. '@swc/core-linux-arm64-musl@1.11.22':
  1808. optional: true
  1809. '@swc/core-linux-x64-gnu@1.11.22':
  1810. optional: true
  1811. '@swc/core-linux-x64-musl@1.11.22':
  1812. optional: true
  1813. '@swc/core-win32-arm64-msvc@1.11.22':
  1814. optional: true
  1815. '@swc/core-win32-ia32-msvc@1.11.22':
  1816. optional: true
  1817. '@swc/core-win32-x64-msvc@1.11.22':
  1818. optional: true
  1819. '@swc/core@1.11.22':
  1820. dependencies:
  1821. '@swc/counter': 0.1.3
  1822. '@swc/types': 0.1.21
  1823. optionalDependencies:
  1824. '@swc/core-darwin-arm64': 1.11.22
  1825. '@swc/core-darwin-x64': 1.11.22
  1826. '@swc/core-linux-arm-gnueabihf': 1.11.22
  1827. '@swc/core-linux-arm64-gnu': 1.11.22
  1828. '@swc/core-linux-arm64-musl': 1.11.22
  1829. '@swc/core-linux-x64-gnu': 1.11.22
  1830. '@swc/core-linux-x64-musl': 1.11.22
  1831. '@swc/core-win32-arm64-msvc': 1.11.22
  1832. '@swc/core-win32-ia32-msvc': 1.11.22
  1833. '@swc/core-win32-x64-msvc': 1.11.22
  1834. '@swc/counter@0.1.3': {}
  1835. '@swc/types@0.1.21':
  1836. dependencies:
  1837. '@swc/counter': 0.1.3
  1838. '@tybys/wasm-util@0.9.0':
  1839. dependencies:
  1840. tslib: 2.8.1
  1841. optional: true
  1842. '@types/async-retry@1.4.9':
  1843. dependencies:
  1844. '@types/retry': 0.12.5
  1845. '@types/better-sqlite3@7.6.13':
  1846. dependencies:
  1847. '@types/node': 22.15.2
  1848. '@types/dns2@2.0.9':
  1849. dependencies:
  1850. '@types/node': 22.15.2
  1851. '@types/doctrine@0.0.9': {}
  1852. '@types/estree@1.0.6': {}
  1853. '@types/fast-fifo@1.3.0': {}
  1854. '@types/istanbul-lib-coverage@2.0.6': {}
  1855. '@types/istanbul-lib-report@3.0.3':
  1856. dependencies:
  1857. '@types/istanbul-lib-coverage': 2.0.6
  1858. '@types/istanbul-reports@3.0.4':
  1859. dependencies:
  1860. '@types/istanbul-lib-report': 3.0.3
  1861. '@types/json-schema@7.0.15': {}
  1862. '@types/mocha@10.0.10': {}
  1863. '@types/node@22.15.2':
  1864. dependencies:
  1865. undici-types: 6.21.0
  1866. '@types/punycode@2.1.4': {}
  1867. '@types/retry@0.12.5': {}
  1868. '@types/stack-utils@2.0.3': {}
  1869. '@types/tar-fs@2.0.4':
  1870. dependencies:
  1871. '@types/node': 22.15.2
  1872. '@types/tar-stream': 3.1.3
  1873. '@types/tar-stream@3.1.3':
  1874. dependencies:
  1875. '@types/node': 22.15.2
  1876. '@types/yargs-parser@21.0.3': {}
  1877. '@types/yargs@17.0.33':
  1878. dependencies:
  1879. '@types/yargs-parser': 21.0.3
  1880. '@types/yauzl-promise@4.0.1':
  1881. dependencies:
  1882. '@types/node': 22.15.2
  1883. '@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3)':
  1884. dependencies:
  1885. '@eslint-community/regexpp': 4.12.1
  1886. '@typescript-eslint/parser': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  1887. '@typescript-eslint/scope-manager': 8.29.1
  1888. '@typescript-eslint/type-utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  1889. '@typescript-eslint/utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  1890. '@typescript-eslint/visitor-keys': 8.29.1
  1891. eslint: 9.25.1
  1892. graphemer: 1.4.0
  1893. ignore: 5.3.2
  1894. natural-compare: 1.4.0
  1895. ts-api-utils: 2.0.1(typescript@5.8.3)
  1896. typescript: 5.8.3
  1897. transitivePeerDependencies:
  1898. - supports-color
  1899. '@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3)':
  1900. dependencies:
  1901. '@typescript-eslint/scope-manager': 8.29.1
  1902. '@typescript-eslint/types': 8.29.1
  1903. '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3)
  1904. '@typescript-eslint/visitor-keys': 8.29.1
  1905. debug: 4.4.0(supports-color@8.1.1)
  1906. eslint: 9.25.1
  1907. typescript: 5.8.3
  1908. transitivePeerDependencies:
  1909. - supports-color
  1910. '@typescript-eslint/scope-manager@8.29.0':
  1911. dependencies:
  1912. '@typescript-eslint/types': 8.29.0
  1913. '@typescript-eslint/visitor-keys': 8.29.0
  1914. '@typescript-eslint/scope-manager@8.29.1':
  1915. dependencies:
  1916. '@typescript-eslint/types': 8.29.1
  1917. '@typescript-eslint/visitor-keys': 8.29.1
  1918. '@typescript-eslint/type-utils@8.29.1(eslint@9.25.1)(typescript@5.8.3)':
  1919. dependencies:
  1920. '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3)
  1921. '@typescript-eslint/utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  1922. debug: 4.4.0(supports-color@8.1.1)
  1923. eslint: 9.25.1
  1924. ts-api-utils: 2.0.1(typescript@5.8.3)
  1925. typescript: 5.8.3
  1926. transitivePeerDependencies:
  1927. - supports-color
  1928. '@typescript-eslint/types@8.29.0': {}
  1929. '@typescript-eslint/types@8.29.1': {}
  1930. '@typescript-eslint/typescript-estree@8.29.0(typescript@5.8.3)':
  1931. dependencies:
  1932. '@typescript-eslint/types': 8.29.0
  1933. '@typescript-eslint/visitor-keys': 8.29.0
  1934. debug: 4.4.0(supports-color@8.1.1)
  1935. fast-glob: 3.3.3
  1936. is-glob: 4.0.3
  1937. minimatch: 9.0.5
  1938. semver: 7.7.1
  1939. ts-api-utils: 2.0.1(typescript@5.8.3)
  1940. typescript: 5.8.3
  1941. transitivePeerDependencies:
  1942. - supports-color
  1943. '@typescript-eslint/typescript-estree@8.29.1(typescript@5.8.3)':
  1944. dependencies:
  1945. '@typescript-eslint/types': 8.29.1
  1946. '@typescript-eslint/visitor-keys': 8.29.1
  1947. debug: 4.4.0(supports-color@8.1.1)
  1948. fast-glob: 3.3.3
  1949. is-glob: 4.0.3
  1950. minimatch: 9.0.5
  1951. semver: 7.7.1
  1952. ts-api-utils: 2.0.1(typescript@5.8.3)
  1953. typescript: 5.8.3
  1954. transitivePeerDependencies:
  1955. - supports-color
  1956. '@typescript-eslint/utils@8.29.0(eslint@9.25.1)(typescript@5.8.3)':
  1957. dependencies:
  1958. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  1959. '@typescript-eslint/scope-manager': 8.29.0
  1960. '@typescript-eslint/types': 8.29.0
  1961. '@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
  1962. eslint: 9.25.1
  1963. typescript: 5.8.3
  1964. transitivePeerDependencies:
  1965. - supports-color
  1966. '@typescript-eslint/utils@8.29.1(eslint@9.25.1)(typescript@5.8.3)':
  1967. dependencies:
  1968. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  1969. '@typescript-eslint/scope-manager': 8.29.1
  1970. '@typescript-eslint/types': 8.29.1
  1971. '@typescript-eslint/typescript-estree': 8.29.1(typescript@5.8.3)
  1972. eslint: 9.25.1
  1973. typescript: 5.8.3
  1974. transitivePeerDependencies:
  1975. - supports-color
  1976. '@typescript-eslint/visitor-keys@8.29.0':
  1977. dependencies:
  1978. '@typescript-eslint/types': 8.29.0
  1979. eslint-visitor-keys: 4.2.0
  1980. '@typescript-eslint/visitor-keys@8.29.1':
  1981. dependencies:
  1982. '@typescript-eslint/types': 8.29.1
  1983. eslint-visitor-keys: 4.2.0
  1984. '@unrs/resolver-binding-darwin-arm64@1.4.1':
  1985. optional: true
  1986. '@unrs/resolver-binding-darwin-x64@1.4.1':
  1987. optional: true
  1988. '@unrs/resolver-binding-freebsd-x64@1.4.1':
  1989. optional: true
  1990. '@unrs/resolver-binding-linux-arm-gnueabihf@1.4.1':
  1991. optional: true
  1992. '@unrs/resolver-binding-linux-arm-musleabihf@1.4.1':
  1993. optional: true
  1994. '@unrs/resolver-binding-linux-arm64-gnu@1.4.1':
  1995. optional: true
  1996. '@unrs/resolver-binding-linux-arm64-musl@1.4.1':
  1997. optional: true
  1998. '@unrs/resolver-binding-linux-ppc64-gnu@1.4.1':
  1999. optional: true
  2000. '@unrs/resolver-binding-linux-s390x-gnu@1.4.1':
  2001. optional: true
  2002. '@unrs/resolver-binding-linux-x64-gnu@1.4.1':
  2003. optional: true
  2004. '@unrs/resolver-binding-linux-x64-musl@1.4.1':
  2005. optional: true
  2006. '@unrs/resolver-binding-wasm32-wasi@1.4.1':
  2007. dependencies:
  2008. '@napi-rs/wasm-runtime': 0.2.8
  2009. optional: true
  2010. '@unrs/resolver-binding-win32-arm64-msvc@1.4.1':
  2011. optional: true
  2012. '@unrs/resolver-binding-win32-ia32-msvc@1.4.1':
  2013. optional: true
  2014. '@unrs/resolver-binding-win32-x64-msvc@1.4.1':
  2015. optional: true
  2016. acorn-jsx@5.3.2(acorn@8.14.0):
  2017. dependencies:
  2018. acorn: 8.14.0
  2019. acorn@8.14.0: {}
  2020. ajv@6.12.6:
  2021. dependencies:
  2022. fast-deep-equal: 3.1.3
  2023. fast-json-stable-stringify: 2.1.0
  2024. json-schema-traverse: 0.4.1
  2025. uri-js: 4.4.1
  2026. ansi-colors@4.1.3: {}
  2027. ansi-regex@5.0.1: {}
  2028. ansi-regex@6.1.0: {}
  2029. ansi-styles@4.3.0:
  2030. dependencies:
  2031. color-convert: 2.0.1
  2032. ansi-styles@5.2.0: {}
  2033. ansi-styles@6.2.1: {}
  2034. anymatch@3.1.3:
  2035. dependencies:
  2036. normalize-path: 3.0.0
  2037. picomatch: 2.3.1
  2038. argparse@2.0.1: {}
  2039. array-timsort@1.0.3: {}
  2040. async-retry@1.3.3:
  2041. dependencies:
  2042. retry: 0.13.1
  2043. b4a@1.6.7: {}
  2044. balanced-match@1.0.2: {}
  2045. bare-events@2.5.4:
  2046. optional: true
  2047. bare-fs@4.0.1:
  2048. dependencies:
  2049. bare-events: 2.5.4
  2050. bare-path: 3.0.0
  2051. bare-stream: 2.6.5(bare-events@2.5.4)
  2052. transitivePeerDependencies:
  2053. - bare-buffer
  2054. optional: true
  2055. bare-os@3.4.0:
  2056. optional: true
  2057. bare-path@3.0.0:
  2058. dependencies:
  2059. bare-os: 3.4.0
  2060. optional: true
  2061. bare-stream@2.6.5(bare-events@2.5.4):
  2062. dependencies:
  2063. streamx: 2.22.0
  2064. optionalDependencies:
  2065. bare-events: 2.5.4
  2066. optional: true
  2067. base64-js@1.5.1: {}
  2068. better-sqlite3@11.9.1:
  2069. dependencies:
  2070. bindings: 1.5.0
  2071. prebuild-install: 7.1.3
  2072. binary-extensions@2.3.0: {}
  2073. bindings@1.5.0:
  2074. dependencies:
  2075. file-uri-to-path: 1.0.0
  2076. bl@4.1.0:
  2077. dependencies:
  2078. buffer: 5.7.1
  2079. inherits: 2.0.4
  2080. readable-stream: 3.6.2
  2081. brace-expansion@1.1.11:
  2082. dependencies:
  2083. balanced-match: 1.0.2
  2084. concat-map: 0.0.1
  2085. brace-expansion@2.0.1:
  2086. dependencies:
  2087. balanced-match: 1.0.2
  2088. braces@3.0.3:
  2089. dependencies:
  2090. fill-range: 7.1.1
  2091. browser-stdout@1.3.1: {}
  2092. buffer-from@1.1.2: {}
  2093. buffer@5.7.1:
  2094. dependencies:
  2095. base64-js: 1.5.1
  2096. ieee754: 1.2.1
  2097. callsites@3.1.0: {}
  2098. camelcase@6.3.0: {}
  2099. chalk@4.1.2:
  2100. dependencies:
  2101. ansi-styles: 4.3.0
  2102. supports-color: 7.2.0
  2103. chokidar@3.6.0:
  2104. dependencies:
  2105. anymatch: 3.1.3
  2106. braces: 3.0.3
  2107. glob-parent: 5.1.2
  2108. is-binary-path: 2.1.0
  2109. is-glob: 4.0.3
  2110. normalize-path: 3.0.0
  2111. readdirp: 3.6.0
  2112. optionalDependencies:
  2113. fsevents: 2.3.3
  2114. chownr@1.1.4: {}
  2115. ci-info@3.9.0: {}
  2116. ci-info@4.2.0: {}
  2117. cliui@8.0.1:
  2118. dependencies:
  2119. string-width: 4.2.3
  2120. strip-ansi: 6.0.1
  2121. wrap-ansi: 7.0.0
  2122. color-convert@2.0.1:
  2123. dependencies:
  2124. color-name: 1.1.4
  2125. color-name@1.1.4: {}
  2126. colorette@2.0.20: {}
  2127. comment-json@4.2.5:
  2128. dependencies:
  2129. array-timsort: 1.0.3
  2130. core-util-is: 1.0.3
  2131. esprima: 4.0.1
  2132. has-own-prop: 2.0.0
  2133. repeat-string: 1.6.1
  2134. comment-parser@1.4.1: {}
  2135. concat-map@0.0.1: {}
  2136. core-util-is@1.0.3: {}
  2137. cross-spawn@7.0.6:
  2138. dependencies:
  2139. path-key: 3.1.1
  2140. shebang-command: 2.0.0
  2141. which: 2.0.2
  2142. csv-parse@5.6.0: {}
  2143. debug@3.2.7:
  2144. dependencies:
  2145. ms: 2.1.3
  2146. debug@4.4.0(supports-color@8.1.1):
  2147. dependencies:
  2148. ms: 2.1.3
  2149. optionalDependencies:
  2150. supports-color: 8.1.1
  2151. decamelize@4.0.0: {}
  2152. decompress-response@6.0.0:
  2153. dependencies:
  2154. mimic-response: 3.1.0
  2155. deep-extend@0.6.0: {}
  2156. deep-is@0.1.4: {}
  2157. define-data-property@1.1.4:
  2158. dependencies:
  2159. es-define-property: 1.0.1
  2160. es-errors: 1.3.0
  2161. gopd: 1.2.0
  2162. define-properties@1.2.1:
  2163. dependencies:
  2164. define-data-property: 1.1.4
  2165. has-property-descriptors: 1.0.2
  2166. object-keys: 1.1.1
  2167. defu@6.1.4: {}
  2168. detect-libc@2.0.3: {}
  2169. diff-sequences@29.6.3: {}
  2170. diff@5.2.0: {}
  2171. dns2@2.1.0: {}
  2172. doctrine@3.0.0:
  2173. dependencies:
  2174. esutils: 2.0.3
  2175. eastasianwidth@0.2.0: {}
  2176. emoji-regex@8.0.0: {}
  2177. emoji-regex@9.2.2: {}
  2178. end-of-stream@1.4.4:
  2179. dependencies:
  2180. once: 1.4.0
  2181. enhanced-resolve@5.18.1:
  2182. dependencies:
  2183. graceful-fs: 4.2.11
  2184. tapable: 2.2.1
  2185. es-define-property@1.0.1: {}
  2186. es-errors@1.3.0: {}
  2187. escalade@3.2.0: {}
  2188. escape-string-regexp@2.0.0: {}
  2189. escape-string-regexp@4.0.0: {}
  2190. eslint-compat-utils@0.5.1(eslint@9.25.1):
  2191. dependencies:
  2192. eslint: 9.25.1
  2193. semver: 7.7.1
  2194. eslint-compat-utils@0.6.4(eslint@9.25.1):
  2195. dependencies:
  2196. eslint: 9.25.1
  2197. semver: 7.7.1
  2198. eslint-config-sukka@6.18.2(@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3):
  2199. dependencies:
  2200. '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.25.1)
  2201. '@eslint-sukka/shared': 6.18.2(eslint@9.25.1)(typescript@5.8.3)
  2202. '@eslint/js': 9.24.0
  2203. '@typescript-eslint/parser': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  2204. ci-info: 4.2.0
  2205. defu: 6.1.4
  2206. eslint-import-resolver-typescript: 4.3.2(eslint-plugin-import-x@4.10.2(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)
  2207. eslint-plugin-autofix: 2.2.0(eslint@9.25.1)
  2208. eslint-plugin-de-morgan: 1.2.1(eslint@9.25.1)
  2209. eslint-plugin-import-x: 4.10.2(eslint@9.25.1)(typescript@5.8.3)
  2210. eslint-plugin-jsonc: 2.20.0(eslint@9.25.1)
  2211. eslint-plugin-paths: 1.1.0
  2212. eslint-plugin-promise: 7.2.1(eslint@9.25.1)
  2213. eslint-plugin-regexp: 2.7.0(eslint@9.25.1)
  2214. eslint-plugin-sukka: 6.18.2(eslint@9.25.1)(typescript@5.8.3)
  2215. eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)
  2216. foxts: 3.0.1
  2217. jsonc-eslint-parser: 2.4.0
  2218. picocolors: 1.1.1
  2219. typescript-eslint: 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  2220. transitivePeerDependencies:
  2221. - '@eslint/json'
  2222. - '@typescript-eslint/eslint-plugin'
  2223. - eslint
  2224. - eslint-plugin-import
  2225. - supports-color
  2226. - typescript
  2227. eslint-formatter-sukka@6.18.2:
  2228. dependencies:
  2229. ci-info: 4.2.0
  2230. picocolors: 1.1.1
  2231. eslint-import-resolver-node@0.3.9:
  2232. dependencies:
  2233. debug: 3.2.7
  2234. is-core-module: 2.16.1
  2235. resolve: 1.22.10
  2236. transitivePeerDependencies:
  2237. - supports-color
  2238. eslint-import-resolver-typescript@4.3.2(eslint-plugin-import-x@4.10.2(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1):
  2239. dependencies:
  2240. debug: 4.4.0(supports-color@8.1.1)
  2241. eslint: 9.25.1
  2242. get-tsconfig: 4.10.0
  2243. is-bun-module: 2.0.0
  2244. stable-hash: 0.0.5
  2245. tinyglobby: 0.2.12
  2246. unrs-resolver: 1.4.1
  2247. optionalDependencies:
  2248. eslint-plugin-import-x: 4.10.2(eslint@9.25.1)(typescript@5.8.3)
  2249. transitivePeerDependencies:
  2250. - supports-color
  2251. eslint-json-compat-utils@0.2.1(eslint@9.25.1)(jsonc-eslint-parser@2.4.0):
  2252. dependencies:
  2253. eslint: 9.25.1
  2254. esquery: 1.6.0
  2255. jsonc-eslint-parser: 2.4.0
  2256. eslint-plugin-autofix@2.2.0(eslint@9.25.1):
  2257. dependencies:
  2258. eslint: 9.25.1
  2259. eslint-rule-composer: 0.3.0
  2260. espree: 9.6.1
  2261. esutils: 2.0.3
  2262. string-similarity: 4.0.4
  2263. eslint-plugin-de-morgan@1.2.1(eslint@9.25.1):
  2264. dependencies:
  2265. eslint: 9.25.1
  2266. eslint-plugin-es-x@7.8.0(eslint@9.25.1):
  2267. dependencies:
  2268. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  2269. '@eslint-community/regexpp': 4.12.1
  2270. eslint: 9.25.1
  2271. eslint-compat-utils: 0.5.1(eslint@9.25.1)
  2272. eslint-plugin-import-x@4.10.2(eslint@9.25.1)(typescript@5.8.3):
  2273. dependencies:
  2274. '@pkgr/core': 0.2.1
  2275. '@types/doctrine': 0.0.9
  2276. '@typescript-eslint/utils': 8.29.0(eslint@9.25.1)(typescript@5.8.3)
  2277. debug: 4.4.0(supports-color@8.1.1)
  2278. doctrine: 3.0.0
  2279. eslint: 9.25.1
  2280. eslint-import-resolver-node: 0.3.9
  2281. get-tsconfig: 4.10.0
  2282. is-glob: 4.0.3
  2283. minimatch: 9.0.5
  2284. semver: 7.7.1
  2285. stable-hash: 0.0.5
  2286. tslib: 2.8.1
  2287. unrs-resolver: 1.4.1
  2288. transitivePeerDependencies:
  2289. - supports-color
  2290. - typescript
  2291. eslint-plugin-jsonc@2.20.0(eslint@9.25.1):
  2292. dependencies:
  2293. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  2294. eslint: 9.25.1
  2295. eslint-compat-utils: 0.6.4(eslint@9.25.1)
  2296. eslint-json-compat-utils: 0.2.1(eslint@9.25.1)(jsonc-eslint-parser@2.4.0)
  2297. espree: 10.3.0
  2298. graphemer: 1.4.0
  2299. jsonc-eslint-parser: 2.4.0
  2300. natural-compare: 1.4.0
  2301. synckit: 0.6.2
  2302. transitivePeerDependencies:
  2303. - '@eslint/json'
  2304. eslint-plugin-n@17.17.0(eslint@9.25.1):
  2305. dependencies:
  2306. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  2307. enhanced-resolve: 5.18.1
  2308. eslint: 9.25.1
  2309. eslint-plugin-es-x: 7.8.0(eslint@9.25.1)
  2310. get-tsconfig: 4.10.0
  2311. globals: 15.14.0
  2312. ignore: 5.3.2
  2313. minimatch: 9.0.5
  2314. semver: 7.7.1
  2315. eslint-plugin-paths@1.1.0:
  2316. dependencies:
  2317. comment-json: 4.2.5
  2318. eslint-plugin-promise@7.2.1(eslint@9.25.1):
  2319. dependencies:
  2320. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  2321. eslint: 9.25.1
  2322. eslint-plugin-regexp@2.7.0(eslint@9.25.1):
  2323. dependencies:
  2324. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  2325. '@eslint-community/regexpp': 4.12.1
  2326. comment-parser: 1.4.1
  2327. eslint: 9.25.1
  2328. jsdoc-type-pratt-parser: 4.1.0
  2329. refa: 0.12.1
  2330. regexp-ast-analysis: 0.7.1
  2331. scslre: 0.3.0
  2332. eslint-plugin-sukka@6.18.2(eslint@9.25.1)(typescript@5.8.3):
  2333. dependencies:
  2334. '@eslint-community/regexpp': 4.12.1
  2335. '@eslint-sukka/shared': 6.18.2(eslint@9.25.1)(typescript@5.8.3)
  2336. '@typescript-eslint/type-utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  2337. '@typescript-eslint/utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  2338. foxts: 3.0.1
  2339. optionalDependencies:
  2340. typescript: 5.8.3
  2341. transitivePeerDependencies:
  2342. - eslint
  2343. - supports-color
  2344. eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1):
  2345. dependencies:
  2346. eslint: 9.25.1
  2347. optionalDependencies:
  2348. '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3)
  2349. eslint-rule-composer@0.3.0: {}
  2350. eslint-scope@8.3.0:
  2351. dependencies:
  2352. esrecurse: 4.3.0
  2353. estraverse: 5.3.0
  2354. eslint-visitor-keys@3.4.3: {}
  2355. eslint-visitor-keys@4.2.0: {}
  2356. eslint@9.25.1:
  2357. dependencies:
  2358. '@eslint-community/eslint-utils': 4.5.1(eslint@9.25.1)
  2359. '@eslint-community/regexpp': 4.12.1
  2360. '@eslint/config-array': 0.20.0
  2361. '@eslint/config-helpers': 0.2.1
  2362. '@eslint/core': 0.13.0
  2363. '@eslint/eslintrc': 3.3.1
  2364. '@eslint/js': 9.25.1
  2365. '@eslint/plugin-kit': 0.2.8
  2366. '@humanfs/node': 0.16.6
  2367. '@humanwhocodes/module-importer': 1.0.1
  2368. '@humanwhocodes/retry': 0.4.2
  2369. '@types/estree': 1.0.6
  2370. '@types/json-schema': 7.0.15
  2371. ajv: 6.12.6
  2372. chalk: 4.1.2
  2373. cross-spawn: 7.0.6
  2374. debug: 4.4.0(supports-color@8.1.1)
  2375. escape-string-regexp: 4.0.0
  2376. eslint-scope: 8.3.0
  2377. eslint-visitor-keys: 4.2.0
  2378. espree: 10.3.0
  2379. esquery: 1.6.0
  2380. esutils: 2.0.3
  2381. fast-deep-equal: 3.1.3
  2382. file-entry-cache: 8.0.0
  2383. find-up: 5.0.0
  2384. glob-parent: 6.0.2
  2385. ignore: 5.3.2
  2386. imurmurhash: 0.1.4
  2387. is-glob: 4.0.3
  2388. json-stable-stringify-without-jsonify: 1.0.1
  2389. lodash.merge: 4.6.2
  2390. minimatch: 3.1.2
  2391. natural-compare: 1.4.0
  2392. optionator: 0.9.4
  2393. transitivePeerDependencies:
  2394. - supports-color
  2395. espree@10.3.0:
  2396. dependencies:
  2397. acorn: 8.14.0
  2398. acorn-jsx: 5.3.2(acorn@8.14.0)
  2399. eslint-visitor-keys: 4.2.0
  2400. espree@9.6.1:
  2401. dependencies:
  2402. acorn: 8.14.0
  2403. acorn-jsx: 5.3.2(acorn@8.14.0)
  2404. eslint-visitor-keys: 3.4.3
  2405. esprima@4.0.1: {}
  2406. esquery@1.6.0:
  2407. dependencies:
  2408. estraverse: 5.3.0
  2409. esrecurse@4.3.0:
  2410. dependencies:
  2411. estraverse: 5.3.0
  2412. estraverse@5.3.0: {}
  2413. esutils@2.0.3: {}
  2414. expand-template@2.0.3: {}
  2415. expect@29.7.0:
  2416. dependencies:
  2417. '@jest/expect-utils': 29.7.0
  2418. jest-get-type: 29.6.3
  2419. jest-matcher-utils: 29.7.0
  2420. jest-message-util: 29.7.0
  2421. jest-util: 29.7.0
  2422. fast-cidr-tools@0.3.2: {}
  2423. fast-deep-equal@3.1.3: {}
  2424. fast-fifo@1.3.2: {}
  2425. fast-glob@3.3.3:
  2426. dependencies:
  2427. '@nodelib/fs.stat': 2.0.5
  2428. '@nodelib/fs.walk': 1.2.8
  2429. glob-parent: 5.1.2
  2430. merge2: 1.4.1
  2431. micromatch: 4.0.8
  2432. fast-json-stable-stringify@2.1.0: {}
  2433. fast-levenshtein@2.0.6: {}
  2434. fastq@1.19.0:
  2435. dependencies:
  2436. reusify: 1.0.4
  2437. fdir@6.4.4(picomatch@4.0.2):
  2438. optionalDependencies:
  2439. picomatch: 4.0.2
  2440. file-entry-cache@8.0.0:
  2441. dependencies:
  2442. flat-cache: 4.0.1
  2443. file-uri-to-path@1.0.0: {}
  2444. fill-range@7.1.1:
  2445. dependencies:
  2446. to-regex-range: 5.0.1
  2447. find-up@5.0.0:
  2448. dependencies:
  2449. locate-path: 6.0.0
  2450. path-exists: 4.0.0
  2451. flat-cache@4.0.1:
  2452. dependencies:
  2453. flatted: 3.3.2
  2454. keyv: 4.5.4
  2455. flat@5.0.2: {}
  2456. flatted@3.3.2: {}
  2457. foreground-child@3.3.0:
  2458. dependencies:
  2459. cross-spawn: 7.0.6
  2460. signal-exit: 4.1.0
  2461. foxts@3.0.1: {}
  2462. fs-constants@1.0.0: {}
  2463. fsevents@2.3.3:
  2464. optional: true
  2465. function-bind@1.1.2: {}
  2466. get-caller-file@2.0.5: {}
  2467. get-tsconfig@4.10.0:
  2468. dependencies:
  2469. resolve-pkg-maps: 1.0.0
  2470. github-from-package@0.0.0: {}
  2471. glob-parent@5.1.2:
  2472. dependencies:
  2473. is-glob: 4.0.3
  2474. glob-parent@6.0.2:
  2475. dependencies:
  2476. is-glob: 4.0.3
  2477. glob@10.4.5:
  2478. dependencies:
  2479. foreground-child: 3.3.0
  2480. jackspeak: 3.4.3
  2481. minimatch: 9.0.5
  2482. minipass: 7.1.2
  2483. package-json-from-dist: 1.0.1
  2484. path-scurry: 1.11.1
  2485. globals@14.0.0: {}
  2486. globals@15.14.0: {}
  2487. globalthis@1.0.4:
  2488. dependencies:
  2489. define-properties: 1.2.1
  2490. gopd: 1.2.0
  2491. gopd@1.2.0: {}
  2492. graceful-fs@4.2.11: {}
  2493. graphemer@1.4.0: {}
  2494. has-flag@4.0.0: {}
  2495. has-own-prop@2.0.0: {}
  2496. has-property-descriptors@1.0.2:
  2497. dependencies:
  2498. es-define-property: 1.0.1
  2499. hash-wasm@4.12.0: {}
  2500. hasown@2.0.2:
  2501. dependencies:
  2502. function-bind: 1.1.2
  2503. he@1.2.0: {}
  2504. ieee754@1.2.1: {}
  2505. ignore@5.3.2: {}
  2506. import-fresh@3.3.1:
  2507. dependencies:
  2508. parent-module: 1.0.1
  2509. resolve-from: 4.0.0
  2510. imurmurhash@0.1.4: {}
  2511. inherits@2.0.4: {}
  2512. ini@1.3.8: {}
  2513. is-binary-path@2.1.0:
  2514. dependencies:
  2515. binary-extensions: 2.3.0
  2516. is-bun-module@2.0.0:
  2517. dependencies:
  2518. semver: 7.7.1
  2519. is-core-module@2.16.1:
  2520. dependencies:
  2521. hasown: 2.0.2
  2522. is-extglob@2.1.1: {}
  2523. is-fullwidth-code-point@3.0.0: {}
  2524. is-glob@4.0.3:
  2525. dependencies:
  2526. is-extglob: 2.1.1
  2527. is-it-type@5.1.2:
  2528. dependencies:
  2529. '@babel/runtime': 7.27.0
  2530. globalthis: 1.0.4
  2531. is-number@7.0.0: {}
  2532. is-plain-obj@2.1.0: {}
  2533. is-unicode-supported@0.1.0: {}
  2534. isexe@2.0.0: {}
  2535. jackspeak@3.4.3:
  2536. dependencies:
  2537. '@isaacs/cliui': 8.0.2
  2538. optionalDependencies:
  2539. '@pkgjs/parseargs': 0.11.0
  2540. jest-diff@29.7.0:
  2541. dependencies:
  2542. chalk: 4.1.2
  2543. diff-sequences: 29.6.3
  2544. jest-get-type: 29.6.3
  2545. pretty-format: 29.7.0
  2546. jest-get-type@29.6.3: {}
  2547. jest-matcher-utils@29.7.0:
  2548. dependencies:
  2549. chalk: 4.1.2
  2550. jest-diff: 29.7.0
  2551. jest-get-type: 29.6.3
  2552. pretty-format: 29.7.0
  2553. jest-message-util@29.7.0:
  2554. dependencies:
  2555. '@babel/code-frame': 7.26.2
  2556. '@jest/types': 29.6.3
  2557. '@types/stack-utils': 2.0.3
  2558. chalk: 4.1.2
  2559. graceful-fs: 4.2.11
  2560. micromatch: 4.0.8
  2561. pretty-format: 29.7.0
  2562. slash: 3.0.0
  2563. stack-utils: 2.0.6
  2564. jest-util@29.7.0:
  2565. dependencies:
  2566. '@jest/types': 29.6.3
  2567. '@types/node': 22.15.2
  2568. chalk: 4.1.2
  2569. ci-info: 3.9.0
  2570. graceful-fs: 4.2.11
  2571. picomatch: 2.3.1
  2572. js-tokens@4.0.0: {}
  2573. js-yaml@4.1.0:
  2574. dependencies:
  2575. argparse: 2.0.1
  2576. jsdoc-type-pratt-parser@4.1.0: {}
  2577. json-buffer@3.0.1: {}
  2578. json-schema-traverse@0.4.1: {}
  2579. json-stable-stringify-without-jsonify@1.0.1: {}
  2580. json-stringify-pretty-compact@3.0.0: {}
  2581. jsonc-eslint-parser@2.4.0:
  2582. dependencies:
  2583. acorn: 8.14.0
  2584. eslint-visitor-keys: 3.4.3
  2585. espree: 9.6.1
  2586. semver: 7.7.1
  2587. keyv@4.5.4:
  2588. dependencies:
  2589. json-buffer: 3.0.1
  2590. levn@0.4.1:
  2591. dependencies:
  2592. prelude-ls: 1.2.1
  2593. type-check: 0.4.0
  2594. locate-path@6.0.0:
  2595. dependencies:
  2596. p-locate: 5.0.0
  2597. lodash.merge@4.6.2: {}
  2598. log-symbols@4.1.0:
  2599. dependencies:
  2600. chalk: 4.1.2
  2601. is-unicode-supported: 0.1.0
  2602. lru-cache@10.4.3: {}
  2603. merge2@1.4.1: {}
  2604. micromatch@4.0.8:
  2605. dependencies:
  2606. braces: 3.0.3
  2607. picomatch: 2.3.1
  2608. mimic-response@3.1.0: {}
  2609. minimatch@3.1.2:
  2610. dependencies:
  2611. brace-expansion: 1.1.11
  2612. minimatch@5.1.6:
  2613. dependencies:
  2614. brace-expansion: 2.0.1
  2615. minimatch@9.0.5:
  2616. dependencies:
  2617. brace-expansion: 2.0.1
  2618. minimist@1.2.8: {}
  2619. minipass@7.1.2: {}
  2620. mitata@1.0.34: {}
  2621. mkdirp-classic@0.5.3: {}
  2622. mocha@11.1.0:
  2623. dependencies:
  2624. ansi-colors: 4.1.3
  2625. browser-stdout: 1.3.1
  2626. chokidar: 3.6.0
  2627. debug: 4.4.0(supports-color@8.1.1)
  2628. diff: 5.2.0
  2629. escape-string-regexp: 4.0.0
  2630. find-up: 5.0.0
  2631. glob: 10.4.5
  2632. he: 1.2.0
  2633. js-yaml: 4.1.0
  2634. log-symbols: 4.1.0
  2635. minimatch: 5.1.6
  2636. ms: 2.1.3
  2637. serialize-javascript: 6.0.2
  2638. strip-json-comments: 3.1.1
  2639. supports-color: 8.1.1
  2640. workerpool: 6.5.1
  2641. yargs: 17.7.2
  2642. yargs-parser: 21.1.1
  2643. yargs-unparser: 2.0.0
  2644. ms@2.1.3: {}
  2645. napi-build-utils@2.0.0: {}
  2646. natural-compare@1.4.0: {}
  2647. node-abi@3.74.0:
  2648. dependencies:
  2649. semver: 7.7.1
  2650. normalize-path@3.0.0: {}
  2651. object-keys@1.1.1: {}
  2652. once@1.4.0:
  2653. dependencies:
  2654. wrappy: 1.0.2
  2655. optionator@0.9.4:
  2656. dependencies:
  2657. deep-is: 0.1.4
  2658. fast-levenshtein: 2.0.6
  2659. levn: 0.4.1
  2660. prelude-ls: 1.2.1
  2661. type-check: 0.4.0
  2662. word-wrap: 1.2.5
  2663. oxc-resolver@5.0.0:
  2664. optionalDependencies:
  2665. '@oxc-resolver/binding-darwin-arm64': 5.0.0
  2666. '@oxc-resolver/binding-darwin-x64': 5.0.0
  2667. '@oxc-resolver/binding-freebsd-x64': 5.0.0
  2668. '@oxc-resolver/binding-linux-arm-gnueabihf': 5.0.0
  2669. '@oxc-resolver/binding-linux-arm64-gnu': 5.0.0
  2670. '@oxc-resolver/binding-linux-arm64-musl': 5.0.0
  2671. '@oxc-resolver/binding-linux-x64-gnu': 5.0.0
  2672. '@oxc-resolver/binding-linux-x64-musl': 5.0.0
  2673. '@oxc-resolver/binding-wasm32-wasi': 5.0.0
  2674. '@oxc-resolver/binding-win32-arm64-msvc': 5.0.0
  2675. '@oxc-resolver/binding-win32-x64-msvc': 5.0.0
  2676. p-limit@3.1.0:
  2677. dependencies:
  2678. yocto-queue: 0.1.0
  2679. p-locate@5.0.0:
  2680. dependencies:
  2681. p-limit: 3.1.0
  2682. package-json-from-dist@1.0.1: {}
  2683. parent-module@1.0.1:
  2684. dependencies:
  2685. callsites: 3.1.0
  2686. path-exists@4.0.0: {}
  2687. path-key@3.1.1: {}
  2688. path-parse@1.0.7: {}
  2689. path-scurry@1.11.1:
  2690. dependencies:
  2691. lru-cache: 10.4.3
  2692. minipass: 7.1.2
  2693. picocolors@1.1.1: {}
  2694. picomatch@2.3.1: {}
  2695. picomatch@4.0.2: {}
  2696. pirates@4.0.6: {}
  2697. prebuild-install@7.1.3:
  2698. dependencies:
  2699. detect-libc: 2.0.3
  2700. expand-template: 2.0.3
  2701. github-from-package: 0.0.0
  2702. minimist: 1.2.8
  2703. mkdirp-classic: 0.5.3
  2704. napi-build-utils: 2.0.0
  2705. node-abi: 3.74.0
  2706. pump: 3.0.2
  2707. rc: 1.2.8
  2708. simple-get: 4.0.1
  2709. tar-fs: 2.1.2
  2710. tunnel-agent: 0.6.0
  2711. prelude-ls@1.2.1: {}
  2712. pretty-format@29.7.0:
  2713. dependencies:
  2714. '@jest/schemas': 29.6.3
  2715. ansi-styles: 5.2.0
  2716. react-is: 18.3.1
  2717. promise-make-naked@2.1.2: {}
  2718. pump@3.0.2:
  2719. dependencies:
  2720. end-of-stream: 1.4.4
  2721. once: 1.4.0
  2722. punycode@2.3.1: {}
  2723. queue-microtask@1.2.3: {}
  2724. randombytes@2.1.0:
  2725. dependencies:
  2726. safe-buffer: 5.2.1
  2727. rc@1.2.8:
  2728. dependencies:
  2729. deep-extend: 0.6.0
  2730. ini: 1.3.8
  2731. minimist: 1.2.8
  2732. strip-json-comments: 2.0.1
  2733. react-is@18.3.1: {}
  2734. readable-stream@3.6.2:
  2735. dependencies:
  2736. inherits: 2.0.4
  2737. string_decoder: 1.3.0
  2738. util-deprecate: 1.0.2
  2739. readdirp@3.6.0:
  2740. dependencies:
  2741. picomatch: 2.3.1
  2742. refa@0.12.1:
  2743. dependencies:
  2744. '@eslint-community/regexpp': 4.12.1
  2745. regenerator-runtime@0.14.1: {}
  2746. regexp-ast-analysis@0.7.1:
  2747. dependencies:
  2748. '@eslint-community/regexpp': 4.12.1
  2749. refa: 0.12.1
  2750. repeat-string@1.6.1: {}
  2751. require-directory@2.1.1: {}
  2752. resolve-from@4.0.0: {}
  2753. resolve-pkg-maps@1.0.0: {}
  2754. resolve@1.22.10:
  2755. dependencies:
  2756. is-core-module: 2.16.1
  2757. path-parse: 1.0.7
  2758. supports-preserve-symlinks-flag: 1.0.0
  2759. retry@0.13.1: {}
  2760. reusify@1.0.4: {}
  2761. run-parallel@1.2.0:
  2762. dependencies:
  2763. queue-microtask: 1.2.3
  2764. safe-buffer@5.2.1: {}
  2765. scslre@0.3.0:
  2766. dependencies:
  2767. '@eslint-community/regexpp': 4.12.1
  2768. refa: 0.12.1
  2769. regexp-ast-analysis: 0.7.1
  2770. semver@7.7.1: {}
  2771. serialize-javascript@6.0.2:
  2772. dependencies:
  2773. randombytes: 2.1.0
  2774. shebang-command@2.0.0:
  2775. dependencies:
  2776. shebang-regex: 3.0.0
  2777. shebang-regex@3.0.0: {}
  2778. signal-exit@4.1.0: {}
  2779. simple-concat@1.0.1: {}
  2780. simple-get@4.0.1:
  2781. dependencies:
  2782. decompress-response: 6.0.0
  2783. once: 1.4.0
  2784. simple-concat: 1.0.1
  2785. simple-invariant@2.0.1: {}
  2786. slash@3.0.0: {}
  2787. source-map-support@0.5.21:
  2788. dependencies:
  2789. buffer-from: 1.1.2
  2790. source-map: 0.6.1
  2791. source-map@0.6.1: {}
  2792. stable-hash@0.0.5: {}
  2793. stack-utils@2.0.6:
  2794. dependencies:
  2795. escape-string-regexp: 2.0.0
  2796. streamx@2.22.0:
  2797. dependencies:
  2798. fast-fifo: 1.3.2
  2799. text-decoder: 1.2.3
  2800. optionalDependencies:
  2801. bare-events: 2.5.4
  2802. string-similarity@4.0.4: {}
  2803. string-width@4.2.3:
  2804. dependencies:
  2805. emoji-regex: 8.0.0
  2806. is-fullwidth-code-point: 3.0.0
  2807. strip-ansi: 6.0.1
  2808. string-width@5.1.2:
  2809. dependencies:
  2810. eastasianwidth: 0.2.0
  2811. emoji-regex: 9.2.2
  2812. strip-ansi: 7.1.0
  2813. string_decoder@1.3.0:
  2814. dependencies:
  2815. safe-buffer: 5.2.1
  2816. strip-ansi@6.0.1:
  2817. dependencies:
  2818. ansi-regex: 5.0.1
  2819. strip-ansi@7.1.0:
  2820. dependencies:
  2821. ansi-regex: 6.1.0
  2822. strip-json-comments@2.0.1: {}
  2823. strip-json-comments@3.1.1: {}
  2824. supports-color@7.2.0:
  2825. dependencies:
  2826. has-flag: 4.0.0
  2827. supports-color@8.1.1:
  2828. dependencies:
  2829. has-flag: 4.0.0
  2830. supports-preserve-symlinks-flag@1.0.0: {}
  2831. synckit@0.6.2:
  2832. dependencies:
  2833. tslib: 2.8.1
  2834. tapable@2.2.1: {}
  2835. tar-fs@2.1.2:
  2836. dependencies:
  2837. chownr: 1.1.4
  2838. mkdirp-classic: 0.5.3
  2839. pump: 3.0.2
  2840. tar-stream: 2.2.0
  2841. tar-fs@3.0.8:
  2842. dependencies:
  2843. pump: 3.0.2
  2844. tar-stream: 3.1.7
  2845. optionalDependencies:
  2846. bare-fs: 4.0.1
  2847. bare-path: 3.0.0
  2848. transitivePeerDependencies:
  2849. - bare-buffer
  2850. tar-stream@2.2.0:
  2851. dependencies:
  2852. bl: 4.1.0
  2853. end-of-stream: 1.4.4
  2854. fs-constants: 1.0.0
  2855. inherits: 2.0.4
  2856. readable-stream: 3.6.2
  2857. tar-stream@3.1.7:
  2858. dependencies:
  2859. b4a: 1.6.7
  2860. fast-fifo: 1.3.2
  2861. streamx: 2.22.0
  2862. text-decoder@1.2.3:
  2863. dependencies:
  2864. b4a: 1.6.7
  2865. tinyexec@1.0.1: {}
  2866. tinyglobby@0.2.12:
  2867. dependencies:
  2868. fdir: 6.4.4(picomatch@4.0.2)
  2869. picomatch: 4.0.2
  2870. tldts-core@6.1.86: {}
  2871. tldts-experimental@6.1.86:
  2872. dependencies:
  2873. tldts-core: 6.1.86
  2874. tldts@6.1.86:
  2875. dependencies:
  2876. tldts-core: 6.1.86
  2877. to-regex-range@5.0.1:
  2878. dependencies:
  2879. is-number: 7.0.0
  2880. ts-api-utils@2.0.1(typescript@5.8.3):
  2881. dependencies:
  2882. typescript: 5.8.3
  2883. tslib@2.8.1: {}
  2884. tunnel-agent@0.6.0:
  2885. dependencies:
  2886. safe-buffer: 5.2.1
  2887. type-check@0.4.0:
  2888. dependencies:
  2889. prelude-ls: 1.2.1
  2890. typescript-eslint@8.29.1(eslint@9.25.1)(typescript@5.8.3):
  2891. dependencies:
  2892. '@typescript-eslint/eslint-plugin': 8.29.1(@typescript-eslint/parser@8.29.1(eslint@9.25.1)(typescript@5.8.3))(eslint@9.25.1)(typescript@5.8.3)
  2893. '@typescript-eslint/parser': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  2894. '@typescript-eslint/utils': 8.29.1(eslint@9.25.1)(typescript@5.8.3)
  2895. eslint: 9.25.1
  2896. typescript: 5.8.3
  2897. transitivePeerDependencies:
  2898. - supports-color
  2899. typescript@5.8.3: {}
  2900. undici-cache-store-better-sqlite3@1.0.0(undici@7.8.0):
  2901. dependencies:
  2902. better-sqlite3: 11.9.1
  2903. foxts: 3.0.1
  2904. undici: 7.8.0
  2905. undici-types@6.21.0: {}
  2906. undici@7.8.0: {}
  2907. unrs-resolver@1.4.1:
  2908. optionalDependencies:
  2909. '@unrs/resolver-binding-darwin-arm64': 1.4.1
  2910. '@unrs/resolver-binding-darwin-x64': 1.4.1
  2911. '@unrs/resolver-binding-freebsd-x64': 1.4.1
  2912. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.4.1
  2913. '@unrs/resolver-binding-linux-arm-musleabihf': 1.4.1
  2914. '@unrs/resolver-binding-linux-arm64-gnu': 1.4.1
  2915. '@unrs/resolver-binding-linux-arm64-musl': 1.4.1
  2916. '@unrs/resolver-binding-linux-ppc64-gnu': 1.4.1
  2917. '@unrs/resolver-binding-linux-s390x-gnu': 1.4.1
  2918. '@unrs/resolver-binding-linux-x64-gnu': 1.4.1
  2919. '@unrs/resolver-binding-linux-x64-musl': 1.4.1
  2920. '@unrs/resolver-binding-wasm32-wasi': 1.4.1
  2921. '@unrs/resolver-binding-win32-arm64-msvc': 1.4.1
  2922. '@unrs/resolver-binding-win32-ia32-msvc': 1.4.1
  2923. '@unrs/resolver-binding-win32-x64-msvc': 1.4.1
  2924. uri-js@4.4.1:
  2925. dependencies:
  2926. punycode: 2.3.1
  2927. util-deprecate@1.0.2: {}
  2928. webworker-shim@1.1.1: {}
  2929. which@2.0.2:
  2930. dependencies:
  2931. isexe: 2.0.0
  2932. whoiser@1.18.0(patch_hash=01fa406613b6f7b55ad41a6e49450f5a6b1b198b837c4f3fe11edc48c779189f):
  2933. dependencies:
  2934. punycode: 2.3.1
  2935. why-is-node-running@3.2.2: {}
  2936. word-wrap@1.2.5: {}
  2937. workerpool@6.5.1: {}
  2938. worktank@2.7.3:
  2939. dependencies:
  2940. promise-make-naked: 2.1.2
  2941. webworker-shim: 1.1.1
  2942. wrap-ansi@7.0.0:
  2943. dependencies:
  2944. ansi-styles: 4.3.0
  2945. string-width: 4.2.3
  2946. strip-ansi: 6.0.1
  2947. wrap-ansi@8.1.0:
  2948. dependencies:
  2949. ansi-styles: 6.2.1
  2950. string-width: 5.1.2
  2951. strip-ansi: 7.1.0
  2952. wrappy@1.0.2: {}
  2953. xbits@0.2.0: {}
  2954. y18n@5.0.8: {}
  2955. yaml@2.7.1: {}
  2956. yargs-parser@21.1.1: {}
  2957. yargs-unparser@2.0.0:
  2958. dependencies:
  2959. camelcase: 6.3.0
  2960. decamelize: 4.0.0
  2961. flat: 5.0.2
  2962. is-plain-obj: 2.1.0
  2963. yargs@17.7.2:
  2964. dependencies:
  2965. cliui: 8.0.1
  2966. escalade: 3.2.0
  2967. get-caller-file: 2.0.5
  2968. require-directory: 2.1.1
  2969. string-width: 4.2.3
  2970. y18n: 5.0.8
  2971. yargs-parser: 21.1.1
  2972. yauzl-promise@4.0.0:
  2973. dependencies:
  2974. '@node-rs/crc32': 1.10.6
  2975. is-it-type: 5.1.2
  2976. simple-invariant: 2.0.1
  2977. yocto-queue@0.1.0: {}