pnpm-lock.yaml 132 KB

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