pnpm-lock.yaml 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@astrojs/node':
  9. specifier: ^9.5.3
  10. version: 9.5.5(astro@5.18.1(@types/node@24.12.0)(rollup@4.59.0)(typescript@5.9.3))
  11. '@libsql/client':
  12. specifier: ^0.15.0
  13. version: 0.15.15
  14. astro:
  15. specifier: ^5.15.5
  16. version: 5.18.1(@types/node@24.12.0)(rollup@4.59.0)(typescript@5.9.3)
  17. nanostores:
  18. specifier: ^1.1.0
  19. version: 1.2.0
  20. qrcode:
  21. specifier: ^1.5.4
  22. version: 1.5.4
  23. devDependencies:
  24. '@types/node':
  25. specifier: ^24.10.1
  26. version: 24.12.0
  27. '@types/qrcode':
  28. specifier: ^1.5.5
  29. version: 1.5.6
  30. packages:
  31. '@astrojs/compiler@2.13.1':
  32. resolution: {integrity: sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==}
  33. '@astrojs/internal-helpers@0.7.6':
  34. resolution: {integrity: sha512-GOle7smBWKfMSP8osUIGOlB5kaHdQLV3foCsf+5Q9Wsuu+C6Fs3Ez/ttXmhjZ1HkSgsogcM1RXSjjOVieHq16Q==}
  35. '@astrojs/markdown-remark@6.3.11':
  36. resolution: {integrity: sha512-hcaxX/5aC6lQgHeGh1i+aauvSwIT6cfyFjKWvExYSxUhZZBBdvCliOtu06gbQyhbe0pGJNoNmqNlQZ5zYUuIyQ==}
  37. '@astrojs/node@9.5.5':
  38. resolution: {integrity: sha512-rtU2BGU5u3SfGURpANfMxVzCIoR86MkaN05ncza9rbtuMKJ/XnRJt/BbyVknDbOJ71hoci0SIsJwKcJR8vvi/A==}
  39. peerDependencies:
  40. astro: ^5.17.3
  41. '@astrojs/prism@3.3.0':
  42. resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==}
  43. engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0}
  44. '@astrojs/telemetry@3.3.0':
  45. resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==}
  46. engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0}
  47. '@babel/helper-string-parser@7.27.1':
  48. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  49. engines: {node: '>=6.9.0'}
  50. '@babel/helper-validator-identifier@7.28.5':
  51. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  52. engines: {node: '>=6.9.0'}
  53. '@babel/parser@7.29.0':
  54. resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
  55. engines: {node: '>=6.0.0'}
  56. hasBin: true
  57. '@babel/types@7.29.0':
  58. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  59. engines: {node: '>=6.9.0'}
  60. '@capsizecss/unpack@4.0.0':
  61. resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==}
  62. engines: {node: '>=18'}
  63. '@emnapi/runtime@1.9.0':
  64. resolution: {integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==}
  65. '@esbuild/aix-ppc64@0.25.12':
  66. resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
  67. engines: {node: '>=18'}
  68. cpu: [ppc64]
  69. os: [aix]
  70. '@esbuild/aix-ppc64@0.27.4':
  71. resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==}
  72. engines: {node: '>=18'}
  73. cpu: [ppc64]
  74. os: [aix]
  75. '@esbuild/android-arm64@0.25.12':
  76. resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
  77. engines: {node: '>=18'}
  78. cpu: [arm64]
  79. os: [android]
  80. '@esbuild/android-arm64@0.27.4':
  81. resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==}
  82. engines: {node: '>=18'}
  83. cpu: [arm64]
  84. os: [android]
  85. '@esbuild/android-arm@0.25.12':
  86. resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
  87. engines: {node: '>=18'}
  88. cpu: [arm]
  89. os: [android]
  90. '@esbuild/android-arm@0.27.4':
  91. resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==}
  92. engines: {node: '>=18'}
  93. cpu: [arm]
  94. os: [android]
  95. '@esbuild/android-x64@0.25.12':
  96. resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
  97. engines: {node: '>=18'}
  98. cpu: [x64]
  99. os: [android]
  100. '@esbuild/android-x64@0.27.4':
  101. resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==}
  102. engines: {node: '>=18'}
  103. cpu: [x64]
  104. os: [android]
  105. '@esbuild/darwin-arm64@0.25.12':
  106. resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
  107. engines: {node: '>=18'}
  108. cpu: [arm64]
  109. os: [darwin]
  110. '@esbuild/darwin-arm64@0.27.4':
  111. resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==}
  112. engines: {node: '>=18'}
  113. cpu: [arm64]
  114. os: [darwin]
  115. '@esbuild/darwin-x64@0.25.12':
  116. resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
  117. engines: {node: '>=18'}
  118. cpu: [x64]
  119. os: [darwin]
  120. '@esbuild/darwin-x64@0.27.4':
  121. resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==}
  122. engines: {node: '>=18'}
  123. cpu: [x64]
  124. os: [darwin]
  125. '@esbuild/freebsd-arm64@0.25.12':
  126. resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
  127. engines: {node: '>=18'}
  128. cpu: [arm64]
  129. os: [freebsd]
  130. '@esbuild/freebsd-arm64@0.27.4':
  131. resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==}
  132. engines: {node: '>=18'}
  133. cpu: [arm64]
  134. os: [freebsd]
  135. '@esbuild/freebsd-x64@0.25.12':
  136. resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
  137. engines: {node: '>=18'}
  138. cpu: [x64]
  139. os: [freebsd]
  140. '@esbuild/freebsd-x64@0.27.4':
  141. resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==}
  142. engines: {node: '>=18'}
  143. cpu: [x64]
  144. os: [freebsd]
  145. '@esbuild/linux-arm64@0.25.12':
  146. resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
  147. engines: {node: '>=18'}
  148. cpu: [arm64]
  149. os: [linux]
  150. '@esbuild/linux-arm64@0.27.4':
  151. resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==}
  152. engines: {node: '>=18'}
  153. cpu: [arm64]
  154. os: [linux]
  155. '@esbuild/linux-arm@0.25.12':
  156. resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
  157. engines: {node: '>=18'}
  158. cpu: [arm]
  159. os: [linux]
  160. '@esbuild/linux-arm@0.27.4':
  161. resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==}
  162. engines: {node: '>=18'}
  163. cpu: [arm]
  164. os: [linux]
  165. '@esbuild/linux-ia32@0.25.12':
  166. resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
  167. engines: {node: '>=18'}
  168. cpu: [ia32]
  169. os: [linux]
  170. '@esbuild/linux-ia32@0.27.4':
  171. resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==}
  172. engines: {node: '>=18'}
  173. cpu: [ia32]
  174. os: [linux]
  175. '@esbuild/linux-loong64@0.25.12':
  176. resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
  177. engines: {node: '>=18'}
  178. cpu: [loong64]
  179. os: [linux]
  180. '@esbuild/linux-loong64@0.27.4':
  181. resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==}
  182. engines: {node: '>=18'}
  183. cpu: [loong64]
  184. os: [linux]
  185. '@esbuild/linux-mips64el@0.25.12':
  186. resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
  187. engines: {node: '>=18'}
  188. cpu: [mips64el]
  189. os: [linux]
  190. '@esbuild/linux-mips64el@0.27.4':
  191. resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==}
  192. engines: {node: '>=18'}
  193. cpu: [mips64el]
  194. os: [linux]
  195. '@esbuild/linux-ppc64@0.25.12':
  196. resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
  197. engines: {node: '>=18'}
  198. cpu: [ppc64]
  199. os: [linux]
  200. '@esbuild/linux-ppc64@0.27.4':
  201. resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==}
  202. engines: {node: '>=18'}
  203. cpu: [ppc64]
  204. os: [linux]
  205. '@esbuild/linux-riscv64@0.25.12':
  206. resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
  207. engines: {node: '>=18'}
  208. cpu: [riscv64]
  209. os: [linux]
  210. '@esbuild/linux-riscv64@0.27.4':
  211. resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==}
  212. engines: {node: '>=18'}
  213. cpu: [riscv64]
  214. os: [linux]
  215. '@esbuild/linux-s390x@0.25.12':
  216. resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
  217. engines: {node: '>=18'}
  218. cpu: [s390x]
  219. os: [linux]
  220. '@esbuild/linux-s390x@0.27.4':
  221. resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==}
  222. engines: {node: '>=18'}
  223. cpu: [s390x]
  224. os: [linux]
  225. '@esbuild/linux-x64@0.25.12':
  226. resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
  227. engines: {node: '>=18'}
  228. cpu: [x64]
  229. os: [linux]
  230. '@esbuild/linux-x64@0.27.4':
  231. resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==}
  232. engines: {node: '>=18'}
  233. cpu: [x64]
  234. os: [linux]
  235. '@esbuild/netbsd-arm64@0.25.12':
  236. resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
  237. engines: {node: '>=18'}
  238. cpu: [arm64]
  239. os: [netbsd]
  240. '@esbuild/netbsd-arm64@0.27.4':
  241. resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==}
  242. engines: {node: '>=18'}
  243. cpu: [arm64]
  244. os: [netbsd]
  245. '@esbuild/netbsd-x64@0.25.12':
  246. resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
  247. engines: {node: '>=18'}
  248. cpu: [x64]
  249. os: [netbsd]
  250. '@esbuild/netbsd-x64@0.27.4':
  251. resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==}
  252. engines: {node: '>=18'}
  253. cpu: [x64]
  254. os: [netbsd]
  255. '@esbuild/openbsd-arm64@0.25.12':
  256. resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
  257. engines: {node: '>=18'}
  258. cpu: [arm64]
  259. os: [openbsd]
  260. '@esbuild/openbsd-arm64@0.27.4':
  261. resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==}
  262. engines: {node: '>=18'}
  263. cpu: [arm64]
  264. os: [openbsd]
  265. '@esbuild/openbsd-x64@0.25.12':
  266. resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
  267. engines: {node: '>=18'}
  268. cpu: [x64]
  269. os: [openbsd]
  270. '@esbuild/openbsd-x64@0.27.4':
  271. resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==}
  272. engines: {node: '>=18'}
  273. cpu: [x64]
  274. os: [openbsd]
  275. '@esbuild/openharmony-arm64@0.25.12':
  276. resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
  277. engines: {node: '>=18'}
  278. cpu: [arm64]
  279. os: [openharmony]
  280. '@esbuild/openharmony-arm64@0.27.4':
  281. resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==}
  282. engines: {node: '>=18'}
  283. cpu: [arm64]
  284. os: [openharmony]
  285. '@esbuild/sunos-x64@0.25.12':
  286. resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
  287. engines: {node: '>=18'}
  288. cpu: [x64]
  289. os: [sunos]
  290. '@esbuild/sunos-x64@0.27.4':
  291. resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==}
  292. engines: {node: '>=18'}
  293. cpu: [x64]
  294. os: [sunos]
  295. '@esbuild/win32-arm64@0.25.12':
  296. resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
  297. engines: {node: '>=18'}
  298. cpu: [arm64]
  299. os: [win32]
  300. '@esbuild/win32-arm64@0.27.4':
  301. resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==}
  302. engines: {node: '>=18'}
  303. cpu: [arm64]
  304. os: [win32]
  305. '@esbuild/win32-ia32@0.25.12':
  306. resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
  307. engines: {node: '>=18'}
  308. cpu: [ia32]
  309. os: [win32]
  310. '@esbuild/win32-ia32@0.27.4':
  311. resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==}
  312. engines: {node: '>=18'}
  313. cpu: [ia32]
  314. os: [win32]
  315. '@esbuild/win32-x64@0.25.12':
  316. resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
  317. engines: {node: '>=18'}
  318. cpu: [x64]
  319. os: [win32]
  320. '@esbuild/win32-x64@0.27.4':
  321. resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==}
  322. engines: {node: '>=18'}
  323. cpu: [x64]
  324. os: [win32]
  325. '@img/colour@1.1.0':
  326. resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
  327. engines: {node: '>=18'}
  328. '@img/sharp-darwin-arm64@0.34.5':
  329. resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
  330. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  331. cpu: [arm64]
  332. os: [darwin]
  333. '@img/sharp-darwin-x64@0.34.5':
  334. resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
  335. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  336. cpu: [x64]
  337. os: [darwin]
  338. '@img/sharp-libvips-darwin-arm64@1.2.4':
  339. resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
  340. cpu: [arm64]
  341. os: [darwin]
  342. '@img/sharp-libvips-darwin-x64@1.2.4':
  343. resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
  344. cpu: [x64]
  345. os: [darwin]
  346. '@img/sharp-libvips-linux-arm64@1.2.4':
  347. resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
  348. cpu: [arm64]
  349. os: [linux]
  350. '@img/sharp-libvips-linux-arm@1.2.4':
  351. resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
  352. cpu: [arm]
  353. os: [linux]
  354. '@img/sharp-libvips-linux-ppc64@1.2.4':
  355. resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
  356. cpu: [ppc64]
  357. os: [linux]
  358. '@img/sharp-libvips-linux-riscv64@1.2.4':
  359. resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
  360. cpu: [riscv64]
  361. os: [linux]
  362. '@img/sharp-libvips-linux-s390x@1.2.4':
  363. resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
  364. cpu: [s390x]
  365. os: [linux]
  366. '@img/sharp-libvips-linux-x64@1.2.4':
  367. resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
  368. cpu: [x64]
  369. os: [linux]
  370. '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
  371. resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
  372. cpu: [arm64]
  373. os: [linux]
  374. '@img/sharp-libvips-linuxmusl-x64@1.2.4':
  375. resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
  376. cpu: [x64]
  377. os: [linux]
  378. '@img/sharp-linux-arm64@0.34.5':
  379. resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
  380. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  381. cpu: [arm64]
  382. os: [linux]
  383. '@img/sharp-linux-arm@0.34.5':
  384. resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
  385. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  386. cpu: [arm]
  387. os: [linux]
  388. '@img/sharp-linux-ppc64@0.34.5':
  389. resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
  390. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  391. cpu: [ppc64]
  392. os: [linux]
  393. '@img/sharp-linux-riscv64@0.34.5':
  394. resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
  395. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  396. cpu: [riscv64]
  397. os: [linux]
  398. '@img/sharp-linux-s390x@0.34.5':
  399. resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
  400. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  401. cpu: [s390x]
  402. os: [linux]
  403. '@img/sharp-linux-x64@0.34.5':
  404. resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
  405. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  406. cpu: [x64]
  407. os: [linux]
  408. '@img/sharp-linuxmusl-arm64@0.34.5':
  409. resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
  410. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  411. cpu: [arm64]
  412. os: [linux]
  413. '@img/sharp-linuxmusl-x64@0.34.5':
  414. resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
  415. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  416. cpu: [x64]
  417. os: [linux]
  418. '@img/sharp-wasm32@0.34.5':
  419. resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
  420. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  421. cpu: [wasm32]
  422. '@img/sharp-win32-arm64@0.34.5':
  423. resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
  424. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  425. cpu: [arm64]
  426. os: [win32]
  427. '@img/sharp-win32-ia32@0.34.5':
  428. resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
  429. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  430. cpu: [ia32]
  431. os: [win32]
  432. '@img/sharp-win32-x64@0.34.5':
  433. resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
  434. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  435. cpu: [x64]
  436. os: [win32]
  437. '@jridgewell/sourcemap-codec@1.5.5':
  438. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  439. '@libsql/client@0.15.15':
  440. resolution: {integrity: sha512-twC0hQxPNHPKfeOv3sNT6u2pturQjLcI+CnpTM0SjRpocEGgfiZ7DWKXLNnsothjyJmDqEsBQJ5ztq9Wlu470w==}
  441. '@libsql/core@0.15.15':
  442. resolution: {integrity: sha512-C88Z6UKl+OyuKKPwz224riz02ih/zHYI3Ho/LAcVOgjsunIRZoBw7fjRfaH9oPMmSNeQfhGklSG2il1URoOIsA==}
  443. '@libsql/darwin-arm64@0.5.22':
  444. resolution: {integrity: sha512-4B8ZlX3nIDPndfct7GNe0nI3Yw6ibocEicWdC4fvQbSs/jdq/RC2oCsoJxJ4NzXkvktX70C1J4FcmmoBy069UA==}
  445. cpu: [arm64]
  446. os: [darwin]
  447. '@libsql/darwin-x64@0.5.22':
  448. resolution: {integrity: sha512-ny2HYWt6lFSIdNFzUFIJ04uiW6finXfMNJ7wypkAD8Pqdm6nAByO+Fdqu8t7sD0sqJGeUCiOg480icjyQ2/8VA==}
  449. cpu: [x64]
  450. os: [darwin]
  451. '@libsql/hrana-client@0.7.0':
  452. resolution: {integrity: sha512-OF8fFQSkbL7vJY9rfuegK1R7sPgQ6kFMkDamiEccNUvieQ+3urzfDFI616oPl8V7T9zRmnTkSjMOImYCAVRVuw==}
  453. '@libsql/isomorphic-fetch@0.3.1':
  454. resolution: {integrity: sha512-6kK3SUK5Uu56zPq/Las620n5aS9xJq+jMBcNSOmjhNf/MUvdyji4vrMTqD7ptY7/4/CAVEAYDeotUz60LNQHtw==}
  455. engines: {node: '>=18.0.0'}
  456. '@libsql/isomorphic-ws@0.1.5':
  457. resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==}
  458. '@libsql/linux-arm-gnueabihf@0.5.22':
  459. resolution: {integrity: sha512-3Uo3SoDPJe/zBnyZKosziRGtszXaEtv57raWrZIahtQDsjxBVjuzYQinCm9LRCJCUT5t2r5Z5nLDPJi2CwZVoA==}
  460. cpu: [arm]
  461. os: [linux]
  462. '@libsql/linux-arm-musleabihf@0.5.22':
  463. resolution: {integrity: sha512-LCsXh07jvSojTNJptT9CowOzwITznD+YFGGW+1XxUr7fS+7/ydUrpDfsMX7UqTqjm7xG17eq86VkWJgHJfvpNg==}
  464. cpu: [arm]
  465. os: [linux]
  466. '@libsql/linux-arm64-gnu@0.5.22':
  467. resolution: {integrity: sha512-KSdnOMy88c9mpOFKUEzPskSaF3VLflfSUCBwas/pn1/sV3pEhtMF6H8VUCd2rsedwoukeeCSEONqX7LLnQwRMA==}
  468. cpu: [arm64]
  469. os: [linux]
  470. '@libsql/linux-arm64-musl@0.5.22':
  471. resolution: {integrity: sha512-mCHSMAsDTLK5YH//lcV3eFEgiR23Ym0U9oEvgZA0667gqRZg/2px+7LshDvErEKv2XZ8ixzw3p1IrBzLQHGSsw==}
  472. cpu: [arm64]
  473. os: [linux]
  474. '@libsql/linux-x64-gnu@0.5.22':
  475. resolution: {integrity: sha512-kNBHaIkSg78Y4BqAdgjcR2mBilZXs4HYkAmi58J+4GRwDQZh5fIUWbnQvB9f95DkWUIGVeenqLRFY2pcTmlsew==}
  476. cpu: [x64]
  477. os: [linux]
  478. '@libsql/linux-x64-musl@0.5.22':
  479. resolution: {integrity: sha512-UZ4Xdxm4pu3pQXjvfJiyCzZop/9j/eA2JjmhMaAhe3EVLH2g11Fy4fwyUp9sT1QJYR1kpc2JLuybPM0kuXv/Tg==}
  480. cpu: [x64]
  481. os: [linux]
  482. '@libsql/win32-x64-msvc@0.5.22':
  483. resolution: {integrity: sha512-Fj0j8RnBpo43tVZUVoNK6BV/9AtDUM5S7DF3LB4qTYg1LMSZqi3yeCneUTLJD6XomQJlZzbI4mst89yspVSAnA==}
  484. cpu: [x64]
  485. os: [win32]
  486. '@neon-rs/load@0.0.4':
  487. resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==}
  488. '@oslojs/encoding@1.1.0':
  489. resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==}
  490. '@rollup/pluginutils@5.3.0':
  491. resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
  492. engines: {node: '>=14.0.0'}
  493. peerDependencies:
  494. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  495. peerDependenciesMeta:
  496. rollup:
  497. optional: true
  498. '@rollup/rollup-android-arm-eabi@4.59.0':
  499. resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
  500. cpu: [arm]
  501. os: [android]
  502. '@rollup/rollup-android-arm64@4.59.0':
  503. resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
  504. cpu: [arm64]
  505. os: [android]
  506. '@rollup/rollup-darwin-arm64@4.59.0':
  507. resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
  508. cpu: [arm64]
  509. os: [darwin]
  510. '@rollup/rollup-darwin-x64@4.59.0':
  511. resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
  512. cpu: [x64]
  513. os: [darwin]
  514. '@rollup/rollup-freebsd-arm64@4.59.0':
  515. resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
  516. cpu: [arm64]
  517. os: [freebsd]
  518. '@rollup/rollup-freebsd-x64@4.59.0':
  519. resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
  520. cpu: [x64]
  521. os: [freebsd]
  522. '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
  523. resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
  524. cpu: [arm]
  525. os: [linux]
  526. '@rollup/rollup-linux-arm-musleabihf@4.59.0':
  527. resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
  528. cpu: [arm]
  529. os: [linux]
  530. '@rollup/rollup-linux-arm64-gnu@4.59.0':
  531. resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
  532. cpu: [arm64]
  533. os: [linux]
  534. '@rollup/rollup-linux-arm64-musl@4.59.0':
  535. resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
  536. cpu: [arm64]
  537. os: [linux]
  538. '@rollup/rollup-linux-loong64-gnu@4.59.0':
  539. resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
  540. cpu: [loong64]
  541. os: [linux]
  542. '@rollup/rollup-linux-loong64-musl@4.59.0':
  543. resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
  544. cpu: [loong64]
  545. os: [linux]
  546. '@rollup/rollup-linux-ppc64-gnu@4.59.0':
  547. resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
  548. cpu: [ppc64]
  549. os: [linux]
  550. '@rollup/rollup-linux-ppc64-musl@4.59.0':
  551. resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
  552. cpu: [ppc64]
  553. os: [linux]
  554. '@rollup/rollup-linux-riscv64-gnu@4.59.0':
  555. resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
  556. cpu: [riscv64]
  557. os: [linux]
  558. '@rollup/rollup-linux-riscv64-musl@4.59.0':
  559. resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
  560. cpu: [riscv64]
  561. os: [linux]
  562. '@rollup/rollup-linux-s390x-gnu@4.59.0':
  563. resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
  564. cpu: [s390x]
  565. os: [linux]
  566. '@rollup/rollup-linux-x64-gnu@4.59.0':
  567. resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
  568. cpu: [x64]
  569. os: [linux]
  570. '@rollup/rollup-linux-x64-musl@4.59.0':
  571. resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
  572. cpu: [x64]
  573. os: [linux]
  574. '@rollup/rollup-openbsd-x64@4.59.0':
  575. resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
  576. cpu: [x64]
  577. os: [openbsd]
  578. '@rollup/rollup-openharmony-arm64@4.59.0':
  579. resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
  580. cpu: [arm64]
  581. os: [openharmony]
  582. '@rollup/rollup-win32-arm64-msvc@4.59.0':
  583. resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
  584. cpu: [arm64]
  585. os: [win32]
  586. '@rollup/rollup-win32-ia32-msvc@4.59.0':
  587. resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
  588. cpu: [ia32]
  589. os: [win32]
  590. '@rollup/rollup-win32-x64-gnu@4.59.0':
  591. resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
  592. cpu: [x64]
  593. os: [win32]
  594. '@rollup/rollup-win32-x64-msvc@4.59.0':
  595. resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
  596. cpu: [x64]
  597. os: [win32]
  598. '@shikijs/core@3.23.0':
  599. resolution: {integrity: sha512-NSWQz0riNb67xthdm5br6lAkvpDJRTgB36fxlo37ZzM2yq0PQFFzbd8psqC2XMPgCzo1fW6cVi18+ArJ44wqgA==}
  600. '@shikijs/engine-javascript@3.23.0':
  601. resolution: {integrity: sha512-aHt9eiGFobmWR5uqJUViySI1bHMqrAgamWE1TYSUoftkAeCCAiGawPMwM+VCadylQtF4V3VNOZ5LmfItH5f3yA==}
  602. '@shikijs/engine-oniguruma@3.23.0':
  603. resolution: {integrity: sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==}
  604. '@shikijs/langs@3.23.0':
  605. resolution: {integrity: sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg==}
  606. '@shikijs/themes@3.23.0':
  607. resolution: {integrity: sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA==}
  608. '@shikijs/types@3.23.0':
  609. resolution: {integrity: sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==}
  610. '@shikijs/vscode-textmate@10.0.2':
  611. resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
  612. '@types/debug@4.1.12':
  613. resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
  614. '@types/estree@1.0.8':
  615. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  616. '@types/hast@3.0.4':
  617. resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
  618. '@types/mdast@4.0.4':
  619. resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
  620. '@types/ms@2.1.0':
  621. resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
  622. '@types/nlcst@2.0.3':
  623. resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
  624. '@types/node@24.12.0':
  625. resolution: {integrity: sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==}
  626. '@types/qrcode@1.5.6':
  627. resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
  628. '@types/unist@3.0.3':
  629. resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
  630. '@types/ws@8.18.1':
  631. resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
  632. '@ungap/structured-clone@1.3.0':
  633. resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
  634. acorn@8.16.0:
  635. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  636. engines: {node: '>=0.4.0'}
  637. hasBin: true
  638. ansi-align@3.0.1:
  639. resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
  640. ansi-regex@5.0.1:
  641. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  642. engines: {node: '>=8'}
  643. ansi-regex@6.2.2:
  644. resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
  645. engines: {node: '>=12'}
  646. ansi-styles@4.3.0:
  647. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  648. engines: {node: '>=8'}
  649. ansi-styles@6.2.3:
  650. resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
  651. engines: {node: '>=12'}
  652. anymatch@3.1.3:
  653. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  654. engines: {node: '>= 8'}
  655. argparse@2.0.1:
  656. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  657. aria-query@5.3.2:
  658. resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
  659. engines: {node: '>= 0.4'}
  660. array-iterate@2.0.1:
  661. resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==}
  662. astro@5.18.1:
  663. resolution: {integrity: sha512-m4VWilWZ+Xt6NPoYzC4CgGZim/zQUO7WFL0RHCH0AiEavF1153iC3+me2atDvXpf/yX4PyGUeD8wZLq1cirT3g==}
  664. engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
  665. hasBin: true
  666. axobject-query@4.1.0:
  667. resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
  668. engines: {node: '>= 0.4'}
  669. bail@2.0.2:
  670. resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
  671. base-64@1.0.0:
  672. resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==}
  673. boolbase@1.0.0:
  674. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  675. boxen@8.0.1:
  676. resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==}
  677. engines: {node: '>=18'}
  678. camelcase@5.3.1:
  679. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  680. engines: {node: '>=6'}
  681. camelcase@8.0.0:
  682. resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
  683. engines: {node: '>=16'}
  684. ccount@2.0.1:
  685. resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
  686. chalk@5.6.2:
  687. resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
  688. engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
  689. character-entities-html4@2.1.0:
  690. resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
  691. character-entities-legacy@3.0.0:
  692. resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
  693. character-entities@2.0.2:
  694. resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
  695. chokidar@5.0.0:
  696. resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
  697. engines: {node: '>= 20.19.0'}
  698. ci-info@4.4.0:
  699. resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
  700. engines: {node: '>=8'}
  701. cli-boxes@3.0.0:
  702. resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
  703. engines: {node: '>=10'}
  704. cliui@6.0.0:
  705. resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
  706. clsx@2.1.1:
  707. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  708. engines: {node: '>=6'}
  709. color-convert@2.0.1:
  710. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  711. engines: {node: '>=7.0.0'}
  712. color-name@1.1.4:
  713. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  714. comma-separated-tokens@2.0.3:
  715. resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
  716. commander@11.1.0:
  717. resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
  718. engines: {node: '>=16'}
  719. common-ancestor-path@1.0.1:
  720. resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==}
  721. cookie-es@1.2.2:
  722. resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
  723. cookie@1.1.1:
  724. resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
  725. engines: {node: '>=18'}
  726. crossws@0.3.5:
  727. resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
  728. css-select@5.2.2:
  729. resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
  730. css-tree@2.2.1:
  731. resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
  732. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
  733. css-tree@3.2.1:
  734. resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
  735. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
  736. css-what@6.2.2:
  737. resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
  738. engines: {node: '>= 6'}
  739. cssesc@3.0.0:
  740. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  741. engines: {node: '>=4'}
  742. hasBin: true
  743. csso@5.0.5:
  744. resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
  745. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
  746. data-uri-to-buffer@4.0.1:
  747. resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
  748. engines: {node: '>= 12'}
  749. debug@4.4.3:
  750. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  751. engines: {node: '>=6.0'}
  752. peerDependencies:
  753. supports-color: '*'
  754. peerDependenciesMeta:
  755. supports-color:
  756. optional: true
  757. decamelize@1.2.0:
  758. resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
  759. engines: {node: '>=0.10.0'}
  760. decode-named-character-reference@1.3.0:
  761. resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
  762. defu@6.1.4:
  763. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  764. depd@2.0.0:
  765. resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
  766. engines: {node: '>= 0.8'}
  767. dequal@2.0.3:
  768. resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
  769. engines: {node: '>=6'}
  770. destr@2.0.5:
  771. resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
  772. detect-libc@2.0.2:
  773. resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
  774. engines: {node: '>=8'}
  775. detect-libc@2.1.2:
  776. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  777. engines: {node: '>=8'}
  778. deterministic-object-hash@2.0.2:
  779. resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==}
  780. engines: {node: '>=18'}
  781. devalue@5.6.4:
  782. resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==}
  783. devlop@1.1.0:
  784. resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
  785. diff@8.0.3:
  786. resolution: {integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==}
  787. engines: {node: '>=0.3.1'}
  788. dijkstrajs@1.0.3:
  789. resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
  790. dlv@1.1.3:
  791. resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
  792. dom-serializer@2.0.0:
  793. resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
  794. domelementtype@2.3.0:
  795. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  796. domhandler@5.0.3:
  797. resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
  798. engines: {node: '>= 4'}
  799. domutils@3.2.2:
  800. resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
  801. dset@3.1.4:
  802. resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
  803. engines: {node: '>=4'}
  804. ee-first@1.1.1:
  805. resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
  806. emoji-regex@10.6.0:
  807. resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
  808. emoji-regex@8.0.0:
  809. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  810. encodeurl@2.0.0:
  811. resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
  812. engines: {node: '>= 0.8'}
  813. entities@4.5.0:
  814. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  815. engines: {node: '>=0.12'}
  816. entities@6.0.1:
  817. resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
  818. engines: {node: '>=0.12'}
  819. es-module-lexer@1.7.0:
  820. resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
  821. esbuild@0.25.12:
  822. resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
  823. engines: {node: '>=18'}
  824. hasBin: true
  825. esbuild@0.27.4:
  826. resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==}
  827. engines: {node: '>=18'}
  828. hasBin: true
  829. escape-html@1.0.3:
  830. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  831. escape-string-regexp@5.0.0:
  832. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  833. engines: {node: '>=12'}
  834. estree-walker@2.0.2:
  835. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  836. estree-walker@3.0.3:
  837. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  838. etag@1.8.1:
  839. resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
  840. engines: {node: '>= 0.6'}
  841. eventemitter3@5.0.4:
  842. resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
  843. extend@3.0.2:
  844. resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
  845. fdir@6.5.0:
  846. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  847. engines: {node: '>=12.0.0'}
  848. peerDependencies:
  849. picomatch: ^3 || ^4
  850. peerDependenciesMeta:
  851. picomatch:
  852. optional: true
  853. fetch-blob@3.2.0:
  854. resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
  855. engines: {node: ^12.20 || >= 14.13}
  856. find-up@4.1.0:
  857. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  858. engines: {node: '>=8'}
  859. flattie@1.1.1:
  860. resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==}
  861. engines: {node: '>=8'}
  862. fontace@0.4.1:
  863. resolution: {integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==}
  864. fontkitten@1.0.3:
  865. resolution: {integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==}
  866. engines: {node: '>=20'}
  867. formdata-polyfill@4.0.10:
  868. resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
  869. engines: {node: '>=12.20.0'}
  870. fresh@2.0.0:
  871. resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
  872. engines: {node: '>= 0.8'}
  873. fsevents@2.3.3:
  874. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  875. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  876. os: [darwin]
  877. get-caller-file@2.0.5:
  878. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  879. engines: {node: 6.* || 8.* || >= 10.*}
  880. get-east-asian-width@1.5.0:
  881. resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==}
  882. engines: {node: '>=18'}
  883. github-slugger@2.0.0:
  884. resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
  885. h3@1.15.6:
  886. resolution: {integrity: sha512-oi15ESLW5LRthZ+qPCi5GNasY/gvynSKUQxgiovrY63bPAtG59wtM+LSrlcwvOHAXzGrXVLnI97brbkdPF9WoQ==}
  887. hast-util-from-html@2.0.3:
  888. resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
  889. hast-util-from-parse5@8.0.3:
  890. resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==}
  891. hast-util-is-element@3.0.0:
  892. resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
  893. hast-util-parse-selector@4.0.0:
  894. resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
  895. hast-util-raw@9.1.0:
  896. resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==}
  897. hast-util-to-html@9.0.5:
  898. resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
  899. hast-util-to-parse5@8.0.1:
  900. resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==}
  901. hast-util-to-text@4.0.2:
  902. resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
  903. hast-util-whitespace@3.0.0:
  904. resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
  905. hastscript@9.0.1:
  906. resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==}
  907. html-escaper@3.0.3:
  908. resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==}
  909. html-void-elements@3.0.0:
  910. resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
  911. http-cache-semantics@4.2.0:
  912. resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
  913. http-errors@2.0.1:
  914. resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
  915. engines: {node: '>= 0.8'}
  916. import-meta-resolve@4.2.0:
  917. resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
  918. inherits@2.0.4:
  919. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  920. iron-webcrypto@1.2.1:
  921. resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
  922. is-docker@3.0.0:
  923. resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
  924. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  925. hasBin: true
  926. is-fullwidth-code-point@3.0.0:
  927. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  928. engines: {node: '>=8'}
  929. is-inside-container@1.0.0:
  930. resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
  931. engines: {node: '>=14.16'}
  932. hasBin: true
  933. is-plain-obj@4.1.0:
  934. resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
  935. engines: {node: '>=12'}
  936. is-wsl@3.1.1:
  937. resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
  938. engines: {node: '>=16'}
  939. js-base64@3.7.8:
  940. resolution: {integrity: sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==}
  941. js-yaml@4.1.1:
  942. resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
  943. hasBin: true
  944. kleur@3.0.3:
  945. resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
  946. engines: {node: '>=6'}
  947. libsql@0.5.22:
  948. resolution: {integrity: sha512-NscWthMQt7fpU8lqd7LXMvT9pi+KhhmTHAJWUB/Lj6MWa0MKFv0F2V4C6WKKpjCVZl0VwcDz4nOI3CyaT1DDiA==}
  949. cpu: [x64, arm64, wasm32, arm]
  950. os: [darwin, linux, win32]
  951. locate-path@5.0.0:
  952. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  953. engines: {node: '>=8'}
  954. longest-streak@3.1.0:
  955. resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
  956. lru-cache@11.2.7:
  957. resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==}
  958. engines: {node: 20 || >=22}
  959. magic-string@0.30.21:
  960. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  961. magicast@0.5.2:
  962. resolution: {integrity: sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==}
  963. markdown-table@3.0.4:
  964. resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
  965. mdast-util-definitions@6.0.0:
  966. resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==}
  967. mdast-util-find-and-replace@3.0.2:
  968. resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
  969. mdast-util-from-markdown@2.0.3:
  970. resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
  971. mdast-util-gfm-autolink-literal@2.0.1:
  972. resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
  973. mdast-util-gfm-footnote@2.1.0:
  974. resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
  975. mdast-util-gfm-strikethrough@2.0.0:
  976. resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
  977. mdast-util-gfm-table@2.0.0:
  978. resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
  979. mdast-util-gfm-task-list-item@2.0.0:
  980. resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
  981. mdast-util-gfm@3.1.0:
  982. resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
  983. mdast-util-phrasing@4.1.0:
  984. resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
  985. mdast-util-to-hast@13.2.1:
  986. resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
  987. mdast-util-to-markdown@2.1.2:
  988. resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
  989. mdast-util-to-string@4.0.0:
  990. resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
  991. mdn-data@2.0.28:
  992. resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
  993. mdn-data@2.27.1:
  994. resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
  995. micromark-core-commonmark@2.0.3:
  996. resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
  997. micromark-extension-gfm-autolink-literal@2.1.0:
  998. resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
  999. micromark-extension-gfm-footnote@2.1.0:
  1000. resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
  1001. micromark-extension-gfm-strikethrough@2.1.0:
  1002. resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
  1003. micromark-extension-gfm-table@2.1.1:
  1004. resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
  1005. micromark-extension-gfm-tagfilter@2.0.0:
  1006. resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
  1007. micromark-extension-gfm-task-list-item@2.1.0:
  1008. resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
  1009. micromark-extension-gfm@3.0.0:
  1010. resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
  1011. micromark-factory-destination@2.0.1:
  1012. resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
  1013. micromark-factory-label@2.0.1:
  1014. resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
  1015. micromark-factory-space@2.0.1:
  1016. resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
  1017. micromark-factory-title@2.0.1:
  1018. resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
  1019. micromark-factory-whitespace@2.0.1:
  1020. resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
  1021. micromark-util-character@2.1.1:
  1022. resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
  1023. micromark-util-chunked@2.0.1:
  1024. resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
  1025. micromark-util-classify-character@2.0.1:
  1026. resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
  1027. micromark-util-combine-extensions@2.0.1:
  1028. resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
  1029. micromark-util-decode-numeric-character-reference@2.0.2:
  1030. resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
  1031. micromark-util-decode-string@2.0.1:
  1032. resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
  1033. micromark-util-encode@2.0.1:
  1034. resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
  1035. micromark-util-html-tag-name@2.0.1:
  1036. resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
  1037. micromark-util-normalize-identifier@2.0.1:
  1038. resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
  1039. micromark-util-resolve-all@2.0.1:
  1040. resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
  1041. micromark-util-sanitize-uri@2.0.1:
  1042. resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
  1043. micromark-util-subtokenize@2.1.0:
  1044. resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
  1045. micromark-util-symbol@2.0.1:
  1046. resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
  1047. micromark-util-types@2.0.2:
  1048. resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
  1049. micromark@4.0.2:
  1050. resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
  1051. mime-db@1.54.0:
  1052. resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
  1053. engines: {node: '>= 0.6'}
  1054. mime-types@3.0.2:
  1055. resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
  1056. engines: {node: '>=18'}
  1057. mrmime@2.0.1:
  1058. resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
  1059. engines: {node: '>=10'}
  1060. ms@2.1.3:
  1061. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  1062. nanoid@3.3.11:
  1063. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  1064. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1065. hasBin: true
  1066. nanostores@1.2.0:
  1067. resolution: {integrity: sha512-F0wCzbsH80G7XXo0Jd9/AVQC7ouWY6idUCTnMwW5t/Rv9W8qmO6endavDwg7TNp5GbugwSukFMVZqzPSrSMndg==}
  1068. engines: {node: ^20.0.0 || >=22.0.0}
  1069. neotraverse@0.6.18:
  1070. resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==}
  1071. engines: {node: '>= 10'}
  1072. nlcst-to-string@4.0.0:
  1073. resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
  1074. node-domexception@1.0.0:
  1075. resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
  1076. engines: {node: '>=10.5.0'}
  1077. deprecated: Use your platform's native DOMException instead
  1078. node-fetch-native@1.6.7:
  1079. resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
  1080. node-fetch@3.3.2:
  1081. resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
  1082. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  1083. node-mock-http@1.0.4:
  1084. resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
  1085. normalize-path@3.0.0:
  1086. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1087. engines: {node: '>=0.10.0'}
  1088. nth-check@2.1.1:
  1089. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  1090. ofetch@1.5.1:
  1091. resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
  1092. ohash@2.0.11:
  1093. resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
  1094. on-finished@2.4.1:
  1095. resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
  1096. engines: {node: '>= 0.8'}
  1097. oniguruma-parser@0.12.1:
  1098. resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
  1099. oniguruma-to-es@4.3.5:
  1100. resolution: {integrity: sha512-Zjygswjpsewa0NLTsiizVuMQZbp0MDyM6lIt66OxsF21npUDlzpHi1Mgb/qhQdkb+dWFTzJmFbEWdvZgRho8eQ==}
  1101. p-limit@2.3.0:
  1102. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  1103. engines: {node: '>=6'}
  1104. p-limit@6.2.0:
  1105. resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==}
  1106. engines: {node: '>=18'}
  1107. p-locate@4.1.0:
  1108. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  1109. engines: {node: '>=8'}
  1110. p-queue@8.1.1:
  1111. resolution: {integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==}
  1112. engines: {node: '>=18'}
  1113. p-timeout@6.1.4:
  1114. resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==}
  1115. engines: {node: '>=14.16'}
  1116. p-try@2.2.0:
  1117. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  1118. engines: {node: '>=6'}
  1119. package-manager-detector@1.6.0:
  1120. resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==}
  1121. parse-latin@7.0.0:
  1122. resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==}
  1123. parse5@7.3.0:
  1124. resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
  1125. path-exists@4.0.0:
  1126. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  1127. engines: {node: '>=8'}
  1128. piccolore@0.1.3:
  1129. resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==}
  1130. picocolors@1.1.1:
  1131. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1132. picomatch@2.3.1:
  1133. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1134. engines: {node: '>=8.6'}
  1135. picomatch@4.0.3:
  1136. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  1137. engines: {node: '>=12'}
  1138. pngjs@5.0.0:
  1139. resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
  1140. engines: {node: '>=10.13.0'}
  1141. postcss@8.5.8:
  1142. resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
  1143. engines: {node: ^10 || ^12 || >=14}
  1144. prismjs@1.30.0:
  1145. resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
  1146. engines: {node: '>=6'}
  1147. promise-limit@2.7.0:
  1148. resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==}
  1149. prompts@2.4.2:
  1150. resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
  1151. engines: {node: '>= 6'}
  1152. property-information@7.1.0:
  1153. resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
  1154. qrcode@1.5.4:
  1155. resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
  1156. engines: {node: '>=10.13.0'}
  1157. hasBin: true
  1158. radix3@1.1.2:
  1159. resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
  1160. range-parser@1.2.1:
  1161. resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
  1162. engines: {node: '>= 0.6'}
  1163. readdirp@5.0.0:
  1164. resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
  1165. engines: {node: '>= 20.19.0'}
  1166. regex-recursion@6.0.2:
  1167. resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
  1168. regex-utilities@2.3.0:
  1169. resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
  1170. regex@6.1.0:
  1171. resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==}
  1172. rehype-parse@9.0.1:
  1173. resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==}
  1174. rehype-raw@7.0.0:
  1175. resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
  1176. rehype-stringify@10.0.1:
  1177. resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==}
  1178. rehype@13.0.2:
  1179. resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==}
  1180. remark-gfm@4.0.1:
  1181. resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
  1182. remark-parse@11.0.0:
  1183. resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
  1184. remark-rehype@11.1.2:
  1185. resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
  1186. remark-smartypants@3.0.2:
  1187. resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==}
  1188. engines: {node: '>=16.0.0'}
  1189. remark-stringify@11.0.0:
  1190. resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
  1191. require-directory@2.1.1:
  1192. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  1193. engines: {node: '>=0.10.0'}
  1194. require-main-filename@2.0.0:
  1195. resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
  1196. retext-latin@4.0.0:
  1197. resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==}
  1198. retext-smartypants@6.2.0:
  1199. resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==}
  1200. retext-stringify@4.0.0:
  1201. resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==}
  1202. retext@9.0.0:
  1203. resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==}
  1204. rollup@4.59.0:
  1205. resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
  1206. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1207. hasBin: true
  1208. sax@1.5.0:
  1209. resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==}
  1210. engines: {node: '>=11.0.0'}
  1211. semver@7.7.4:
  1212. resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
  1213. engines: {node: '>=10'}
  1214. hasBin: true
  1215. send@1.2.1:
  1216. resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
  1217. engines: {node: '>= 18'}
  1218. server-destroy@1.0.1:
  1219. resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==}
  1220. set-blocking@2.0.0:
  1221. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  1222. setprototypeof@1.2.0:
  1223. resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
  1224. sharp@0.34.5:
  1225. resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
  1226. engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
  1227. shiki@3.23.0:
  1228. resolution: {integrity: sha512-55Dj73uq9ZXL5zyeRPzHQsK7Nbyt6Y10k5s7OjuFZGMhpp4r/rsLBH0o/0fstIzX1Lep9VxefWljK/SKCzygIA==}
  1229. sisteransi@1.0.5:
  1230. resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
  1231. smol-toml@1.6.0:
  1232. resolution: {integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==}
  1233. engines: {node: '>= 18'}
  1234. source-map-js@1.2.1:
  1235. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1236. engines: {node: '>=0.10.0'}
  1237. space-separated-tokens@2.0.2:
  1238. resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
  1239. statuses@2.0.2:
  1240. resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
  1241. engines: {node: '>= 0.8'}
  1242. string-width@4.2.3:
  1243. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1244. engines: {node: '>=8'}
  1245. string-width@7.2.0:
  1246. resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
  1247. engines: {node: '>=18'}
  1248. stringify-entities@4.0.4:
  1249. resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
  1250. strip-ansi@6.0.1:
  1251. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1252. engines: {node: '>=8'}
  1253. strip-ansi@7.2.0:
  1254. resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
  1255. engines: {node: '>=12'}
  1256. svgo@4.0.1:
  1257. resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==}
  1258. engines: {node: '>=16'}
  1259. hasBin: true
  1260. tiny-inflate@1.0.3:
  1261. resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
  1262. tinyexec@1.0.4:
  1263. resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
  1264. engines: {node: '>=18'}
  1265. tinyglobby@0.2.15:
  1266. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  1267. engines: {node: '>=12.0.0'}
  1268. toidentifier@1.0.1:
  1269. resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
  1270. engines: {node: '>=0.6'}
  1271. trim-lines@3.0.1:
  1272. resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
  1273. trough@2.2.0:
  1274. resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
  1275. tsconfck@3.1.6:
  1276. resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==}
  1277. engines: {node: ^18 || >=20}
  1278. hasBin: true
  1279. peerDependencies:
  1280. typescript: ^5.0.0
  1281. peerDependenciesMeta:
  1282. typescript:
  1283. optional: true
  1284. tslib@2.8.1:
  1285. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1286. type-fest@4.41.0:
  1287. resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
  1288. engines: {node: '>=16'}
  1289. typescript@5.9.3:
  1290. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  1291. engines: {node: '>=14.17'}
  1292. hasBin: true
  1293. ufo@1.6.3:
  1294. resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
  1295. ultrahtml@1.6.0:
  1296. resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==}
  1297. uncrypto@0.1.3:
  1298. resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
  1299. undici-types@7.16.0:
  1300. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  1301. unified@11.0.5:
  1302. resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
  1303. unifont@0.7.4:
  1304. resolution: {integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==}
  1305. unist-util-find-after@5.0.0:
  1306. resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==}
  1307. unist-util-is@6.0.1:
  1308. resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
  1309. unist-util-modify-children@4.0.0:
  1310. resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==}
  1311. unist-util-position@5.0.0:
  1312. resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
  1313. unist-util-remove-position@5.0.0:
  1314. resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
  1315. unist-util-stringify-position@4.0.0:
  1316. resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
  1317. unist-util-visit-children@3.0.0:
  1318. resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==}
  1319. unist-util-visit-parents@6.0.2:
  1320. resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
  1321. unist-util-visit@5.1.0:
  1322. resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
  1323. unstorage@1.17.4:
  1324. resolution: {integrity: sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==}
  1325. peerDependencies:
  1326. '@azure/app-configuration': ^1.8.0
  1327. '@azure/cosmos': ^4.2.0
  1328. '@azure/data-tables': ^13.3.0
  1329. '@azure/identity': ^4.6.0
  1330. '@azure/keyvault-secrets': ^4.9.0
  1331. '@azure/storage-blob': ^12.26.0
  1332. '@capacitor/preferences': ^6 || ^7 || ^8
  1333. '@deno/kv': '>=0.9.0'
  1334. '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
  1335. '@planetscale/database': ^1.19.0
  1336. '@upstash/redis': ^1.34.3
  1337. '@vercel/blob': '>=0.27.1'
  1338. '@vercel/functions': ^2.2.12 || ^3.0.0
  1339. '@vercel/kv': ^1 || ^2 || ^3
  1340. aws4fetch: ^1.0.20
  1341. db0: '>=0.2.1'
  1342. idb-keyval: ^6.2.1
  1343. ioredis: ^5.4.2
  1344. uploadthing: ^7.4.4
  1345. peerDependenciesMeta:
  1346. '@azure/app-configuration':
  1347. optional: true
  1348. '@azure/cosmos':
  1349. optional: true
  1350. '@azure/data-tables':
  1351. optional: true
  1352. '@azure/identity':
  1353. optional: true
  1354. '@azure/keyvault-secrets':
  1355. optional: true
  1356. '@azure/storage-blob':
  1357. optional: true
  1358. '@capacitor/preferences':
  1359. optional: true
  1360. '@deno/kv':
  1361. optional: true
  1362. '@netlify/blobs':
  1363. optional: true
  1364. '@planetscale/database':
  1365. optional: true
  1366. '@upstash/redis':
  1367. optional: true
  1368. '@vercel/blob':
  1369. optional: true
  1370. '@vercel/functions':
  1371. optional: true
  1372. '@vercel/kv':
  1373. optional: true
  1374. aws4fetch:
  1375. optional: true
  1376. db0:
  1377. optional: true
  1378. idb-keyval:
  1379. optional: true
  1380. ioredis:
  1381. optional: true
  1382. uploadthing:
  1383. optional: true
  1384. vfile-location@5.0.3:
  1385. resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
  1386. vfile-message@4.0.3:
  1387. resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
  1388. vfile@6.0.3:
  1389. resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
  1390. vite@6.4.1:
  1391. resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
  1392. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  1393. hasBin: true
  1394. peerDependencies:
  1395. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  1396. jiti: '>=1.21.0'
  1397. less: '*'
  1398. lightningcss: ^1.21.0
  1399. sass: '*'
  1400. sass-embedded: '*'
  1401. stylus: '*'
  1402. sugarss: '*'
  1403. terser: ^5.16.0
  1404. tsx: ^4.8.1
  1405. yaml: ^2.4.2
  1406. peerDependenciesMeta:
  1407. '@types/node':
  1408. optional: true
  1409. jiti:
  1410. optional: true
  1411. less:
  1412. optional: true
  1413. lightningcss:
  1414. optional: true
  1415. sass:
  1416. optional: true
  1417. sass-embedded:
  1418. optional: true
  1419. stylus:
  1420. optional: true
  1421. sugarss:
  1422. optional: true
  1423. terser:
  1424. optional: true
  1425. tsx:
  1426. optional: true
  1427. yaml:
  1428. optional: true
  1429. vitefu@1.1.2:
  1430. resolution: {integrity: sha512-zpKATdUbzbsycPFBN71nS2uzBUQiVnFoOrr2rvqv34S1lcAgMKKkjWleLGeiJlZ8lwCXvtWaRn7R3ZC16SYRuw==}
  1431. peerDependencies:
  1432. vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta.0
  1433. peerDependenciesMeta:
  1434. vite:
  1435. optional: true
  1436. web-namespaces@2.0.1:
  1437. resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
  1438. web-streams-polyfill@3.3.3:
  1439. resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
  1440. engines: {node: '>= 8'}
  1441. which-module@2.0.1:
  1442. resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
  1443. which-pm-runs@1.1.0:
  1444. resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
  1445. engines: {node: '>=4'}
  1446. widest-line@5.0.0:
  1447. resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==}
  1448. engines: {node: '>=18'}
  1449. wrap-ansi@6.2.0:
  1450. resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
  1451. engines: {node: '>=8'}
  1452. wrap-ansi@9.0.2:
  1453. resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
  1454. engines: {node: '>=18'}
  1455. ws@8.19.0:
  1456. resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
  1457. engines: {node: '>=10.0.0'}
  1458. peerDependencies:
  1459. bufferutil: ^4.0.1
  1460. utf-8-validate: '>=5.0.2'
  1461. peerDependenciesMeta:
  1462. bufferutil:
  1463. optional: true
  1464. utf-8-validate:
  1465. optional: true
  1466. xxhash-wasm@1.1.0:
  1467. resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==}
  1468. y18n@4.0.3:
  1469. resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
  1470. yargs-parser@18.1.3:
  1471. resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
  1472. engines: {node: '>=6'}
  1473. yargs-parser@21.1.1:
  1474. resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
  1475. engines: {node: '>=12'}
  1476. yargs@15.4.1:
  1477. resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
  1478. engines: {node: '>=8'}
  1479. yocto-queue@1.2.2:
  1480. resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
  1481. engines: {node: '>=12.20'}
  1482. yocto-spinner@0.2.3:
  1483. resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==}
  1484. engines: {node: '>=18.19'}
  1485. yoctocolors@2.1.2:
  1486. resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
  1487. engines: {node: '>=18'}
  1488. zod-to-json-schema@3.25.1:
  1489. resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==}
  1490. peerDependencies:
  1491. zod: ^3.25 || ^4
  1492. zod-to-ts@1.2.0:
  1493. resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==}
  1494. peerDependencies:
  1495. typescript: ^4.9.4 || ^5.0.2
  1496. zod: ^3
  1497. zod@3.25.76:
  1498. resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
  1499. zwitch@2.0.4:
  1500. resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
  1501. snapshots:
  1502. '@astrojs/compiler@2.13.1': {}
  1503. '@astrojs/internal-helpers@0.7.6': {}
  1504. '@astrojs/markdown-remark@6.3.11':
  1505. dependencies:
  1506. '@astrojs/internal-helpers': 0.7.6
  1507. '@astrojs/prism': 3.3.0
  1508. github-slugger: 2.0.0
  1509. hast-util-from-html: 2.0.3
  1510. hast-util-to-text: 4.0.2
  1511. import-meta-resolve: 4.2.0
  1512. js-yaml: 4.1.1
  1513. mdast-util-definitions: 6.0.0
  1514. rehype-raw: 7.0.0
  1515. rehype-stringify: 10.0.1
  1516. remark-gfm: 4.0.1
  1517. remark-parse: 11.0.0
  1518. remark-rehype: 11.1.2
  1519. remark-smartypants: 3.0.2
  1520. shiki: 3.23.0
  1521. smol-toml: 1.6.0
  1522. unified: 11.0.5
  1523. unist-util-remove-position: 5.0.0
  1524. unist-util-visit: 5.1.0
  1525. unist-util-visit-parents: 6.0.2
  1526. vfile: 6.0.3
  1527. transitivePeerDependencies:
  1528. - supports-color
  1529. '@astrojs/node@9.5.5(astro@5.18.1(@types/node@24.12.0)(rollup@4.59.0)(typescript@5.9.3))':
  1530. dependencies:
  1531. '@astrojs/internal-helpers': 0.7.6
  1532. astro: 5.18.1(@types/node@24.12.0)(rollup@4.59.0)(typescript@5.9.3)
  1533. send: 1.2.1
  1534. server-destroy: 1.0.1
  1535. transitivePeerDependencies:
  1536. - supports-color
  1537. '@astrojs/prism@3.3.0':
  1538. dependencies:
  1539. prismjs: 1.30.0
  1540. '@astrojs/telemetry@3.3.0':
  1541. dependencies:
  1542. ci-info: 4.4.0
  1543. debug: 4.4.3
  1544. dlv: 1.1.3
  1545. dset: 3.1.4
  1546. is-docker: 3.0.0
  1547. is-wsl: 3.1.1
  1548. which-pm-runs: 1.1.0
  1549. transitivePeerDependencies:
  1550. - supports-color
  1551. '@babel/helper-string-parser@7.27.1': {}
  1552. '@babel/helper-validator-identifier@7.28.5': {}
  1553. '@babel/parser@7.29.0':
  1554. dependencies:
  1555. '@babel/types': 7.29.0
  1556. '@babel/types@7.29.0':
  1557. dependencies:
  1558. '@babel/helper-string-parser': 7.27.1
  1559. '@babel/helper-validator-identifier': 7.28.5
  1560. '@capsizecss/unpack@4.0.0':
  1561. dependencies:
  1562. fontkitten: 1.0.3
  1563. '@emnapi/runtime@1.9.0':
  1564. dependencies:
  1565. tslib: 2.8.1
  1566. optional: true
  1567. '@esbuild/aix-ppc64@0.25.12':
  1568. optional: true
  1569. '@esbuild/aix-ppc64@0.27.4':
  1570. optional: true
  1571. '@esbuild/android-arm64@0.25.12':
  1572. optional: true
  1573. '@esbuild/android-arm64@0.27.4':
  1574. optional: true
  1575. '@esbuild/android-arm@0.25.12':
  1576. optional: true
  1577. '@esbuild/android-arm@0.27.4':
  1578. optional: true
  1579. '@esbuild/android-x64@0.25.12':
  1580. optional: true
  1581. '@esbuild/android-x64@0.27.4':
  1582. optional: true
  1583. '@esbuild/darwin-arm64@0.25.12':
  1584. optional: true
  1585. '@esbuild/darwin-arm64@0.27.4':
  1586. optional: true
  1587. '@esbuild/darwin-x64@0.25.12':
  1588. optional: true
  1589. '@esbuild/darwin-x64@0.27.4':
  1590. optional: true
  1591. '@esbuild/freebsd-arm64@0.25.12':
  1592. optional: true
  1593. '@esbuild/freebsd-arm64@0.27.4':
  1594. optional: true
  1595. '@esbuild/freebsd-x64@0.25.12':
  1596. optional: true
  1597. '@esbuild/freebsd-x64@0.27.4':
  1598. optional: true
  1599. '@esbuild/linux-arm64@0.25.12':
  1600. optional: true
  1601. '@esbuild/linux-arm64@0.27.4':
  1602. optional: true
  1603. '@esbuild/linux-arm@0.25.12':
  1604. optional: true
  1605. '@esbuild/linux-arm@0.27.4':
  1606. optional: true
  1607. '@esbuild/linux-ia32@0.25.12':
  1608. optional: true
  1609. '@esbuild/linux-ia32@0.27.4':
  1610. optional: true
  1611. '@esbuild/linux-loong64@0.25.12':
  1612. optional: true
  1613. '@esbuild/linux-loong64@0.27.4':
  1614. optional: true
  1615. '@esbuild/linux-mips64el@0.25.12':
  1616. optional: true
  1617. '@esbuild/linux-mips64el@0.27.4':
  1618. optional: true
  1619. '@esbuild/linux-ppc64@0.25.12':
  1620. optional: true
  1621. '@esbuild/linux-ppc64@0.27.4':
  1622. optional: true
  1623. '@esbuild/linux-riscv64@0.25.12':
  1624. optional: true
  1625. '@esbuild/linux-riscv64@0.27.4':
  1626. optional: true
  1627. '@esbuild/linux-s390x@0.25.12':
  1628. optional: true
  1629. '@esbuild/linux-s390x@0.27.4':
  1630. optional: true
  1631. '@esbuild/linux-x64@0.25.12':
  1632. optional: true
  1633. '@esbuild/linux-x64@0.27.4':
  1634. optional: true
  1635. '@esbuild/netbsd-arm64@0.25.12':
  1636. optional: true
  1637. '@esbuild/netbsd-arm64@0.27.4':
  1638. optional: true
  1639. '@esbuild/netbsd-x64@0.25.12':
  1640. optional: true
  1641. '@esbuild/netbsd-x64@0.27.4':
  1642. optional: true
  1643. '@esbuild/openbsd-arm64@0.25.12':
  1644. optional: true
  1645. '@esbuild/openbsd-arm64@0.27.4':
  1646. optional: true
  1647. '@esbuild/openbsd-x64@0.25.12':
  1648. optional: true
  1649. '@esbuild/openbsd-x64@0.27.4':
  1650. optional: true
  1651. '@esbuild/openharmony-arm64@0.25.12':
  1652. optional: true
  1653. '@esbuild/openharmony-arm64@0.27.4':
  1654. optional: true
  1655. '@esbuild/sunos-x64@0.25.12':
  1656. optional: true
  1657. '@esbuild/sunos-x64@0.27.4':
  1658. optional: true
  1659. '@esbuild/win32-arm64@0.25.12':
  1660. optional: true
  1661. '@esbuild/win32-arm64@0.27.4':
  1662. optional: true
  1663. '@esbuild/win32-ia32@0.25.12':
  1664. optional: true
  1665. '@esbuild/win32-ia32@0.27.4':
  1666. optional: true
  1667. '@esbuild/win32-x64@0.25.12':
  1668. optional: true
  1669. '@esbuild/win32-x64@0.27.4':
  1670. optional: true
  1671. '@img/colour@1.1.0':
  1672. optional: true
  1673. '@img/sharp-darwin-arm64@0.34.5':
  1674. optionalDependencies:
  1675. '@img/sharp-libvips-darwin-arm64': 1.2.4
  1676. optional: true
  1677. '@img/sharp-darwin-x64@0.34.5':
  1678. optionalDependencies:
  1679. '@img/sharp-libvips-darwin-x64': 1.2.4
  1680. optional: true
  1681. '@img/sharp-libvips-darwin-arm64@1.2.4':
  1682. optional: true
  1683. '@img/sharp-libvips-darwin-x64@1.2.4':
  1684. optional: true
  1685. '@img/sharp-libvips-linux-arm64@1.2.4':
  1686. optional: true
  1687. '@img/sharp-libvips-linux-arm@1.2.4':
  1688. optional: true
  1689. '@img/sharp-libvips-linux-ppc64@1.2.4':
  1690. optional: true
  1691. '@img/sharp-libvips-linux-riscv64@1.2.4':
  1692. optional: true
  1693. '@img/sharp-libvips-linux-s390x@1.2.4':
  1694. optional: true
  1695. '@img/sharp-libvips-linux-x64@1.2.4':
  1696. optional: true
  1697. '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
  1698. optional: true
  1699. '@img/sharp-libvips-linuxmusl-x64@1.2.4':
  1700. optional: true
  1701. '@img/sharp-linux-arm64@0.34.5':
  1702. optionalDependencies:
  1703. '@img/sharp-libvips-linux-arm64': 1.2.4
  1704. optional: true
  1705. '@img/sharp-linux-arm@0.34.5':
  1706. optionalDependencies:
  1707. '@img/sharp-libvips-linux-arm': 1.2.4
  1708. optional: true
  1709. '@img/sharp-linux-ppc64@0.34.5':
  1710. optionalDependencies:
  1711. '@img/sharp-libvips-linux-ppc64': 1.2.4
  1712. optional: true
  1713. '@img/sharp-linux-riscv64@0.34.5':
  1714. optionalDependencies:
  1715. '@img/sharp-libvips-linux-riscv64': 1.2.4
  1716. optional: true
  1717. '@img/sharp-linux-s390x@0.34.5':
  1718. optionalDependencies:
  1719. '@img/sharp-libvips-linux-s390x': 1.2.4
  1720. optional: true
  1721. '@img/sharp-linux-x64@0.34.5':
  1722. optionalDependencies:
  1723. '@img/sharp-libvips-linux-x64': 1.2.4
  1724. optional: true
  1725. '@img/sharp-linuxmusl-arm64@0.34.5':
  1726. optionalDependencies:
  1727. '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
  1728. optional: true
  1729. '@img/sharp-linuxmusl-x64@0.34.5':
  1730. optionalDependencies:
  1731. '@img/sharp-libvips-linuxmusl-x64': 1.2.4
  1732. optional: true
  1733. '@img/sharp-wasm32@0.34.5':
  1734. dependencies:
  1735. '@emnapi/runtime': 1.9.0
  1736. optional: true
  1737. '@img/sharp-win32-arm64@0.34.5':
  1738. optional: true
  1739. '@img/sharp-win32-ia32@0.34.5':
  1740. optional: true
  1741. '@img/sharp-win32-x64@0.34.5':
  1742. optional: true
  1743. '@jridgewell/sourcemap-codec@1.5.5': {}
  1744. '@libsql/client@0.15.15':
  1745. dependencies:
  1746. '@libsql/core': 0.15.15
  1747. '@libsql/hrana-client': 0.7.0
  1748. js-base64: 3.7.8
  1749. libsql: 0.5.22
  1750. promise-limit: 2.7.0
  1751. transitivePeerDependencies:
  1752. - bufferutil
  1753. - utf-8-validate
  1754. '@libsql/core@0.15.15':
  1755. dependencies:
  1756. js-base64: 3.7.8
  1757. '@libsql/darwin-arm64@0.5.22':
  1758. optional: true
  1759. '@libsql/darwin-x64@0.5.22':
  1760. optional: true
  1761. '@libsql/hrana-client@0.7.0':
  1762. dependencies:
  1763. '@libsql/isomorphic-fetch': 0.3.1
  1764. '@libsql/isomorphic-ws': 0.1.5
  1765. js-base64: 3.7.8
  1766. node-fetch: 3.3.2
  1767. transitivePeerDependencies:
  1768. - bufferutil
  1769. - utf-8-validate
  1770. '@libsql/isomorphic-fetch@0.3.1': {}
  1771. '@libsql/isomorphic-ws@0.1.5':
  1772. dependencies:
  1773. '@types/ws': 8.18.1
  1774. ws: 8.19.0
  1775. transitivePeerDependencies:
  1776. - bufferutil
  1777. - utf-8-validate
  1778. '@libsql/linux-arm-gnueabihf@0.5.22':
  1779. optional: true
  1780. '@libsql/linux-arm-musleabihf@0.5.22':
  1781. optional: true
  1782. '@libsql/linux-arm64-gnu@0.5.22':
  1783. optional: true
  1784. '@libsql/linux-arm64-musl@0.5.22':
  1785. optional: true
  1786. '@libsql/linux-x64-gnu@0.5.22':
  1787. optional: true
  1788. '@libsql/linux-x64-musl@0.5.22':
  1789. optional: true
  1790. '@libsql/win32-x64-msvc@0.5.22':
  1791. optional: true
  1792. '@neon-rs/load@0.0.4': {}
  1793. '@oslojs/encoding@1.1.0': {}
  1794. '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
  1795. dependencies:
  1796. '@types/estree': 1.0.8
  1797. estree-walker: 2.0.2
  1798. picomatch: 4.0.3
  1799. optionalDependencies:
  1800. rollup: 4.59.0
  1801. '@rollup/rollup-android-arm-eabi@4.59.0':
  1802. optional: true
  1803. '@rollup/rollup-android-arm64@4.59.0':
  1804. optional: true
  1805. '@rollup/rollup-darwin-arm64@4.59.0':
  1806. optional: true
  1807. '@rollup/rollup-darwin-x64@4.59.0':
  1808. optional: true
  1809. '@rollup/rollup-freebsd-arm64@4.59.0':
  1810. optional: true
  1811. '@rollup/rollup-freebsd-x64@4.59.0':
  1812. optional: true
  1813. '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
  1814. optional: true
  1815. '@rollup/rollup-linux-arm-musleabihf@4.59.0':
  1816. optional: true
  1817. '@rollup/rollup-linux-arm64-gnu@4.59.0':
  1818. optional: true
  1819. '@rollup/rollup-linux-arm64-musl@4.59.0':
  1820. optional: true
  1821. '@rollup/rollup-linux-loong64-gnu@4.59.0':
  1822. optional: true
  1823. '@rollup/rollup-linux-loong64-musl@4.59.0':
  1824. optional: true
  1825. '@rollup/rollup-linux-ppc64-gnu@4.59.0':
  1826. optional: true
  1827. '@rollup/rollup-linux-ppc64-musl@4.59.0':
  1828. optional: true
  1829. '@rollup/rollup-linux-riscv64-gnu@4.59.0':
  1830. optional: true
  1831. '@rollup/rollup-linux-riscv64-musl@4.59.0':
  1832. optional: true
  1833. '@rollup/rollup-linux-s390x-gnu@4.59.0':
  1834. optional: true
  1835. '@rollup/rollup-linux-x64-gnu@4.59.0':
  1836. optional: true
  1837. '@rollup/rollup-linux-x64-musl@4.59.0':
  1838. optional: true
  1839. '@rollup/rollup-openbsd-x64@4.59.0':
  1840. optional: true
  1841. '@rollup/rollup-openharmony-arm64@4.59.0':
  1842. optional: true
  1843. '@rollup/rollup-win32-arm64-msvc@4.59.0':
  1844. optional: true
  1845. '@rollup/rollup-win32-ia32-msvc@4.59.0':
  1846. optional: true
  1847. '@rollup/rollup-win32-x64-gnu@4.59.0':
  1848. optional: true
  1849. '@rollup/rollup-win32-x64-msvc@4.59.0':
  1850. optional: true
  1851. '@shikijs/core@3.23.0':
  1852. dependencies:
  1853. '@shikijs/types': 3.23.0
  1854. '@shikijs/vscode-textmate': 10.0.2
  1855. '@types/hast': 3.0.4
  1856. hast-util-to-html: 9.0.5
  1857. '@shikijs/engine-javascript@3.23.0':
  1858. dependencies:
  1859. '@shikijs/types': 3.23.0
  1860. '@shikijs/vscode-textmate': 10.0.2
  1861. oniguruma-to-es: 4.3.5
  1862. '@shikijs/engine-oniguruma@3.23.0':
  1863. dependencies:
  1864. '@shikijs/types': 3.23.0
  1865. '@shikijs/vscode-textmate': 10.0.2
  1866. '@shikijs/langs@3.23.0':
  1867. dependencies:
  1868. '@shikijs/types': 3.23.0
  1869. '@shikijs/themes@3.23.0':
  1870. dependencies:
  1871. '@shikijs/types': 3.23.0
  1872. '@shikijs/types@3.23.0':
  1873. dependencies:
  1874. '@shikijs/vscode-textmate': 10.0.2
  1875. '@types/hast': 3.0.4
  1876. '@shikijs/vscode-textmate@10.0.2': {}
  1877. '@types/debug@4.1.12':
  1878. dependencies:
  1879. '@types/ms': 2.1.0
  1880. '@types/estree@1.0.8': {}
  1881. '@types/hast@3.0.4':
  1882. dependencies:
  1883. '@types/unist': 3.0.3
  1884. '@types/mdast@4.0.4':
  1885. dependencies:
  1886. '@types/unist': 3.0.3
  1887. '@types/ms@2.1.0': {}
  1888. '@types/nlcst@2.0.3':
  1889. dependencies:
  1890. '@types/unist': 3.0.3
  1891. '@types/node@24.12.0':
  1892. dependencies:
  1893. undici-types: 7.16.0
  1894. '@types/qrcode@1.5.6':
  1895. dependencies:
  1896. '@types/node': 24.12.0
  1897. '@types/unist@3.0.3': {}
  1898. '@types/ws@8.18.1':
  1899. dependencies:
  1900. '@types/node': 24.12.0
  1901. '@ungap/structured-clone@1.3.0': {}
  1902. acorn@8.16.0: {}
  1903. ansi-align@3.0.1:
  1904. dependencies:
  1905. string-width: 4.2.3
  1906. ansi-regex@5.0.1: {}
  1907. ansi-regex@6.2.2: {}
  1908. ansi-styles@4.3.0:
  1909. dependencies:
  1910. color-convert: 2.0.1
  1911. ansi-styles@6.2.3: {}
  1912. anymatch@3.1.3:
  1913. dependencies:
  1914. normalize-path: 3.0.0
  1915. picomatch: 2.3.1
  1916. argparse@2.0.1: {}
  1917. aria-query@5.3.2: {}
  1918. array-iterate@2.0.1: {}
  1919. astro@5.18.1(@types/node@24.12.0)(rollup@4.59.0)(typescript@5.9.3):
  1920. dependencies:
  1921. '@astrojs/compiler': 2.13.1
  1922. '@astrojs/internal-helpers': 0.7.6
  1923. '@astrojs/markdown-remark': 6.3.11
  1924. '@astrojs/telemetry': 3.3.0
  1925. '@capsizecss/unpack': 4.0.0
  1926. '@oslojs/encoding': 1.1.0
  1927. '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
  1928. acorn: 8.16.0
  1929. aria-query: 5.3.2
  1930. axobject-query: 4.1.0
  1931. boxen: 8.0.1
  1932. ci-info: 4.4.0
  1933. clsx: 2.1.1
  1934. common-ancestor-path: 1.0.1
  1935. cookie: 1.1.1
  1936. cssesc: 3.0.0
  1937. debug: 4.4.3
  1938. deterministic-object-hash: 2.0.2
  1939. devalue: 5.6.4
  1940. diff: 8.0.3
  1941. dlv: 1.1.3
  1942. dset: 3.1.4
  1943. es-module-lexer: 1.7.0
  1944. esbuild: 0.27.4
  1945. estree-walker: 3.0.3
  1946. flattie: 1.1.1
  1947. fontace: 0.4.1
  1948. github-slugger: 2.0.0
  1949. html-escaper: 3.0.3
  1950. http-cache-semantics: 4.2.0
  1951. import-meta-resolve: 4.2.0
  1952. js-yaml: 4.1.1
  1953. magic-string: 0.30.21
  1954. magicast: 0.5.2
  1955. mrmime: 2.0.1
  1956. neotraverse: 0.6.18
  1957. p-limit: 6.2.0
  1958. p-queue: 8.1.1
  1959. package-manager-detector: 1.6.0
  1960. piccolore: 0.1.3
  1961. picomatch: 4.0.3
  1962. prompts: 2.4.2
  1963. rehype: 13.0.2
  1964. semver: 7.7.4
  1965. shiki: 3.23.0
  1966. smol-toml: 1.6.0
  1967. svgo: 4.0.1
  1968. tinyexec: 1.0.4
  1969. tinyglobby: 0.2.15
  1970. tsconfck: 3.1.6(typescript@5.9.3)
  1971. ultrahtml: 1.6.0
  1972. unifont: 0.7.4
  1973. unist-util-visit: 5.1.0
  1974. unstorage: 1.17.4
  1975. vfile: 6.0.3
  1976. vite: 6.4.1(@types/node@24.12.0)
  1977. vitefu: 1.1.2(vite@6.4.1(@types/node@24.12.0))
  1978. xxhash-wasm: 1.1.0
  1979. yargs-parser: 21.1.1
  1980. yocto-spinner: 0.2.3
  1981. zod: 3.25.76
  1982. zod-to-json-schema: 3.25.1(zod@3.25.76)
  1983. zod-to-ts: 1.2.0(typescript@5.9.3)(zod@3.25.76)
  1984. optionalDependencies:
  1985. sharp: 0.34.5
  1986. transitivePeerDependencies:
  1987. - '@azure/app-configuration'
  1988. - '@azure/cosmos'
  1989. - '@azure/data-tables'
  1990. - '@azure/identity'
  1991. - '@azure/keyvault-secrets'
  1992. - '@azure/storage-blob'
  1993. - '@capacitor/preferences'
  1994. - '@deno/kv'
  1995. - '@netlify/blobs'
  1996. - '@planetscale/database'
  1997. - '@types/node'
  1998. - '@upstash/redis'
  1999. - '@vercel/blob'
  2000. - '@vercel/functions'
  2001. - '@vercel/kv'
  2002. - aws4fetch
  2003. - db0
  2004. - idb-keyval
  2005. - ioredis
  2006. - jiti
  2007. - less
  2008. - lightningcss
  2009. - rollup
  2010. - sass
  2011. - sass-embedded
  2012. - stylus
  2013. - sugarss
  2014. - supports-color
  2015. - terser
  2016. - tsx
  2017. - typescript
  2018. - uploadthing
  2019. - yaml
  2020. axobject-query@4.1.0: {}
  2021. bail@2.0.2: {}
  2022. base-64@1.0.0: {}
  2023. boolbase@1.0.0: {}
  2024. boxen@8.0.1:
  2025. dependencies:
  2026. ansi-align: 3.0.1
  2027. camelcase: 8.0.0
  2028. chalk: 5.6.2
  2029. cli-boxes: 3.0.0
  2030. string-width: 7.2.0
  2031. type-fest: 4.41.0
  2032. widest-line: 5.0.0
  2033. wrap-ansi: 9.0.2
  2034. camelcase@5.3.1: {}
  2035. camelcase@8.0.0: {}
  2036. ccount@2.0.1: {}
  2037. chalk@5.6.2: {}
  2038. character-entities-html4@2.1.0: {}
  2039. character-entities-legacy@3.0.0: {}
  2040. character-entities@2.0.2: {}
  2041. chokidar@5.0.0:
  2042. dependencies:
  2043. readdirp: 5.0.0
  2044. ci-info@4.4.0: {}
  2045. cli-boxes@3.0.0: {}
  2046. cliui@6.0.0:
  2047. dependencies:
  2048. string-width: 4.2.3
  2049. strip-ansi: 6.0.1
  2050. wrap-ansi: 6.2.0
  2051. clsx@2.1.1: {}
  2052. color-convert@2.0.1:
  2053. dependencies:
  2054. color-name: 1.1.4
  2055. color-name@1.1.4: {}
  2056. comma-separated-tokens@2.0.3: {}
  2057. commander@11.1.0: {}
  2058. common-ancestor-path@1.0.1: {}
  2059. cookie-es@1.2.2: {}
  2060. cookie@1.1.1: {}
  2061. crossws@0.3.5:
  2062. dependencies:
  2063. uncrypto: 0.1.3
  2064. css-select@5.2.2:
  2065. dependencies:
  2066. boolbase: 1.0.0
  2067. css-what: 6.2.2
  2068. domhandler: 5.0.3
  2069. domutils: 3.2.2
  2070. nth-check: 2.1.1
  2071. css-tree@2.2.1:
  2072. dependencies:
  2073. mdn-data: 2.0.28
  2074. source-map-js: 1.2.1
  2075. css-tree@3.2.1:
  2076. dependencies:
  2077. mdn-data: 2.27.1
  2078. source-map-js: 1.2.1
  2079. css-what@6.2.2: {}
  2080. cssesc@3.0.0: {}
  2081. csso@5.0.5:
  2082. dependencies:
  2083. css-tree: 2.2.1
  2084. data-uri-to-buffer@4.0.1: {}
  2085. debug@4.4.3:
  2086. dependencies:
  2087. ms: 2.1.3
  2088. decamelize@1.2.0: {}
  2089. decode-named-character-reference@1.3.0:
  2090. dependencies:
  2091. character-entities: 2.0.2
  2092. defu@6.1.4: {}
  2093. depd@2.0.0: {}
  2094. dequal@2.0.3: {}
  2095. destr@2.0.5: {}
  2096. detect-libc@2.0.2: {}
  2097. detect-libc@2.1.2:
  2098. optional: true
  2099. deterministic-object-hash@2.0.2:
  2100. dependencies:
  2101. base-64: 1.0.0
  2102. devalue@5.6.4: {}
  2103. devlop@1.1.0:
  2104. dependencies:
  2105. dequal: 2.0.3
  2106. diff@8.0.3: {}
  2107. dijkstrajs@1.0.3: {}
  2108. dlv@1.1.3: {}
  2109. dom-serializer@2.0.0:
  2110. dependencies:
  2111. domelementtype: 2.3.0
  2112. domhandler: 5.0.3
  2113. entities: 4.5.0
  2114. domelementtype@2.3.0: {}
  2115. domhandler@5.0.3:
  2116. dependencies:
  2117. domelementtype: 2.3.0
  2118. domutils@3.2.2:
  2119. dependencies:
  2120. dom-serializer: 2.0.0
  2121. domelementtype: 2.3.0
  2122. domhandler: 5.0.3
  2123. dset@3.1.4: {}
  2124. ee-first@1.1.1: {}
  2125. emoji-regex@10.6.0: {}
  2126. emoji-regex@8.0.0: {}
  2127. encodeurl@2.0.0: {}
  2128. entities@4.5.0: {}
  2129. entities@6.0.1: {}
  2130. es-module-lexer@1.7.0: {}
  2131. esbuild@0.25.12:
  2132. optionalDependencies:
  2133. '@esbuild/aix-ppc64': 0.25.12
  2134. '@esbuild/android-arm': 0.25.12
  2135. '@esbuild/android-arm64': 0.25.12
  2136. '@esbuild/android-x64': 0.25.12
  2137. '@esbuild/darwin-arm64': 0.25.12
  2138. '@esbuild/darwin-x64': 0.25.12
  2139. '@esbuild/freebsd-arm64': 0.25.12
  2140. '@esbuild/freebsd-x64': 0.25.12
  2141. '@esbuild/linux-arm': 0.25.12
  2142. '@esbuild/linux-arm64': 0.25.12
  2143. '@esbuild/linux-ia32': 0.25.12
  2144. '@esbuild/linux-loong64': 0.25.12
  2145. '@esbuild/linux-mips64el': 0.25.12
  2146. '@esbuild/linux-ppc64': 0.25.12
  2147. '@esbuild/linux-riscv64': 0.25.12
  2148. '@esbuild/linux-s390x': 0.25.12
  2149. '@esbuild/linux-x64': 0.25.12
  2150. '@esbuild/netbsd-arm64': 0.25.12
  2151. '@esbuild/netbsd-x64': 0.25.12
  2152. '@esbuild/openbsd-arm64': 0.25.12
  2153. '@esbuild/openbsd-x64': 0.25.12
  2154. '@esbuild/openharmony-arm64': 0.25.12
  2155. '@esbuild/sunos-x64': 0.25.12
  2156. '@esbuild/win32-arm64': 0.25.12
  2157. '@esbuild/win32-ia32': 0.25.12
  2158. '@esbuild/win32-x64': 0.25.12
  2159. esbuild@0.27.4:
  2160. optionalDependencies:
  2161. '@esbuild/aix-ppc64': 0.27.4
  2162. '@esbuild/android-arm': 0.27.4
  2163. '@esbuild/android-arm64': 0.27.4
  2164. '@esbuild/android-x64': 0.27.4
  2165. '@esbuild/darwin-arm64': 0.27.4
  2166. '@esbuild/darwin-x64': 0.27.4
  2167. '@esbuild/freebsd-arm64': 0.27.4
  2168. '@esbuild/freebsd-x64': 0.27.4
  2169. '@esbuild/linux-arm': 0.27.4
  2170. '@esbuild/linux-arm64': 0.27.4
  2171. '@esbuild/linux-ia32': 0.27.4
  2172. '@esbuild/linux-loong64': 0.27.4
  2173. '@esbuild/linux-mips64el': 0.27.4
  2174. '@esbuild/linux-ppc64': 0.27.4
  2175. '@esbuild/linux-riscv64': 0.27.4
  2176. '@esbuild/linux-s390x': 0.27.4
  2177. '@esbuild/linux-x64': 0.27.4
  2178. '@esbuild/netbsd-arm64': 0.27.4
  2179. '@esbuild/netbsd-x64': 0.27.4
  2180. '@esbuild/openbsd-arm64': 0.27.4
  2181. '@esbuild/openbsd-x64': 0.27.4
  2182. '@esbuild/openharmony-arm64': 0.27.4
  2183. '@esbuild/sunos-x64': 0.27.4
  2184. '@esbuild/win32-arm64': 0.27.4
  2185. '@esbuild/win32-ia32': 0.27.4
  2186. '@esbuild/win32-x64': 0.27.4
  2187. escape-html@1.0.3: {}
  2188. escape-string-regexp@5.0.0: {}
  2189. estree-walker@2.0.2: {}
  2190. estree-walker@3.0.3:
  2191. dependencies:
  2192. '@types/estree': 1.0.8
  2193. etag@1.8.1: {}
  2194. eventemitter3@5.0.4: {}
  2195. extend@3.0.2: {}
  2196. fdir@6.5.0(picomatch@4.0.3):
  2197. optionalDependencies:
  2198. picomatch: 4.0.3
  2199. fetch-blob@3.2.0:
  2200. dependencies:
  2201. node-domexception: 1.0.0
  2202. web-streams-polyfill: 3.3.3
  2203. find-up@4.1.0:
  2204. dependencies:
  2205. locate-path: 5.0.0
  2206. path-exists: 4.0.0
  2207. flattie@1.1.1: {}
  2208. fontace@0.4.1:
  2209. dependencies:
  2210. fontkitten: 1.0.3
  2211. fontkitten@1.0.3:
  2212. dependencies:
  2213. tiny-inflate: 1.0.3
  2214. formdata-polyfill@4.0.10:
  2215. dependencies:
  2216. fetch-blob: 3.2.0
  2217. fresh@2.0.0: {}
  2218. fsevents@2.3.3:
  2219. optional: true
  2220. get-caller-file@2.0.5: {}
  2221. get-east-asian-width@1.5.0: {}
  2222. github-slugger@2.0.0: {}
  2223. h3@1.15.6:
  2224. dependencies:
  2225. cookie-es: 1.2.2
  2226. crossws: 0.3.5
  2227. defu: 6.1.4
  2228. destr: 2.0.5
  2229. iron-webcrypto: 1.2.1
  2230. node-mock-http: 1.0.4
  2231. radix3: 1.1.2
  2232. ufo: 1.6.3
  2233. uncrypto: 0.1.3
  2234. hast-util-from-html@2.0.3:
  2235. dependencies:
  2236. '@types/hast': 3.0.4
  2237. devlop: 1.1.0
  2238. hast-util-from-parse5: 8.0.3
  2239. parse5: 7.3.0
  2240. vfile: 6.0.3
  2241. vfile-message: 4.0.3
  2242. hast-util-from-parse5@8.0.3:
  2243. dependencies:
  2244. '@types/hast': 3.0.4
  2245. '@types/unist': 3.0.3
  2246. devlop: 1.1.0
  2247. hastscript: 9.0.1
  2248. property-information: 7.1.0
  2249. vfile: 6.0.3
  2250. vfile-location: 5.0.3
  2251. web-namespaces: 2.0.1
  2252. hast-util-is-element@3.0.0:
  2253. dependencies:
  2254. '@types/hast': 3.0.4
  2255. hast-util-parse-selector@4.0.0:
  2256. dependencies:
  2257. '@types/hast': 3.0.4
  2258. hast-util-raw@9.1.0:
  2259. dependencies:
  2260. '@types/hast': 3.0.4
  2261. '@types/unist': 3.0.3
  2262. '@ungap/structured-clone': 1.3.0
  2263. hast-util-from-parse5: 8.0.3
  2264. hast-util-to-parse5: 8.0.1
  2265. html-void-elements: 3.0.0
  2266. mdast-util-to-hast: 13.2.1
  2267. parse5: 7.3.0
  2268. unist-util-position: 5.0.0
  2269. unist-util-visit: 5.1.0
  2270. vfile: 6.0.3
  2271. web-namespaces: 2.0.1
  2272. zwitch: 2.0.4
  2273. hast-util-to-html@9.0.5:
  2274. dependencies:
  2275. '@types/hast': 3.0.4
  2276. '@types/unist': 3.0.3
  2277. ccount: 2.0.1
  2278. comma-separated-tokens: 2.0.3
  2279. hast-util-whitespace: 3.0.0
  2280. html-void-elements: 3.0.0
  2281. mdast-util-to-hast: 13.2.1
  2282. property-information: 7.1.0
  2283. space-separated-tokens: 2.0.2
  2284. stringify-entities: 4.0.4
  2285. zwitch: 2.0.4
  2286. hast-util-to-parse5@8.0.1:
  2287. dependencies:
  2288. '@types/hast': 3.0.4
  2289. comma-separated-tokens: 2.0.3
  2290. devlop: 1.1.0
  2291. property-information: 7.1.0
  2292. space-separated-tokens: 2.0.2
  2293. web-namespaces: 2.0.1
  2294. zwitch: 2.0.4
  2295. hast-util-to-text@4.0.2:
  2296. dependencies:
  2297. '@types/hast': 3.0.4
  2298. '@types/unist': 3.0.3
  2299. hast-util-is-element: 3.0.0
  2300. unist-util-find-after: 5.0.0
  2301. hast-util-whitespace@3.0.0:
  2302. dependencies:
  2303. '@types/hast': 3.0.4
  2304. hastscript@9.0.1:
  2305. dependencies:
  2306. '@types/hast': 3.0.4
  2307. comma-separated-tokens: 2.0.3
  2308. hast-util-parse-selector: 4.0.0
  2309. property-information: 7.1.0
  2310. space-separated-tokens: 2.0.2
  2311. html-escaper@3.0.3: {}
  2312. html-void-elements@3.0.0: {}
  2313. http-cache-semantics@4.2.0: {}
  2314. http-errors@2.0.1:
  2315. dependencies:
  2316. depd: 2.0.0
  2317. inherits: 2.0.4
  2318. setprototypeof: 1.2.0
  2319. statuses: 2.0.2
  2320. toidentifier: 1.0.1
  2321. import-meta-resolve@4.2.0: {}
  2322. inherits@2.0.4: {}
  2323. iron-webcrypto@1.2.1: {}
  2324. is-docker@3.0.0: {}
  2325. is-fullwidth-code-point@3.0.0: {}
  2326. is-inside-container@1.0.0:
  2327. dependencies:
  2328. is-docker: 3.0.0
  2329. is-plain-obj@4.1.0: {}
  2330. is-wsl@3.1.1:
  2331. dependencies:
  2332. is-inside-container: 1.0.0
  2333. js-base64@3.7.8: {}
  2334. js-yaml@4.1.1:
  2335. dependencies:
  2336. argparse: 2.0.1
  2337. kleur@3.0.3: {}
  2338. libsql@0.5.22:
  2339. dependencies:
  2340. '@neon-rs/load': 0.0.4
  2341. detect-libc: 2.0.2
  2342. optionalDependencies:
  2343. '@libsql/darwin-arm64': 0.5.22
  2344. '@libsql/darwin-x64': 0.5.22
  2345. '@libsql/linux-arm-gnueabihf': 0.5.22
  2346. '@libsql/linux-arm-musleabihf': 0.5.22
  2347. '@libsql/linux-arm64-gnu': 0.5.22
  2348. '@libsql/linux-arm64-musl': 0.5.22
  2349. '@libsql/linux-x64-gnu': 0.5.22
  2350. '@libsql/linux-x64-musl': 0.5.22
  2351. '@libsql/win32-x64-msvc': 0.5.22
  2352. locate-path@5.0.0:
  2353. dependencies:
  2354. p-locate: 4.1.0
  2355. longest-streak@3.1.0: {}
  2356. lru-cache@11.2.7: {}
  2357. magic-string@0.30.21:
  2358. dependencies:
  2359. '@jridgewell/sourcemap-codec': 1.5.5
  2360. magicast@0.5.2:
  2361. dependencies:
  2362. '@babel/parser': 7.29.0
  2363. '@babel/types': 7.29.0
  2364. source-map-js: 1.2.1
  2365. markdown-table@3.0.4: {}
  2366. mdast-util-definitions@6.0.0:
  2367. dependencies:
  2368. '@types/mdast': 4.0.4
  2369. '@types/unist': 3.0.3
  2370. unist-util-visit: 5.1.0
  2371. mdast-util-find-and-replace@3.0.2:
  2372. dependencies:
  2373. '@types/mdast': 4.0.4
  2374. escape-string-regexp: 5.0.0
  2375. unist-util-is: 6.0.1
  2376. unist-util-visit-parents: 6.0.2
  2377. mdast-util-from-markdown@2.0.3:
  2378. dependencies:
  2379. '@types/mdast': 4.0.4
  2380. '@types/unist': 3.0.3
  2381. decode-named-character-reference: 1.3.0
  2382. devlop: 1.1.0
  2383. mdast-util-to-string: 4.0.0
  2384. micromark: 4.0.2
  2385. micromark-util-decode-numeric-character-reference: 2.0.2
  2386. micromark-util-decode-string: 2.0.1
  2387. micromark-util-normalize-identifier: 2.0.1
  2388. micromark-util-symbol: 2.0.1
  2389. micromark-util-types: 2.0.2
  2390. unist-util-stringify-position: 4.0.0
  2391. transitivePeerDependencies:
  2392. - supports-color
  2393. mdast-util-gfm-autolink-literal@2.0.1:
  2394. dependencies:
  2395. '@types/mdast': 4.0.4
  2396. ccount: 2.0.1
  2397. devlop: 1.1.0
  2398. mdast-util-find-and-replace: 3.0.2
  2399. micromark-util-character: 2.1.1
  2400. mdast-util-gfm-footnote@2.1.0:
  2401. dependencies:
  2402. '@types/mdast': 4.0.4
  2403. devlop: 1.1.0
  2404. mdast-util-from-markdown: 2.0.3
  2405. mdast-util-to-markdown: 2.1.2
  2406. micromark-util-normalize-identifier: 2.0.1
  2407. transitivePeerDependencies:
  2408. - supports-color
  2409. mdast-util-gfm-strikethrough@2.0.0:
  2410. dependencies:
  2411. '@types/mdast': 4.0.4
  2412. mdast-util-from-markdown: 2.0.3
  2413. mdast-util-to-markdown: 2.1.2
  2414. transitivePeerDependencies:
  2415. - supports-color
  2416. mdast-util-gfm-table@2.0.0:
  2417. dependencies:
  2418. '@types/mdast': 4.0.4
  2419. devlop: 1.1.0
  2420. markdown-table: 3.0.4
  2421. mdast-util-from-markdown: 2.0.3
  2422. mdast-util-to-markdown: 2.1.2
  2423. transitivePeerDependencies:
  2424. - supports-color
  2425. mdast-util-gfm-task-list-item@2.0.0:
  2426. dependencies:
  2427. '@types/mdast': 4.0.4
  2428. devlop: 1.1.0
  2429. mdast-util-from-markdown: 2.0.3
  2430. mdast-util-to-markdown: 2.1.2
  2431. transitivePeerDependencies:
  2432. - supports-color
  2433. mdast-util-gfm@3.1.0:
  2434. dependencies:
  2435. mdast-util-from-markdown: 2.0.3
  2436. mdast-util-gfm-autolink-literal: 2.0.1
  2437. mdast-util-gfm-footnote: 2.1.0
  2438. mdast-util-gfm-strikethrough: 2.0.0
  2439. mdast-util-gfm-table: 2.0.0
  2440. mdast-util-gfm-task-list-item: 2.0.0
  2441. mdast-util-to-markdown: 2.1.2
  2442. transitivePeerDependencies:
  2443. - supports-color
  2444. mdast-util-phrasing@4.1.0:
  2445. dependencies:
  2446. '@types/mdast': 4.0.4
  2447. unist-util-is: 6.0.1
  2448. mdast-util-to-hast@13.2.1:
  2449. dependencies:
  2450. '@types/hast': 3.0.4
  2451. '@types/mdast': 4.0.4
  2452. '@ungap/structured-clone': 1.3.0
  2453. devlop: 1.1.0
  2454. micromark-util-sanitize-uri: 2.0.1
  2455. trim-lines: 3.0.1
  2456. unist-util-position: 5.0.0
  2457. unist-util-visit: 5.1.0
  2458. vfile: 6.0.3
  2459. mdast-util-to-markdown@2.1.2:
  2460. dependencies:
  2461. '@types/mdast': 4.0.4
  2462. '@types/unist': 3.0.3
  2463. longest-streak: 3.1.0
  2464. mdast-util-phrasing: 4.1.0
  2465. mdast-util-to-string: 4.0.0
  2466. micromark-util-classify-character: 2.0.1
  2467. micromark-util-decode-string: 2.0.1
  2468. unist-util-visit: 5.1.0
  2469. zwitch: 2.0.4
  2470. mdast-util-to-string@4.0.0:
  2471. dependencies:
  2472. '@types/mdast': 4.0.4
  2473. mdn-data@2.0.28: {}
  2474. mdn-data@2.27.1: {}
  2475. micromark-core-commonmark@2.0.3:
  2476. dependencies:
  2477. decode-named-character-reference: 1.3.0
  2478. devlop: 1.1.0
  2479. micromark-factory-destination: 2.0.1
  2480. micromark-factory-label: 2.0.1
  2481. micromark-factory-space: 2.0.1
  2482. micromark-factory-title: 2.0.1
  2483. micromark-factory-whitespace: 2.0.1
  2484. micromark-util-character: 2.1.1
  2485. micromark-util-chunked: 2.0.1
  2486. micromark-util-classify-character: 2.0.1
  2487. micromark-util-html-tag-name: 2.0.1
  2488. micromark-util-normalize-identifier: 2.0.1
  2489. micromark-util-resolve-all: 2.0.1
  2490. micromark-util-subtokenize: 2.1.0
  2491. micromark-util-symbol: 2.0.1
  2492. micromark-util-types: 2.0.2
  2493. micromark-extension-gfm-autolink-literal@2.1.0:
  2494. dependencies:
  2495. micromark-util-character: 2.1.1
  2496. micromark-util-sanitize-uri: 2.0.1
  2497. micromark-util-symbol: 2.0.1
  2498. micromark-util-types: 2.0.2
  2499. micromark-extension-gfm-footnote@2.1.0:
  2500. dependencies:
  2501. devlop: 1.1.0
  2502. micromark-core-commonmark: 2.0.3
  2503. micromark-factory-space: 2.0.1
  2504. micromark-util-character: 2.1.1
  2505. micromark-util-normalize-identifier: 2.0.1
  2506. micromark-util-sanitize-uri: 2.0.1
  2507. micromark-util-symbol: 2.0.1
  2508. micromark-util-types: 2.0.2
  2509. micromark-extension-gfm-strikethrough@2.1.0:
  2510. dependencies:
  2511. devlop: 1.1.0
  2512. micromark-util-chunked: 2.0.1
  2513. micromark-util-classify-character: 2.0.1
  2514. micromark-util-resolve-all: 2.0.1
  2515. micromark-util-symbol: 2.0.1
  2516. micromark-util-types: 2.0.2
  2517. micromark-extension-gfm-table@2.1.1:
  2518. dependencies:
  2519. devlop: 1.1.0
  2520. micromark-factory-space: 2.0.1
  2521. micromark-util-character: 2.1.1
  2522. micromark-util-symbol: 2.0.1
  2523. micromark-util-types: 2.0.2
  2524. micromark-extension-gfm-tagfilter@2.0.0:
  2525. dependencies:
  2526. micromark-util-types: 2.0.2
  2527. micromark-extension-gfm-task-list-item@2.1.0:
  2528. dependencies:
  2529. devlop: 1.1.0
  2530. micromark-factory-space: 2.0.1
  2531. micromark-util-character: 2.1.1
  2532. micromark-util-symbol: 2.0.1
  2533. micromark-util-types: 2.0.2
  2534. micromark-extension-gfm@3.0.0:
  2535. dependencies:
  2536. micromark-extension-gfm-autolink-literal: 2.1.0
  2537. micromark-extension-gfm-footnote: 2.1.0
  2538. micromark-extension-gfm-strikethrough: 2.1.0
  2539. micromark-extension-gfm-table: 2.1.1
  2540. micromark-extension-gfm-tagfilter: 2.0.0
  2541. micromark-extension-gfm-task-list-item: 2.1.0
  2542. micromark-util-combine-extensions: 2.0.1
  2543. micromark-util-types: 2.0.2
  2544. micromark-factory-destination@2.0.1:
  2545. dependencies:
  2546. micromark-util-character: 2.1.1
  2547. micromark-util-symbol: 2.0.1
  2548. micromark-util-types: 2.0.2
  2549. micromark-factory-label@2.0.1:
  2550. dependencies:
  2551. devlop: 1.1.0
  2552. micromark-util-character: 2.1.1
  2553. micromark-util-symbol: 2.0.1
  2554. micromark-util-types: 2.0.2
  2555. micromark-factory-space@2.0.1:
  2556. dependencies:
  2557. micromark-util-character: 2.1.1
  2558. micromark-util-types: 2.0.2
  2559. micromark-factory-title@2.0.1:
  2560. dependencies:
  2561. micromark-factory-space: 2.0.1
  2562. micromark-util-character: 2.1.1
  2563. micromark-util-symbol: 2.0.1
  2564. micromark-util-types: 2.0.2
  2565. micromark-factory-whitespace@2.0.1:
  2566. dependencies:
  2567. micromark-factory-space: 2.0.1
  2568. micromark-util-character: 2.1.1
  2569. micromark-util-symbol: 2.0.1
  2570. micromark-util-types: 2.0.2
  2571. micromark-util-character@2.1.1:
  2572. dependencies:
  2573. micromark-util-symbol: 2.0.1
  2574. micromark-util-types: 2.0.2
  2575. micromark-util-chunked@2.0.1:
  2576. dependencies:
  2577. micromark-util-symbol: 2.0.1
  2578. micromark-util-classify-character@2.0.1:
  2579. dependencies:
  2580. micromark-util-character: 2.1.1
  2581. micromark-util-symbol: 2.0.1
  2582. micromark-util-types: 2.0.2
  2583. micromark-util-combine-extensions@2.0.1:
  2584. dependencies:
  2585. micromark-util-chunked: 2.0.1
  2586. micromark-util-types: 2.0.2
  2587. micromark-util-decode-numeric-character-reference@2.0.2:
  2588. dependencies:
  2589. micromark-util-symbol: 2.0.1
  2590. micromark-util-decode-string@2.0.1:
  2591. dependencies:
  2592. decode-named-character-reference: 1.3.0
  2593. micromark-util-character: 2.1.1
  2594. micromark-util-decode-numeric-character-reference: 2.0.2
  2595. micromark-util-symbol: 2.0.1
  2596. micromark-util-encode@2.0.1: {}
  2597. micromark-util-html-tag-name@2.0.1: {}
  2598. micromark-util-normalize-identifier@2.0.1:
  2599. dependencies:
  2600. micromark-util-symbol: 2.0.1
  2601. micromark-util-resolve-all@2.0.1:
  2602. dependencies:
  2603. micromark-util-types: 2.0.2
  2604. micromark-util-sanitize-uri@2.0.1:
  2605. dependencies:
  2606. micromark-util-character: 2.1.1
  2607. micromark-util-encode: 2.0.1
  2608. micromark-util-symbol: 2.0.1
  2609. micromark-util-subtokenize@2.1.0:
  2610. dependencies:
  2611. devlop: 1.1.0
  2612. micromark-util-chunked: 2.0.1
  2613. micromark-util-symbol: 2.0.1
  2614. micromark-util-types: 2.0.2
  2615. micromark-util-symbol@2.0.1: {}
  2616. micromark-util-types@2.0.2: {}
  2617. micromark@4.0.2:
  2618. dependencies:
  2619. '@types/debug': 4.1.12
  2620. debug: 4.4.3
  2621. decode-named-character-reference: 1.3.0
  2622. devlop: 1.1.0
  2623. micromark-core-commonmark: 2.0.3
  2624. micromark-factory-space: 2.0.1
  2625. micromark-util-character: 2.1.1
  2626. micromark-util-chunked: 2.0.1
  2627. micromark-util-combine-extensions: 2.0.1
  2628. micromark-util-decode-numeric-character-reference: 2.0.2
  2629. micromark-util-encode: 2.0.1
  2630. micromark-util-normalize-identifier: 2.0.1
  2631. micromark-util-resolve-all: 2.0.1
  2632. micromark-util-sanitize-uri: 2.0.1
  2633. micromark-util-subtokenize: 2.1.0
  2634. micromark-util-symbol: 2.0.1
  2635. micromark-util-types: 2.0.2
  2636. transitivePeerDependencies:
  2637. - supports-color
  2638. mime-db@1.54.0: {}
  2639. mime-types@3.0.2:
  2640. dependencies:
  2641. mime-db: 1.54.0
  2642. mrmime@2.0.1: {}
  2643. ms@2.1.3: {}
  2644. nanoid@3.3.11: {}
  2645. nanostores@1.2.0: {}
  2646. neotraverse@0.6.18: {}
  2647. nlcst-to-string@4.0.0:
  2648. dependencies:
  2649. '@types/nlcst': 2.0.3
  2650. node-domexception@1.0.0: {}
  2651. node-fetch-native@1.6.7: {}
  2652. node-fetch@3.3.2:
  2653. dependencies:
  2654. data-uri-to-buffer: 4.0.1
  2655. fetch-blob: 3.2.0
  2656. formdata-polyfill: 4.0.10
  2657. node-mock-http@1.0.4: {}
  2658. normalize-path@3.0.0: {}
  2659. nth-check@2.1.1:
  2660. dependencies:
  2661. boolbase: 1.0.0
  2662. ofetch@1.5.1:
  2663. dependencies:
  2664. destr: 2.0.5
  2665. node-fetch-native: 1.6.7
  2666. ufo: 1.6.3
  2667. ohash@2.0.11: {}
  2668. on-finished@2.4.1:
  2669. dependencies:
  2670. ee-first: 1.1.1
  2671. oniguruma-parser@0.12.1: {}
  2672. oniguruma-to-es@4.3.5:
  2673. dependencies:
  2674. oniguruma-parser: 0.12.1
  2675. regex: 6.1.0
  2676. regex-recursion: 6.0.2
  2677. p-limit@2.3.0:
  2678. dependencies:
  2679. p-try: 2.2.0
  2680. p-limit@6.2.0:
  2681. dependencies:
  2682. yocto-queue: 1.2.2
  2683. p-locate@4.1.0:
  2684. dependencies:
  2685. p-limit: 2.3.0
  2686. p-queue@8.1.1:
  2687. dependencies:
  2688. eventemitter3: 5.0.4
  2689. p-timeout: 6.1.4
  2690. p-timeout@6.1.4: {}
  2691. p-try@2.2.0: {}
  2692. package-manager-detector@1.6.0: {}
  2693. parse-latin@7.0.0:
  2694. dependencies:
  2695. '@types/nlcst': 2.0.3
  2696. '@types/unist': 3.0.3
  2697. nlcst-to-string: 4.0.0
  2698. unist-util-modify-children: 4.0.0
  2699. unist-util-visit-children: 3.0.0
  2700. vfile: 6.0.3
  2701. parse5@7.3.0:
  2702. dependencies:
  2703. entities: 6.0.1
  2704. path-exists@4.0.0: {}
  2705. piccolore@0.1.3: {}
  2706. picocolors@1.1.1: {}
  2707. picomatch@2.3.1: {}
  2708. picomatch@4.0.3: {}
  2709. pngjs@5.0.0: {}
  2710. postcss@8.5.8:
  2711. dependencies:
  2712. nanoid: 3.3.11
  2713. picocolors: 1.1.1
  2714. source-map-js: 1.2.1
  2715. prismjs@1.30.0: {}
  2716. promise-limit@2.7.0: {}
  2717. prompts@2.4.2:
  2718. dependencies:
  2719. kleur: 3.0.3
  2720. sisteransi: 1.0.5
  2721. property-information@7.1.0: {}
  2722. qrcode@1.5.4:
  2723. dependencies:
  2724. dijkstrajs: 1.0.3
  2725. pngjs: 5.0.0
  2726. yargs: 15.4.1
  2727. radix3@1.1.2: {}
  2728. range-parser@1.2.1: {}
  2729. readdirp@5.0.0: {}
  2730. regex-recursion@6.0.2:
  2731. dependencies:
  2732. regex-utilities: 2.3.0
  2733. regex-utilities@2.3.0: {}
  2734. regex@6.1.0:
  2735. dependencies:
  2736. regex-utilities: 2.3.0
  2737. rehype-parse@9.0.1:
  2738. dependencies:
  2739. '@types/hast': 3.0.4
  2740. hast-util-from-html: 2.0.3
  2741. unified: 11.0.5
  2742. rehype-raw@7.0.0:
  2743. dependencies:
  2744. '@types/hast': 3.0.4
  2745. hast-util-raw: 9.1.0
  2746. vfile: 6.0.3
  2747. rehype-stringify@10.0.1:
  2748. dependencies:
  2749. '@types/hast': 3.0.4
  2750. hast-util-to-html: 9.0.5
  2751. unified: 11.0.5
  2752. rehype@13.0.2:
  2753. dependencies:
  2754. '@types/hast': 3.0.4
  2755. rehype-parse: 9.0.1
  2756. rehype-stringify: 10.0.1
  2757. unified: 11.0.5
  2758. remark-gfm@4.0.1:
  2759. dependencies:
  2760. '@types/mdast': 4.0.4
  2761. mdast-util-gfm: 3.1.0
  2762. micromark-extension-gfm: 3.0.0
  2763. remark-parse: 11.0.0
  2764. remark-stringify: 11.0.0
  2765. unified: 11.0.5
  2766. transitivePeerDependencies:
  2767. - supports-color
  2768. remark-parse@11.0.0:
  2769. dependencies:
  2770. '@types/mdast': 4.0.4
  2771. mdast-util-from-markdown: 2.0.3
  2772. micromark-util-types: 2.0.2
  2773. unified: 11.0.5
  2774. transitivePeerDependencies:
  2775. - supports-color
  2776. remark-rehype@11.1.2:
  2777. dependencies:
  2778. '@types/hast': 3.0.4
  2779. '@types/mdast': 4.0.4
  2780. mdast-util-to-hast: 13.2.1
  2781. unified: 11.0.5
  2782. vfile: 6.0.3
  2783. remark-smartypants@3.0.2:
  2784. dependencies:
  2785. retext: 9.0.0
  2786. retext-smartypants: 6.2.0
  2787. unified: 11.0.5
  2788. unist-util-visit: 5.1.0
  2789. remark-stringify@11.0.0:
  2790. dependencies:
  2791. '@types/mdast': 4.0.4
  2792. mdast-util-to-markdown: 2.1.2
  2793. unified: 11.0.5
  2794. require-directory@2.1.1: {}
  2795. require-main-filename@2.0.0: {}
  2796. retext-latin@4.0.0:
  2797. dependencies:
  2798. '@types/nlcst': 2.0.3
  2799. parse-latin: 7.0.0
  2800. unified: 11.0.5
  2801. retext-smartypants@6.2.0:
  2802. dependencies:
  2803. '@types/nlcst': 2.0.3
  2804. nlcst-to-string: 4.0.0
  2805. unist-util-visit: 5.1.0
  2806. retext-stringify@4.0.0:
  2807. dependencies:
  2808. '@types/nlcst': 2.0.3
  2809. nlcst-to-string: 4.0.0
  2810. unified: 11.0.5
  2811. retext@9.0.0:
  2812. dependencies:
  2813. '@types/nlcst': 2.0.3
  2814. retext-latin: 4.0.0
  2815. retext-stringify: 4.0.0
  2816. unified: 11.0.5
  2817. rollup@4.59.0:
  2818. dependencies:
  2819. '@types/estree': 1.0.8
  2820. optionalDependencies:
  2821. '@rollup/rollup-android-arm-eabi': 4.59.0
  2822. '@rollup/rollup-android-arm64': 4.59.0
  2823. '@rollup/rollup-darwin-arm64': 4.59.0
  2824. '@rollup/rollup-darwin-x64': 4.59.0
  2825. '@rollup/rollup-freebsd-arm64': 4.59.0
  2826. '@rollup/rollup-freebsd-x64': 4.59.0
  2827. '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
  2828. '@rollup/rollup-linux-arm-musleabihf': 4.59.0
  2829. '@rollup/rollup-linux-arm64-gnu': 4.59.0
  2830. '@rollup/rollup-linux-arm64-musl': 4.59.0
  2831. '@rollup/rollup-linux-loong64-gnu': 4.59.0
  2832. '@rollup/rollup-linux-loong64-musl': 4.59.0
  2833. '@rollup/rollup-linux-ppc64-gnu': 4.59.0
  2834. '@rollup/rollup-linux-ppc64-musl': 4.59.0
  2835. '@rollup/rollup-linux-riscv64-gnu': 4.59.0
  2836. '@rollup/rollup-linux-riscv64-musl': 4.59.0
  2837. '@rollup/rollup-linux-s390x-gnu': 4.59.0
  2838. '@rollup/rollup-linux-x64-gnu': 4.59.0
  2839. '@rollup/rollup-linux-x64-musl': 4.59.0
  2840. '@rollup/rollup-openbsd-x64': 4.59.0
  2841. '@rollup/rollup-openharmony-arm64': 4.59.0
  2842. '@rollup/rollup-win32-arm64-msvc': 4.59.0
  2843. '@rollup/rollup-win32-ia32-msvc': 4.59.0
  2844. '@rollup/rollup-win32-x64-gnu': 4.59.0
  2845. '@rollup/rollup-win32-x64-msvc': 4.59.0
  2846. fsevents: 2.3.3
  2847. sax@1.5.0: {}
  2848. semver@7.7.4: {}
  2849. send@1.2.1:
  2850. dependencies:
  2851. debug: 4.4.3
  2852. encodeurl: 2.0.0
  2853. escape-html: 1.0.3
  2854. etag: 1.8.1
  2855. fresh: 2.0.0
  2856. http-errors: 2.0.1
  2857. mime-types: 3.0.2
  2858. ms: 2.1.3
  2859. on-finished: 2.4.1
  2860. range-parser: 1.2.1
  2861. statuses: 2.0.2
  2862. transitivePeerDependencies:
  2863. - supports-color
  2864. server-destroy@1.0.1: {}
  2865. set-blocking@2.0.0: {}
  2866. setprototypeof@1.2.0: {}
  2867. sharp@0.34.5:
  2868. dependencies:
  2869. '@img/colour': 1.1.0
  2870. detect-libc: 2.1.2
  2871. semver: 7.7.4
  2872. optionalDependencies:
  2873. '@img/sharp-darwin-arm64': 0.34.5
  2874. '@img/sharp-darwin-x64': 0.34.5
  2875. '@img/sharp-libvips-darwin-arm64': 1.2.4
  2876. '@img/sharp-libvips-darwin-x64': 1.2.4
  2877. '@img/sharp-libvips-linux-arm': 1.2.4
  2878. '@img/sharp-libvips-linux-arm64': 1.2.4
  2879. '@img/sharp-libvips-linux-ppc64': 1.2.4
  2880. '@img/sharp-libvips-linux-riscv64': 1.2.4
  2881. '@img/sharp-libvips-linux-s390x': 1.2.4
  2882. '@img/sharp-libvips-linux-x64': 1.2.4
  2883. '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
  2884. '@img/sharp-libvips-linuxmusl-x64': 1.2.4
  2885. '@img/sharp-linux-arm': 0.34.5
  2886. '@img/sharp-linux-arm64': 0.34.5
  2887. '@img/sharp-linux-ppc64': 0.34.5
  2888. '@img/sharp-linux-riscv64': 0.34.5
  2889. '@img/sharp-linux-s390x': 0.34.5
  2890. '@img/sharp-linux-x64': 0.34.5
  2891. '@img/sharp-linuxmusl-arm64': 0.34.5
  2892. '@img/sharp-linuxmusl-x64': 0.34.5
  2893. '@img/sharp-wasm32': 0.34.5
  2894. '@img/sharp-win32-arm64': 0.34.5
  2895. '@img/sharp-win32-ia32': 0.34.5
  2896. '@img/sharp-win32-x64': 0.34.5
  2897. optional: true
  2898. shiki@3.23.0:
  2899. dependencies:
  2900. '@shikijs/core': 3.23.0
  2901. '@shikijs/engine-javascript': 3.23.0
  2902. '@shikijs/engine-oniguruma': 3.23.0
  2903. '@shikijs/langs': 3.23.0
  2904. '@shikijs/themes': 3.23.0
  2905. '@shikijs/types': 3.23.0
  2906. '@shikijs/vscode-textmate': 10.0.2
  2907. '@types/hast': 3.0.4
  2908. sisteransi@1.0.5: {}
  2909. smol-toml@1.6.0: {}
  2910. source-map-js@1.2.1: {}
  2911. space-separated-tokens@2.0.2: {}
  2912. statuses@2.0.2: {}
  2913. string-width@4.2.3:
  2914. dependencies:
  2915. emoji-regex: 8.0.0
  2916. is-fullwidth-code-point: 3.0.0
  2917. strip-ansi: 6.0.1
  2918. string-width@7.2.0:
  2919. dependencies:
  2920. emoji-regex: 10.6.0
  2921. get-east-asian-width: 1.5.0
  2922. strip-ansi: 7.2.0
  2923. stringify-entities@4.0.4:
  2924. dependencies:
  2925. character-entities-html4: 2.1.0
  2926. character-entities-legacy: 3.0.0
  2927. strip-ansi@6.0.1:
  2928. dependencies:
  2929. ansi-regex: 5.0.1
  2930. strip-ansi@7.2.0:
  2931. dependencies:
  2932. ansi-regex: 6.2.2
  2933. svgo@4.0.1:
  2934. dependencies:
  2935. commander: 11.1.0
  2936. css-select: 5.2.2
  2937. css-tree: 3.2.1
  2938. css-what: 6.2.2
  2939. csso: 5.0.5
  2940. picocolors: 1.1.1
  2941. sax: 1.5.0
  2942. tiny-inflate@1.0.3: {}
  2943. tinyexec@1.0.4: {}
  2944. tinyglobby@0.2.15:
  2945. dependencies:
  2946. fdir: 6.5.0(picomatch@4.0.3)
  2947. picomatch: 4.0.3
  2948. toidentifier@1.0.1: {}
  2949. trim-lines@3.0.1: {}
  2950. trough@2.2.0: {}
  2951. tsconfck@3.1.6(typescript@5.9.3):
  2952. optionalDependencies:
  2953. typescript: 5.9.3
  2954. tslib@2.8.1:
  2955. optional: true
  2956. type-fest@4.41.0: {}
  2957. typescript@5.9.3: {}
  2958. ufo@1.6.3: {}
  2959. ultrahtml@1.6.0: {}
  2960. uncrypto@0.1.3: {}
  2961. undici-types@7.16.0: {}
  2962. unified@11.0.5:
  2963. dependencies:
  2964. '@types/unist': 3.0.3
  2965. bail: 2.0.2
  2966. devlop: 1.1.0
  2967. extend: 3.0.2
  2968. is-plain-obj: 4.1.0
  2969. trough: 2.2.0
  2970. vfile: 6.0.3
  2971. unifont@0.7.4:
  2972. dependencies:
  2973. css-tree: 3.2.1
  2974. ofetch: 1.5.1
  2975. ohash: 2.0.11
  2976. unist-util-find-after@5.0.0:
  2977. dependencies:
  2978. '@types/unist': 3.0.3
  2979. unist-util-is: 6.0.1
  2980. unist-util-is@6.0.1:
  2981. dependencies:
  2982. '@types/unist': 3.0.3
  2983. unist-util-modify-children@4.0.0:
  2984. dependencies:
  2985. '@types/unist': 3.0.3
  2986. array-iterate: 2.0.1
  2987. unist-util-position@5.0.0:
  2988. dependencies:
  2989. '@types/unist': 3.0.3
  2990. unist-util-remove-position@5.0.0:
  2991. dependencies:
  2992. '@types/unist': 3.0.3
  2993. unist-util-visit: 5.1.0
  2994. unist-util-stringify-position@4.0.0:
  2995. dependencies:
  2996. '@types/unist': 3.0.3
  2997. unist-util-visit-children@3.0.0:
  2998. dependencies:
  2999. '@types/unist': 3.0.3
  3000. unist-util-visit-parents@6.0.2:
  3001. dependencies:
  3002. '@types/unist': 3.0.3
  3003. unist-util-is: 6.0.1
  3004. unist-util-visit@5.1.0:
  3005. dependencies:
  3006. '@types/unist': 3.0.3
  3007. unist-util-is: 6.0.1
  3008. unist-util-visit-parents: 6.0.2
  3009. unstorage@1.17.4:
  3010. dependencies:
  3011. anymatch: 3.1.3
  3012. chokidar: 5.0.0
  3013. destr: 2.0.5
  3014. h3: 1.15.6
  3015. lru-cache: 11.2.7
  3016. node-fetch-native: 1.6.7
  3017. ofetch: 1.5.1
  3018. ufo: 1.6.3
  3019. vfile-location@5.0.3:
  3020. dependencies:
  3021. '@types/unist': 3.0.3
  3022. vfile: 6.0.3
  3023. vfile-message@4.0.3:
  3024. dependencies:
  3025. '@types/unist': 3.0.3
  3026. unist-util-stringify-position: 4.0.0
  3027. vfile@6.0.3:
  3028. dependencies:
  3029. '@types/unist': 3.0.3
  3030. vfile-message: 4.0.3
  3031. vite@6.4.1(@types/node@24.12.0):
  3032. dependencies:
  3033. esbuild: 0.25.12
  3034. fdir: 6.5.0(picomatch@4.0.3)
  3035. picomatch: 4.0.3
  3036. postcss: 8.5.8
  3037. rollup: 4.59.0
  3038. tinyglobby: 0.2.15
  3039. optionalDependencies:
  3040. '@types/node': 24.12.0
  3041. fsevents: 2.3.3
  3042. vitefu@1.1.2(vite@6.4.1(@types/node@24.12.0)):
  3043. optionalDependencies:
  3044. vite: 6.4.1(@types/node@24.12.0)
  3045. web-namespaces@2.0.1: {}
  3046. web-streams-polyfill@3.3.3: {}
  3047. which-module@2.0.1: {}
  3048. which-pm-runs@1.1.0: {}
  3049. widest-line@5.0.0:
  3050. dependencies:
  3051. string-width: 7.2.0
  3052. wrap-ansi@6.2.0:
  3053. dependencies:
  3054. ansi-styles: 4.3.0
  3055. string-width: 4.2.3
  3056. strip-ansi: 6.0.1
  3057. wrap-ansi@9.0.2:
  3058. dependencies:
  3059. ansi-styles: 6.2.3
  3060. string-width: 7.2.0
  3061. strip-ansi: 7.2.0
  3062. ws@8.19.0: {}
  3063. xxhash-wasm@1.1.0: {}
  3064. y18n@4.0.3: {}
  3065. yargs-parser@18.1.3:
  3066. dependencies:
  3067. camelcase: 5.3.1
  3068. decamelize: 1.2.0
  3069. yargs-parser@21.1.1: {}
  3070. yargs@15.4.1:
  3071. dependencies:
  3072. cliui: 6.0.0
  3073. decamelize: 1.2.0
  3074. find-up: 4.1.0
  3075. get-caller-file: 2.0.5
  3076. require-directory: 2.1.1
  3077. require-main-filename: 2.0.0
  3078. set-blocking: 2.0.0
  3079. string-width: 4.2.3
  3080. which-module: 2.0.1
  3081. y18n: 4.0.3
  3082. yargs-parser: 18.1.3
  3083. yocto-queue@1.2.2: {}
  3084. yocto-spinner@0.2.3:
  3085. dependencies:
  3086. yoctocolors: 2.1.2
  3087. yoctocolors@2.1.2: {}
  3088. zod-to-json-schema@3.25.1(zod@3.25.76):
  3089. dependencies:
  3090. zod: 3.25.76
  3091. zod-to-ts@1.2.0(typescript@5.9.3)(zod@3.25.76):
  3092. dependencies:
  3093. typescript: 5.9.3
  3094. zod: 3.25.76
  3095. zod@3.25.76: {}
  3096. zwitch@2.0.4: {}