pnpm-lock.yaml 125 KB

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