pnpm-lock.yaml 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. overrides:
  6. eslint>chalk: npm:picocolors@^1.1.1
  7. globalthis: npm:@nolyfill/globalthis@^1.0.44
  8. has: npm:@nolyfill/has@^1.0.44
  9. safe-buffer: npm:@nolyfill/safe-buffer@^1.0.44
  10. importers:
  11. .:
  12. dependencies:
  13. '@ghostery/adblocker':
  14. specifier: ^2.14.1
  15. version: 2.14.1
  16. '@henrygd/queue':
  17. specifier: ^1.2.0
  18. version: 1.2.0
  19. '@mitata/counters':
  20. specifier: ^0.0.8
  21. version: 0.0.8
  22. ci-info:
  23. specifier: ^4.4.0
  24. version: 4.4.0
  25. cli-progress:
  26. specifier: ^3.12.0
  27. version: 3.12.0
  28. csv-parse:
  29. specifier: ^6.1.0
  30. version: 6.1.0
  31. domain-alive:
  32. specifier: ^0.1.17
  33. version: 0.1.17
  34. fast-cidr-tools:
  35. specifier: ^0.3.4
  36. version: 0.3.4
  37. fast-escape-regexp:
  38. specifier: ^1.0.1
  39. version: 1.0.1
  40. fast-uri:
  41. specifier: ^3.1.0
  42. version: 3.1.0
  43. fdir:
  44. specifier: ^6.5.0
  45. version: 6.5.0(picomatch@4.0.3)
  46. foxts:
  47. specifier: ^5.3.0
  48. version: 5.3.0
  49. hash-wasm:
  50. specifier: ^4.12.0
  51. version: 4.12.0
  52. json-stringify-pretty-compact:
  53. specifier: 4.0.0
  54. version: 4.0.0
  55. null-prototype-object:
  56. specifier: ^1.2.5
  57. version: 1.2.5
  58. picocolors:
  59. specifier: ^1.1.1
  60. version: 1.1.1
  61. tar-fs:
  62. specifier: ^3.1.2
  63. version: 3.1.2
  64. telegram:
  65. specifier: ^2.26.22
  66. version: 2.26.22
  67. tinyglobby:
  68. specifier: ^0.2.15
  69. version: 0.2.15
  70. tldts:
  71. specifier: ^7.0.25
  72. version: 7.0.25
  73. tldts-experimental:
  74. specifier: ^7.0.25
  75. version: 7.0.25
  76. undici:
  77. specifier: ^7.24.3
  78. version: 7.24.3
  79. undici-cache-store-better-sqlite3:
  80. specifier: ^1.0.0
  81. version: 1.0.0(undici@7.24.3)
  82. why-is-node-running:
  83. specifier: ^3.2.2
  84. version: 3.2.2
  85. worktank:
  86. specifier: ^3.0.2
  87. version: 3.0.2
  88. xbits:
  89. specifier: ^0.2.0
  90. version: 0.2.0
  91. yaml:
  92. specifier: ^2.8.2
  93. version: 2.8.2
  94. yauzl-promise:
  95. specifier: ^4.0.0
  96. version: 4.0.0
  97. devDependencies:
  98. '@eslint-sukka/node':
  99. specifier: ^8.8.0
  100. version: 8.8.0(eslint@10.0.3)(typescript@5.9.3)
  101. '@swc-node/register':
  102. specifier: ^1.11.1
  103. version: 1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(typescript@5.9.3)
  104. '@swc/core':
  105. specifier: 1.13.5
  106. version: 1.13.5
  107. '@types/better-sqlite3':
  108. specifier: ^7.6.13
  109. version: 7.6.13
  110. '@types/cli-progress':
  111. specifier: ^3.11.6
  112. version: 3.11.6
  113. '@types/mocha':
  114. specifier: ^10.0.10
  115. version: 10.0.10
  116. '@types/node':
  117. specifier: ^24.12.0
  118. version: 24.12.0
  119. '@types/tar-fs':
  120. specifier: ^2.0.4
  121. version: 2.0.4
  122. '@types/yauzl-promise':
  123. specifier: ^4.0.1
  124. version: 4.0.1
  125. earl:
  126. specifier: ^2.0.0
  127. version: 2.0.0
  128. eslint:
  129. specifier: ^10.0.3
  130. version: 10.0.3
  131. eslint-config-sukka:
  132. specifier: ^8.8.0
  133. version: 8.8.0(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3)(typescript@5.9.3)
  134. eslint-formatter-sukka:
  135. specifier: ^8.8.0
  136. version: 8.8.0(eslint@10.0.3)
  137. mitata:
  138. specifier: ^1.0.34
  139. version: 1.0.34
  140. mocha:
  141. specifier: ^11.7.5
  142. version: 11.7.5
  143. tinyexec:
  144. specifier: ^1.0.4
  145. version: 1.0.4
  146. typescript:
  147. specifier: ^5.9.3
  148. version: 5.9.3
  149. packages:
  150. '@antfu/install-pkg@1.1.0':
  151. resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
  152. '@cryptography/aes@0.1.1':
  153. resolution: {integrity: sha512-PcYz4FDGblO6tM2kSC+VzhhK62vml6k6/YAkiWtyPvrgJVfnDRoHGDtKn5UiaRRUrvUTTocBpvc2rRgTCqxjsg==}
  154. '@emnapi/core@1.7.1':
  155. resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
  156. '@emnapi/runtime@1.7.1':
  157. resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
  158. '@emnapi/wasi-threads@1.1.0':
  159. resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
  160. '@eslint-community/eslint-plugin-eslint-comments@4.7.1':
  161. resolution: {integrity: sha512-Ql2nJFwA8wUGpILYGOQaT1glPsmvEwE0d+a+l7AALLzQvInqdbXJdx7aSu0DpUX9dB1wMVBMhm99/++S3MdEtQ==}
  162. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  163. peerDependencies:
  164. eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
  165. '@eslint-community/eslint-utils@4.9.1':
  166. resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
  167. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  168. peerDependencies:
  169. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  170. '@eslint-community/regexpp@4.12.2':
  171. resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
  172. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  173. '@eslint-sukka/eslint-plugin-stylistic@8.8.0':
  174. resolution: {integrity: sha512-WXiC6NK2zA8td8aHxKfpwEkrWFNus1NZUNY+HXwt+HBZb3M/lQ9nfhuAcgMMSFItm+KoCHU6aaexalrPcgH2zg==}
  175. peerDependencies:
  176. eslint: '*'
  177. '@eslint-sukka/eslint-plugin-sukka-full@8.8.0':
  178. resolution: {integrity: sha512-8zIZeJViA5bC241rPBYioWcv08KFbKgxgwsmFgUQ4/o1cBQ8zNuk7a9CzmQHlJSEuJaV25ify7LRWxRR5s9k0w==}
  179. peerDependencies:
  180. eslint: '*'
  181. typescript: '*'
  182. peerDependenciesMeta:
  183. typescript:
  184. optional: true
  185. '@eslint-sukka/node@8.8.0':
  186. resolution: {integrity: sha512-leIPJIxWAbK+XsAw0I5Rl2Sg5fa8/DgU14wuuM+VA69EnXzrPKaAZaloNvZInM0Rb75vPcJVw+meVz8xwoGRwg==}
  187. '@eslint-sukka/shared@8.8.0':
  188. resolution: {integrity: sha512-3Hj8QQRk8WBQFqS2etrgiDpBCPqWTwWAvc4BeicqkcQW6AsUcU+ItBWDIbMT1616tFC5Q9dAv9pY3VpKLFQbyQ==}
  189. peerDependencies:
  190. eslint: '*'
  191. '@eslint/config-array@0.23.3':
  192. resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==}
  193. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  194. '@eslint/config-helpers@0.5.3':
  195. resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==}
  196. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  197. '@eslint/core@1.1.1':
  198. resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==}
  199. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  200. '@eslint/js@10.0.1':
  201. resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
  202. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  203. peerDependencies:
  204. eslint: ^10.0.0
  205. peerDependenciesMeta:
  206. eslint:
  207. optional: true
  208. '@eslint/object-schema@3.0.3':
  209. resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==}
  210. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  211. '@eslint/plugin-kit@0.6.1':
  212. resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==}
  213. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  214. '@ghostery/adblocker-content@2.14.1':
  215. resolution: {integrity: sha512-hDE6RAL9xgQonJQiK1knOHy527PEwlAuvKaha4snE0XO6Vmtk0HThce1M2JFVRxGayWR3nTxoWbvEfGWXU7O/A==}
  216. '@ghostery/adblocker-extended-selectors@2.14.1':
  217. resolution: {integrity: sha512-3RARO2ukDrfwDqVEMD+HKZIwsM9QjjII+U1zqxhLXZ0dZRHjbtUHlZCsokqfjZ1JAa3ZVKcZrF0nZv5SA2LgyA==}
  218. '@ghostery/adblocker@2.14.1':
  219. resolution: {integrity: sha512-/cQTMJRd4/7zpgFHWqe+9wqiRPGTy+BhqfkxplvejPgq8d6spBjC6bSJV61rVHJZw5F4KOO5ReKOvuguaKG28A==}
  220. '@ghostery/url-parser@1.3.1':
  221. resolution: {integrity: sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==}
  222. '@henrygd/queue@1.2.0':
  223. resolution: {integrity: sha512-jW/BLSTpcvExDhqJGxtIPgGr2O0IFF8XUNDwEbfCfhrXT8a4xztQ9Lv6U/vbYzYC0xVWn+3zv6YnLUh3bEFUKA==}
  224. '@humanfs/core@0.19.1':
  225. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  226. engines: {node: '>=18.18.0'}
  227. '@humanfs/node@0.16.6':
  228. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  229. engines: {node: '>=18.18.0'}
  230. '@humanwhocodes/module-importer@1.0.1':
  231. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  232. engines: {node: '>=12.22'}
  233. '@humanwhocodes/retry@0.3.1':
  234. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  235. engines: {node: '>=18.18'}
  236. '@humanwhocodes/retry@0.4.3':
  237. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  238. engines: {node: '>=18.18'}
  239. '@isaacs/cliui@8.0.2':
  240. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  241. engines: {node: '>=12'}
  242. '@mitata/counters@0.0.8':
  243. resolution: {integrity: sha512-f11w0Y1ETFlarDP7CePj8Z+y8Gv5Ax4gMxWsEwrqh0kH/YIY030Ezx5SUJeQg0YPTZ2OHKGcLG1oGJbIqHzaJA==}
  244. '@napi-rs/wasm-runtime@0.2.12':
  245. resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
  246. '@napi-rs/wasm-runtime@1.1.1':
  247. resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
  248. '@node-rs/crc32-android-arm-eabi@1.10.6':
  249. resolution: {integrity: sha512-vZAMuJXm3TpWPOkkhxdrofWDv+Q+I2oO7ucLRbXyAPmXFNDhHtBxbO1rk9Qzz+M3eep8ieS4/+jCL1Q0zacNMQ==}
  250. engines: {node: '>= 10'}
  251. cpu: [arm]
  252. os: [android]
  253. '@node-rs/crc32-android-arm64@1.10.6':
  254. resolution: {integrity: sha512-Vl/JbjCinCw/H9gEpZveWCMjxjcEChDcDBM8S4hKay5yyoRCUHJPuKr4sjVDBeOm+1nwU3oOm6Ca8dyblwp4/w==}
  255. engines: {node: '>= 10'}
  256. cpu: [arm64]
  257. os: [android]
  258. '@node-rs/crc32-darwin-arm64@1.10.6':
  259. resolution: {integrity: sha512-kARYANp5GnmsQiViA5Qu74weYQ3phOHSYQf0G+U5wB3NB5JmBHnZcOc46Ig21tTypWtdv7u63TaltJQE41noyg==}
  260. engines: {node: '>= 10'}
  261. cpu: [arm64]
  262. os: [darwin]
  263. '@node-rs/crc32-darwin-x64@1.10.6':
  264. resolution: {integrity: sha512-Q99bevJVMfLTISpkpKBlXgtPUItrvTWKFyiqoKH5IvscZmLV++NH4V13Pa17GTBmv9n18OwzgQY4/SRq6PQNVA==}
  265. engines: {node: '>= 10'}
  266. cpu: [x64]
  267. os: [darwin]
  268. '@node-rs/crc32-freebsd-x64@1.10.6':
  269. resolution: {integrity: sha512-66hpawbNjrgnS9EDMErta/lpaqOMrL6a6ee+nlI2viduVOmRZWm9Rg9XdGTK/+c4bQLdtC6jOd+Kp4EyGRYkAg==}
  270. engines: {node: '>= 10'}
  271. cpu: [x64]
  272. os: [freebsd]
  273. '@node-rs/crc32-linux-arm-gnueabihf@1.10.6':
  274. resolution: {integrity: sha512-E8Z0WChH7X6ankbVm8J/Yym19Cq3otx6l4NFPS6JW/cWdjv7iw+Sps2huSug+TBprjbcEA+s4TvEwfDI1KScjg==}
  275. engines: {node: '>= 10'}
  276. cpu: [arm]
  277. os: [linux]
  278. '@node-rs/crc32-linux-arm64-gnu@1.10.6':
  279. resolution: {integrity: sha512-LmWcfDbqAvypX0bQjQVPmQGazh4dLiVklkgHxpV4P0TcQ1DT86H/SWpMBMs/ncF8DGuCQ05cNyMv1iddUDugoQ==}
  280. engines: {node: '>= 10'}
  281. cpu: [arm64]
  282. os: [linux]
  283. libc: [glibc]
  284. '@node-rs/crc32-linux-arm64-musl@1.10.6':
  285. resolution: {integrity: sha512-k8ra/bmg0hwRrIEE8JL1p32WfaN9gDlUUpQRWsbxd1WhjqvXea7kKO6K4DwVxyxlPhBS9Gkb5Urq7Y4mXANzaw==}
  286. engines: {node: '>= 10'}
  287. cpu: [arm64]
  288. os: [linux]
  289. libc: [musl]
  290. '@node-rs/crc32-linux-x64-gnu@1.10.6':
  291. resolution: {integrity: sha512-IfjtqcuFK7JrSZ9mlAFhb83xgium30PguvRjIMI45C3FJwu18bnLk1oR619IYb/zetQT82MObgmqfKOtgemEKw==}
  292. engines: {node: '>= 10'}
  293. cpu: [x64]
  294. os: [linux]
  295. libc: [glibc]
  296. '@node-rs/crc32-linux-x64-musl@1.10.6':
  297. resolution: {integrity: sha512-LbFYsA5M9pNunOweSt6uhxenYQF94v3bHDAQRPTQ3rnjn+mK6IC7YTAYoBjvoJP8lVzcvk9hRj8wp4Jyh6Y80g==}
  298. engines: {node: '>= 10'}
  299. cpu: [x64]
  300. os: [linux]
  301. libc: [musl]
  302. '@node-rs/crc32-wasm32-wasi@1.10.6':
  303. resolution: {integrity: sha512-KaejdLgHMPsRaxnM+OG9L9XdWL2TabNx80HLdsCOoX9BVhEkfh39OeahBo8lBmidylKbLGMQoGfIKDjq0YMStw==}
  304. engines: {node: '>=14.0.0'}
  305. cpu: [wasm32]
  306. '@node-rs/crc32-win32-arm64-msvc@1.10.6':
  307. resolution: {integrity: sha512-x50AXiSxn5Ccn+dCjLf1T7ZpdBiV1Sp5aC+H2ijhJO4alwznvXgWbopPRVhbp2nj0i+Gb6kkDUEyU+508KAdGQ==}
  308. engines: {node: '>= 10'}
  309. cpu: [arm64]
  310. os: [win32]
  311. '@node-rs/crc32-win32-ia32-msvc@1.10.6':
  312. resolution: {integrity: sha512-DpDxQLaErJF9l36aghe1Mx+cOnYLKYo6qVPqPL9ukJ5rAGLtCdU0C+Zoi3gs9ySm8zmbFgazq/LvmsZYU42aBw==}
  313. engines: {node: '>= 10'}
  314. cpu: [ia32]
  315. os: [win32]
  316. '@node-rs/crc32-win32-x64-msvc@1.10.6':
  317. resolution: {integrity: sha512-5B1vXosIIBw1m2Rcnw62IIfH7W9s9f7H7Ma0rRuhT8HR4Xh8QCgw6NJSI2S2MCngsGktYnAhyUvs81b7efTyQw==}
  318. engines: {node: '>= 10'}
  319. cpu: [x64]
  320. os: [win32]
  321. '@node-rs/crc32@1.10.6':
  322. resolution: {integrity: sha512-+llXfqt+UzgoDzT9of5vPQPGqTAVCohU74I9zIBkNo5TH6s2P31DFJOGsJQKN207f0GHnYv5pV3wh3BCY/un/A==}
  323. engines: {node: '>= 10'}
  324. '@nolyfill/globalthis@1.0.44':
  325. resolution: {integrity: sha512-PXEAAubKN6zy9AVSrjzYdEaOaPdoFTMxuiDyc2BYGgrvFQ+NiqZD4Q4JHuR9tPKQyZifQ3MnG8SA/8f21+FIrQ==}
  326. engines: {node: '>=12.4.0'}
  327. '@nolyfill/safe-buffer@1.0.44':
  328. resolution: {integrity: sha512-SqlKXtlhNTDMeZKey9jnnuPhi8YTl1lJuEcY9zbm5i4Pqe79UJJ8IJ9oiD6DhgI8KjYc+HtLzpQJNRdNYqb/hw==}
  329. engines: {node: '>=12.4.0'}
  330. '@nolyfill/shared@1.0.44':
  331. resolution: {integrity: sha512-NI1zxDh4LYL7PYlKKCwojjuc5CEZslywrOTKBNyodjmWjRiZ4AlCMs3Gp+zDoPQPNkYCSQp/luNojHmJWWfCbw==}
  332. '@ota-meshi/ast-token-store@0.3.0':
  333. resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==}
  334. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  335. '@oxc-resolver/binding-android-arm-eabi@11.19.1':
  336. resolution: {integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==}
  337. cpu: [arm]
  338. os: [android]
  339. '@oxc-resolver/binding-android-arm64@11.19.1':
  340. resolution: {integrity: sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==}
  341. cpu: [arm64]
  342. os: [android]
  343. '@oxc-resolver/binding-darwin-arm64@11.19.1':
  344. resolution: {integrity: sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==}
  345. cpu: [arm64]
  346. os: [darwin]
  347. '@oxc-resolver/binding-darwin-x64@11.19.1':
  348. resolution: {integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==}
  349. cpu: [x64]
  350. os: [darwin]
  351. '@oxc-resolver/binding-freebsd-x64@11.19.1':
  352. resolution: {integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==}
  353. cpu: [x64]
  354. os: [freebsd]
  355. '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1':
  356. resolution: {integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==}
  357. cpu: [arm]
  358. os: [linux]
  359. '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1':
  360. resolution: {integrity: sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==}
  361. cpu: [arm]
  362. os: [linux]
  363. '@oxc-resolver/binding-linux-arm64-gnu@11.19.1':
  364. resolution: {integrity: sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==}
  365. cpu: [arm64]
  366. os: [linux]
  367. libc: [glibc]
  368. '@oxc-resolver/binding-linux-arm64-musl@11.19.1':
  369. resolution: {integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==}
  370. cpu: [arm64]
  371. os: [linux]
  372. libc: [musl]
  373. '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1':
  374. resolution: {integrity: sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==}
  375. cpu: [ppc64]
  376. os: [linux]
  377. libc: [glibc]
  378. '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1':
  379. resolution: {integrity: sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==}
  380. cpu: [riscv64]
  381. os: [linux]
  382. libc: [glibc]
  383. '@oxc-resolver/binding-linux-riscv64-musl@11.19.1':
  384. resolution: {integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==}
  385. cpu: [riscv64]
  386. os: [linux]
  387. libc: [musl]
  388. '@oxc-resolver/binding-linux-s390x-gnu@11.19.1':
  389. resolution: {integrity: sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==}
  390. cpu: [s390x]
  391. os: [linux]
  392. libc: [glibc]
  393. '@oxc-resolver/binding-linux-x64-gnu@11.19.1':
  394. resolution: {integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==}
  395. cpu: [x64]
  396. os: [linux]
  397. libc: [glibc]
  398. '@oxc-resolver/binding-linux-x64-musl@11.19.1':
  399. resolution: {integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==}
  400. cpu: [x64]
  401. os: [linux]
  402. libc: [musl]
  403. '@oxc-resolver/binding-openharmony-arm64@11.19.1':
  404. resolution: {integrity: sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==}
  405. cpu: [arm64]
  406. os: [openharmony]
  407. '@oxc-resolver/binding-wasm32-wasi@11.19.1':
  408. resolution: {integrity: sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==}
  409. engines: {node: '>=14.0.0'}
  410. cpu: [wasm32]
  411. '@oxc-resolver/binding-win32-arm64-msvc@11.19.1':
  412. resolution: {integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==}
  413. cpu: [arm64]
  414. os: [win32]
  415. '@oxc-resolver/binding-win32-ia32-msvc@11.19.1':
  416. resolution: {integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==}
  417. cpu: [ia32]
  418. os: [win32]
  419. '@oxc-resolver/binding-win32-x64-msvc@11.19.1':
  420. resolution: {integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==}
  421. cpu: [x64]
  422. os: [win32]
  423. '@package-json/types@0.0.12':
  424. resolution: {integrity: sha512-uu43FGU34B5VM9mCNjXCwLaGHYjXdNincqKLaraaCW+7S2+SmiBg1Nv8bPnmschrIfZmfKNY9f3fC376MRrObw==}
  425. '@pkgjs/parseargs@0.11.0':
  426. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  427. engines: {node: '>=14'}
  428. '@pkgr/core@0.2.9':
  429. resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
  430. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  431. '@remusao/guess-url-type@2.1.0':
  432. resolution: {integrity: sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==}
  433. '@remusao/small@2.1.0':
  434. resolution: {integrity: sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==}
  435. '@remusao/smaz-compress@2.2.0':
  436. resolution: {integrity: sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==}
  437. '@remusao/smaz-decompress@2.2.0':
  438. resolution: {integrity: sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==}
  439. '@remusao/smaz@2.2.0':
  440. resolution: {integrity: sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==}
  441. '@remusao/trie@2.1.0':
  442. resolution: {integrity: sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==}
  443. '@swc-node/core@1.14.1':
  444. resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==}
  445. engines: {node: '>= 10'}
  446. peerDependencies:
  447. '@swc/core': '>= 1.13.3'
  448. '@swc/types': '>= 0.1'
  449. '@swc-node/register@1.11.1':
  450. resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==}
  451. peerDependencies:
  452. '@swc/core': '>= 1.4.13'
  453. typescript: '>= 4.3'
  454. '@swc-node/sourcemap-support@0.6.1':
  455. resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==}
  456. '@swc/core-darwin-arm64@1.13.5':
  457. resolution: {integrity: sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ==}
  458. engines: {node: '>=10'}
  459. cpu: [arm64]
  460. os: [darwin]
  461. '@swc/core-darwin-x64@1.13.5':
  462. resolution: {integrity: sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng==}
  463. engines: {node: '>=10'}
  464. cpu: [x64]
  465. os: [darwin]
  466. '@swc/core-linux-arm-gnueabihf@1.13.5':
  467. resolution: {integrity: sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ==}
  468. engines: {node: '>=10'}
  469. cpu: [arm]
  470. os: [linux]
  471. '@swc/core-linux-arm64-gnu@1.13.5':
  472. resolution: {integrity: sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw==}
  473. engines: {node: '>=10'}
  474. cpu: [arm64]
  475. os: [linux]
  476. libc: [glibc]
  477. '@swc/core-linux-arm64-musl@1.13.5':
  478. resolution: {integrity: sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ==}
  479. engines: {node: '>=10'}
  480. cpu: [arm64]
  481. os: [linux]
  482. libc: [musl]
  483. '@swc/core-linux-x64-gnu@1.13.5':
  484. resolution: {integrity: sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA==}
  485. engines: {node: '>=10'}
  486. cpu: [x64]
  487. os: [linux]
  488. libc: [glibc]
  489. '@swc/core-linux-x64-musl@1.13.5':
  490. resolution: {integrity: sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q==}
  491. engines: {node: '>=10'}
  492. cpu: [x64]
  493. os: [linux]
  494. libc: [musl]
  495. '@swc/core-win32-arm64-msvc@1.13.5':
  496. resolution: {integrity: sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw==}
  497. engines: {node: '>=10'}
  498. cpu: [arm64]
  499. os: [win32]
  500. '@swc/core-win32-ia32-msvc@1.13.5':
  501. resolution: {integrity: sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw==}
  502. engines: {node: '>=10'}
  503. cpu: [ia32]
  504. os: [win32]
  505. '@swc/core-win32-x64-msvc@1.13.5':
  506. resolution: {integrity: sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q==}
  507. engines: {node: '>=10'}
  508. cpu: [x64]
  509. os: [win32]
  510. '@swc/core@1.13.5':
  511. resolution: {integrity: sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ==}
  512. engines: {node: '>=10'}
  513. peerDependencies:
  514. '@swc/helpers': '>=0.5.17'
  515. peerDependenciesMeta:
  516. '@swc/helpers':
  517. optional: true
  518. '@swc/counter@0.1.3':
  519. resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
  520. '@swc/types@0.1.25':
  521. resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
  522. '@tybys/wasm-util@0.10.1':
  523. resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
  524. '@types/better-sqlite3@7.6.13':
  525. resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
  526. '@types/cli-progress@3.11.6':
  527. resolution: {integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==}
  528. '@types/esrecurse@4.3.1':
  529. resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
  530. '@types/estree@1.0.8':
  531. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  532. '@types/json-schema@7.0.15':
  533. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  534. '@types/mocha@10.0.10':
  535. resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
  536. '@types/node@24.12.0':
  537. resolution: {integrity: sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==}
  538. '@types/tar-fs@2.0.4':
  539. resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
  540. '@types/tar-stream@3.1.4':
  541. resolution: {integrity: sha512-921gW0+g29mCJX0fRvqeHzBlE/XclDaAG0Ousy1LCghsOhvaKacDeRGEVzQP9IPfKn8Vysy7FEXAIxycpc/CMg==}
  542. '@types/yauzl-promise@4.0.1':
  543. resolution: {integrity: sha512-qYEC3rJwqiJpdQ9b+bPNeuSY0c3JUM8vIuDy08qfuVN7xHm3ZDsHn2kGphUIB0ruEXrPGNXZ64nMUcu4fDjViQ==}
  544. '@typescript-eslint/eslint-plugin@8.57.0':
  545. resolution: {integrity: sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==}
  546. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  547. peerDependencies:
  548. '@typescript-eslint/parser': ^8.57.0
  549. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  550. typescript: '>=4.8.4 <6.0.0'
  551. '@typescript-eslint/parser@8.57.0':
  552. resolution: {integrity: sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==}
  553. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  554. peerDependencies:
  555. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  556. typescript: '>=4.8.4 <6.0.0'
  557. '@typescript-eslint/project-service@8.57.0':
  558. resolution: {integrity: sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==}
  559. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  560. peerDependencies:
  561. typescript: '>=4.8.4 <6.0.0'
  562. '@typescript-eslint/scope-manager@8.57.0':
  563. resolution: {integrity: sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==}
  564. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  565. '@typescript-eslint/tsconfig-utils@8.57.0':
  566. resolution: {integrity: sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==}
  567. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  568. peerDependencies:
  569. typescript: '>=4.8.4 <6.0.0'
  570. '@typescript-eslint/type-utils@8.57.0':
  571. resolution: {integrity: sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==}
  572. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  573. peerDependencies:
  574. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  575. typescript: '>=4.8.4 <6.0.0'
  576. '@typescript-eslint/types@8.57.0':
  577. resolution: {integrity: sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==}
  578. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  579. '@typescript-eslint/typescript-estree@8.57.0':
  580. resolution: {integrity: sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==}
  581. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  582. peerDependencies:
  583. typescript: '>=4.8.4 <6.0.0'
  584. '@typescript-eslint/utils@8.57.0':
  585. resolution: {integrity: sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==}
  586. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  587. peerDependencies:
  588. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  589. typescript: '>=4.8.4 <6.0.0'
  590. '@typescript-eslint/visitor-keys@8.57.0':
  591. resolution: {integrity: sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==}
  592. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  593. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  594. resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
  595. cpu: [arm]
  596. os: [android]
  597. '@unrs/resolver-binding-android-arm64@1.11.1':
  598. resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
  599. cpu: [arm64]
  600. os: [android]
  601. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  602. resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
  603. cpu: [arm64]
  604. os: [darwin]
  605. '@unrs/resolver-binding-darwin-x64@1.11.1':
  606. resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
  607. cpu: [x64]
  608. os: [darwin]
  609. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  610. resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
  611. cpu: [x64]
  612. os: [freebsd]
  613. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  614. resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
  615. cpu: [arm]
  616. os: [linux]
  617. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  618. resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
  619. cpu: [arm]
  620. os: [linux]
  621. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  622. resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
  623. cpu: [arm64]
  624. os: [linux]
  625. libc: [glibc]
  626. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  627. resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
  628. cpu: [arm64]
  629. os: [linux]
  630. libc: [musl]
  631. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  632. resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
  633. cpu: [ppc64]
  634. os: [linux]
  635. libc: [glibc]
  636. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  637. resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
  638. cpu: [riscv64]
  639. os: [linux]
  640. libc: [glibc]
  641. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  642. resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
  643. cpu: [riscv64]
  644. os: [linux]
  645. libc: [musl]
  646. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  647. resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
  648. cpu: [s390x]
  649. os: [linux]
  650. libc: [glibc]
  651. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  652. resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
  653. cpu: [x64]
  654. os: [linux]
  655. libc: [glibc]
  656. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  657. resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
  658. cpu: [x64]
  659. os: [linux]
  660. libc: [musl]
  661. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  662. resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
  663. engines: {node: '>=14.0.0'}
  664. cpu: [wasm32]
  665. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  666. resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
  667. cpu: [arm64]
  668. os: [win32]
  669. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  670. resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
  671. cpu: [ia32]
  672. os: [win32]
  673. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  674. resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
  675. cpu: [x64]
  676. os: [win32]
  677. acorn-jsx@5.3.2:
  678. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  679. peerDependencies:
  680. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  681. acorn@8.16.0:
  682. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  683. engines: {node: '>=0.4.0'}
  684. hasBin: true
  685. ajv@6.14.0:
  686. resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
  687. ansi-regex@5.0.1:
  688. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  689. engines: {node: '>=8'}
  690. ansi-regex@6.2.0:
  691. resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
  692. engines: {node: '>=12'}
  693. ansi-styles@4.3.0:
  694. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  695. engines: {node: '>=8'}
  696. ansi-styles@6.2.1:
  697. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  698. engines: {node: '>=12'}
  699. argparse@2.0.1:
  700. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  701. async-mutex@0.3.2:
  702. resolution: {integrity: sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==}
  703. b4a@1.6.7:
  704. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  705. balanced-match@1.0.2:
  706. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  707. balanced-match@4.0.4:
  708. resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
  709. engines: {node: 18 || 20 || >=22}
  710. bare-events@2.6.1:
  711. resolution: {integrity: sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==}
  712. bare-fs@4.2.1:
  713. resolution: {integrity: sha512-mELROzV0IhqilFgsl1gyp48pnZsaV9xhQapHLDsvn4d4ZTfbFhcghQezl7FTEDNBcGqLUnNI3lUlm6ecrLWdFA==}
  714. engines: {bare: '>=1.16.0'}
  715. peerDependencies:
  716. bare-buffer: '*'
  717. peerDependenciesMeta:
  718. bare-buffer:
  719. optional: true
  720. bare-os@3.6.2:
  721. resolution: {integrity: sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==}
  722. engines: {bare: '>=1.14.0'}
  723. bare-path@3.0.0:
  724. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  725. bare-stream@2.7.0:
  726. resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==}
  727. peerDependencies:
  728. bare-buffer: '*'
  729. bare-events: '*'
  730. peerDependenciesMeta:
  731. bare-buffer:
  732. optional: true
  733. bare-events:
  734. optional: true
  735. base64-js@1.5.1:
  736. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  737. better-sqlite3@11.10.0:
  738. resolution: {integrity: sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ==}
  739. big-integer@1.6.52:
  740. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  741. engines: {node: '>=0.6'}
  742. bindings@1.5.0:
  743. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  744. bl@4.1.0:
  745. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  746. brace-expansion@2.0.2:
  747. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  748. brace-expansion@5.0.3:
  749. resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
  750. engines: {node: 18 || 20 || >=22}
  751. browser-stdout@1.3.1:
  752. resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
  753. buffer-from@1.1.2:
  754. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  755. buffer@5.7.1:
  756. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  757. buffer@6.0.3:
  758. resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
  759. bufferutil@4.0.9:
  760. resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
  761. engines: {node: '>=6.14.2'}
  762. camelcase@6.3.0:
  763. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  764. engines: {node: '>=10'}
  765. chalk@4.1.2:
  766. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  767. engines: {node: '>=10'}
  768. chokidar@4.0.3:
  769. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  770. engines: {node: '>= 14.16.0'}
  771. chownr@1.1.4:
  772. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  773. ci-info@4.4.0:
  774. resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
  775. engines: {node: '>=8'}
  776. cli-progress@3.12.0:
  777. resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
  778. engines: {node: '>=4'}
  779. cliui@8.0.1:
  780. resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
  781. engines: {node: '>=12'}
  782. color-convert@2.0.1:
  783. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  784. engines: {node: '>=7.0.0'}
  785. color-name@1.1.4:
  786. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  787. colorette@2.0.20:
  788. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
  789. comment-parser@1.4.1:
  790. resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
  791. engines: {node: '>= 12.0.0'}
  792. cross-spawn@7.0.6:
  793. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  794. engines: {node: '>= 8'}
  795. csv-parse@6.1.0:
  796. resolution: {integrity: sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw==}
  797. d@1.0.2:
  798. resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
  799. engines: {node: '>=0.12'}
  800. debug@2.6.9:
  801. resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
  802. peerDependencies:
  803. supports-color: '*'
  804. peerDependenciesMeta:
  805. supports-color:
  806. optional: true
  807. debug@3.2.7:
  808. resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
  809. peerDependencies:
  810. supports-color: '*'
  811. peerDependenciesMeta:
  812. supports-color:
  813. optional: true
  814. debug@4.4.1:
  815. resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
  816. engines: {node: '>=6.0'}
  817. peerDependencies:
  818. supports-color: '*'
  819. peerDependenciesMeta:
  820. supports-color:
  821. optional: true
  822. debug@4.4.3:
  823. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  824. engines: {node: '>=6.0'}
  825. peerDependencies:
  826. supports-color: '*'
  827. peerDependenciesMeta:
  828. supports-color:
  829. optional: true
  830. decamelize@4.0.0:
  831. resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
  832. engines: {node: '>=10'}
  833. decompress-response@6.0.0:
  834. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  835. engines: {node: '>=10'}
  836. deep-extend@0.6.0:
  837. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  838. engines: {node: '>=4.0.0'}
  839. deep-is@0.1.4:
  840. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  841. defu@6.1.4:
  842. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  843. detect-libc@2.0.4:
  844. resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
  845. engines: {node: '>=8'}
  846. diff-sequences@29.6.3:
  847. resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
  848. engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
  849. diff@7.0.0:
  850. resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==}
  851. engines: {node: '>=0.3.1'}
  852. dom-serializer@1.4.1:
  853. resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
  854. domain-alive@0.1.17:
  855. resolution: {integrity: sha512-ACL2WVZ5lldyBnrFjD4Jb9FeJd4SS4vhiKoIfq2qQrWXfAxM+go1WjjykceyjlCj8zqby3Ss0Nh5hDyl1/SFzw==}
  856. domelementtype@2.3.0:
  857. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  858. domhandler@4.3.1:
  859. resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
  860. engines: {node: '>= 4'}
  861. domutils@2.8.0:
  862. resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
  863. earl@2.0.0:
  864. resolution: {integrity: sha512-je2x7VWHNN3kN5zqcUUeEEokHoL7HWwiOxCdlLi66LkMqUnLECVZGePdgBtrqLrUg25bHLFrM+bkBXwcI7f+EQ==}
  865. eastasianwidth@0.2.0:
  866. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  867. emoji-regex@8.0.0:
  868. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  869. emoji-regex@9.2.2:
  870. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  871. end-of-stream@1.4.5:
  872. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  873. enhanced-resolve@5.18.3:
  874. resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
  875. engines: {node: '>=10.13.0'}
  876. entities@2.2.0:
  877. resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
  878. error-stack-parser@2.1.4:
  879. resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
  880. es5-ext@0.10.64:
  881. resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
  882. engines: {node: '>=0.10'}
  883. es6-iterator@2.0.3:
  884. resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
  885. es6-symbol@3.1.4:
  886. resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
  887. engines: {node: '>=0.12'}
  888. escalade@3.2.0:
  889. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  890. engines: {node: '>=6'}
  891. escape-string-regexp@4.0.0:
  892. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  893. engines: {node: '>=10'}
  894. eslint-compat-utils@0.5.1:
  895. resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
  896. engines: {node: '>=12'}
  897. peerDependencies:
  898. eslint: '>=6.0.0'
  899. eslint-config-sukka@8.8.0:
  900. resolution: {integrity: sha512-qFRph+swOENI3J3rb5i9hqIjrfyeEFsNJpcYg4Tcskvol/xDxOyPVPY9420wIsVHSR7p+jZhMZEWOkyiQMBnDA==}
  901. eslint-formatter-sukka@8.8.0:
  902. resolution: {integrity: sha512-DpXpcvJj+2DLgiU4VOKPixnXfwbPayrlU1s2XR/28uzfO9HhRyWQ1HedSg0EWvD0Aq62UubW35EwhFB764RJtQ==}
  903. peerDependencies:
  904. eslint: '*'
  905. eslint-import-context@0.1.9:
  906. resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
  907. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  908. peerDependencies:
  909. unrs-resolver: ^1.0.0
  910. peerDependenciesMeta:
  911. unrs-resolver:
  912. optional: true
  913. eslint-import-resolver-node@0.3.9:
  914. resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
  915. eslint-import-resolver-typescript@4.4.4:
  916. resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==}
  917. engines: {node: ^16.17.0 || >=18.6.0}
  918. peerDependencies:
  919. eslint: '*'
  920. eslint-plugin-import: '*'
  921. eslint-plugin-import-x: '*'
  922. peerDependenciesMeta:
  923. eslint-plugin-import:
  924. optional: true
  925. eslint-plugin-import-x:
  926. optional: true
  927. eslint-json-compat-utils@0.2.3:
  928. resolution: {integrity: sha512-RbBmDFyu7FqnjE8F0ZxPNzx5UaptdeS9Uu50r7A+D7s/+FCX+ybiyViYEgFUaFIFqSWJgZRTpL5d8Kanxxl2lQ==}
  929. engines: {node: '>=12'}
  930. peerDependencies:
  931. '@eslint/json': '*'
  932. eslint: '*'
  933. jsonc-eslint-parser: ^2.4.0 || ^3.0.0
  934. peerDependenciesMeta:
  935. '@eslint/json':
  936. optional: true
  937. eslint-plugin-es-x@7.8.0:
  938. resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
  939. engines: {node: ^14.18.0 || >=16.0.0}
  940. peerDependencies:
  941. eslint: '>=8'
  942. eslint-plugin-import-x@4.16.2:
  943. resolution: {integrity: sha512-rM9K8UBHcWKpzQzStn1YRN2T5NvdeIfSVoKu/lKF41znQXHAUcBbYXe5wd6GNjZjTrP7viQ49n1D83x/2gYgIw==}
  944. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  945. peerDependencies:
  946. '@typescript-eslint/utils': ^8.56.0
  947. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  948. eslint-import-resolver-node: '*'
  949. peerDependenciesMeta:
  950. '@typescript-eslint/utils':
  951. optional: true
  952. eslint-import-resolver-node:
  953. optional: true
  954. eslint-plugin-jsonc@3.1.2:
  955. resolution: {integrity: sha512-dopTxdB22iuOkgKyJCupEC5IYBItUT4J/teq1H5ddUObcaYhOURxtJElZczdcYnnKCghNU/vccuyPkliy2Wxsg==}
  956. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  957. peerDependencies:
  958. eslint: '>=9.38.0'
  959. eslint-plugin-n@17.24.0:
  960. resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
  961. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  962. peerDependencies:
  963. eslint: '>=8.23.0'
  964. eslint-plugin-promise@7.2.1:
  965. resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==}
  966. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  967. peerDependencies:
  968. eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
  969. eslint-plugin-regexp@3.1.0:
  970. resolution: {integrity: sha512-qGXIC3DIKZHcK1H9A9+Byz9gmndY6TTSRkSMTZpNXdyCw2ObSehRgccJv35n9AdUakEjQp5VFNLas6BMXizCZg==}
  971. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  972. peerDependencies:
  973. eslint: '>=9.38.0'
  974. eslint-plugin-sukka@9.0.3:
  975. resolution: {integrity: sha512-BhIcXvOPmaSwUfBbrDXMop1SVtaaFF3ezk2QnUjaHu9f2Jm8iMZZ/EjqzvC+7pmvUEY3OHj+rw518/D+vD5A0w==}
  976. peerDependencies:
  977. eslint: '*'
  978. typescript: '*'
  979. eslint-plugin-unused-imports@4.4.1:
  980. resolution: {integrity: sha512-oZGYUz1X3sRMGUB+0cZyK2VcvRX5lm/vB56PgNNcU+7ficUCKm66oZWKUubXWnOuPjQ8PvmXtCViXBMONPe7tQ==}
  981. peerDependencies:
  982. '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
  983. eslint: ^10.0.0 || ^9.0.0 || ^8.0.0
  984. peerDependenciesMeta:
  985. '@typescript-eslint/eslint-plugin':
  986. optional: true
  987. eslint-scope@9.1.2:
  988. resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
  989. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  990. eslint-visitor-keys@3.4.3:
  991. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  992. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  993. eslint-visitor-keys@5.0.1:
  994. resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
  995. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  996. eslint@10.0.3:
  997. resolution: {integrity: sha512-COV33RzXZkqhG9P2rZCFl9ZmJ7WL+gQSCRzE7RhkbclbQPtLAWReL7ysA0Sh4c8Im2U9ynybdR56PV0XcKvqaQ==}
  998. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  999. hasBin: true
  1000. peerDependencies:
  1001. jiti: '*'
  1002. peerDependenciesMeta:
  1003. jiti:
  1004. optional: true
  1005. esniff@2.0.1:
  1006. resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
  1007. engines: {node: '>=0.10'}
  1008. espree@11.1.1:
  1009. resolution: {integrity: sha512-AVHPqQoZYc+RUM4/3Ly5udlZY/U4LS8pIG05jEjWM2lQMU/oaZ7qshzAl2YP1tfNmXfftH3ohurfwNAug+MnsQ==}
  1010. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1011. esquery@1.7.0:
  1012. resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
  1013. engines: {node: '>=0.10'}
  1014. esrecurse@4.3.0:
  1015. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  1016. engines: {node: '>=4.0'}
  1017. estraverse@5.3.0:
  1018. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  1019. engines: {node: '>=4.0'}
  1020. esutils@2.0.3:
  1021. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  1022. engines: {node: '>=0.10.0'}
  1023. event-emitter@0.3.5:
  1024. resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
  1025. expand-template@2.0.3:
  1026. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  1027. engines: {node: '>=6'}
  1028. ext@1.7.0:
  1029. resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
  1030. fast-cidr-tools@0.3.4:
  1031. resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
  1032. engines: {node: '>=16'}
  1033. fast-deep-equal@3.1.3:
  1034. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  1035. fast-escape-html@1.1.0:
  1036. resolution: {integrity: sha512-nRvjfywv8gzIBs0fM/ht6S5scNUamm+o+91p/69cYYNWODb7b/UiQfjFx+6n8NMtdHs6K80kh+hW1dPNS/opIA==}
  1037. fast-escape-regexp@1.0.1:
  1038. resolution: {integrity: sha512-VSnAgWEYHdyyVegVfN/TUCa6hDQ7PIxdIJVWq4RWqyegkG9zFwNb21uykT0hAyvKlKnFR+zOu/25434pHBXtLA==}
  1039. fast-fifo@1.3.2:
  1040. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  1041. fast-json-stable-stringify@2.1.0:
  1042. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  1043. fast-levenshtein@2.0.6:
  1044. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  1045. fast-uri@3.1.0:
  1046. resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
  1047. fdir@6.5.0:
  1048. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1049. engines: {node: '>=12.0.0'}
  1050. peerDependencies:
  1051. picomatch: ^3 || ^4
  1052. peerDependenciesMeta:
  1053. picomatch:
  1054. optional: true
  1055. file-entry-cache@8.0.0:
  1056. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  1057. engines: {node: '>=16.0.0'}
  1058. file-uri-to-path@1.0.0:
  1059. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  1060. find-up@5.0.0:
  1061. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  1062. engines: {node: '>=10'}
  1063. flat-cache@4.0.1:
  1064. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  1065. engines: {node: '>=16'}
  1066. flat@5.0.2:
  1067. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1068. hasBin: true
  1069. flatted@3.3.3:
  1070. resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
  1071. foreground-child@3.3.1:
  1072. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1073. engines: {node: '>=14'}
  1074. foxts@3.15.0:
  1075. resolution: {integrity: sha512-XaSnlPKgD23NGdfuUHAX50V9h17bavUEZthg3SBO8ajT3D0pFg6KhYRvKNOlB+t7MpKZ1fj22bUPssH5PY0h4w==}
  1076. foxts@4.6.0:
  1077. resolution: {integrity: sha512-Sq6k7CDUAz1/MOiwRiV59tblzsaWGOQitYxvF/l7H5Z/9gZNBvWKWsRcXLS7T7FLKRKO0LmETiefkVUm5omESg==}
  1078. foxts@5.3.0:
  1079. resolution: {integrity: sha512-mj26vbVZmsu183PXwE7Nike91vuxhaDHtQGJmiEpQkdiuJYhDB91ZsdKJN54oSqUhMWj1DmUTEqSkguJCNM2Sg==}
  1080. fs-constants@1.0.0:
  1081. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1082. function-bind@1.1.2:
  1083. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1084. get-caller-file@2.0.5:
  1085. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  1086. engines: {node: 6.* || 8.* || >= 10.*}
  1087. get-tsconfig@4.12.0:
  1088. resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
  1089. github-from-package@0.0.0:
  1090. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  1091. glob-parent@6.0.2:
  1092. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  1093. engines: {node: '>=10.13.0'}
  1094. glob@10.4.5:
  1095. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  1096. deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
  1097. hasBin: true
  1098. globals@15.15.0:
  1099. resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
  1100. engines: {node: '>=18'}
  1101. globrex@0.1.2:
  1102. resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
  1103. graceful-fs@4.2.11:
  1104. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1105. has-flag@4.0.0:
  1106. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1107. engines: {node: '>=8'}
  1108. hash-wasm@4.12.0:
  1109. resolution: {integrity: sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==}
  1110. hasown@2.0.2:
  1111. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1112. engines: {node: '>= 0.4'}
  1113. he@1.2.0:
  1114. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1115. hasBin: true
  1116. htmlparser2@6.1.0:
  1117. resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
  1118. ieee754@1.2.1:
  1119. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1120. ignore@5.3.2:
  1121. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  1122. engines: {node: '>= 4'}
  1123. ignore@7.0.5:
  1124. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1125. engines: {node: '>= 4'}
  1126. immediato@1.1.0:
  1127. resolution: {integrity: sha512-6DTWQWiM3SyxAbNRDmMvFgZVwVP6wT8ciQv7GivxXejtXZFIcemC0Wlzfd/jEouJ2JroCIp4qZVloKW4BviUpQ==}
  1128. imurmurhash@0.1.4:
  1129. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  1130. engines: {node: '>=0.8.19'}
  1131. inherits@2.0.4:
  1132. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1133. ini@1.3.8:
  1134. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1135. ip-address@10.0.1:
  1136. resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
  1137. engines: {node: '>= 12'}
  1138. is-bun-module@2.0.0:
  1139. resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
  1140. is-core-module@2.16.1:
  1141. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  1142. engines: {node: '>= 0.4'}
  1143. is-extglob@2.1.1:
  1144. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1145. engines: {node: '>=0.10.0'}
  1146. is-fullwidth-code-point@3.0.0:
  1147. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1148. engines: {node: '>=8'}
  1149. is-glob@4.0.3:
  1150. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1151. engines: {node: '>=0.10.0'}
  1152. is-it-type@5.1.3:
  1153. resolution: {integrity: sha512-AX2uU0HW+TxagTgQXOJY7+2fbFHemC7YFBwN1XqD8qQMKdtfbOC8OC3fUb4s5NU59a3662Dzwto8tWDdZYRXxg==}
  1154. engines: {node: '>=12'}
  1155. is-path-inside@3.0.3:
  1156. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  1157. engines: {node: '>=8'}
  1158. is-plain-obj@2.1.0:
  1159. resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
  1160. engines: {node: '>=8'}
  1161. is-typedarray@1.0.0:
  1162. resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
  1163. is-unicode-supported@0.1.0:
  1164. resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
  1165. engines: {node: '>=10'}
  1166. isexe@2.0.0:
  1167. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1168. isoconcurrency@1.0.0:
  1169. resolution: {integrity: sha512-YhuPf5V6uOtQQHt9gIkOTbq75ceXqraDvxtZZeS/XbNsre6fmM+WpJgNTSkGX5jB3+gnbwoTVqW1c3qdfyVpOA==}
  1170. isotimer@1.0.0:
  1171. resolution: {integrity: sha512-1p1wborMl9fFbulXx9YBpIqFnfUn/2tN8Ne9g3GLMaiQAPmN/wLlpNOKCNT822div3Sq7LKkApZJ+6JipDUusQ==}
  1172. jackspeak@3.4.3:
  1173. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1174. js-yaml@4.1.0:
  1175. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  1176. hasBin: true
  1177. jsdoc-type-pratt-parser@7.1.1:
  1178. resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
  1179. engines: {node: '>=20.0.0'}
  1180. json-buffer@3.0.1:
  1181. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  1182. json-schema-traverse@0.4.1:
  1183. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  1184. json-stable-stringify-without-jsonify@1.0.1:
  1185. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  1186. json-stringify-pretty-compact@4.0.0:
  1187. resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==}
  1188. jsonc-eslint-parser@3.1.0:
  1189. resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==}
  1190. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  1191. keyv@4.5.4:
  1192. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  1193. levn@0.4.1:
  1194. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  1195. engines: {node: '>= 0.8.0'}
  1196. locate-path@6.0.0:
  1197. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  1198. engines: {node: '>=10'}
  1199. log-symbols@4.1.0:
  1200. resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
  1201. engines: {node: '>=10'}
  1202. lru-cache@10.4.3:
  1203. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1204. mime@3.0.0:
  1205. resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
  1206. engines: {node: '>=10.0.0'}
  1207. hasBin: true
  1208. mimic-response@3.1.0:
  1209. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  1210. engines: {node: '>=10'}
  1211. minimatch@10.2.4:
  1212. resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
  1213. engines: {node: 18 || 20 || >=22}
  1214. minimatch@9.0.5:
  1215. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  1216. engines: {node: '>=16 || 14 >=14.17'}
  1217. minimist@1.2.8:
  1218. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  1219. minipass@7.1.2:
  1220. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  1221. engines: {node: '>=16 || 14 >=14.17'}
  1222. mitata@1.0.34:
  1223. resolution: {integrity: sha512-Mc3zrtNBKIMeHSCQ0XqRLo1vbdIx1wvFV9c8NJAiyho6AjNfMY8bVhbS12bwciUdd1t4rj8099CH3N3NFahaUA==}
  1224. mkdirp-classic@0.5.3:
  1225. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  1226. mocha@11.7.5:
  1227. resolution: {integrity: sha512-mTT6RgopEYABzXWFx+GcJ+ZQ32kp4fMf0xvpZIIfSq9Z8lC/++MtcCnQ9t5FP2veYEP95FIYSvW+U9fV4xrlig==}
  1228. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1229. hasBin: true
  1230. ms@2.0.0:
  1231. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  1232. ms@2.1.3:
  1233. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1234. napi-build-utils@2.0.0:
  1235. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  1236. napi-postinstall@0.3.4:
  1237. resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
  1238. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  1239. hasBin: true
  1240. natural-compare@1.4.0:
  1241. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  1242. next-tick@1.1.0:
  1243. resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
  1244. node-abi@3.75.0:
  1245. resolution: {integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==}
  1246. engines: {node: '>=10'}
  1247. node-gyp-build@4.8.4:
  1248. resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
  1249. hasBin: true
  1250. node-localstorage@2.2.1:
  1251. resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
  1252. engines: {node: '>=0.12'}
  1253. null-prototype-object@1.2.5:
  1254. resolution: {integrity: sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==}
  1255. engines: {node: '>= 20'}
  1256. once@1.4.0:
  1257. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  1258. optionator@0.9.4:
  1259. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  1260. engines: {node: '>= 0.8.0'}
  1261. oxc-resolver@11.19.1:
  1262. resolution: {integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==}
  1263. p-limit@3.1.0:
  1264. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  1265. engines: {node: '>=10'}
  1266. p-locate@5.0.0:
  1267. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  1268. engines: {node: '>=10'}
  1269. package-json-from-dist@1.0.1:
  1270. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1271. package-manager-detector@1.5.0:
  1272. resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==}
  1273. pako@2.1.0:
  1274. resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
  1275. path-browserify@1.0.1:
  1276. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1277. path-exists@4.0.0:
  1278. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1279. engines: {node: '>=8'}
  1280. path-key@3.1.1:
  1281. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1282. engines: {node: '>=8'}
  1283. path-parse@1.0.7:
  1284. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  1285. path-scurry@1.11.1:
  1286. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1287. engines: {node: '>=16 || 14 >=14.18'}
  1288. picocolors@1.1.1:
  1289. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1290. picomatch@4.0.3:
  1291. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  1292. engines: {node: '>=12'}
  1293. pirates@4.0.7:
  1294. resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
  1295. engines: {node: '>= 6'}
  1296. prebuild-install@7.1.3:
  1297. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  1298. engines: {node: '>=10'}
  1299. deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
  1300. hasBin: true
  1301. prelude-ls@1.2.1:
  1302. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1303. engines: {node: '>= 0.8.0'}
  1304. promise-make-naked@3.0.2:
  1305. resolution: {integrity: sha512-B+b+kQ1YrYS7zO7P7bQcoqqMUizP06BOyNSBEnB5VJKDSWo8fsVuDkfSmwdjF0JsRtaNh83so5MMFJ95soH5jg==}
  1306. pump@3.0.3:
  1307. resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
  1308. punycode@2.3.1:
  1309. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1310. engines: {node: '>=6'}
  1311. randombytes@2.1.0:
  1312. resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
  1313. rc@1.2.8:
  1314. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  1315. hasBin: true
  1316. readable-stream@3.6.2:
  1317. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  1318. engines: {node: '>= 6'}
  1319. readdirp@4.1.2:
  1320. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  1321. engines: {node: '>= 14.18.0'}
  1322. real-cancellable-promise@1.2.3:
  1323. resolution: {integrity: sha512-hBI5Gy/55VEeeMtImMgEirD7eq5UmqJf1J8dFZtbJZA/3rB0pYFZ7PayMGueb6v4UtUtpKpP+05L0VwyE1hI9Q==}
  1324. refa@0.12.1:
  1325. resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
  1326. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1327. regexp-ast-analysis@0.7.1:
  1328. resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
  1329. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  1330. require-directory@2.1.1:
  1331. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1332. engines: {node: '>=0.10.0'}
  1333. resolve-pkg-maps@1.0.0:
  1334. resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
  1335. resolve@1.22.10:
  1336. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  1337. engines: {node: '>= 0.4'}
  1338. hasBin: true
  1339. scslre@0.3.0:
  1340. resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
  1341. engines: {node: ^14.0.0 || >=16.0.0}
  1342. semver@7.7.3:
  1343. resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
  1344. engines: {node: '>=10'}
  1345. hasBin: true
  1346. serialize-javascript@6.0.2:
  1347. resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
  1348. shebang-command@2.0.0:
  1349. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1350. engines: {node: '>=8'}
  1351. shebang-regex@3.0.0:
  1352. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1353. engines: {node: '>=8'}
  1354. signal-exit@4.1.0:
  1355. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1356. engines: {node: '>=14'}
  1357. simple-concat@1.0.1:
  1358. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  1359. simple-get@4.0.1:
  1360. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  1361. simple-invariant@2.0.1:
  1362. resolution: {integrity: sha512-1sbhsxqI+I2tqlmjbz99GXNmZtr6tKIyEgGGnJw/MKGblalqk/XoOYYFJlBzTKZCxx8kLaD3FD5s9BEEjx5Pyg==}
  1363. engines: {node: '>=10'}
  1364. slide@1.1.6:
  1365. resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
  1366. smart-buffer@4.2.0:
  1367. resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
  1368. engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
  1369. socks@2.8.7:
  1370. resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
  1371. engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
  1372. source-map-support@0.5.21:
  1373. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1374. source-map@0.6.1:
  1375. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1376. engines: {node: '>=0.10.0'}
  1377. stable-hash-x@0.2.0:
  1378. resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
  1379. engines: {node: '>=12.0.0'}
  1380. stackframe@1.3.4:
  1381. resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
  1382. store2@2.14.4:
  1383. resolution: {integrity: sha512-srTItn1GOvyvOycgxjAnPA63FZNwy0PTyUBFMHRM+hVFltAeoh0LmNBz9SZqUS9mMqGk8rfyWyXn3GH5ReJ8Zw==}
  1384. streamx@2.22.1:
  1385. resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
  1386. string-width@4.2.3:
  1387. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1388. engines: {node: '>=8'}
  1389. string-width@5.1.2:
  1390. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1391. engines: {node: '>=12'}
  1392. string_decoder@1.3.0:
  1393. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  1394. strip-ansi@6.0.1:
  1395. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1396. engines: {node: '>=8'}
  1397. strip-ansi@7.1.0:
  1398. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1399. engines: {node: '>=12'}
  1400. strip-json-comments@2.0.1:
  1401. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  1402. engines: {node: '>=0.10.0'}
  1403. strip-json-comments@3.1.1:
  1404. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1405. engines: {node: '>=8'}
  1406. supports-color@7.2.0:
  1407. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1408. engines: {node: '>=8'}
  1409. supports-color@8.1.1:
  1410. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  1411. engines: {node: '>=10'}
  1412. supports-preserve-symlinks-flag@1.0.0:
  1413. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1414. engines: {node: '>= 0.4'}
  1415. synckit@0.11.12:
  1416. resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
  1417. engines: {node: ^14.18.0 || >=16.0.0}
  1418. tapable@2.3.0:
  1419. resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
  1420. engines: {node: '>=6'}
  1421. tar-fs@2.1.3:
  1422. resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==}
  1423. tar-fs@3.1.2:
  1424. resolution: {integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==}
  1425. tar-stream@2.2.0:
  1426. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  1427. engines: {node: '>=6'}
  1428. tar-stream@3.1.7:
  1429. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  1430. telegram@2.26.22:
  1431. resolution: {integrity: sha512-EIj7Yrjiu0Yosa3FZ/7EyPg9s6UiTi/zDQrFmR/2Mg7pIUU+XjAit1n1u9OU9h2oRnRM5M+67/fxzQluZpaJJg==}
  1432. text-decoder@1.2.3:
  1433. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  1434. tinyexec@1.0.4:
  1435. resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
  1436. engines: {node: '>=18'}
  1437. tinyglobby@0.2.15:
  1438. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1439. engines: {node: '>=12.0.0'}
  1440. tldts-core@7.0.25:
  1441. resolution: {integrity: sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==}
  1442. tldts-experimental@7.0.25:
  1443. resolution: {integrity: sha512-rFB8lPWHAf4II9+Zdlc6dwcJLIe6sqEzndcjfbcv9PdsFTlNYBgRI4y9aJzo7VMHvg/GRaUlFK+qZUyKpcE6zA==}
  1444. tldts@7.0.25:
  1445. resolution: {integrity: sha512-keinCnPbwXEUG3ilrWQZU+CqcTTzHq9m2HhoUP2l7Xmi8l1LuijAXLpAJ5zRW+ifKTNscs4NdCkfkDCBYm352w==}
  1446. hasBin: true
  1447. ts-api-utils@2.4.0:
  1448. resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
  1449. engines: {node: '>=18.12'}
  1450. peerDependencies:
  1451. typescript: '>=4.8.4'
  1452. ts-custom-error@3.3.1:
  1453. resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==}
  1454. engines: {node: '>=14.0.0'}
  1455. ts-declaration-location@1.0.7:
  1456. resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
  1457. peerDependencies:
  1458. typescript: '>=4.0.0'
  1459. tslib@2.8.1:
  1460. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1461. tunnel-agent@0.6.0:
  1462. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  1463. type-check@0.4.0:
  1464. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1465. engines: {node: '>= 0.8.0'}
  1466. type@2.7.3:
  1467. resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
  1468. typedarray-to-buffer@3.1.5:
  1469. resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
  1470. typescript-eslint@8.57.0:
  1471. resolution: {integrity: sha512-W8GcigEMEeB07xEZol8oJ26rigm3+bfPHxHvwbYUlu1fUDsGuQ7Hiskx5xGW/xM4USc9Ephe3jtv7ZYPQntHeA==}
  1472. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  1473. peerDependencies:
  1474. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  1475. typescript: '>=4.8.4 <6.0.0'
  1476. typescript@5.9.3:
  1477. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1478. engines: {node: '>=14.17'}
  1479. hasBin: true
  1480. undici-cache-store-better-sqlite3@1.0.0:
  1481. resolution: {integrity: sha512-bYwnd02xu+q7UVCR20Cnb+tVJVB5f1cKP7BUc/sxafEMhgWbRQ5S/pRNZP9Ykl2sasy2bHzSJPGXlOF+/ju4+Q==}
  1482. peerDependencies:
  1483. undici: '>=7.0.0'
  1484. undici-types@7.16.0:
  1485. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  1486. undici@7.24.3:
  1487. resolution: {integrity: sha512-eJdUmK/Wrx2d+mnWWmwwLRyA7OQCkLap60sk3dOK4ViZR7DKwwptwuIvFBg2HaiP9ESaEdhtpSymQPvytpmkCA==}
  1488. engines: {node: '>=20.18.1'}
  1489. unrs-resolver@1.11.1:
  1490. resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
  1491. uri-js@4.4.1:
  1492. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1493. utf-8-validate@5.0.10:
  1494. resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
  1495. engines: {node: '>=6.14.2'}
  1496. util-deprecate@1.0.2:
  1497. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1498. websocket@1.0.35:
  1499. resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
  1500. engines: {node: '>=4.0.0'}
  1501. webworker-shim@1.1.4:
  1502. resolution: {integrity: sha512-W/40L5W6ZQyGhYr3hJ7N/2SjdK5OdFtnYm94j6xlRyjckegXnIGwz0EdxdkQx6VGTglJjK8mqBhMz3fd3AY4bg==}
  1503. which@2.0.2:
  1504. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1505. engines: {node: '>= 8'}
  1506. hasBin: true
  1507. why-is-node-running@3.2.2:
  1508. resolution: {integrity: sha512-NKUzAelcoCXhXL4dJzKIwXeR8iEVqsA0Lq6Vnd0UXvgaKbzVo4ZTHROF2Jidrv+SgxOQ03fMinnNhzZATxOD3A==}
  1509. engines: {node: '>=20.11'}
  1510. hasBin: true
  1511. word-wrap@1.2.5:
  1512. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1513. engines: {node: '>=0.10.0'}
  1514. workerpool@9.3.3:
  1515. resolution: {integrity: sha512-slxCaKbYjEdFT/o2rH9xS1hf4uRDch1w7Uo+apxhZ+sf/1d9e0ZVkn42kPNGP2dgjIx6YFvSevj0zHvbWe2jdw==}
  1516. worktank@3.0.2:
  1517. resolution: {integrity: sha512-ry5gPtWnakOnUBAAa2aiyWZwAFJuBtd/MwZH6o9DXnQHD4AZvidtl2uTLrb2d3Zjy9D04n84lHJNnIETQl7tuA==}
  1518. wrap-ansi@7.0.0:
  1519. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1520. engines: {node: '>=10'}
  1521. wrap-ansi@8.1.0:
  1522. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1523. engines: {node: '>=12'}
  1524. wrappy@1.0.2:
  1525. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1526. write-file-atomic@1.3.4:
  1527. resolution: {integrity: sha512-SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw==}
  1528. xbits@0.2.0:
  1529. resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
  1530. y18n@5.0.8:
  1531. resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
  1532. engines: {node: '>=10'}
  1533. yaeti@0.0.6:
  1534. resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
  1535. engines: {node: '>=0.10.32'}
  1536. deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
  1537. yaml@2.8.2:
  1538. resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
  1539. engines: {node: '>= 14.6'}
  1540. hasBin: true
  1541. yargs-parser@21.1.1:
  1542. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1543. engines: {node: '>=12'}
  1544. yargs-unparser@2.0.0:
  1545. resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
  1546. engines: {node: '>=10'}
  1547. yargs@17.7.2:
  1548. resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
  1549. engines: {node: '>=12'}
  1550. yauzl-promise@4.0.0:
  1551. resolution: {integrity: sha512-/HCXpyHXJQQHvFq9noqrjfa/WpQC2XYs3vI7tBiAi4QiIU1knvYhZGaO1QPjwIVMdqflxbmwgMXtYeaRiAE0CA==}
  1552. engines: {node: '>=16'}
  1553. yocto-queue@0.1.0:
  1554. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1555. engines: {node: '>=10'}
  1556. snapshots:
  1557. '@antfu/install-pkg@1.1.0':
  1558. dependencies:
  1559. package-manager-detector: 1.5.0
  1560. tinyexec: 1.0.4
  1561. '@cryptography/aes@0.1.1': {}
  1562. '@emnapi/core@1.7.1':
  1563. dependencies:
  1564. '@emnapi/wasi-threads': 1.1.0
  1565. tslib: 2.8.1
  1566. optional: true
  1567. '@emnapi/runtime@1.7.1':
  1568. dependencies:
  1569. tslib: 2.8.1
  1570. optional: true
  1571. '@emnapi/wasi-threads@1.1.0':
  1572. dependencies:
  1573. tslib: 2.8.1
  1574. optional: true
  1575. '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.0.3)':
  1576. dependencies:
  1577. escape-string-regexp: 4.0.0
  1578. eslint: 10.0.3
  1579. ignore: 7.0.5
  1580. '@eslint-community/eslint-utils@4.9.1(eslint@10.0.3)':
  1581. dependencies:
  1582. eslint: 10.0.3
  1583. eslint-visitor-keys: 3.4.3
  1584. '@eslint-community/regexpp@4.12.2': {}
  1585. '@eslint-sukka/eslint-plugin-stylistic@8.8.0(eslint@10.0.3)':
  1586. dependencies:
  1587. eslint: 10.0.3
  1588. '@eslint-sukka/eslint-plugin-sukka-full@8.8.0(eslint@10.0.3)(typescript@5.9.3)':
  1589. dependencies:
  1590. eslint: 10.0.3
  1591. eslint-plugin-sukka: 9.0.3(eslint@10.0.3)(typescript@5.9.3)
  1592. optionalDependencies:
  1593. typescript: 5.9.3
  1594. transitivePeerDependencies:
  1595. - supports-color
  1596. '@eslint-sukka/node@8.8.0(eslint@10.0.3)(typescript@5.9.3)':
  1597. dependencies:
  1598. '@eslint-sukka/eslint-plugin-sukka-full': 8.8.0(eslint@10.0.3)(typescript@5.9.3)
  1599. '@eslint-sukka/shared': 8.8.0(eslint@10.0.3)(typescript@5.9.3)
  1600. eslint-plugin-n: 17.24.0(eslint@10.0.3)(typescript@5.9.3)
  1601. transitivePeerDependencies:
  1602. - eslint
  1603. - supports-color
  1604. - typescript
  1605. '@eslint-sukka/shared@8.8.0(eslint@10.0.3)(typescript@5.9.3)':
  1606. dependencies:
  1607. '@package-json/types': 0.0.12
  1608. '@typescript-eslint/utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  1609. eslint: 10.0.3
  1610. foxts: 5.3.0
  1611. oxc-resolver: 11.19.1
  1612. transitivePeerDependencies:
  1613. - supports-color
  1614. - typescript
  1615. '@eslint/config-array@0.23.3':
  1616. dependencies:
  1617. '@eslint/object-schema': 3.0.3
  1618. debug: 4.4.3(supports-color@8.1.1)
  1619. minimatch: 10.2.4
  1620. transitivePeerDependencies:
  1621. - supports-color
  1622. '@eslint/config-helpers@0.5.3':
  1623. dependencies:
  1624. '@eslint/core': 1.1.1
  1625. '@eslint/core@1.1.1':
  1626. dependencies:
  1627. '@types/json-schema': 7.0.15
  1628. '@eslint/js@10.0.1(eslint@10.0.3)':
  1629. optionalDependencies:
  1630. eslint: 10.0.3
  1631. '@eslint/object-schema@3.0.3': {}
  1632. '@eslint/plugin-kit@0.6.1':
  1633. dependencies:
  1634. '@eslint/core': 1.1.1
  1635. levn: 0.4.1
  1636. '@ghostery/adblocker-content@2.14.1':
  1637. dependencies:
  1638. '@ghostery/adblocker-extended-selectors': 2.14.1
  1639. '@ghostery/adblocker-extended-selectors@2.14.1': {}
  1640. '@ghostery/adblocker@2.14.1':
  1641. dependencies:
  1642. '@ghostery/adblocker-content': 2.14.1
  1643. '@ghostery/adblocker-extended-selectors': 2.14.1
  1644. '@ghostery/url-parser': 1.3.1
  1645. '@remusao/guess-url-type': 2.1.0
  1646. '@remusao/small': 2.1.0
  1647. '@remusao/smaz': 2.2.0
  1648. tldts-experimental: 7.0.25
  1649. '@ghostery/url-parser@1.3.1':
  1650. dependencies:
  1651. tldts-experimental: 7.0.25
  1652. '@henrygd/queue@1.2.0': {}
  1653. '@humanfs/core@0.19.1': {}
  1654. '@humanfs/node@0.16.6':
  1655. dependencies:
  1656. '@humanfs/core': 0.19.1
  1657. '@humanwhocodes/retry': 0.3.1
  1658. '@humanwhocodes/module-importer@1.0.1': {}
  1659. '@humanwhocodes/retry@0.3.1': {}
  1660. '@humanwhocodes/retry@0.4.3': {}
  1661. '@isaacs/cliui@8.0.2':
  1662. dependencies:
  1663. string-width: 5.1.2
  1664. string-width-cjs: string-width@4.2.3
  1665. strip-ansi: 7.1.0
  1666. strip-ansi-cjs: strip-ansi@6.0.1
  1667. wrap-ansi: 8.1.0
  1668. wrap-ansi-cjs: wrap-ansi@7.0.0
  1669. '@mitata/counters@0.0.8': {}
  1670. '@napi-rs/wasm-runtime@0.2.12':
  1671. dependencies:
  1672. '@emnapi/core': 1.7.1
  1673. '@emnapi/runtime': 1.7.1
  1674. '@tybys/wasm-util': 0.10.1
  1675. optional: true
  1676. '@napi-rs/wasm-runtime@1.1.1':
  1677. dependencies:
  1678. '@emnapi/core': 1.7.1
  1679. '@emnapi/runtime': 1.7.1
  1680. '@tybys/wasm-util': 0.10.1
  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.12
  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. '@nolyfill/globalthis@1.0.44':
  1729. dependencies:
  1730. '@nolyfill/shared': 1.0.44
  1731. '@nolyfill/safe-buffer@1.0.44': {}
  1732. '@nolyfill/shared@1.0.44': {}
  1733. '@ota-meshi/ast-token-store@0.3.0': {}
  1734. '@oxc-resolver/binding-android-arm-eabi@11.19.1':
  1735. optional: true
  1736. '@oxc-resolver/binding-android-arm64@11.19.1':
  1737. optional: true
  1738. '@oxc-resolver/binding-darwin-arm64@11.19.1':
  1739. optional: true
  1740. '@oxc-resolver/binding-darwin-x64@11.19.1':
  1741. optional: true
  1742. '@oxc-resolver/binding-freebsd-x64@11.19.1':
  1743. optional: true
  1744. '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1':
  1745. optional: true
  1746. '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1':
  1747. optional: true
  1748. '@oxc-resolver/binding-linux-arm64-gnu@11.19.1':
  1749. optional: true
  1750. '@oxc-resolver/binding-linux-arm64-musl@11.19.1':
  1751. optional: true
  1752. '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1':
  1753. optional: true
  1754. '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1':
  1755. optional: true
  1756. '@oxc-resolver/binding-linux-riscv64-musl@11.19.1':
  1757. optional: true
  1758. '@oxc-resolver/binding-linux-s390x-gnu@11.19.1':
  1759. optional: true
  1760. '@oxc-resolver/binding-linux-x64-gnu@11.19.1':
  1761. optional: true
  1762. '@oxc-resolver/binding-linux-x64-musl@11.19.1':
  1763. optional: true
  1764. '@oxc-resolver/binding-openharmony-arm64@11.19.1':
  1765. optional: true
  1766. '@oxc-resolver/binding-wasm32-wasi@11.19.1':
  1767. dependencies:
  1768. '@napi-rs/wasm-runtime': 1.1.1
  1769. optional: true
  1770. '@oxc-resolver/binding-win32-arm64-msvc@11.19.1':
  1771. optional: true
  1772. '@oxc-resolver/binding-win32-ia32-msvc@11.19.1':
  1773. optional: true
  1774. '@oxc-resolver/binding-win32-x64-msvc@11.19.1':
  1775. optional: true
  1776. '@package-json/types@0.0.12': {}
  1777. '@pkgjs/parseargs@0.11.0':
  1778. optional: true
  1779. '@pkgr/core@0.2.9': {}
  1780. '@remusao/guess-url-type@2.1.0': {}
  1781. '@remusao/small@2.1.0': {}
  1782. '@remusao/smaz-compress@2.2.0':
  1783. dependencies:
  1784. '@remusao/trie': 2.1.0
  1785. '@remusao/smaz-decompress@2.2.0': {}
  1786. '@remusao/smaz@2.2.0':
  1787. dependencies:
  1788. '@remusao/smaz-compress': 2.2.0
  1789. '@remusao/smaz-decompress': 2.2.0
  1790. '@remusao/trie@2.1.0': {}
  1791. '@swc-node/core@1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)':
  1792. dependencies:
  1793. '@swc/core': 1.13.5
  1794. '@swc/types': 0.1.25
  1795. '@swc-node/register@1.11.1(@swc/core@1.13.5)(@swc/types@0.1.25)(typescript@5.9.3)':
  1796. dependencies:
  1797. '@swc-node/core': 1.14.1(@swc/core@1.13.5)(@swc/types@0.1.25)
  1798. '@swc-node/sourcemap-support': 0.6.1
  1799. '@swc/core': 1.13.5
  1800. colorette: 2.0.20
  1801. debug: 4.4.3(supports-color@8.1.1)
  1802. oxc-resolver: 11.19.1
  1803. pirates: 4.0.7
  1804. tslib: 2.8.1
  1805. typescript: 5.9.3
  1806. transitivePeerDependencies:
  1807. - '@swc/types'
  1808. - supports-color
  1809. '@swc-node/sourcemap-support@0.6.1':
  1810. dependencies:
  1811. source-map-support: 0.5.21
  1812. tslib: 2.8.1
  1813. '@swc/core-darwin-arm64@1.13.5':
  1814. optional: true
  1815. '@swc/core-darwin-x64@1.13.5':
  1816. optional: true
  1817. '@swc/core-linux-arm-gnueabihf@1.13.5':
  1818. optional: true
  1819. '@swc/core-linux-arm64-gnu@1.13.5':
  1820. optional: true
  1821. '@swc/core-linux-arm64-musl@1.13.5':
  1822. optional: true
  1823. '@swc/core-linux-x64-gnu@1.13.5':
  1824. optional: true
  1825. '@swc/core-linux-x64-musl@1.13.5':
  1826. optional: true
  1827. '@swc/core-win32-arm64-msvc@1.13.5':
  1828. optional: true
  1829. '@swc/core-win32-ia32-msvc@1.13.5':
  1830. optional: true
  1831. '@swc/core-win32-x64-msvc@1.13.5':
  1832. optional: true
  1833. '@swc/core@1.13.5':
  1834. dependencies:
  1835. '@swc/counter': 0.1.3
  1836. '@swc/types': 0.1.25
  1837. optionalDependencies:
  1838. '@swc/core-darwin-arm64': 1.13.5
  1839. '@swc/core-darwin-x64': 1.13.5
  1840. '@swc/core-linux-arm-gnueabihf': 1.13.5
  1841. '@swc/core-linux-arm64-gnu': 1.13.5
  1842. '@swc/core-linux-arm64-musl': 1.13.5
  1843. '@swc/core-linux-x64-gnu': 1.13.5
  1844. '@swc/core-linux-x64-musl': 1.13.5
  1845. '@swc/core-win32-arm64-msvc': 1.13.5
  1846. '@swc/core-win32-ia32-msvc': 1.13.5
  1847. '@swc/core-win32-x64-msvc': 1.13.5
  1848. '@swc/counter@0.1.3': {}
  1849. '@swc/types@0.1.25':
  1850. dependencies:
  1851. '@swc/counter': 0.1.3
  1852. '@tybys/wasm-util@0.10.1':
  1853. dependencies:
  1854. tslib: 2.8.1
  1855. optional: true
  1856. '@types/better-sqlite3@7.6.13':
  1857. dependencies:
  1858. '@types/node': 24.12.0
  1859. '@types/cli-progress@3.11.6':
  1860. dependencies:
  1861. '@types/node': 24.12.0
  1862. '@types/esrecurse@4.3.1': {}
  1863. '@types/estree@1.0.8': {}
  1864. '@types/json-schema@7.0.15': {}
  1865. '@types/mocha@10.0.10': {}
  1866. '@types/node@24.12.0':
  1867. dependencies:
  1868. undici-types: 7.16.0
  1869. '@types/tar-fs@2.0.4':
  1870. dependencies:
  1871. '@types/node': 24.12.0
  1872. '@types/tar-stream': 3.1.4
  1873. '@types/tar-stream@3.1.4':
  1874. dependencies:
  1875. '@types/node': 24.12.0
  1876. '@types/yauzl-promise@4.0.1':
  1877. dependencies:
  1878. '@types/node': 24.12.0
  1879. '@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)(typescript@5.9.3)':
  1880. dependencies:
  1881. '@eslint-community/regexpp': 4.12.2
  1882. '@typescript-eslint/parser': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  1883. '@typescript-eslint/scope-manager': 8.57.0
  1884. '@typescript-eslint/type-utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  1885. '@typescript-eslint/utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  1886. '@typescript-eslint/visitor-keys': 8.57.0
  1887. eslint: 10.0.3
  1888. ignore: 7.0.5
  1889. natural-compare: 1.4.0
  1890. ts-api-utils: 2.4.0(typescript@5.9.3)
  1891. typescript: 5.9.3
  1892. transitivePeerDependencies:
  1893. - supports-color
  1894. '@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3)':
  1895. dependencies:
  1896. '@typescript-eslint/scope-manager': 8.57.0
  1897. '@typescript-eslint/types': 8.57.0
  1898. '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
  1899. '@typescript-eslint/visitor-keys': 8.57.0
  1900. debug: 4.4.3(supports-color@8.1.1)
  1901. eslint: 10.0.3
  1902. typescript: 5.9.3
  1903. transitivePeerDependencies:
  1904. - supports-color
  1905. '@typescript-eslint/project-service@8.57.0(typescript@5.9.3)':
  1906. dependencies:
  1907. '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
  1908. '@typescript-eslint/types': 8.57.0
  1909. debug: 4.4.3(supports-color@8.1.1)
  1910. typescript: 5.9.3
  1911. transitivePeerDependencies:
  1912. - supports-color
  1913. '@typescript-eslint/scope-manager@8.57.0':
  1914. dependencies:
  1915. '@typescript-eslint/types': 8.57.0
  1916. '@typescript-eslint/visitor-keys': 8.57.0
  1917. '@typescript-eslint/tsconfig-utils@8.57.0(typescript@5.9.3)':
  1918. dependencies:
  1919. typescript: 5.9.3
  1920. '@typescript-eslint/type-utils@8.57.0(eslint@10.0.3)(typescript@5.9.3)':
  1921. dependencies:
  1922. '@typescript-eslint/types': 8.57.0
  1923. '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
  1924. '@typescript-eslint/utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  1925. debug: 4.4.3(supports-color@8.1.1)
  1926. eslint: 10.0.3
  1927. ts-api-utils: 2.4.0(typescript@5.9.3)
  1928. typescript: 5.9.3
  1929. transitivePeerDependencies:
  1930. - supports-color
  1931. '@typescript-eslint/types@8.57.0': {}
  1932. '@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3)':
  1933. dependencies:
  1934. '@typescript-eslint/project-service': 8.57.0(typescript@5.9.3)
  1935. '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
  1936. '@typescript-eslint/types': 8.57.0
  1937. '@typescript-eslint/visitor-keys': 8.57.0
  1938. debug: 4.4.3(supports-color@8.1.1)
  1939. minimatch: 10.2.4
  1940. semver: 7.7.3
  1941. tinyglobby: 0.2.15
  1942. ts-api-utils: 2.4.0(typescript@5.9.3)
  1943. typescript: 5.9.3
  1944. transitivePeerDependencies:
  1945. - supports-color
  1946. '@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3)':
  1947. dependencies:
  1948. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  1949. '@typescript-eslint/scope-manager': 8.57.0
  1950. '@typescript-eslint/types': 8.57.0
  1951. '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
  1952. eslint: 10.0.3
  1953. typescript: 5.9.3
  1954. transitivePeerDependencies:
  1955. - supports-color
  1956. '@typescript-eslint/visitor-keys@8.57.0':
  1957. dependencies:
  1958. '@typescript-eslint/types': 8.57.0
  1959. eslint-visitor-keys: 5.0.1
  1960. '@unrs/resolver-binding-android-arm-eabi@1.11.1':
  1961. optional: true
  1962. '@unrs/resolver-binding-android-arm64@1.11.1':
  1963. optional: true
  1964. '@unrs/resolver-binding-darwin-arm64@1.11.1':
  1965. optional: true
  1966. '@unrs/resolver-binding-darwin-x64@1.11.1':
  1967. optional: true
  1968. '@unrs/resolver-binding-freebsd-x64@1.11.1':
  1969. optional: true
  1970. '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
  1971. optional: true
  1972. '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
  1973. optional: true
  1974. '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
  1975. optional: true
  1976. '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
  1977. optional: true
  1978. '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
  1979. optional: true
  1980. '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
  1981. optional: true
  1982. '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
  1983. optional: true
  1984. '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
  1985. optional: true
  1986. '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
  1987. optional: true
  1988. '@unrs/resolver-binding-linux-x64-musl@1.11.1':
  1989. optional: true
  1990. '@unrs/resolver-binding-wasm32-wasi@1.11.1':
  1991. dependencies:
  1992. '@napi-rs/wasm-runtime': 0.2.12
  1993. optional: true
  1994. '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
  1995. optional: true
  1996. '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
  1997. optional: true
  1998. '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
  1999. optional: true
  2000. acorn-jsx@5.3.2(acorn@8.16.0):
  2001. dependencies:
  2002. acorn: 8.16.0
  2003. acorn@8.16.0: {}
  2004. ajv@6.14.0:
  2005. dependencies:
  2006. fast-deep-equal: 3.1.3
  2007. fast-json-stable-stringify: 2.1.0
  2008. json-schema-traverse: 0.4.1
  2009. uri-js: 4.4.1
  2010. ansi-regex@5.0.1: {}
  2011. ansi-regex@6.2.0: {}
  2012. ansi-styles@4.3.0:
  2013. dependencies:
  2014. color-convert: 2.0.1
  2015. ansi-styles@6.2.1: {}
  2016. argparse@2.0.1: {}
  2017. async-mutex@0.3.2:
  2018. dependencies:
  2019. tslib: 2.8.1
  2020. b4a@1.6.7: {}
  2021. balanced-match@1.0.2: {}
  2022. balanced-match@4.0.4: {}
  2023. bare-events@2.6.1:
  2024. optional: true
  2025. bare-fs@4.2.1:
  2026. dependencies:
  2027. bare-events: 2.6.1
  2028. bare-path: 3.0.0
  2029. bare-stream: 2.7.0(bare-events@2.6.1)
  2030. optional: true
  2031. bare-os@3.6.2:
  2032. optional: true
  2033. bare-path@3.0.0:
  2034. dependencies:
  2035. bare-os: 3.6.2
  2036. optional: true
  2037. bare-stream@2.7.0(bare-events@2.6.1):
  2038. dependencies:
  2039. streamx: 2.22.1
  2040. optionalDependencies:
  2041. bare-events: 2.6.1
  2042. optional: true
  2043. base64-js@1.5.1: {}
  2044. better-sqlite3@11.10.0:
  2045. dependencies:
  2046. bindings: 1.5.0
  2047. prebuild-install: 7.1.3
  2048. big-integer@1.6.52: {}
  2049. bindings@1.5.0:
  2050. dependencies:
  2051. file-uri-to-path: 1.0.0
  2052. bl@4.1.0:
  2053. dependencies:
  2054. buffer: 5.7.1
  2055. inherits: 2.0.4
  2056. readable-stream: 3.6.2
  2057. brace-expansion@2.0.2:
  2058. dependencies:
  2059. balanced-match: 1.0.2
  2060. brace-expansion@5.0.3:
  2061. dependencies:
  2062. balanced-match: 4.0.4
  2063. browser-stdout@1.3.1: {}
  2064. buffer-from@1.1.2: {}
  2065. buffer@5.7.1:
  2066. dependencies:
  2067. base64-js: 1.5.1
  2068. ieee754: 1.2.1
  2069. buffer@6.0.3:
  2070. dependencies:
  2071. base64-js: 1.5.1
  2072. ieee754: 1.2.1
  2073. bufferutil@4.0.9:
  2074. dependencies:
  2075. node-gyp-build: 4.8.4
  2076. camelcase@6.3.0: {}
  2077. chalk@4.1.2:
  2078. dependencies:
  2079. ansi-styles: 4.3.0
  2080. supports-color: 7.2.0
  2081. chokidar@4.0.3:
  2082. dependencies:
  2083. readdirp: 4.1.2
  2084. chownr@1.1.4: {}
  2085. ci-info@4.4.0: {}
  2086. cli-progress@3.12.0:
  2087. dependencies:
  2088. string-width: 4.2.3
  2089. cliui@8.0.1:
  2090. dependencies:
  2091. string-width: 4.2.3
  2092. strip-ansi: 6.0.1
  2093. wrap-ansi: 7.0.0
  2094. color-convert@2.0.1:
  2095. dependencies:
  2096. color-name: 1.1.4
  2097. color-name@1.1.4: {}
  2098. colorette@2.0.20: {}
  2099. comment-parser@1.4.1: {}
  2100. cross-spawn@7.0.6:
  2101. dependencies:
  2102. path-key: 3.1.1
  2103. shebang-command: 2.0.0
  2104. which: 2.0.2
  2105. csv-parse@6.1.0: {}
  2106. d@1.0.2:
  2107. dependencies:
  2108. es5-ext: 0.10.64
  2109. type: 2.7.3
  2110. debug@2.6.9:
  2111. dependencies:
  2112. ms: 2.0.0
  2113. debug@3.2.7:
  2114. dependencies:
  2115. ms: 2.1.3
  2116. optional: true
  2117. debug@4.4.1:
  2118. dependencies:
  2119. ms: 2.1.3
  2120. debug@4.4.3(supports-color@8.1.1):
  2121. dependencies:
  2122. ms: 2.1.3
  2123. optionalDependencies:
  2124. supports-color: 8.1.1
  2125. decamelize@4.0.0: {}
  2126. decompress-response@6.0.0:
  2127. dependencies:
  2128. mimic-response: 3.1.0
  2129. deep-extend@0.6.0: {}
  2130. deep-is@0.1.4: {}
  2131. defu@6.1.4: {}
  2132. detect-libc@2.0.4: {}
  2133. diff-sequences@29.6.3: {}
  2134. diff@7.0.0: {}
  2135. dom-serializer@1.4.1:
  2136. dependencies:
  2137. domelementtype: 2.3.0
  2138. domhandler: 4.3.1
  2139. entities: 2.2.0
  2140. domain-alive@0.1.17:
  2141. dependencies:
  2142. debug: 4.4.1
  2143. foxts: 5.3.0
  2144. tldts: 7.0.25
  2145. transitivePeerDependencies:
  2146. - supports-color
  2147. domelementtype@2.3.0: {}
  2148. domhandler@4.3.1:
  2149. dependencies:
  2150. domelementtype: 2.3.0
  2151. domutils@2.8.0:
  2152. dependencies:
  2153. dom-serializer: 1.4.1
  2154. domelementtype: 2.3.0
  2155. domhandler: 4.3.1
  2156. earl@2.0.0:
  2157. dependencies:
  2158. error-stack-parser: 2.1.4
  2159. eastasianwidth@0.2.0: {}
  2160. emoji-regex@8.0.0: {}
  2161. emoji-regex@9.2.2: {}
  2162. end-of-stream@1.4.5:
  2163. dependencies:
  2164. once: 1.4.0
  2165. enhanced-resolve@5.18.3:
  2166. dependencies:
  2167. graceful-fs: 4.2.11
  2168. tapable: 2.3.0
  2169. entities@2.2.0: {}
  2170. error-stack-parser@2.1.4:
  2171. dependencies:
  2172. stackframe: 1.3.4
  2173. es5-ext@0.10.64:
  2174. dependencies:
  2175. es6-iterator: 2.0.3
  2176. es6-symbol: 3.1.4
  2177. esniff: 2.0.1
  2178. next-tick: 1.1.0
  2179. es6-iterator@2.0.3:
  2180. dependencies:
  2181. d: 1.0.2
  2182. es5-ext: 0.10.64
  2183. es6-symbol: 3.1.4
  2184. es6-symbol@3.1.4:
  2185. dependencies:
  2186. d: 1.0.2
  2187. ext: 1.7.0
  2188. escalade@3.2.0: {}
  2189. escape-string-regexp@4.0.0: {}
  2190. eslint-compat-utils@0.5.1(eslint@10.0.3):
  2191. dependencies:
  2192. eslint: 10.0.3
  2193. semver: 7.7.3
  2194. eslint-config-sukka@8.8.0(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3)(typescript@5.9.3):
  2195. dependencies:
  2196. '@antfu/install-pkg': 1.1.0
  2197. '@eslint-community/eslint-plugin-eslint-comments': 4.7.1(eslint@10.0.3)
  2198. '@eslint-sukka/eslint-plugin-stylistic': 8.8.0(eslint@10.0.3)
  2199. '@eslint-sukka/eslint-plugin-sukka-full': 8.8.0(eslint@10.0.3)(typescript@5.9.3)
  2200. '@eslint-sukka/shared': 8.8.0(eslint@10.0.3)(typescript@5.9.3)
  2201. '@eslint/config-helpers': 0.5.3
  2202. '@eslint/js': 10.0.1(eslint@10.0.3)
  2203. '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)(typescript@5.9.3)
  2204. '@typescript-eslint/parser': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2205. ci-info: 4.4.0
  2206. defu: 6.1.4
  2207. eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3))(eslint@10.0.3)
  2208. eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3)
  2209. eslint-plugin-jsonc: 3.1.2(eslint@10.0.3)
  2210. eslint-plugin-promise: 7.2.1(eslint@10.0.3)
  2211. eslint-plugin-regexp: 3.1.0(eslint@10.0.3)
  2212. eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)
  2213. foxts: 5.3.0
  2214. jsonc-eslint-parser: 3.1.0
  2215. picocolors: 1.1.1
  2216. typescript-eslint: 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2217. transitivePeerDependencies:
  2218. - '@eslint/json'
  2219. - '@typescript-eslint/utils'
  2220. - eslint
  2221. - eslint-import-resolver-node
  2222. - eslint-plugin-import
  2223. - supports-color
  2224. - typescript
  2225. eslint-formatter-sukka@8.8.0(eslint@10.0.3):
  2226. dependencies:
  2227. ci-info: 4.4.0
  2228. eslint: 10.0.3
  2229. foxts: 5.3.0
  2230. picocolors: 1.1.1
  2231. eslint-import-context@0.1.9(unrs-resolver@1.11.1):
  2232. dependencies:
  2233. get-tsconfig: 4.12.0
  2234. stable-hash-x: 0.2.0
  2235. optionalDependencies:
  2236. unrs-resolver: 1.11.1
  2237. eslint-import-resolver-node@0.3.9:
  2238. dependencies:
  2239. debug: 3.2.7
  2240. is-core-module: 2.16.1
  2241. resolve: 1.22.10
  2242. transitivePeerDependencies:
  2243. - supports-color
  2244. optional: true
  2245. eslint-import-resolver-typescript@4.4.4(eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3))(eslint@10.0.3):
  2246. dependencies:
  2247. debug: 4.4.3(supports-color@8.1.1)
  2248. eslint: 10.0.3
  2249. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2250. get-tsconfig: 4.12.0
  2251. is-bun-module: 2.0.0
  2252. stable-hash-x: 0.2.0
  2253. tinyglobby: 0.2.15
  2254. unrs-resolver: 1.11.1
  2255. optionalDependencies:
  2256. eslint-plugin-import-x: 4.16.2(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3)
  2257. transitivePeerDependencies:
  2258. - supports-color
  2259. eslint-json-compat-utils@0.2.3(eslint@10.0.3)(jsonc-eslint-parser@3.1.0):
  2260. dependencies:
  2261. eslint: 10.0.3
  2262. esquery: 1.7.0
  2263. jsonc-eslint-parser: 3.1.0
  2264. eslint-plugin-es-x@7.8.0(eslint@10.0.3):
  2265. dependencies:
  2266. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  2267. '@eslint-community/regexpp': 4.12.2
  2268. eslint: 10.0.3
  2269. eslint-compat-utils: 0.5.1(eslint@10.0.3)
  2270. eslint-plugin-import-x@4.16.2(@typescript-eslint/utils@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@10.0.3):
  2271. dependencies:
  2272. '@package-json/types': 0.0.12
  2273. '@typescript-eslint/types': 8.57.0
  2274. comment-parser: 1.4.1
  2275. debug: 4.4.3(supports-color@8.1.1)
  2276. eslint: 10.0.3
  2277. eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
  2278. is-glob: 4.0.3
  2279. minimatch: 10.2.4
  2280. semver: 7.7.3
  2281. stable-hash-x: 0.2.0
  2282. unrs-resolver: 1.11.1
  2283. optionalDependencies:
  2284. '@typescript-eslint/utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2285. eslint-import-resolver-node: 0.3.9
  2286. transitivePeerDependencies:
  2287. - supports-color
  2288. eslint-plugin-jsonc@3.1.2(eslint@10.0.3):
  2289. dependencies:
  2290. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  2291. '@eslint/core': 1.1.1
  2292. '@eslint/plugin-kit': 0.6.1
  2293. '@ota-meshi/ast-token-store': 0.3.0
  2294. diff-sequences: 29.6.3
  2295. eslint: 10.0.3
  2296. eslint-json-compat-utils: 0.2.3(eslint@10.0.3)(jsonc-eslint-parser@3.1.0)
  2297. jsonc-eslint-parser: 3.1.0
  2298. natural-compare: 1.4.0
  2299. synckit: 0.11.12
  2300. transitivePeerDependencies:
  2301. - '@eslint/json'
  2302. eslint-plugin-n@17.24.0(eslint@10.0.3)(typescript@5.9.3):
  2303. dependencies:
  2304. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  2305. enhanced-resolve: 5.18.3
  2306. eslint: 10.0.3
  2307. eslint-plugin-es-x: 7.8.0(eslint@10.0.3)
  2308. get-tsconfig: 4.12.0
  2309. globals: 15.15.0
  2310. globrex: 0.1.2
  2311. ignore: 5.3.2
  2312. semver: 7.7.3
  2313. ts-declaration-location: 1.0.7(typescript@5.9.3)
  2314. transitivePeerDependencies:
  2315. - typescript
  2316. eslint-plugin-promise@7.2.1(eslint@10.0.3):
  2317. dependencies:
  2318. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  2319. eslint: 10.0.3
  2320. eslint-plugin-regexp@3.1.0(eslint@10.0.3):
  2321. dependencies:
  2322. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  2323. '@eslint-community/regexpp': 4.12.2
  2324. comment-parser: 1.4.1
  2325. eslint: 10.0.3
  2326. jsdoc-type-pratt-parser: 7.1.1
  2327. refa: 0.12.1
  2328. regexp-ast-analysis: 0.7.1
  2329. scslre: 0.3.0
  2330. eslint-plugin-sukka@9.0.3(eslint@10.0.3)(typescript@5.9.3):
  2331. dependencies:
  2332. '@typescript-eslint/type-utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2333. '@typescript-eslint/types': 8.57.0
  2334. '@typescript-eslint/utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2335. eslint: 10.0.3
  2336. foxts: 5.3.0
  2337. typescript: 5.9.3
  2338. transitivePeerDependencies:
  2339. - supports-color
  2340. eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3):
  2341. dependencies:
  2342. eslint: 10.0.3
  2343. optionalDependencies:
  2344. '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)(typescript@5.9.3)
  2345. eslint-scope@9.1.2:
  2346. dependencies:
  2347. '@types/esrecurse': 4.3.1
  2348. '@types/estree': 1.0.8
  2349. esrecurse: 4.3.0
  2350. estraverse: 5.3.0
  2351. eslint-visitor-keys@3.4.3: {}
  2352. eslint-visitor-keys@5.0.1: {}
  2353. eslint@10.0.3:
  2354. dependencies:
  2355. '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3)
  2356. '@eslint-community/regexpp': 4.12.2
  2357. '@eslint/config-array': 0.23.3
  2358. '@eslint/config-helpers': 0.5.3
  2359. '@eslint/core': 1.1.1
  2360. '@eslint/plugin-kit': 0.6.1
  2361. '@humanfs/node': 0.16.6
  2362. '@humanwhocodes/module-importer': 1.0.1
  2363. '@humanwhocodes/retry': 0.4.3
  2364. '@types/estree': 1.0.8
  2365. ajv: 6.14.0
  2366. cross-spawn: 7.0.6
  2367. debug: 4.4.3(supports-color@8.1.1)
  2368. escape-string-regexp: 4.0.0
  2369. eslint-scope: 9.1.2
  2370. eslint-visitor-keys: 5.0.1
  2371. espree: 11.1.1
  2372. esquery: 1.7.0
  2373. esutils: 2.0.3
  2374. fast-deep-equal: 3.1.3
  2375. file-entry-cache: 8.0.0
  2376. find-up: 5.0.0
  2377. glob-parent: 6.0.2
  2378. ignore: 5.3.2
  2379. imurmurhash: 0.1.4
  2380. is-glob: 4.0.3
  2381. json-stable-stringify-without-jsonify: 1.0.1
  2382. minimatch: 10.2.4
  2383. natural-compare: 1.4.0
  2384. optionator: 0.9.4
  2385. transitivePeerDependencies:
  2386. - supports-color
  2387. esniff@2.0.1:
  2388. dependencies:
  2389. d: 1.0.2
  2390. es5-ext: 0.10.64
  2391. event-emitter: 0.3.5
  2392. type: 2.7.3
  2393. espree@11.1.1:
  2394. dependencies:
  2395. acorn: 8.16.0
  2396. acorn-jsx: 5.3.2(acorn@8.16.0)
  2397. eslint-visitor-keys: 5.0.1
  2398. esquery@1.7.0:
  2399. dependencies:
  2400. estraverse: 5.3.0
  2401. esrecurse@4.3.0:
  2402. dependencies:
  2403. estraverse: 5.3.0
  2404. estraverse@5.3.0: {}
  2405. esutils@2.0.3: {}
  2406. event-emitter@0.3.5:
  2407. dependencies:
  2408. d: 1.0.2
  2409. es5-ext: 0.10.64
  2410. expand-template@2.0.3: {}
  2411. ext@1.7.0:
  2412. dependencies:
  2413. type: 2.7.3
  2414. fast-cidr-tools@0.3.4:
  2415. dependencies:
  2416. foxts: 4.6.0
  2417. fast-deep-equal@3.1.3: {}
  2418. fast-escape-html@1.1.0: {}
  2419. fast-escape-regexp@1.0.1: {}
  2420. fast-fifo@1.3.2: {}
  2421. fast-json-stable-stringify@2.1.0: {}
  2422. fast-levenshtein@2.0.6: {}
  2423. fast-uri@3.1.0: {}
  2424. fdir@6.5.0(picomatch@4.0.3):
  2425. optionalDependencies:
  2426. picomatch: 4.0.3
  2427. file-entry-cache@8.0.0:
  2428. dependencies:
  2429. flat-cache: 4.0.1
  2430. file-uri-to-path@1.0.0: {}
  2431. find-up@5.0.0:
  2432. dependencies:
  2433. locate-path: 6.0.0
  2434. path-exists: 4.0.0
  2435. flat-cache@4.0.1:
  2436. dependencies:
  2437. flatted: 3.3.3
  2438. keyv: 4.5.4
  2439. flat@5.0.2: {}
  2440. flatted@3.3.3: {}
  2441. foreground-child@3.3.1:
  2442. dependencies:
  2443. cross-spawn: 7.0.6
  2444. signal-exit: 4.1.0
  2445. foxts@3.15.0:
  2446. dependencies:
  2447. fast-escape-html: 1.1.0
  2448. fast-escape-regexp: 1.0.1
  2449. foxts@4.6.0:
  2450. dependencies:
  2451. fast-escape-html: 1.1.0
  2452. fast-escape-regexp: 1.0.1
  2453. foxts@5.3.0: {}
  2454. fs-constants@1.0.0: {}
  2455. function-bind@1.1.2:
  2456. optional: true
  2457. get-caller-file@2.0.5: {}
  2458. get-tsconfig@4.12.0:
  2459. dependencies:
  2460. resolve-pkg-maps: 1.0.0
  2461. github-from-package@0.0.0: {}
  2462. glob-parent@6.0.2:
  2463. dependencies:
  2464. is-glob: 4.0.3
  2465. glob@10.4.5:
  2466. dependencies:
  2467. foreground-child: 3.3.1
  2468. jackspeak: 3.4.3
  2469. minimatch: 9.0.5
  2470. minipass: 7.1.2
  2471. package-json-from-dist: 1.0.1
  2472. path-scurry: 1.11.1
  2473. globals@15.15.0: {}
  2474. globrex@0.1.2: {}
  2475. graceful-fs@4.2.11: {}
  2476. has-flag@4.0.0: {}
  2477. hash-wasm@4.12.0: {}
  2478. hasown@2.0.2:
  2479. dependencies:
  2480. function-bind: 1.1.2
  2481. optional: true
  2482. he@1.2.0: {}
  2483. htmlparser2@6.1.0:
  2484. dependencies:
  2485. domelementtype: 2.3.0
  2486. domhandler: 4.3.1
  2487. domutils: 2.8.0
  2488. entities: 2.2.0
  2489. ieee754@1.2.1: {}
  2490. ignore@5.3.2: {}
  2491. ignore@7.0.5: {}
  2492. immediato@1.1.0: {}
  2493. imurmurhash@0.1.4: {}
  2494. inherits@2.0.4: {}
  2495. ini@1.3.8: {}
  2496. ip-address@10.0.1: {}
  2497. is-bun-module@2.0.0:
  2498. dependencies:
  2499. semver: 7.7.3
  2500. is-core-module@2.16.1:
  2501. dependencies:
  2502. hasown: 2.0.2
  2503. optional: true
  2504. is-extglob@2.1.1: {}
  2505. is-fullwidth-code-point@3.0.0: {}
  2506. is-glob@4.0.3:
  2507. dependencies:
  2508. is-extglob: 2.1.1
  2509. is-it-type@5.1.3:
  2510. dependencies:
  2511. globalthis: '@nolyfill/globalthis@1.0.44'
  2512. is-path-inside@3.0.3: {}
  2513. is-plain-obj@2.1.0: {}
  2514. is-typedarray@1.0.0: {}
  2515. is-unicode-supported@0.1.0: {}
  2516. isexe@2.0.0: {}
  2517. isoconcurrency@1.0.0: {}
  2518. isotimer@1.0.0:
  2519. dependencies:
  2520. immediato: 1.1.0
  2521. jackspeak@3.4.3:
  2522. dependencies:
  2523. '@isaacs/cliui': 8.0.2
  2524. optionalDependencies:
  2525. '@pkgjs/parseargs': 0.11.0
  2526. js-yaml@4.1.0:
  2527. dependencies:
  2528. argparse: 2.0.1
  2529. jsdoc-type-pratt-parser@7.1.1: {}
  2530. json-buffer@3.0.1: {}
  2531. json-schema-traverse@0.4.1: {}
  2532. json-stable-stringify-without-jsonify@1.0.1: {}
  2533. json-stringify-pretty-compact@4.0.0: {}
  2534. jsonc-eslint-parser@3.1.0:
  2535. dependencies:
  2536. acorn: 8.16.0
  2537. eslint-visitor-keys: 5.0.1
  2538. semver: 7.7.3
  2539. keyv@4.5.4:
  2540. dependencies:
  2541. json-buffer: 3.0.1
  2542. levn@0.4.1:
  2543. dependencies:
  2544. prelude-ls: 1.2.1
  2545. type-check: 0.4.0
  2546. locate-path@6.0.0:
  2547. dependencies:
  2548. p-locate: 5.0.0
  2549. log-symbols@4.1.0:
  2550. dependencies:
  2551. chalk: 4.1.2
  2552. is-unicode-supported: 0.1.0
  2553. lru-cache@10.4.3: {}
  2554. mime@3.0.0: {}
  2555. mimic-response@3.1.0: {}
  2556. minimatch@10.2.4:
  2557. dependencies:
  2558. brace-expansion: 5.0.3
  2559. minimatch@9.0.5:
  2560. dependencies:
  2561. brace-expansion: 2.0.2
  2562. minimist@1.2.8: {}
  2563. minipass@7.1.2: {}
  2564. mitata@1.0.34: {}
  2565. mkdirp-classic@0.5.3: {}
  2566. mocha@11.7.5:
  2567. dependencies:
  2568. browser-stdout: 1.3.1
  2569. chokidar: 4.0.3
  2570. debug: 4.4.3(supports-color@8.1.1)
  2571. diff: 7.0.0
  2572. escape-string-regexp: 4.0.0
  2573. find-up: 5.0.0
  2574. glob: 10.4.5
  2575. he: 1.2.0
  2576. is-path-inside: 3.0.3
  2577. js-yaml: 4.1.0
  2578. log-symbols: 4.1.0
  2579. minimatch: 9.0.5
  2580. ms: 2.1.3
  2581. picocolors: 1.1.1
  2582. serialize-javascript: 6.0.2
  2583. strip-json-comments: 3.1.1
  2584. supports-color: 8.1.1
  2585. workerpool: 9.3.3
  2586. yargs: 17.7.2
  2587. yargs-parser: 21.1.1
  2588. yargs-unparser: 2.0.0
  2589. ms@2.0.0: {}
  2590. ms@2.1.3: {}
  2591. napi-build-utils@2.0.0: {}
  2592. napi-postinstall@0.3.4: {}
  2593. natural-compare@1.4.0: {}
  2594. next-tick@1.1.0: {}
  2595. node-abi@3.75.0:
  2596. dependencies:
  2597. semver: 7.7.3
  2598. node-gyp-build@4.8.4: {}
  2599. node-localstorage@2.2.1:
  2600. dependencies:
  2601. write-file-atomic: 1.3.4
  2602. null-prototype-object@1.2.5: {}
  2603. once@1.4.0:
  2604. dependencies:
  2605. wrappy: 1.0.2
  2606. optionator@0.9.4:
  2607. dependencies:
  2608. deep-is: 0.1.4
  2609. fast-levenshtein: 2.0.6
  2610. levn: 0.4.1
  2611. prelude-ls: 1.2.1
  2612. type-check: 0.4.0
  2613. word-wrap: 1.2.5
  2614. oxc-resolver@11.19.1:
  2615. optionalDependencies:
  2616. '@oxc-resolver/binding-android-arm-eabi': 11.19.1
  2617. '@oxc-resolver/binding-android-arm64': 11.19.1
  2618. '@oxc-resolver/binding-darwin-arm64': 11.19.1
  2619. '@oxc-resolver/binding-darwin-x64': 11.19.1
  2620. '@oxc-resolver/binding-freebsd-x64': 11.19.1
  2621. '@oxc-resolver/binding-linux-arm-gnueabihf': 11.19.1
  2622. '@oxc-resolver/binding-linux-arm-musleabihf': 11.19.1
  2623. '@oxc-resolver/binding-linux-arm64-gnu': 11.19.1
  2624. '@oxc-resolver/binding-linux-arm64-musl': 11.19.1
  2625. '@oxc-resolver/binding-linux-ppc64-gnu': 11.19.1
  2626. '@oxc-resolver/binding-linux-riscv64-gnu': 11.19.1
  2627. '@oxc-resolver/binding-linux-riscv64-musl': 11.19.1
  2628. '@oxc-resolver/binding-linux-s390x-gnu': 11.19.1
  2629. '@oxc-resolver/binding-linux-x64-gnu': 11.19.1
  2630. '@oxc-resolver/binding-linux-x64-musl': 11.19.1
  2631. '@oxc-resolver/binding-openharmony-arm64': 11.19.1
  2632. '@oxc-resolver/binding-wasm32-wasi': 11.19.1
  2633. '@oxc-resolver/binding-win32-arm64-msvc': 11.19.1
  2634. '@oxc-resolver/binding-win32-ia32-msvc': 11.19.1
  2635. '@oxc-resolver/binding-win32-x64-msvc': 11.19.1
  2636. p-limit@3.1.0:
  2637. dependencies:
  2638. yocto-queue: 0.1.0
  2639. p-locate@5.0.0:
  2640. dependencies:
  2641. p-limit: 3.1.0
  2642. package-json-from-dist@1.0.1: {}
  2643. package-manager-detector@1.5.0: {}
  2644. pako@2.1.0: {}
  2645. path-browserify@1.0.1: {}
  2646. path-exists@4.0.0: {}
  2647. path-key@3.1.1: {}
  2648. path-parse@1.0.7:
  2649. optional: true
  2650. path-scurry@1.11.1:
  2651. dependencies:
  2652. lru-cache: 10.4.3
  2653. minipass: 7.1.2
  2654. picocolors@1.1.1: {}
  2655. picomatch@4.0.3: {}
  2656. pirates@4.0.7: {}
  2657. prebuild-install@7.1.3:
  2658. dependencies:
  2659. detect-libc: 2.0.4
  2660. expand-template: 2.0.3
  2661. github-from-package: 0.0.0
  2662. minimist: 1.2.8
  2663. mkdirp-classic: 0.5.3
  2664. napi-build-utils: 2.0.0
  2665. node-abi: 3.75.0
  2666. pump: 3.0.3
  2667. rc: 1.2.8
  2668. simple-get: 4.0.1
  2669. tar-fs: 2.1.3
  2670. tunnel-agent: 0.6.0
  2671. prelude-ls@1.2.1: {}
  2672. promise-make-naked@3.0.2: {}
  2673. pump@3.0.3:
  2674. dependencies:
  2675. end-of-stream: 1.4.5
  2676. once: 1.4.0
  2677. punycode@2.3.1: {}
  2678. randombytes@2.1.0:
  2679. dependencies:
  2680. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2681. rc@1.2.8:
  2682. dependencies:
  2683. deep-extend: 0.6.0
  2684. ini: 1.3.8
  2685. minimist: 1.2.8
  2686. strip-json-comments: 2.0.1
  2687. readable-stream@3.6.2:
  2688. dependencies:
  2689. inherits: 2.0.4
  2690. string_decoder: 1.3.0
  2691. util-deprecate: 1.0.2
  2692. readdirp@4.1.2: {}
  2693. real-cancellable-promise@1.2.3: {}
  2694. refa@0.12.1:
  2695. dependencies:
  2696. '@eslint-community/regexpp': 4.12.2
  2697. regexp-ast-analysis@0.7.1:
  2698. dependencies:
  2699. '@eslint-community/regexpp': 4.12.2
  2700. refa: 0.12.1
  2701. require-directory@2.1.1: {}
  2702. resolve-pkg-maps@1.0.0: {}
  2703. resolve@1.22.10:
  2704. dependencies:
  2705. is-core-module: 2.16.1
  2706. path-parse: 1.0.7
  2707. supports-preserve-symlinks-flag: 1.0.0
  2708. optional: true
  2709. scslre@0.3.0:
  2710. dependencies:
  2711. '@eslint-community/regexpp': 4.12.2
  2712. refa: 0.12.1
  2713. regexp-ast-analysis: 0.7.1
  2714. semver@7.7.3: {}
  2715. serialize-javascript@6.0.2:
  2716. dependencies:
  2717. randombytes: 2.1.0
  2718. shebang-command@2.0.0:
  2719. dependencies:
  2720. shebang-regex: 3.0.0
  2721. shebang-regex@3.0.0: {}
  2722. signal-exit@4.1.0: {}
  2723. simple-concat@1.0.1: {}
  2724. simple-get@4.0.1:
  2725. dependencies:
  2726. decompress-response: 6.0.0
  2727. once: 1.4.0
  2728. simple-concat: 1.0.1
  2729. simple-invariant@2.0.1: {}
  2730. slide@1.1.6: {}
  2731. smart-buffer@4.2.0: {}
  2732. socks@2.8.7:
  2733. dependencies:
  2734. ip-address: 10.0.1
  2735. smart-buffer: 4.2.0
  2736. source-map-support@0.5.21:
  2737. dependencies:
  2738. buffer-from: 1.1.2
  2739. source-map: 0.6.1
  2740. source-map@0.6.1: {}
  2741. stable-hash-x@0.2.0: {}
  2742. stackframe@1.3.4: {}
  2743. store2@2.14.4: {}
  2744. streamx@2.22.1:
  2745. dependencies:
  2746. fast-fifo: 1.3.2
  2747. text-decoder: 1.2.3
  2748. optionalDependencies:
  2749. bare-events: 2.6.1
  2750. string-width@4.2.3:
  2751. dependencies:
  2752. emoji-regex: 8.0.0
  2753. is-fullwidth-code-point: 3.0.0
  2754. strip-ansi: 6.0.1
  2755. string-width@5.1.2:
  2756. dependencies:
  2757. eastasianwidth: 0.2.0
  2758. emoji-regex: 9.2.2
  2759. strip-ansi: 7.1.0
  2760. string_decoder@1.3.0:
  2761. dependencies:
  2762. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2763. strip-ansi@6.0.1:
  2764. dependencies:
  2765. ansi-regex: 5.0.1
  2766. strip-ansi@7.1.0:
  2767. dependencies:
  2768. ansi-regex: 6.2.0
  2769. strip-json-comments@2.0.1: {}
  2770. strip-json-comments@3.1.1: {}
  2771. supports-color@7.2.0:
  2772. dependencies:
  2773. has-flag: 4.0.0
  2774. supports-color@8.1.1:
  2775. dependencies:
  2776. has-flag: 4.0.0
  2777. supports-preserve-symlinks-flag@1.0.0:
  2778. optional: true
  2779. synckit@0.11.12:
  2780. dependencies:
  2781. '@pkgr/core': 0.2.9
  2782. tapable@2.3.0: {}
  2783. tar-fs@2.1.3:
  2784. dependencies:
  2785. chownr: 1.1.4
  2786. mkdirp-classic: 0.5.3
  2787. pump: 3.0.3
  2788. tar-stream: 2.2.0
  2789. tar-fs@3.1.2:
  2790. dependencies:
  2791. pump: 3.0.3
  2792. tar-stream: 3.1.7
  2793. optionalDependencies:
  2794. bare-fs: 4.2.1
  2795. bare-path: 3.0.0
  2796. transitivePeerDependencies:
  2797. - bare-buffer
  2798. tar-stream@2.2.0:
  2799. dependencies:
  2800. bl: 4.1.0
  2801. end-of-stream: 1.4.5
  2802. fs-constants: 1.0.0
  2803. inherits: 2.0.4
  2804. readable-stream: 3.6.2
  2805. tar-stream@3.1.7:
  2806. dependencies:
  2807. b4a: 1.6.7
  2808. fast-fifo: 1.3.2
  2809. streamx: 2.22.1
  2810. telegram@2.26.22:
  2811. dependencies:
  2812. '@cryptography/aes': 0.1.1
  2813. async-mutex: 0.3.2
  2814. big-integer: 1.6.52
  2815. buffer: 6.0.3
  2816. htmlparser2: 6.1.0
  2817. mime: 3.0.0
  2818. node-localstorage: 2.2.1
  2819. pako: 2.1.0
  2820. path-browserify: 1.0.1
  2821. real-cancellable-promise: 1.2.3
  2822. socks: 2.8.7
  2823. store2: 2.14.4
  2824. ts-custom-error: 3.3.1
  2825. websocket: 1.0.35
  2826. optionalDependencies:
  2827. bufferutil: 4.0.9
  2828. utf-8-validate: 5.0.10
  2829. transitivePeerDependencies:
  2830. - supports-color
  2831. text-decoder@1.2.3:
  2832. dependencies:
  2833. b4a: 1.6.7
  2834. tinyexec@1.0.4: {}
  2835. tinyglobby@0.2.15:
  2836. dependencies:
  2837. fdir: 6.5.0(picomatch@4.0.3)
  2838. picomatch: 4.0.3
  2839. tldts-core@7.0.25: {}
  2840. tldts-experimental@7.0.25:
  2841. dependencies:
  2842. tldts-core: 7.0.25
  2843. tldts@7.0.25:
  2844. dependencies:
  2845. tldts-core: 7.0.25
  2846. ts-api-utils@2.4.0(typescript@5.9.3):
  2847. dependencies:
  2848. typescript: 5.9.3
  2849. ts-custom-error@3.3.1: {}
  2850. ts-declaration-location@1.0.7(typescript@5.9.3):
  2851. dependencies:
  2852. picomatch: 4.0.3
  2853. typescript: 5.9.3
  2854. tslib@2.8.1: {}
  2855. tunnel-agent@0.6.0:
  2856. dependencies:
  2857. safe-buffer: '@nolyfill/safe-buffer@1.0.44'
  2858. type-check@0.4.0:
  2859. dependencies:
  2860. prelude-ls: 1.2.1
  2861. type@2.7.3: {}
  2862. typedarray-to-buffer@3.1.5:
  2863. dependencies:
  2864. is-typedarray: 1.0.0
  2865. typescript-eslint@8.57.0(eslint@10.0.3)(typescript@5.9.3):
  2866. dependencies:
  2867. '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3)(typescript@5.9.3))(eslint@10.0.3)(typescript@5.9.3)
  2868. '@typescript-eslint/parser': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2869. '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
  2870. '@typescript-eslint/utils': 8.57.0(eslint@10.0.3)(typescript@5.9.3)
  2871. eslint: 10.0.3
  2872. typescript: 5.9.3
  2873. transitivePeerDependencies:
  2874. - supports-color
  2875. typescript@5.9.3: {}
  2876. undici-cache-store-better-sqlite3@1.0.0(undici@7.24.3):
  2877. dependencies:
  2878. better-sqlite3: 11.10.0
  2879. foxts: 3.15.0
  2880. undici: 7.24.3
  2881. undici-types@7.16.0: {}
  2882. undici@7.24.3: {}
  2883. unrs-resolver@1.11.1:
  2884. dependencies:
  2885. napi-postinstall: 0.3.4
  2886. optionalDependencies:
  2887. '@unrs/resolver-binding-android-arm-eabi': 1.11.1
  2888. '@unrs/resolver-binding-android-arm64': 1.11.1
  2889. '@unrs/resolver-binding-darwin-arm64': 1.11.1
  2890. '@unrs/resolver-binding-darwin-x64': 1.11.1
  2891. '@unrs/resolver-binding-freebsd-x64': 1.11.1
  2892. '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
  2893. '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
  2894. '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
  2895. '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
  2896. '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
  2897. '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
  2898. '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
  2899. '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
  2900. '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
  2901. '@unrs/resolver-binding-linux-x64-musl': 1.11.1
  2902. '@unrs/resolver-binding-wasm32-wasi': 1.11.1
  2903. '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
  2904. '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
  2905. '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
  2906. uri-js@4.4.1:
  2907. dependencies:
  2908. punycode: 2.3.1
  2909. utf-8-validate@5.0.10:
  2910. dependencies:
  2911. node-gyp-build: 4.8.4
  2912. util-deprecate@1.0.2: {}
  2913. websocket@1.0.35:
  2914. dependencies:
  2915. bufferutil: 4.0.9
  2916. debug: 2.6.9
  2917. es5-ext: 0.10.64
  2918. typedarray-to-buffer: 3.1.5
  2919. utf-8-validate: 5.0.10
  2920. yaeti: 0.0.6
  2921. transitivePeerDependencies:
  2922. - supports-color
  2923. webworker-shim@1.1.4: {}
  2924. which@2.0.2:
  2925. dependencies:
  2926. isexe: 2.0.0
  2927. why-is-node-running@3.2.2: {}
  2928. word-wrap@1.2.5: {}
  2929. workerpool@9.3.3: {}
  2930. worktank@3.0.2:
  2931. dependencies:
  2932. isoconcurrency: 1.0.0
  2933. isotimer: 1.0.0
  2934. promise-make-naked: 3.0.2
  2935. webworker-shim: 1.1.4
  2936. wrap-ansi@7.0.0:
  2937. dependencies:
  2938. ansi-styles: 4.3.0
  2939. string-width: 4.2.3
  2940. strip-ansi: 6.0.1
  2941. wrap-ansi@8.1.0:
  2942. dependencies:
  2943. ansi-styles: 6.2.1
  2944. string-width: 5.1.2
  2945. strip-ansi: 7.1.0
  2946. wrappy@1.0.2: {}
  2947. write-file-atomic@1.3.4:
  2948. dependencies:
  2949. graceful-fs: 4.2.11
  2950. imurmurhash: 0.1.4
  2951. slide: 1.1.6
  2952. xbits@0.2.0: {}
  2953. y18n@5.0.8: {}
  2954. yaeti@0.0.6: {}
  2955. yaml@2.8.2: {}
  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.3
  2976. simple-invariant: 2.0.1
  2977. yocto-queue@0.1.0: {}