pnpm-lock.yaml 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. devDependencies:
  8. '@vuepress/bundler-vite':
  9. specifier: 2.0.0-rc.19
  10. version: 2.0.0-rc.19(@types/[email protected])([email protected])([email protected])([email protected])
  11. '@vuepress/plugin-register-components':
  12. specifier: 2.0.0-rc.66
  13. version: 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  14. '@vuepress/shared':
  15. specifier: 2.0.0-rc.19
  16. version: 2.0.0-rc.19
  17. '@vuepress/theme-default':
  18. specifier: 2.0.0-rc.66
  19. version: 2.0.0-rc.66([email protected])([email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  20. dotenv:
  21. specifier: ^16.4.7
  22. version: 16.4.7
  23. sass:
  24. specifier: ^1.83.0
  25. version: 1.83.0
  26. vue:
  27. specifier: ^3.5.13
  28. version: 3.5.13
  29. vuepress:
  30. specifier: 2.0.0-rc.19
  31. version: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  32. packages:
  33. '@babel/[email protected]':
  34. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  35. engines: {node: '>=6.9.0'}
  36. '@babel/[email protected]':
  37. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  38. engines: {node: '>=6.9.0'}
  39. '@babel/[email protected]':
  40. resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
  41. engines: {node: '>=6.0.0'}
  42. hasBin: true
  43. '@babel/[email protected]':
  44. resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
  45. engines: {node: '>=6.9.0'}
  46. '@esbuild/[email protected]':
  47. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  48. engines: {node: '>=12'}
  49. cpu: [ppc64]
  50. os: [aix]
  51. '@esbuild/[email protected]':
  52. resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
  53. engines: {node: '>=18'}
  54. cpu: [ppc64]
  55. os: [aix]
  56. '@esbuild/[email protected]':
  57. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  58. engines: {node: '>=12'}
  59. cpu: [arm64]
  60. os: [android]
  61. '@esbuild/[email protected]':
  62. resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
  63. engines: {node: '>=18'}
  64. cpu: [arm64]
  65. os: [android]
  66. '@esbuild/[email protected]':
  67. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  68. engines: {node: '>=12'}
  69. cpu: [arm]
  70. os: [android]
  71. '@esbuild/[email protected]':
  72. resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
  73. engines: {node: '>=18'}
  74. cpu: [arm]
  75. os: [android]
  76. '@esbuild/[email protected]':
  77. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  78. engines: {node: '>=12'}
  79. cpu: [x64]
  80. os: [android]
  81. '@esbuild/[email protected]':
  82. resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
  83. engines: {node: '>=18'}
  84. cpu: [x64]
  85. os: [android]
  86. '@esbuild/[email protected]':
  87. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  88. engines: {node: '>=12'}
  89. cpu: [arm64]
  90. os: [darwin]
  91. '@esbuild/[email protected]':
  92. resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
  93. engines: {node: '>=18'}
  94. cpu: [arm64]
  95. os: [darwin]
  96. '@esbuild/[email protected]':
  97. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  98. engines: {node: '>=12'}
  99. cpu: [x64]
  100. os: [darwin]
  101. '@esbuild/[email protected]':
  102. resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
  103. engines: {node: '>=18'}
  104. cpu: [x64]
  105. os: [darwin]
  106. '@esbuild/[email protected]':
  107. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  108. engines: {node: '>=12'}
  109. cpu: [arm64]
  110. os: [freebsd]
  111. '@esbuild/[email protected]':
  112. resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
  113. engines: {node: '>=18'}
  114. cpu: [arm64]
  115. os: [freebsd]
  116. '@esbuild/[email protected]':
  117. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  118. engines: {node: '>=12'}
  119. cpu: [x64]
  120. os: [freebsd]
  121. '@esbuild/[email protected]':
  122. resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
  123. engines: {node: '>=18'}
  124. cpu: [x64]
  125. os: [freebsd]
  126. '@esbuild/[email protected]':
  127. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  128. engines: {node: '>=12'}
  129. cpu: [arm64]
  130. os: [linux]
  131. '@esbuild/[email protected]':
  132. resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
  133. engines: {node: '>=18'}
  134. cpu: [arm64]
  135. os: [linux]
  136. '@esbuild/[email protected]':
  137. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  138. engines: {node: '>=12'}
  139. cpu: [arm]
  140. os: [linux]
  141. '@esbuild/[email protected]':
  142. resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
  143. engines: {node: '>=18'}
  144. cpu: [arm]
  145. os: [linux]
  146. '@esbuild/[email protected]':
  147. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  148. engines: {node: '>=12'}
  149. cpu: [ia32]
  150. os: [linux]
  151. '@esbuild/[email protected]':
  152. resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
  153. engines: {node: '>=18'}
  154. cpu: [ia32]
  155. os: [linux]
  156. '@esbuild/[email protected]':
  157. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  158. engines: {node: '>=12'}
  159. cpu: [loong64]
  160. os: [linux]
  161. '@esbuild/[email protected]':
  162. resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
  163. engines: {node: '>=18'}
  164. cpu: [loong64]
  165. os: [linux]
  166. '@esbuild/[email protected]':
  167. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  168. engines: {node: '>=12'}
  169. cpu: [mips64el]
  170. os: [linux]
  171. '@esbuild/[email protected]':
  172. resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
  173. engines: {node: '>=18'}
  174. cpu: [mips64el]
  175. os: [linux]
  176. '@esbuild/[email protected]':
  177. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  178. engines: {node: '>=12'}
  179. cpu: [ppc64]
  180. os: [linux]
  181. '@esbuild/[email protected]':
  182. resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
  183. engines: {node: '>=18'}
  184. cpu: [ppc64]
  185. os: [linux]
  186. '@esbuild/[email protected]':
  187. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  188. engines: {node: '>=12'}
  189. cpu: [riscv64]
  190. os: [linux]
  191. '@esbuild/[email protected]':
  192. resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
  193. engines: {node: '>=18'}
  194. cpu: [riscv64]
  195. os: [linux]
  196. '@esbuild/[email protected]':
  197. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  198. engines: {node: '>=12'}
  199. cpu: [s390x]
  200. os: [linux]
  201. '@esbuild/[email protected]':
  202. resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
  203. engines: {node: '>=18'}
  204. cpu: [s390x]
  205. os: [linux]
  206. '@esbuild/[email protected]':
  207. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  208. engines: {node: '>=12'}
  209. cpu: [x64]
  210. os: [linux]
  211. '@esbuild/[email protected]':
  212. resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
  213. engines: {node: '>=18'}
  214. cpu: [x64]
  215. os: [linux]
  216. '@esbuild/[email protected]':
  217. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  218. engines: {node: '>=12'}
  219. cpu: [x64]
  220. os: [netbsd]
  221. '@esbuild/[email protected]':
  222. resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
  223. engines: {node: '>=18'}
  224. cpu: [x64]
  225. os: [netbsd]
  226. '@esbuild/[email protected]':
  227. resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
  228. engines: {node: '>=18'}
  229. cpu: [arm64]
  230. os: [openbsd]
  231. '@esbuild/[email protected]':
  232. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  233. engines: {node: '>=12'}
  234. cpu: [x64]
  235. os: [openbsd]
  236. '@esbuild/[email protected]':
  237. resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
  238. engines: {node: '>=18'}
  239. cpu: [x64]
  240. os: [openbsd]
  241. '@esbuild/[email protected]':
  242. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  243. engines: {node: '>=12'}
  244. cpu: [x64]
  245. os: [sunos]
  246. '@esbuild/[email protected]':
  247. resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
  248. engines: {node: '>=18'}
  249. cpu: [x64]
  250. os: [sunos]
  251. '@esbuild/[email protected]':
  252. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  253. engines: {node: '>=12'}
  254. cpu: [arm64]
  255. os: [win32]
  256. '@esbuild/[email protected]':
  257. resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
  258. engines: {node: '>=18'}
  259. cpu: [arm64]
  260. os: [win32]
  261. '@esbuild/[email protected]':
  262. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  263. engines: {node: '>=12'}
  264. cpu: [ia32]
  265. os: [win32]
  266. '@esbuild/[email protected]':
  267. resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
  268. engines: {node: '>=18'}
  269. cpu: [ia32]
  270. os: [win32]
  271. '@esbuild/[email protected]':
  272. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  273. engines: {node: '>=12'}
  274. cpu: [x64]
  275. os: [win32]
  276. '@esbuild/[email protected]':
  277. resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
  278. engines: {node: '>=18'}
  279. cpu: [x64]
  280. os: [win32]
  281. '@jridgewell/[email protected]':
  282. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  283. '@mdit-vue/[email protected]':
  284. resolution: {integrity: sha512-9AG17beCgpEw/4ldo/M6Y/1Rh4E1bqMmr/rCkWKmCAxy9tJz3lzY7HQJanyHMJufwsb3WL5Lp7Om/aPcQTZ9SA==}
  285. '@mdit-vue/[email protected]':
  286. resolution: {integrity: sha512-KxsSCUVBEmn6sJcchSTiI5v9bWaoRxe68RBYRDGcSEY1GTnfQ5gQPMIsM48P4q1luLEIWurVGGrRu7u93//LDQ==}
  287. '@mdit-vue/[email protected]':
  288. resolution: {integrity: sha512-AcL7a7LHQR3ISINhfjGJNE/bHyM0dcl6MYm1Sr//zF7ZgokPGwD/HhD7TzwmrKA9YNYCcO9P3QmF/RN9XyA6CA==}
  289. '@mdit-vue/[email protected]':
  290. resolution: {integrity: sha512-Ezl0dNvQNS639Yl4siXm+cnWtQvlqHrg+u+lnau/OHpj9Xh3LVap/BSQVugKIV37eR13jXXYf3VaAOP1fXPN+w==}
  291. '@mdit-vue/[email protected]':
  292. resolution: {integrity: sha512-XWVOQoZqczoN97xCDrnQicmXKoqwOjIymIm9HQnRXhHnYKOgJPW1CxSGhkcOGzvDU1v0mD/adojVyyj/s6ggWw==}
  293. '@mdit-vue/[email protected]':
  294. resolution: {integrity: sha512-41Q+iXpLHZt0zJdApVwoVt7WF6za/xUjtjEPf90Z3KLzQO01TXsv48Xp9BsrFHPcPcm8tiZ0+O1/ICJO80V/MQ==}
  295. '@mdit-vue/[email protected]':
  296. resolution: {integrity: sha512-27YI8b0VVZsAlNwaWoaOCWbr4eL8B04HxiYk/y2ktblO/nMcOEOLt4p0RjuobvdyUyjHvGOS09RKhq7qHm1CHQ==}
  297. '@mdit-vue/[email protected]':
  298. resolution: {integrity: sha512-TMBB/BQWVvwtpBdWD75rkZx4ZphQ6MN0O4QB2Bc0oI5PC2uE57QerhNxdRZ7cvBHE2iY2C+BUNUziCfJbjIRRA==}
  299. '@mdit/[email protected]':
  300. resolution: {integrity: sha512-PNWzB2ZomBfUMF8skqzxbwGvcF5Q6+jkS6iis2nvLDobwV8hMzSWD49Jf++50i1XjHwcrFm0VsHqzsVCSoVAGA==}
  301. engines: {node: '>= 18'}
  302. peerDependencies:
  303. markdown-it: ^14.1.0
  304. peerDependenciesMeta:
  305. markdown-it:
  306. optional: true
  307. '@mdit/[email protected]':
  308. resolution: {integrity: sha512-a9/E6AZkCdepiseaS7VzjTPzlDVEpDXbgfspT1V0LVJ0xHiOlPNaUhB4vuRavETFyFmbmx8Lq8SvjvN6VdIz7Q==}
  309. peerDependencies:
  310. markdown-it: ^14.1.0
  311. peerDependenciesMeta:
  312. markdown-it:
  313. optional: true
  314. '@mdit/[email protected]':
  315. resolution: {integrity: sha512-sYjR9GPPkdItjGXw2m4f2iKAvKK+9egq/3wnzNnsouK1Hz0Qz8rQM1VELQLBK16PJwqStGNfTQC31BeM7gVmIg==}
  316. engines: {node: '>= 18'}
  317. peerDependencies:
  318. markdown-it: ^14.1.0
  319. peerDependenciesMeta:
  320. markdown-it:
  321. optional: true
  322. '@mdit/[email protected]':
  323. resolution: {integrity: sha512-hY9sFejCGZPfHcEmk4WZ7EuTiw2EclD6zSO5FsuuuD8D5piQzI42UqlG5L+2TUOtC3gkeaNkKOSdLyahzMC6aw==}
  324. peerDependencies:
  325. markdown-it: ^14.1.0
  326. peerDependenciesMeta:
  327. markdown-it:
  328. optional: true
  329. '@nodelib/[email protected]':
  330. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  331. engines: {node: '>= 8'}
  332. '@nodelib/[email protected]':
  333. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  334. engines: {node: '>= 8'}
  335. '@nodelib/[email protected]':
  336. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  337. engines: {node: '>= 8'}
  338. '@parcel/[email protected]':
  339. resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
  340. engines: {node: '>= 10.0.0'}
  341. cpu: [arm64]
  342. os: [android]
  343. '@parcel/[email protected]':
  344. resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
  345. engines: {node: '>= 10.0.0'}
  346. cpu: [arm64]
  347. os: [darwin]
  348. '@parcel/[email protected]':
  349. resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
  350. engines: {node: '>= 10.0.0'}
  351. cpu: [x64]
  352. os: [darwin]
  353. '@parcel/[email protected]':
  354. resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
  355. engines: {node: '>= 10.0.0'}
  356. cpu: [x64]
  357. os: [freebsd]
  358. '@parcel/[email protected]':
  359. resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
  360. engines: {node: '>= 10.0.0'}
  361. cpu: [arm]
  362. os: [linux]
  363. '@parcel/[email protected]':
  364. resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
  365. engines: {node: '>= 10.0.0'}
  366. cpu: [arm]
  367. os: [linux]
  368. '@parcel/[email protected]':
  369. resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
  370. engines: {node: '>= 10.0.0'}
  371. cpu: [arm64]
  372. os: [linux]
  373. '@parcel/[email protected]':
  374. resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
  375. engines: {node: '>= 10.0.0'}
  376. cpu: [arm64]
  377. os: [linux]
  378. '@parcel/[email protected]':
  379. resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
  380. engines: {node: '>= 10.0.0'}
  381. cpu: [x64]
  382. os: [linux]
  383. '@parcel/[email protected]':
  384. resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
  385. engines: {node: '>= 10.0.0'}
  386. cpu: [x64]
  387. os: [linux]
  388. '@parcel/[email protected]':
  389. resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
  390. engines: {node: '>= 10.0.0'}
  391. cpu: [arm64]
  392. os: [win32]
  393. '@parcel/[email protected]':
  394. resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
  395. engines: {node: '>= 10.0.0'}
  396. cpu: [ia32]
  397. os: [win32]
  398. '@parcel/[email protected]':
  399. resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
  400. engines: {node: '>= 10.0.0'}
  401. cpu: [x64]
  402. os: [win32]
  403. '@parcel/[email protected]':
  404. resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
  405. engines: {node: '>= 10.0.0'}
  406. '@rollup/[email protected]':
  407. resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==}
  408. cpu: [arm]
  409. os: [android]
  410. '@rollup/[email protected]':
  411. resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==}
  412. cpu: [arm64]
  413. os: [android]
  414. '@rollup/[email protected]':
  415. resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==}
  416. cpu: [arm64]
  417. os: [darwin]
  418. '@rollup/[email protected]':
  419. resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==}
  420. cpu: [x64]
  421. os: [darwin]
  422. '@rollup/[email protected]':
  423. resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==}
  424. cpu: [arm64]
  425. os: [freebsd]
  426. '@rollup/[email protected]':
  427. resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==}
  428. cpu: [x64]
  429. os: [freebsd]
  430. '@rollup/[email protected]':
  431. resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==}
  432. cpu: [arm]
  433. os: [linux]
  434. '@rollup/[email protected]':
  435. resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==}
  436. cpu: [arm]
  437. os: [linux]
  438. '@rollup/[email protected]':
  439. resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==}
  440. cpu: [arm64]
  441. os: [linux]
  442. '@rollup/[email protected]':
  443. resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==}
  444. cpu: [arm64]
  445. os: [linux]
  446. '@rollup/[email protected]':
  447. resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==}
  448. cpu: [loong64]
  449. os: [linux]
  450. '@rollup/[email protected]':
  451. resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==}
  452. cpu: [ppc64]
  453. os: [linux]
  454. '@rollup/[email protected]':
  455. resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==}
  456. cpu: [riscv64]
  457. os: [linux]
  458. '@rollup/[email protected]':
  459. resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==}
  460. cpu: [s390x]
  461. os: [linux]
  462. '@rollup/[email protected]':
  463. resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==}
  464. cpu: [x64]
  465. os: [linux]
  466. '@rollup/[email protected]':
  467. resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==}
  468. cpu: [x64]
  469. os: [linux]
  470. '@rollup/[email protected]':
  471. resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==}
  472. cpu: [arm64]
  473. os: [win32]
  474. '@rollup/[email protected]':
  475. resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==}
  476. cpu: [ia32]
  477. os: [win32]
  478. '@rollup/[email protected]':
  479. resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==}
  480. cpu: [x64]
  481. os: [win32]
  482. '@sec-ant/[email protected]':
  483. resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
  484. '@sindresorhus/[email protected]':
  485. resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
  486. engines: {node: '>=18'}
  487. '@sindresorhus/[email protected]':
  488. resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
  489. engines: {node: '>=18'}
  490. '@types/[email protected]':
  491. resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
  492. '@types/[email protected]':
  493. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  494. '@types/[email protected]':
  495. resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
  496. '@types/[email protected]':
  497. resolution: {integrity: sha512-UP28RddqY8xcU0SCEp9YKutQICXpaAq9N8U2klqF5hegGha7KzTOL8EdhIIV3bOSGBzjEpN9bU/d+nNZBdJYVw==}
  498. '@types/[email protected]':
  499. resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
  500. '@types/[email protected]':
  501. resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
  502. '@types/[email protected]':
  503. resolution: {integrity: sha512-cz1j8R35XivBqq9mwnsrP2fsz2yicLhB8+PDtuVkKOExwEdsVBNI+ROL3sbhtR5occRZ66vT0QnwFZCqdjf3pA==}
  504. '@types/[email protected]':
  505. resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
  506. '@types/[email protected]':
  507. resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
  508. '@types/[email protected]':
  509. resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
  510. '@types/[email protected]':
  511. resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
  512. '@types/[email protected]':
  513. resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
  514. '@types/[email protected]':
  515. resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
  516. '@types/[email protected]':
  517. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  518. '@vitejs/[email protected]':
  519. resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
  520. engines: {node: ^18.0.0 || >=20.0.0}
  521. peerDependencies:
  522. vite: ^5.0.0 || ^6.0.0
  523. vue: ^3.2.25
  524. '@vue/[email protected]':
  525. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  526. '@vue/[email protected]':
  527. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  528. '@vue/[email protected]':
  529. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  530. '@vue/[email protected]':
  531. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  532. '@vue/[email protected]':
  533. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  534. '@vue/[email protected]':
  535. resolution: {integrity: sha512-ma6dY/sZR36zALVsV1W7eC57c6IJPXsy8SNgZn1PLVWU4z4dPn5TIBmnF4stmdJ4sQcixqKaQ8pwjbMPzEZwiA==}
  536. '@vue/[email protected]':
  537. resolution: {integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==}
  538. '@vue/[email protected]':
  539. resolution: {integrity: sha512-9MBPO5Z3X1nYGFqTJyohl6Gmf/J7UNN1oicHdyzBVZP4jnhZ4c20MgtaHDIzWmHDHCMYVS5bwKxT3jxh7gOOKA==}
  540. '@vue/[email protected]':
  541. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  542. '@vue/[email protected]':
  543. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  544. '@vue/[email protected]':
  545. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  546. '@vue/[email protected]':
  547. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  548. peerDependencies:
  549. vue: 3.5.13
  550. '@vue/[email protected]':
  551. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  552. '@vuepress/[email protected]':
  553. resolution: {integrity: sha512-Vn0wEVRcdAld+8NJeELSwrj5JEPObRn0xpRWtAau/UwVWHmMLo16RRkTvXdjSiwpDWeP/9ztC5buyTXVoeb7Dw==}
  554. '@vuepress/[email protected]':
  555. resolution: {integrity: sha512-ln5htptK14OMJV3yeGRxAwYhSkVxrTwEHEaifeWrFvjuNxj2kLmkCl7MDdzr232jSOWwkCcmbOyafbxMsaRDkQ==}
  556. '@vuepress/[email protected]':
  557. resolution: {integrity: sha512-QFicPNIj3RZAJbHoLbeYlPJsPchnQLGuw0n8xv0eeUi9ejEXO1huWA8sLoPbTGdiDW+PHr1MHnaVMkyUfwaKcQ==}
  558. hasBin: true
  559. '@vuepress/[email protected]':
  560. resolution: {integrity: sha512-vUAU6n4qmtXqthxkb4LHq0D+VWSDenwBDf0jUs7RaBLuOVrbPtmH/hs4k1vLIlGdwC3Zs/G6tlB4UmuZiiwR8Q==}
  561. '@vuepress/[email protected]':
  562. resolution: {integrity: sha512-rvmBPMIWS2dey/2QjxZoO0OcrUU46NE3mSLk3oU7JOP0cG7xvRxf6U1OXiwYLC3fPO4g6XbHiKe6gihkmL6VDA==}
  563. '@vuepress/[email protected]':
  564. resolution: {integrity: sha512-T/1hzQwT1ShJDOgTvxUXt9Uydmik8cMnOAT6Bpv3OrmhyprSxJ4Riu1gYdn6W5VLf+MD9sUjTvwPAyixvwsI6w==}
  565. peerDependencies:
  566. vuepress: 2.0.0-rc.19
  567. '@vuepress/[email protected]':
  568. resolution: {integrity: sha512-RxhUIR+GFXXjCy5aFHHLvIKPcyyDhyzmka7shV+xr/vaU+EDbnQFrF67qo9pLDfzJc0KKTL9cKo4CcjkAoZ/tQ==}
  569. peerDependencies:
  570. '@vueuse/core': ^12.0.0
  571. vuepress: 2.0.0-rc.19
  572. peerDependenciesMeta:
  573. '@vueuse/core':
  574. optional: true
  575. '@vuepress/[email protected]':
  576. resolution: {integrity: sha512-6jgUXhpEK55PEEGtPhz7Hq/JqTbLU8n9w2D7emXiK2FYcbeKpjoRIbVRzmzB/dXeK3NzHChANu2IIqpOT6Ba1w==}
  577. '@vuepress/[email protected]':
  578. resolution: {integrity: sha512-3Rk5G8yheN14PQrFushePD+xLDnfmHCgxmPEtnF+9Sw1yfBSkYubpWy6NJLGW0zyPUaabTcoUXwNlzsf0swCKw==}
  579. peerDependencies:
  580. vuepress: 2.0.0-rc.19
  581. '@vuepress/[email protected]':
  582. resolution: {integrity: sha512-UeYLwjMV7zWbIR8iURDtzSfWQWKefSrYT/v6uo8XXhuC1U5IZD/MYlp+/H8EMQMYzmm4tqkbbsSSmlIdQBTpfw==}
  583. peerDependencies:
  584. vuepress: 2.0.0-rc.19
  585. '@vuepress/[email protected]':
  586. resolution: {integrity: sha512-9z7R3d0qlQY5NnfsviqHRTVbjvq0n5ngdSpZc/yekl4/NmfgKqVuTqbFwirlj/vTcGqZwn2YfEu0v/nM3TLalA==}
  587. peerDependencies:
  588. vuepress: 2.0.0-rc.19
  589. '@vuepress/[email protected]':
  590. resolution: {integrity: sha512-GiAniZY/gI5u5La3/+qqKrDyYLZoEdE3N81buh4Nmf9K9RGSPw8mb/+XJ2q58zX8plPn925YXverfjkJLYxWyg==}
  591. peerDependencies:
  592. vuepress: 2.0.0-rc.19
  593. '@vuepress/[email protected]':
  594. resolution: {integrity: sha512-B3xBdEjRMvhufLTSxLbWSRTKYsqnXWGZJSGZnk6mLzVdxmMXXHPacpaepF9WON26gUAnvWct7Uyg121l54aUSQ==}
  595. peerDependencies:
  596. vuepress: 2.0.0-rc.19
  597. '@vuepress/[email protected]':
  598. resolution: {integrity: sha512-VZiZw+IexDe/+lgncmvbq8w+rwJCMYnTC181ZA5kIl5wiiOHY6U5gFdZ16TnlQB6MjARO8b2F5j+WDZTkS6J2w==}
  599. peerDependencies:
  600. vuepress: 2.0.0-rc.19
  601. '@vuepress/[email protected]':
  602. resolution: {integrity: sha512-QpZAM8YuqVPzQRtEBne+MxDtrlrXQFhQe5xkL8FUvqdxAenQqb6IfK413rsay91tfLE88i9xcJSIjU3ikSl/Kg==}
  603. peerDependencies:
  604. vuepress: 2.0.0-rc.19
  605. '@vuepress/[email protected]':
  606. resolution: {integrity: sha512-xCV38ssn9wWXBAuaWiUWDHC2u+gX6ArQUuiWnNLOTmSCNe9ppZHWsg1fFidMrFhGLpIQb0npoZ2DkMCT7LMs3w==}
  607. peerDependencies:
  608. vuepress: 2.0.0-rc.19
  609. '@vuepress/[email protected]':
  610. resolution: {integrity: sha512-nVjZjxeeGbFk0AsugMX5Y2dgATfMTO0Hvb3JaOH1ee8H06Ia3A0eCYBwzOs/eP/F1lYx934PJS3aRqnkx2f+mg==}
  611. peerDependencies:
  612. vuepress: 2.0.0-rc.19
  613. '@vuepress/[email protected]':
  614. resolution: {integrity: sha512-vtegp0TTeCfbHApDwNKpw+3hQXFqA+8UGizDh0J/4vZg1UbaNoA3mdIG0iSSrj8SlrPhHiPALGWXJkJcrGMGlg==}
  615. peerDependencies:
  616. vuepress: 2.0.0-rc.19
  617. '@vuepress/[email protected]':
  618. resolution: {integrity: sha512-dJIp2vugWItFGgpItnu7xx1+GtGDs+BwsIA3XbKI4s/ne0+9/jdWMNqoHQuOEqK5z0bwGo23L23sT0YRypBQlw==}
  619. peerDependencies:
  620. vuepress: 2.0.0-rc.19
  621. '@vuepress/[email protected]':
  622. resolution: {integrity: sha512-nE0uCzu2KnaXHLXrAxhHh9jgvAcMXIRT6a0VTfnfxrh0vumZZBxZllhD/WLkCIceQ7KjrZu6euKL6Izt3gtWuA==}
  623. peerDependencies:
  624. vuepress: 2.0.0-rc.19
  625. '@vuepress/[email protected]':
  626. resolution: {integrity: sha512-DqOrTnF3r6RBlQvENRejYKGPcdOBXo7gzYha2NtRtgMzxPjCZM9oom6jd8ew1VLuM0JhDoLG9AfUjgnRVrpM0w==}
  627. peerDependencies:
  628. vuepress: 2.0.0-rc.19
  629. '@vuepress/[email protected]':
  630. resolution: {integrity: sha512-1SbnuyUj/6CId4SDMCPlFEJPjNdXgcPZS+iWNLGiAe6NuTrMeFRSJ/huZDphtJnfL20TboVrMowExpzKR2GoAg==}
  631. peerDependencies:
  632. vuepress: 2.0.0-rc.19
  633. '@vuepress/[email protected]':
  634. resolution: {integrity: sha512-zCojGjYuQo/EXeF4cXA99ubxE7TUNDopMUGIjKKJjpDs1me6zkXSj1NqKnUD3+uHpP0PP7YXfROxTlk6Fy+FGg==}
  635. peerDependencies:
  636. vuepress: 2.0.0-rc.19
  637. '@vuepress/[email protected]':
  638. resolution: {integrity: sha512-xaDeZxX0Qetc2Y6/lrzO6M/40i3LmMm7Fk85bOftBBOaNehZ24RdsmIHBJDDv+bTUv+DBF++1/mOtbt6DBRzEA==}
  639. '@vuepress/[email protected]':
  640. resolution: {integrity: sha512-seitYXmoOSdsSALIizr85nvJyFBUBfhADnq+Ptc6sH4M6aQ2zRnZ9FRNd1Oqm6NErVUH2G/odn+BpL4WK36TiA==}
  641. peerDependencies:
  642. sass: ^1.80.3
  643. sass-embedded: ^1.80.3
  644. sass-loader: ^16.0.2
  645. vuepress: 2.0.0-rc.19
  646. peerDependenciesMeta:
  647. sass:
  648. optional: true
  649. sass-embedded:
  650. optional: true
  651. sass-loader:
  652. optional: true
  653. '@vuepress/[email protected]':
  654. resolution: {integrity: sha512-cgzk8/aJquZKgFMNTuqdjbU5NrCzrPmdTyhYBcmliL/6N/He1OTWn3PD9QWUGJNODb1sPRJpklZnCpU07waLmg==}
  655. '@vueuse/[email protected]':
  656. resolution: {integrity: sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==}
  657. '@vueuse/[email protected]':
  658. resolution: {integrity: sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==}
  659. '@vueuse/[email protected]':
  660. resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==}
  661. [email protected]:
  662. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  663. engines: {node: '>=12'}
  664. [email protected]:
  665. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  666. engines: {node: '>= 8'}
  667. [email protected]:
  668. resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
  669. [email protected]:
  670. resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
  671. [email protected]:
  672. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  673. [email protected]:
  674. resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
  675. engines: {node: '>= 4.5.0'}
  676. hasBin: true
  677. [email protected]:
  678. resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
  679. engines: {node: ^10 || ^12 || >=14}
  680. hasBin: true
  681. peerDependencies:
  682. postcss: ^8.1.0
  683. [email protected]:
  684. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  685. [email protected]:
  686. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  687. engines: {node: '>=8'}
  688. [email protected]:
  689. resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
  690. [email protected]:
  691. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  692. [email protected]:
  693. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  694. [email protected]:
  695. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  696. engines: {node: '>=8'}
  697. [email protected]:
  698. resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
  699. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  700. hasBin: true
  701. [email protected]:
  702. resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
  703. engines: {node: '>=8'}
  704. [email protected]:
  705. resolution: {integrity: sha512-CmeR2VBycfa+5/jOfnp/NpWPGd06nf1XYiefUvhXFfZE4GkRc9jv+eGPS4nT558WS/8lYCzV8SlANCIPvbWP1g==}
  706. [email protected]:
  707. resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
  708. engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
  709. [email protected]:
  710. resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
  711. [email protected]:
  712. resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==}
  713. engines: {node: '>=18.17'}
  714. [email protected]:
  715. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  716. engines: {node: '>= 8.10.0'}
  717. [email protected]:
  718. resolution: {integrity: sha512-/b57FK+bblSU+dfewfFe0rT1YjVDfOmeLQwCAuC+vwvgLkXboATqqmy+Ipux6JrF6L5joe5CBnFOw+gLWH6yKg==}
  719. engines: {node: '>= 14.16.0'}
  720. [email protected]:
  721. resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
  722. engines: {node: '>=18'}
  723. [email protected]:
  724. resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
  725. engines: {node: '>=6'}
  726. [email protected]:
  727. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  728. [email protected]:
  729. resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
  730. engines: {node: '>=0.8'}
  731. [email protected]:
  732. resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
  733. engines: {node: '>=12.13'}
  734. [email protected]:
  735. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  736. engines: {node: '>= 8'}
  737. [email protected]:
  738. resolution: {integrity: sha512-UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA==}
  739. [email protected]:
  740. resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
  741. [email protected]:
  742. resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
  743. engines: {node: '>= 6'}
  744. [email protected]:
  745. resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==}
  746. [email protected]:
  747. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  748. [email protected]:
  749. resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
  750. peerDependencies:
  751. supports-color: '*'
  752. peerDependenciesMeta:
  753. supports-color:
  754. optional: true
  755. [email protected]:
  756. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  757. engines: {node: '>=6.0'}
  758. peerDependencies:
  759. supports-color: '*'
  760. peerDependenciesMeta:
  761. supports-color:
  762. optional: true
  763. [email protected]:
  764. resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
  765. engines: {node: '>=0.10'}
  766. [email protected]:
  767. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  768. engines: {node: '>=0.10'}
  769. hasBin: true
  770. [email protected]:
  771. resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
  772. [email protected]:
  773. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  774. [email protected]:
  775. resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
  776. engines: {node: '>= 4'}
  777. [email protected]:
  778. resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
  779. [email protected]:
  780. resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
  781. engines: {node: '>=12'}
  782. [email protected]:
  783. resolution: {integrity: sha512-ck3//9RC+6oss/1Bh9tiAVFy5vfSKbRHAFh7Z3/eTRkEqJeWgymloShB17Vg3Z4nmDNp35vAd1BZ6CMW4Wt6Iw==}
  784. [email protected]:
  785. resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
  786. [email protected]:
  787. resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
  788. [email protected]:
  789. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  790. engines: {node: '>=0.12'}
  791. [email protected]:
  792. resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==}
  793. engines: {node: '>=4'}
  794. hasBin: true
  795. [email protected]:
  796. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  797. engines: {node: '>=12'}
  798. hasBin: true
  799. [email protected]:
  800. resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
  801. engines: {node: '>=18'}
  802. hasBin: true
  803. [email protected]:
  804. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  805. engines: {node: '>=6'}
  806. [email protected]:
  807. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  808. engines: {node: '>=4'}
  809. hasBin: true
  810. [email protected]:
  811. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  812. [email protected]:
  813. resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==}
  814. engines: {node: ^18.19.0 || >=20.5.0}
  815. [email protected]:
  816. resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
  817. engines: {node: '>=0.10.0'}
  818. [email protected]:
  819. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  820. engines: {node: '>=8.6.0'}
  821. [email protected]:
  822. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  823. [email protected]:
  824. resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
  825. [email protected]:
  826. resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
  827. engines: {node: '>=18'}
  828. [email protected]:
  829. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  830. engines: {node: '>=8'}
  831. [email protected]:
  832. resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
  833. [email protected]:
  834. resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
  835. engines: {node: '>=14.14'}
  836. [email protected]:
  837. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  838. [email protected]:
  839. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  840. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  841. os: [darwin]
  842. [email protected]:
  843. resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
  844. engines: {node: '>=18'}
  845. [email protected]:
  846. resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
  847. engines: {node: '>=18'}
  848. [email protected]:
  849. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  850. engines: {node: '>= 6'}
  851. [email protected]:
  852. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  853. deprecated: Glob versions prior to v9 are no longer supported
  854. [email protected]:
  855. resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
  856. engines: {node: '>=18'}
  857. [email protected]:
  858. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  859. [email protected]:
  860. resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
  861. engines: {node: '>=6.0'}
  862. [email protected]:
  863. resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
  864. [email protected]:
  865. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  866. [email protected]:
  867. resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
  868. [email protected]:
  869. resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
  870. engines: {node: '>=18.18.0'}
  871. [email protected]:
  872. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  873. engines: {node: '>=0.10.0'}
  874. [email protected]:
  875. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  876. engines: {node: '>= 4'}
  877. [email protected]:
  878. resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
  879. [email protected]:
  880. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  881. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  882. [email protected]:
  883. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  884. [email protected]:
  885. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  886. engines: {node: '>=8'}
  887. [email protected]:
  888. resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
  889. engines: {node: '>=0.10.0'}
  890. [email protected]:
  891. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  892. engines: {node: '>=0.10.0'}
  893. [email protected]:
  894. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  895. engines: {node: '>=0.10.0'}
  896. [email protected]:
  897. resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
  898. engines: {node: '>=12'}
  899. [email protected]:
  900. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  901. engines: {node: '>=0.12.0'}
  902. [email protected]:
  903. resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
  904. engines: {node: '>=12'}
  905. [email protected]:
  906. resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
  907. engines: {node: '>=18'}
  908. [email protected]:
  909. resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
  910. engines: {node: '>=12'}
  911. [email protected]:
  912. resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
  913. engines: {node: '>=18'}
  914. [email protected]:
  915. resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
  916. engines: {node: '>=12.13'}
  917. [email protected]:
  918. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  919. [email protected]:
  920. resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
  921. hasBin: true
  922. [email protected]:
  923. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  924. [email protected]:
  925. resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
  926. engines: {node: '>=0.10.0'}
  927. [email protected]:
  928. resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
  929. engines: {node: '>=14'}
  930. [email protected]:
  931. resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
  932. [email protected]:
  933. resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
  934. engines: {node: '>=18'}
  935. [email protected]:
  936. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  937. [email protected]:
  938. resolution: {integrity: sha512-sa2ErMQ6kKOA4l31gLGYliFQrMKkqSO0ZJgGhDHKijPf0pNFM9vghjAh3gn26pS4JDRs7Iwa9S36gxm3vgZTzg==}
  939. peerDependencies:
  940. '@types/markdown-it': '*'
  941. markdown-it: '*'
  942. [email protected]:
  943. resolution: {integrity: sha512-+rUD93bXHubA4arpEZO3q80so0qgoFJEKRkRbjKX8RTdca89v2kfyF+xR3i2sQTwql9tpPZPOQN5B+PunspXRg==}
  944. [email protected]:
  945. resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
  946. hasBin: true
  947. [email protected]:
  948. resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
  949. [email protected]:
  950. resolution: {integrity: sha512-ewyDsp7k4InCUp3jRmwHBRFGyjBimKps/AJLjRSox+2q/2H4p/PNpQf+pwONWlJiOudkBXtbdmVbFjqyybfTmQ==}
  951. [email protected]:
  952. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  953. engines: {node: '>= 8'}
  954. [email protected]:
  955. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  956. engines: {node: '>=8.6'}
  957. [email protected]:
  958. resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
  959. engines: {node: '>=18'}
  960. [email protected]:
  961. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  962. [email protected]:
  963. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  964. [email protected]:
  965. resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
  966. engines: {node: '>=10'}
  967. hasBin: true
  968. [email protected]:
  969. resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
  970. [email protected]:
  971. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  972. [email protected]:
  973. resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
  974. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  975. hasBin: true
  976. [email protected]:
  977. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  978. [email protected]:
  979. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  980. [email protected]:
  981. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  982. engines: {node: '>=0.10.0'}
  983. [email protected]:
  984. resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
  985. engines: {node: '>=0.10.0'}
  986. [email protected]:
  987. resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
  988. engines: {node: '>=18'}
  989. [email protected]:
  990. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  991. [email protected]:
  992. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  993. [email protected]:
  994. resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
  995. engines: {node: '>=18'}
  996. [email protected]:
  997. resolution: {integrity: sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==}
  998. engines: {node: '>=18'}
  999. [email protected]:
  1000. resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
  1001. engines: {node: '>=18'}
  1002. [email protected]:
  1003. resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
  1004. [email protected]:
  1005. resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
  1006. [email protected]:
  1007. resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
  1008. [email protected]:
  1009. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  1010. engines: {node: '>=0.10.0'}
  1011. [email protected]:
  1012. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1013. engines: {node: '>=8'}
  1014. [email protected]:
  1015. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  1016. engines: {node: '>=12'}
  1017. [email protected]:
  1018. resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
  1019. engines: {node: '>=12'}
  1020. [email protected]:
  1021. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1022. [email protected]:
  1023. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1024. [email protected]:
  1025. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1026. engines: {node: '>=8.6'}
  1027. [email protected]:
  1028. resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
  1029. engines: {node: '>= 18'}
  1030. peerDependencies:
  1031. jiti: '>=1.21.0'
  1032. postcss: '>=8.0.9'
  1033. tsx: ^4.8.1
  1034. yaml: ^2.4.2
  1035. peerDependenciesMeta:
  1036. jiti:
  1037. optional: true
  1038. postcss:
  1039. optional: true
  1040. tsx:
  1041. optional: true
  1042. yaml:
  1043. optional: true
  1044. [email protected]:
  1045. resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
  1046. [email protected]:
  1047. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  1048. engines: {node: ^10 || ^12 || >=14}
  1049. [email protected]:
  1050. resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
  1051. engines: {node: '>=18'}
  1052. [email protected]:
  1053. resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
  1054. engines: {node: '>=6'}
  1055. [email protected]:
  1056. resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
  1057. engines: {node: '>=6'}
  1058. [email protected]:
  1059. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1060. [email protected]:
  1061. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1062. engines: {node: '>=8.10.0'}
  1063. [email protected]:
  1064. resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
  1065. engines: {node: '>= 14.16.0'}
  1066. [email protected]:
  1067. resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
  1068. deprecated: https://github.com/lydell/resolve-url#deprecated
  1069. [email protected]:
  1070. resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
  1071. engines: {node: '>=18'}
  1072. [email protected]:
  1073. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1074. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1075. [email protected]:
  1076. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  1077. [email protected]:
  1078. resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==}
  1079. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1080. hasBin: true
  1081. [email protected]:
  1082. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1083. [email protected]:
  1084. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  1085. [email protected]:
  1086. resolution: {integrity: sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==}
  1087. engines: {node: '>=14.0.0'}
  1088. hasBin: true
  1089. [email protected]:
  1090. resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
  1091. [email protected]:
  1092. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  1093. [email protected]:
  1094. resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
  1095. engines: {node: '>=4'}
  1096. [email protected]:
  1097. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1098. hasBin: true
  1099. [email protected]:
  1100. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1101. engines: {node: '>=8'}
  1102. [email protected]:
  1103. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1104. engines: {node: '>=8'}
  1105. [email protected]:
  1106. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1107. engines: {node: '>=14'}
  1108. [email protected]:
  1109. resolution: {integrity: sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==}
  1110. engines: {node: '>=14.0.0', npm: '>=6.0.0'}
  1111. hasBin: true
  1112. [email protected]:
  1113. resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
  1114. engines: {node: '>=14.16'}
  1115. [email protected]:
  1116. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1117. engines: {node: '>=0.10.0'}
  1118. [email protected]:
  1119. resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
  1120. deprecated: See https://github.com/lydell/source-map-resolve#deprecated
  1121. [email protected]:
  1122. resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
  1123. deprecated: See https://github.com/lydell/source-map-url#deprecated
  1124. [email protected]:
  1125. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1126. engines: {node: '>=0.10.0'}
  1127. [email protected]:
  1128. resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
  1129. engines: {node: '>= 8'}
  1130. [email protected]:
  1131. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  1132. engines: {node: '>=0.10.0'}
  1133. [email protected]:
  1134. resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
  1135. [email protected]:
  1136. resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
  1137. engines: {node: '>=18'}
  1138. [email protected]:
  1139. resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
  1140. engines: {node: '>=18'}
  1141. [email protected]:
  1142. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1143. engines: {node: '>=12'}
  1144. [email protected]:
  1145. resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
  1146. engines: {node: '>=0.10.0'}
  1147. [email protected]:
  1148. resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
  1149. engines: {node: '>=18'}
  1150. [email protected]:
  1151. resolution: {integrity: sha512-vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg==}
  1152. hasBin: true
  1153. [email protected]:
  1154. resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
  1155. engines: {node: '>=16'}
  1156. [email protected]:
  1157. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1158. engines: {node: '>=8.0'}
  1159. [email protected]:
  1160. resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
  1161. [email protected]:
  1162. resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
  1163. [email protected]:
  1164. resolution: {integrity: sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==}
  1165. engines: {node: '>=18.17'}
  1166. [email protected]:
  1167. resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
  1168. engines: {node: '>=18'}
  1169. [email protected]:
  1170. resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
  1171. engines: {node: '>=18'}
  1172. [email protected]:
  1173. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  1174. engines: {node: '>= 10.0.0'}
  1175. [email protected]:
  1176. resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
  1177. engines: {node: '>=4'}
  1178. [email protected]:
  1179. resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
  1180. hasBin: true
  1181. peerDependencies:
  1182. browserslist: '>= 4.21.0'
  1183. [email protected]:
  1184. resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
  1185. deprecated: Please see https://github.com/lydell/urix#deprecated
  1186. [email protected]:
  1187. resolution: {integrity: sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==}
  1188. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  1189. hasBin: true
  1190. peerDependencies:
  1191. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  1192. jiti: '>=1.21.0'
  1193. less: '*'
  1194. lightningcss: ^1.21.0
  1195. sass: '*'
  1196. sass-embedded: '*'
  1197. stylus: '*'
  1198. sugarss: '*'
  1199. terser: ^5.16.0
  1200. tsx: ^4.8.1
  1201. yaml: ^2.4.2
  1202. peerDependenciesMeta:
  1203. '@types/node':
  1204. optional: true
  1205. jiti:
  1206. optional: true
  1207. less:
  1208. optional: true
  1209. lightningcss:
  1210. optional: true
  1211. sass:
  1212. optional: true
  1213. sass-embedded:
  1214. optional: true
  1215. stylus:
  1216. optional: true
  1217. sugarss:
  1218. optional: true
  1219. terser:
  1220. optional: true
  1221. tsx:
  1222. optional: true
  1223. yaml:
  1224. optional: true
  1225. [email protected]:
  1226. resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
  1227. peerDependencies:
  1228. vue: ^3.2.0
  1229. [email protected]:
  1230. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1231. peerDependencies:
  1232. typescript: '*'
  1233. peerDependenciesMeta:
  1234. typescript:
  1235. optional: true
  1236. [email protected]:
  1237. resolution: {integrity: sha512-JDeuPTu14Kprdqx2geAryjFJvUzVaMnOLewlAgwVuZTygDWb8cgXhu9/p6rqzzdHETtIrvjbASBhH7JPyqmxmA==}
  1238. engines: {node: ^18.19.0 || >=20.4.0}
  1239. hasBin: true
  1240. peerDependencies:
  1241. '@vuepress/bundler-vite': 2.0.0-rc.19
  1242. '@vuepress/bundler-webpack': 2.0.0-rc.19
  1243. vue: ^3.5.0
  1244. peerDependenciesMeta:
  1245. '@vuepress/bundler-vite':
  1246. optional: true
  1247. '@vuepress/bundler-webpack':
  1248. optional: true
  1249. [email protected]:
  1250. resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
  1251. engines: {node: '>=18'}
  1252. [email protected]:
  1253. resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
  1254. engines: {node: '>=18'}
  1255. [email protected]:
  1256. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1257. engines: {node: '>= 8'}
  1258. hasBin: true
  1259. [email protected]:
  1260. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1261. [email protected]:
  1262. resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
  1263. engines: {node: '>= 14'}
  1264. hasBin: true
  1265. [email protected]:
  1266. resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
  1267. engines: {node: '>=18'}
  1268. snapshots:
  1269. '@babel/[email protected]': {}
  1270. '@babel/[email protected]': {}
  1271. '@babel/[email protected]':
  1272. dependencies:
  1273. '@babel/types': 7.26.3
  1274. '@babel/[email protected]':
  1275. dependencies:
  1276. '@babel/helper-string-parser': 7.25.9
  1277. '@babel/helper-validator-identifier': 7.25.9
  1278. '@esbuild/[email protected]':
  1279. optional: true
  1280. '@esbuild/[email protected]':
  1281. optional: true
  1282. '@esbuild/[email protected]':
  1283. optional: true
  1284. '@esbuild/[email protected]':
  1285. optional: true
  1286. '@esbuild/[email protected]':
  1287. optional: true
  1288. '@esbuild/[email protected]':
  1289. optional: true
  1290. '@esbuild/[email protected]':
  1291. optional: true
  1292. '@esbuild/[email protected]':
  1293. optional: true
  1294. '@esbuild/[email protected]':
  1295. optional: true
  1296. '@esbuild/[email protected]':
  1297. optional: true
  1298. '@esbuild/[email protected]':
  1299. optional: true
  1300. '@esbuild/[email protected]':
  1301. optional: true
  1302. '@esbuild/[email protected]':
  1303. optional: true
  1304. '@esbuild/[email protected]':
  1305. optional: true
  1306. '@esbuild/[email protected]':
  1307. optional: true
  1308. '@esbuild/[email protected]':
  1309. optional: true
  1310. '@esbuild/[email protected]':
  1311. optional: true
  1312. '@esbuild/[email protected]':
  1313. optional: true
  1314. '@esbuild/[email protected]':
  1315. optional: true
  1316. '@esbuild/[email protected]':
  1317. optional: true
  1318. '@esbuild/[email protected]':
  1319. optional: true
  1320. '@esbuild/[email protected]':
  1321. optional: true
  1322. '@esbuild/[email protected]':
  1323. optional: true
  1324. '@esbuild/[email protected]':
  1325. optional: true
  1326. '@esbuild/[email protected]':
  1327. optional: true
  1328. '@esbuild/[email protected]':
  1329. optional: true
  1330. '@esbuild/[email protected]':
  1331. optional: true
  1332. '@esbuild/[email protected]':
  1333. optional: true
  1334. '@esbuild/[email protected]':
  1335. optional: true
  1336. '@esbuild/[email protected]':
  1337. optional: true
  1338. '@esbuild/[email protected]':
  1339. optional: true
  1340. '@esbuild/[email protected]':
  1341. optional: true
  1342. '@esbuild/[email protected]':
  1343. optional: true
  1344. '@esbuild/[email protected]':
  1345. optional: true
  1346. '@esbuild/[email protected]':
  1347. optional: true
  1348. '@esbuild/[email protected]':
  1349. optional: true
  1350. '@esbuild/[email protected]':
  1351. optional: true
  1352. '@esbuild/[email protected]':
  1353. optional: true
  1354. '@esbuild/[email protected]':
  1355. optional: true
  1356. '@esbuild/[email protected]':
  1357. optional: true
  1358. '@esbuild/[email protected]':
  1359. optional: true
  1360. '@esbuild/[email protected]':
  1361. optional: true
  1362. '@esbuild/[email protected]':
  1363. optional: true
  1364. '@esbuild/[email protected]':
  1365. optional: true
  1366. '@esbuild/[email protected]':
  1367. optional: true
  1368. '@esbuild/[email protected]':
  1369. optional: true
  1370. '@esbuild/[email protected]':
  1371. optional: true
  1372. '@jridgewell/[email protected]': {}
  1373. '@mdit-vue/[email protected]':
  1374. dependencies:
  1375. '@types/markdown-it': 14.1.2
  1376. markdown-it: 14.1.0
  1377. '@mdit-vue/[email protected]':
  1378. dependencies:
  1379. '@mdit-vue/types': 2.1.0
  1380. '@types/markdown-it': 14.1.2
  1381. gray-matter: 4.0.3
  1382. markdown-it: 14.1.0
  1383. '@mdit-vue/[email protected]':
  1384. dependencies:
  1385. '@mdit-vue/shared': 2.1.3
  1386. '@mdit-vue/types': 2.1.0
  1387. '@types/markdown-it': 14.1.2
  1388. markdown-it: 14.1.0
  1389. '@mdit-vue/[email protected]':
  1390. dependencies:
  1391. '@mdit-vue/types': 2.1.0
  1392. '@types/markdown-it': 14.1.2
  1393. markdown-it: 14.1.0
  1394. '@mdit-vue/[email protected]':
  1395. dependencies:
  1396. '@mdit-vue/shared': 2.1.3
  1397. '@mdit-vue/types': 2.1.0
  1398. '@types/markdown-it': 14.1.2
  1399. markdown-it: 14.1.0
  1400. '@mdit-vue/[email protected]':
  1401. dependencies:
  1402. '@mdit-vue/shared': 2.1.3
  1403. '@mdit-vue/types': 2.1.0
  1404. '@types/markdown-it': 14.1.2
  1405. markdown-it: 14.1.0
  1406. '@mdit-vue/[email protected]':
  1407. dependencies:
  1408. '@mdit-vue/types': 2.1.0
  1409. '@types/markdown-it': 14.1.2
  1410. markdown-it: 14.1.0
  1411. '@mdit-vue/[email protected]': {}
  1412. '@mdit/[email protected]([email protected])':
  1413. dependencies:
  1414. '@types/markdown-it': 14.1.2
  1415. optionalDependencies:
  1416. markdown-it: 14.1.0
  1417. '@mdit/[email protected]([email protected])':
  1418. dependencies:
  1419. '@types/markdown-it': 14.1.2
  1420. optionalDependencies:
  1421. markdown-it: 14.1.0
  1422. '@mdit/[email protected]([email protected])':
  1423. dependencies:
  1424. '@types/markdown-it': 14.1.2
  1425. optionalDependencies:
  1426. markdown-it: 14.1.0
  1427. '@mdit/[email protected]([email protected])':
  1428. dependencies:
  1429. '@mdit/helper': 0.14.0([email protected])
  1430. '@types/markdown-it': 14.1.2
  1431. optionalDependencies:
  1432. markdown-it: 14.1.0
  1433. '@nodelib/[email protected]':
  1434. dependencies:
  1435. '@nodelib/fs.stat': 2.0.5
  1436. run-parallel: 1.2.0
  1437. '@nodelib/[email protected]': {}
  1438. '@nodelib/[email protected]':
  1439. dependencies:
  1440. '@nodelib/fs.scandir': 2.1.5
  1441. fastq: 1.17.1
  1442. '@parcel/[email protected]':
  1443. optional: true
  1444. '@parcel/[email protected]':
  1445. optional: true
  1446. '@parcel/[email protected]':
  1447. optional: true
  1448. '@parcel/[email protected]':
  1449. optional: true
  1450. '@parcel/[email protected]':
  1451. optional: true
  1452. '@parcel/[email protected]':
  1453. optional: true
  1454. '@parcel/[email protected]':
  1455. optional: true
  1456. '@parcel/[email protected]':
  1457. optional: true
  1458. '@parcel/[email protected]':
  1459. optional: true
  1460. '@parcel/[email protected]':
  1461. optional: true
  1462. '@parcel/[email protected]':
  1463. optional: true
  1464. '@parcel/[email protected]':
  1465. optional: true
  1466. '@parcel/[email protected]':
  1467. optional: true
  1468. '@parcel/[email protected]':
  1469. dependencies:
  1470. detect-libc: 1.0.3
  1471. is-glob: 4.0.3
  1472. micromatch: 4.0.8
  1473. node-addon-api: 7.1.1
  1474. optionalDependencies:
  1475. '@parcel/watcher-android-arm64': 2.5.0
  1476. '@parcel/watcher-darwin-arm64': 2.5.0
  1477. '@parcel/watcher-darwin-x64': 2.5.0
  1478. '@parcel/watcher-freebsd-x64': 2.5.0
  1479. '@parcel/watcher-linux-arm-glibc': 2.5.0
  1480. '@parcel/watcher-linux-arm-musl': 2.5.0
  1481. '@parcel/watcher-linux-arm64-glibc': 2.5.0
  1482. '@parcel/watcher-linux-arm64-musl': 2.5.0
  1483. '@parcel/watcher-linux-x64-glibc': 2.5.0
  1484. '@parcel/watcher-linux-x64-musl': 2.5.0
  1485. '@parcel/watcher-win32-arm64': 2.5.0
  1486. '@parcel/watcher-win32-ia32': 2.5.0
  1487. '@parcel/watcher-win32-x64': 2.5.0
  1488. optional: true
  1489. '@rollup/[email protected]':
  1490. optional: true
  1491. '@rollup/[email protected]':
  1492. optional: true
  1493. '@rollup/[email protected]':
  1494. optional: true
  1495. '@rollup/[email protected]':
  1496. optional: true
  1497. '@rollup/[email protected]':
  1498. optional: true
  1499. '@rollup/[email protected]':
  1500. optional: true
  1501. '@rollup/[email protected]':
  1502. optional: true
  1503. '@rollup/[email protected]':
  1504. optional: true
  1505. '@rollup/[email protected]':
  1506. optional: true
  1507. '@rollup/[email protected]':
  1508. optional: true
  1509. '@rollup/[email protected]':
  1510. optional: true
  1511. '@rollup/[email protected]':
  1512. optional: true
  1513. '@rollup/[email protected]':
  1514. optional: true
  1515. '@rollup/[email protected]':
  1516. optional: true
  1517. '@rollup/[email protected]':
  1518. optional: true
  1519. '@rollup/[email protected]':
  1520. optional: true
  1521. '@rollup/[email protected]':
  1522. optional: true
  1523. '@rollup/[email protected]':
  1524. optional: true
  1525. '@rollup/[email protected]':
  1526. optional: true
  1527. '@sec-ant/[email protected]': {}
  1528. '@sindresorhus/[email protected]': {}
  1529. '@sindresorhus/[email protected]': {}
  1530. '@types/[email protected]':
  1531. dependencies:
  1532. '@types/ms': 0.7.34
  1533. '@types/[email protected]': {}
  1534. '@types/[email protected]':
  1535. dependencies:
  1536. '@types/jsonfile': 6.1.4
  1537. '@types/node': 22.10.2
  1538. '@types/[email protected]': {}
  1539. '@types/[email protected]':
  1540. dependencies:
  1541. '@types/node': 22.10.2
  1542. '@types/[email protected]': {}
  1543. '@types/[email protected]':
  1544. dependencies:
  1545. '@types/markdown-it': 14.1.2
  1546. '@types/[email protected]':
  1547. dependencies:
  1548. '@types/linkify-it': 5.0.0
  1549. '@types/mdurl': 2.0.0
  1550. '@types/[email protected]': {}
  1551. '@types/[email protected]': {}
  1552. '@types/[email protected]': {}
  1553. '@types/[email protected]':
  1554. dependencies:
  1555. undici-types: 6.20.0
  1556. '@types/[email protected]':
  1557. dependencies:
  1558. '@types/node': 17.0.45
  1559. '@types/[email protected]': {}
  1560. '@vitejs/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])':
  1561. dependencies:
  1562. vite: 6.0.3(@types/[email protected])([email protected])([email protected])([email protected])
  1563. vue: 3.5.13
  1564. '@vue/[email protected]':
  1565. dependencies:
  1566. '@babel/parser': 7.26.3
  1567. '@vue/shared': 3.5.13
  1568. entities: 4.5.0
  1569. estree-walker: 2.0.2
  1570. source-map-js: 1.2.1
  1571. '@vue/[email protected]':
  1572. dependencies:
  1573. '@vue/compiler-core': 3.5.13
  1574. '@vue/shared': 3.5.13
  1575. '@vue/[email protected]':
  1576. dependencies:
  1577. '@babel/parser': 7.26.3
  1578. '@vue/compiler-core': 3.5.13
  1579. '@vue/compiler-dom': 3.5.13
  1580. '@vue/compiler-ssr': 3.5.13
  1581. '@vue/shared': 3.5.13
  1582. estree-walker: 2.0.2
  1583. magic-string: 0.30.17
  1584. postcss: 8.4.49
  1585. source-map-js: 1.2.1
  1586. '@vue/[email protected]':
  1587. dependencies:
  1588. '@vue/compiler-dom': 3.5.13
  1589. '@vue/shared': 3.5.13
  1590. '@vue/[email protected]': {}
  1591. '@vue/[email protected]':
  1592. dependencies:
  1593. '@vue/devtools-kit': 7.6.8
  1594. '@vue/[email protected]':
  1595. dependencies:
  1596. '@vue/devtools-shared': 7.6.8
  1597. birpc: 0.2.19
  1598. hookable: 5.5.3
  1599. mitt: 3.0.1
  1600. perfect-debounce: 1.0.0
  1601. speakingurl: 14.0.1
  1602. superjson: 2.2.2
  1603. '@vue/[email protected]':
  1604. dependencies:
  1605. rfdc: 1.4.1
  1606. '@vue/[email protected]':
  1607. dependencies:
  1608. '@vue/shared': 3.5.13
  1609. '@vue/[email protected]':
  1610. dependencies:
  1611. '@vue/reactivity': 3.5.13
  1612. '@vue/shared': 3.5.13
  1613. '@vue/[email protected]':
  1614. dependencies:
  1615. '@vue/reactivity': 3.5.13
  1616. '@vue/runtime-core': 3.5.13
  1617. '@vue/shared': 3.5.13
  1618. csstype: 3.1.3
  1619. '@vue/[email protected]([email protected])':
  1620. dependencies:
  1621. '@vue/compiler-ssr': 3.5.13
  1622. '@vue/shared': 3.5.13
  1623. vue: 3.5.13
  1624. '@vue/[email protected]': {}
  1625. '@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected])':
  1626. dependencies:
  1627. '@vitejs/plugin-vue': 5.2.1([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1628. '@vuepress/bundlerutils': 2.0.0-rc.19
  1629. '@vuepress/client': 2.0.0-rc.19
  1630. '@vuepress/core': 2.0.0-rc.19
  1631. '@vuepress/shared': 2.0.0-rc.19
  1632. '@vuepress/utils': 2.0.0-rc.19
  1633. autoprefixer: 10.4.20([email protected])
  1634. connect-history-api-fallback: 2.0.0
  1635. postcss: 8.4.49
  1636. postcss-load-config: 6.0.1([email protected])([email protected])
  1637. rollup: 4.28.1
  1638. vite: 6.0.3(@types/[email protected])([email protected])([email protected])([email protected])
  1639. vue: 3.5.13
  1640. vue-router: 4.5.0([email protected])
  1641. transitivePeerDependencies:
  1642. - '@types/node'
  1643. - jiti
  1644. - less
  1645. - lightningcss
  1646. - sass
  1647. - sass-embedded
  1648. - stylus
  1649. - sugarss
  1650. - supports-color
  1651. - terser
  1652. - tsx
  1653. - typescript
  1654. - yaml
  1655. '@vuepress/[email protected]':
  1656. dependencies:
  1657. '@vuepress/client': 2.0.0-rc.19
  1658. '@vuepress/core': 2.0.0-rc.19
  1659. '@vuepress/shared': 2.0.0-rc.19
  1660. '@vuepress/utils': 2.0.0-rc.19
  1661. vue: 3.5.13
  1662. vue-router: 4.5.0([email protected])
  1663. transitivePeerDependencies:
  1664. - supports-color
  1665. - typescript
  1666. '@vuepress/[email protected]':
  1667. dependencies:
  1668. '@vuepress/core': 2.0.0-rc.19
  1669. '@vuepress/shared': 2.0.0-rc.19
  1670. '@vuepress/utils': 2.0.0-rc.19
  1671. cac: 6.7.14
  1672. chokidar: 3.6.0
  1673. envinfo: 7.14.0
  1674. esbuild: 0.21.5
  1675. transitivePeerDependencies:
  1676. - supports-color
  1677. - typescript
  1678. '@vuepress/[email protected]':
  1679. dependencies:
  1680. '@vue/devtools-api': 7.6.8
  1681. '@vuepress/shared': 2.0.0-rc.19
  1682. vue: 3.5.13
  1683. vue-router: 4.5.0([email protected])
  1684. transitivePeerDependencies:
  1685. - typescript
  1686. '@vuepress/[email protected]':
  1687. dependencies:
  1688. '@vuepress/client': 2.0.0-rc.19
  1689. '@vuepress/markdown': 2.0.0-rc.19
  1690. '@vuepress/shared': 2.0.0-rc.19
  1691. '@vuepress/utils': 2.0.0-rc.19
  1692. vue: 3.5.13
  1693. transitivePeerDependencies:
  1694. - supports-color
  1695. - typescript
  1696. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1697. dependencies:
  1698. '@vue/shared': 3.5.13
  1699. '@vueuse/core': 12.0.0
  1700. cheerio: 1.0.0
  1701. fflate: 0.8.2
  1702. gray-matter: 4.0.3
  1703. vue: 3.5.13
  1704. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1705. transitivePeerDependencies:
  1706. - typescript
  1707. '@vuepress/[email protected](@vueuse/[email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1708. dependencies:
  1709. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1710. optionalDependencies:
  1711. '@vueuse/core': 12.0.0
  1712. '@vuepress/[email protected]':
  1713. dependencies:
  1714. '@mdit-vue/plugin-component': 2.1.3
  1715. '@mdit-vue/plugin-frontmatter': 2.1.3
  1716. '@mdit-vue/plugin-headers': 2.1.3
  1717. '@mdit-vue/plugin-sfc': 2.1.3
  1718. '@mdit-vue/plugin-title': 2.1.3
  1719. '@mdit-vue/plugin-toc': 2.1.3
  1720. '@mdit-vue/shared': 2.1.3
  1721. '@mdit-vue/types': 2.1.0
  1722. '@types/markdown-it': 14.1.2
  1723. '@types/markdown-it-emoji': 3.0.1
  1724. '@vuepress/shared': 2.0.0-rc.19
  1725. '@vuepress/utils': 2.0.0-rc.19
  1726. markdown-it: 14.1.0
  1727. markdown-it-anchor: 9.2.0(@types/[email protected])([email protected])
  1728. markdown-it-emoji: 3.0.0
  1729. mdurl: 2.0.0
  1730. transitivePeerDependencies:
  1731. - supports-color
  1732. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1733. dependencies:
  1734. '@vueuse/core': 12.0.0
  1735. vue: 3.5.13
  1736. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1737. transitivePeerDependencies:
  1738. - typescript
  1739. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1740. dependencies:
  1741. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1742. '@vueuse/core': 12.0.0
  1743. vue: 3.5.13
  1744. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1745. transitivePeerDependencies:
  1746. - typescript
  1747. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1748. dependencies:
  1749. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1750. '@vueuse/core': 12.0.0
  1751. vue: 3.5.13
  1752. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1753. transitivePeerDependencies:
  1754. - typescript
  1755. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1756. dependencies:
  1757. execa: 9.5.2
  1758. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1759. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1760. dependencies:
  1761. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1762. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1763. transitivePeerDependencies:
  1764. - typescript
  1765. '@vuepress/[email protected]([email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1766. dependencies:
  1767. '@mdit/plugin-alert': 0.14.0([email protected])
  1768. '@mdit/plugin-container': 0.14.0([email protected])
  1769. '@types/markdown-it': 14.1.2
  1770. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1771. '@vueuse/core': 12.0.0
  1772. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1773. transitivePeerDependencies:
  1774. - markdown-it
  1775. - typescript
  1776. '@vuepress/[email protected]([email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1777. dependencies:
  1778. '@mdit/plugin-tab': 0.14.0([email protected])
  1779. '@types/markdown-it': 14.1.2
  1780. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1781. '@vueuse/core': 12.0.0
  1782. vue: 3.5.13
  1783. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1784. transitivePeerDependencies:
  1785. - markdown-it
  1786. - typescript
  1787. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1788. dependencies:
  1789. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1790. medium-zoom: 1.1.0
  1791. vue: 3.5.13
  1792. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1793. transitivePeerDependencies:
  1794. - typescript
  1795. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1796. dependencies:
  1797. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1798. vue: 3.5.13
  1799. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1800. transitivePeerDependencies:
  1801. - typescript
  1802. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1803. dependencies:
  1804. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1805. chokidar: 4.0.2
  1806. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1807. transitivePeerDependencies:
  1808. - typescript
  1809. '@vuepress/[email protected](@vueuse/[email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1810. dependencies:
  1811. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1812. '@vuepress/highlighter-helper': 2.0.0-rc.66(@vueuse/[email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1813. prismjs: 1.29.0
  1814. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1815. transitivePeerDependencies:
  1816. - '@vueuse/core'
  1817. - typescript
  1818. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1819. dependencies:
  1820. chokidar: 3.6.0
  1821. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1822. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1823. dependencies:
  1824. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1825. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1826. transitivePeerDependencies:
  1827. - typescript
  1828. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1829. dependencies:
  1830. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1831. sitemap: 8.0.0
  1832. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1833. transitivePeerDependencies:
  1834. - typescript
  1835. '@vuepress/[email protected]([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1836. dependencies:
  1837. '@vue/devtools-api': 7.6.8
  1838. vue: 3.5.13
  1839. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1840. transitivePeerDependencies:
  1841. - typescript
  1842. '@vuepress/[email protected]':
  1843. dependencies:
  1844. '@mdit-vue/types': 2.1.0
  1845. '@vuepress/[email protected]([email protected])([email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))':
  1846. dependencies:
  1847. '@vuepress/helper': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1848. '@vuepress/plugin-active-header-links': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1849. '@vuepress/plugin-back-to-top': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1850. '@vuepress/plugin-copy-code': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1851. '@vuepress/plugin-git': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1852. '@vuepress/plugin-links-check': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1853. '@vuepress/plugin-markdown-hint': 2.0.0-rc.66([email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1854. '@vuepress/plugin-markdown-tab': 2.0.0-rc.66([email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1855. '@vuepress/plugin-medium-zoom': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1856. '@vuepress/plugin-nprogress': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1857. '@vuepress/plugin-palette': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1858. '@vuepress/plugin-prismjs': 2.0.0-rc.66(@vueuse/[email protected])([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1859. '@vuepress/plugin-seo': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1860. '@vuepress/plugin-sitemap': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1861. '@vuepress/plugin-theme-data': 2.0.0-rc.66([email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]))
  1862. '@vueuse/core': 12.0.0
  1863. vue: 3.5.13
  1864. vuepress: 2.0.0-rc.19(@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected])
  1865. optionalDependencies:
  1866. sass: 1.83.0
  1867. transitivePeerDependencies:
  1868. - markdown-it
  1869. - typescript
  1870. '@vuepress/[email protected]':
  1871. dependencies:
  1872. '@types/debug': 4.1.12
  1873. '@types/fs-extra': 11.0.4
  1874. '@types/hash-sum': 1.0.2
  1875. '@vuepress/shared': 2.0.0-rc.19
  1876. debug: 4.4.0
  1877. fs-extra: 11.2.0
  1878. globby: 14.0.2
  1879. hash-sum: 2.0.0
  1880. ora: 8.1.1
  1881. picocolors: 1.1.1
  1882. upath: 2.0.1
  1883. transitivePeerDependencies:
  1884. - supports-color
  1885. '@vueuse/[email protected]':
  1886. dependencies:
  1887. '@types/web-bluetooth': 0.0.20
  1888. '@vueuse/metadata': 12.0.0
  1889. '@vueuse/shared': 12.0.0
  1890. vue: 3.5.13
  1891. transitivePeerDependencies:
  1892. - typescript
  1893. '@vueuse/[email protected]': {}
  1894. '@vueuse/[email protected]':
  1895. dependencies:
  1896. vue: 3.5.13
  1897. transitivePeerDependencies:
  1898. - typescript
  1899. [email protected]: {}
  1900. [email protected]:
  1901. dependencies:
  1902. normalize-path: 3.0.0
  1903. picomatch: 2.3.1
  1904. [email protected]: {}
  1905. [email protected]:
  1906. dependencies:
  1907. sprintf-js: 1.0.3
  1908. [email protected]: {}
  1909. [email protected]:
  1910. optional: true
  1911. [email protected]([email protected]):
  1912. dependencies:
  1913. browserslist: 4.24.3
  1914. caniuse-lite: 1.0.30001689
  1915. fraction.js: 4.3.7
  1916. normalize-range: 0.1.2
  1917. picocolors: 1.1.1
  1918. postcss: 8.4.49
  1919. postcss-value-parser: 4.2.0
  1920. [email protected]:
  1921. optional: true
  1922. [email protected]: {}
  1923. [email protected]: {}
  1924. [email protected]: {}
  1925. [email protected]:
  1926. dependencies:
  1927. balanced-match: 1.0.2
  1928. concat-map: 0.0.1
  1929. optional: true
  1930. [email protected]:
  1931. dependencies:
  1932. fill-range: 7.1.1
  1933. [email protected]:
  1934. dependencies:
  1935. caniuse-lite: 1.0.30001689
  1936. electron-to-chromium: 1.5.74
  1937. node-releases: 2.0.19
  1938. update-browserslist-db: 1.1.1([email protected])
  1939. [email protected]: {}
  1940. [email protected]: {}
  1941. [email protected]: {}
  1942. [email protected]:
  1943. dependencies:
  1944. boolbase: 1.0.0
  1945. css-select: 5.1.0
  1946. css-what: 6.1.0
  1947. domelementtype: 2.3.0
  1948. domhandler: 5.0.3
  1949. domutils: 3.1.0
  1950. [email protected]:
  1951. dependencies:
  1952. cheerio-select: 2.1.0
  1953. dom-serializer: 2.0.0
  1954. domhandler: 5.0.3
  1955. domutils: 3.1.0
  1956. encoding-sniffer: 0.2.0
  1957. htmlparser2: 9.1.0
  1958. parse5: 7.2.1
  1959. parse5-htmlparser2-tree-adapter: 7.1.0
  1960. parse5-parser-stream: 7.1.2
  1961. undici: 6.21.0
  1962. whatwg-mimetype: 4.0.0
  1963. [email protected]:
  1964. dependencies:
  1965. anymatch: 3.1.3
  1966. braces: 3.0.3
  1967. glob-parent: 5.1.2
  1968. is-binary-path: 2.1.0
  1969. is-glob: 4.0.3
  1970. normalize-path: 3.0.0
  1971. readdirp: 3.6.0
  1972. optionalDependencies:
  1973. fsevents: 2.3.3
  1974. [email protected]:
  1975. dependencies:
  1976. readdirp: 4.0.2
  1977. [email protected]:
  1978. dependencies:
  1979. restore-cursor: 5.1.0
  1980. [email protected]: {}
  1981. [email protected]:
  1982. optional: true
  1983. [email protected]: {}
  1984. [email protected]:
  1985. dependencies:
  1986. is-what: 4.1.16
  1987. [email protected]:
  1988. dependencies:
  1989. path-key: 3.1.1
  1990. shebang-command: 2.0.0
  1991. which: 2.0.2
  1992. [email protected]:
  1993. dependencies:
  1994. css: 2.2.4
  1995. optional: true
  1996. [email protected]:
  1997. dependencies:
  1998. boolbase: 1.0.0
  1999. css-what: 6.1.0
  2000. domhandler: 5.0.3
  2001. domutils: 3.1.0
  2002. nth-check: 2.1.1
  2003. [email protected]: {}
  2004. [email protected]:
  2005. dependencies:
  2006. inherits: 2.0.4
  2007. source-map: 0.6.1
  2008. source-map-resolve: 0.5.3
  2009. urix: 0.1.0
  2010. optional: true
  2011. [email protected]: {}
  2012. [email protected]:
  2013. dependencies:
  2014. ms: 2.0.0
  2015. optional: true
  2016. [email protected]:
  2017. dependencies:
  2018. ms: 2.1.3
  2019. [email protected]:
  2020. optional: true
  2021. [email protected]:
  2022. optional: true
  2023. [email protected]:
  2024. dependencies:
  2025. domelementtype: 2.3.0
  2026. domhandler: 5.0.3
  2027. entities: 4.5.0
  2028. [email protected]: {}
  2029. [email protected]:
  2030. dependencies:
  2031. domelementtype: 2.3.0
  2032. [email protected]:
  2033. dependencies:
  2034. dom-serializer: 2.0.0
  2035. domelementtype: 2.3.0
  2036. domhandler: 5.0.3
  2037. [email protected]: {}
  2038. [email protected]: {}
  2039. [email protected]: {}
  2040. [email protected]:
  2041. dependencies:
  2042. iconv-lite: 0.6.3
  2043. whatwg-encoding: 3.1.1
  2044. [email protected]: {}
  2045. [email protected]: {}
  2046. [email protected]:
  2047. optionalDependencies:
  2048. '@esbuild/aix-ppc64': 0.21.5
  2049. '@esbuild/android-arm': 0.21.5
  2050. '@esbuild/android-arm64': 0.21.5
  2051. '@esbuild/android-x64': 0.21.5
  2052. '@esbuild/darwin-arm64': 0.21.5
  2053. '@esbuild/darwin-x64': 0.21.5
  2054. '@esbuild/freebsd-arm64': 0.21.5
  2055. '@esbuild/freebsd-x64': 0.21.5
  2056. '@esbuild/linux-arm': 0.21.5
  2057. '@esbuild/linux-arm64': 0.21.5
  2058. '@esbuild/linux-ia32': 0.21.5
  2059. '@esbuild/linux-loong64': 0.21.5
  2060. '@esbuild/linux-mips64el': 0.21.5
  2061. '@esbuild/linux-ppc64': 0.21.5
  2062. '@esbuild/linux-riscv64': 0.21.5
  2063. '@esbuild/linux-s390x': 0.21.5
  2064. '@esbuild/linux-x64': 0.21.5
  2065. '@esbuild/netbsd-x64': 0.21.5
  2066. '@esbuild/openbsd-x64': 0.21.5
  2067. '@esbuild/sunos-x64': 0.21.5
  2068. '@esbuild/win32-arm64': 0.21.5
  2069. '@esbuild/win32-ia32': 0.21.5
  2070. '@esbuild/win32-x64': 0.21.5
  2071. [email protected]:
  2072. optionalDependencies:
  2073. '@esbuild/aix-ppc64': 0.24.0
  2074. '@esbuild/android-arm': 0.24.0
  2075. '@esbuild/android-arm64': 0.24.0
  2076. '@esbuild/android-x64': 0.24.0
  2077. '@esbuild/darwin-arm64': 0.24.0
  2078. '@esbuild/darwin-x64': 0.24.0
  2079. '@esbuild/freebsd-arm64': 0.24.0
  2080. '@esbuild/freebsd-x64': 0.24.0
  2081. '@esbuild/linux-arm': 0.24.0
  2082. '@esbuild/linux-arm64': 0.24.0
  2083. '@esbuild/linux-ia32': 0.24.0
  2084. '@esbuild/linux-loong64': 0.24.0
  2085. '@esbuild/linux-mips64el': 0.24.0
  2086. '@esbuild/linux-ppc64': 0.24.0
  2087. '@esbuild/linux-riscv64': 0.24.0
  2088. '@esbuild/linux-s390x': 0.24.0
  2089. '@esbuild/linux-x64': 0.24.0
  2090. '@esbuild/netbsd-x64': 0.24.0
  2091. '@esbuild/openbsd-arm64': 0.24.0
  2092. '@esbuild/openbsd-x64': 0.24.0
  2093. '@esbuild/sunos-x64': 0.24.0
  2094. '@esbuild/win32-arm64': 0.24.0
  2095. '@esbuild/win32-ia32': 0.24.0
  2096. '@esbuild/win32-x64': 0.24.0
  2097. [email protected]: {}
  2098. [email protected]: {}
  2099. [email protected]: {}
  2100. [email protected]:
  2101. dependencies:
  2102. '@sindresorhus/merge-streams': 4.0.0
  2103. cross-spawn: 7.0.6
  2104. figures: 6.1.0
  2105. get-stream: 9.0.1
  2106. human-signals: 8.0.0
  2107. is-plain-obj: 4.1.0
  2108. is-stream: 4.0.1
  2109. npm-run-path: 6.0.0
  2110. pretty-ms: 9.2.0
  2111. signal-exit: 4.1.0
  2112. strip-final-newline: 4.0.0
  2113. yoctocolors: 2.1.1
  2114. [email protected]:
  2115. dependencies:
  2116. is-extendable: 0.1.1
  2117. [email protected]:
  2118. dependencies:
  2119. '@nodelib/fs.stat': 2.0.5
  2120. '@nodelib/fs.walk': 1.2.8
  2121. glob-parent: 5.1.2
  2122. merge2: 1.4.1
  2123. micromatch: 4.0.8
  2124. [email protected]:
  2125. dependencies:
  2126. reusify: 1.0.4
  2127. [email protected]: {}
  2128. [email protected]:
  2129. dependencies:
  2130. is-unicode-supported: 2.1.0
  2131. [email protected]:
  2132. dependencies:
  2133. to-regex-range: 5.0.1
  2134. [email protected]: {}
  2135. [email protected]:
  2136. dependencies:
  2137. graceful-fs: 4.2.11
  2138. jsonfile: 6.1.0
  2139. universalify: 2.0.1
  2140. [email protected]:
  2141. optional: true
  2142. [email protected]:
  2143. optional: true
  2144. [email protected]: {}
  2145. [email protected]:
  2146. dependencies:
  2147. '@sec-ant/readable-stream': 0.4.1
  2148. is-stream: 4.0.1
  2149. [email protected]:
  2150. dependencies:
  2151. is-glob: 4.0.3
  2152. [email protected]:
  2153. dependencies:
  2154. fs.realpath: 1.0.0
  2155. inflight: 1.0.6
  2156. inherits: 2.0.4
  2157. minimatch: 3.1.2
  2158. once: 1.4.0
  2159. path-is-absolute: 1.0.1
  2160. optional: true
  2161. [email protected]:
  2162. dependencies:
  2163. '@sindresorhus/merge-streams': 2.3.0
  2164. fast-glob: 3.3.2
  2165. ignore: 5.3.2
  2166. path-type: 5.0.0
  2167. slash: 5.1.0
  2168. unicorn-magic: 0.1.0
  2169. [email protected]: {}
  2170. [email protected]:
  2171. dependencies:
  2172. js-yaml: 3.14.1
  2173. kind-of: 6.0.3
  2174. section-matter: 1.0.0
  2175. strip-bom-string: 1.0.0
  2176. [email protected]: {}
  2177. [email protected]: {}
  2178. [email protected]:
  2179. dependencies:
  2180. domelementtype: 2.3.0
  2181. domhandler: 5.0.3
  2182. domutils: 3.1.0
  2183. entities: 4.5.0
  2184. [email protected]: {}
  2185. [email protected]:
  2186. dependencies:
  2187. safer-buffer: 2.1.2
  2188. [email protected]: {}
  2189. [email protected]: {}
  2190. [email protected]:
  2191. dependencies:
  2192. once: 1.4.0
  2193. wrappy: 1.0.2
  2194. optional: true
  2195. [email protected]:
  2196. optional: true
  2197. [email protected]:
  2198. dependencies:
  2199. binary-extensions: 2.3.0
  2200. [email protected]: {}
  2201. [email protected]: {}
  2202. [email protected]:
  2203. dependencies:
  2204. is-extglob: 2.1.1
  2205. [email protected]: {}
  2206. [email protected]: {}
  2207. [email protected]: {}
  2208. [email protected]: {}
  2209. [email protected]: {}
  2210. [email protected]: {}
  2211. [email protected]: {}
  2212. [email protected]: {}
  2213. [email protected]:
  2214. dependencies:
  2215. argparse: 1.0.10
  2216. esprima: 4.0.1
  2217. [email protected]:
  2218. dependencies:
  2219. universalify: 2.0.1
  2220. optionalDependencies:
  2221. graceful-fs: 4.2.11
  2222. [email protected]: {}
  2223. [email protected]: {}
  2224. [email protected]:
  2225. dependencies:
  2226. uc.micro: 2.1.0
  2227. [email protected]:
  2228. dependencies:
  2229. chalk: 5.3.0
  2230. is-unicode-supported: 1.3.0
  2231. [email protected]:
  2232. dependencies:
  2233. '@jridgewell/sourcemap-codec': 1.5.0
  2234. [email protected](@types/[email protected])([email protected]):
  2235. dependencies:
  2236. '@types/markdown-it': 14.1.2
  2237. markdown-it: 14.1.0
  2238. [email protected]: {}
  2239. [email protected]:
  2240. dependencies:
  2241. argparse: 2.0.1
  2242. entities: 4.5.0
  2243. linkify-it: 5.0.0
  2244. mdurl: 2.0.0
  2245. punycode.js: 2.3.1
  2246. uc.micro: 2.1.0
  2247. [email protected]: {}
  2248. [email protected]: {}
  2249. [email protected]: {}
  2250. [email protected]:
  2251. dependencies:
  2252. braces: 3.0.3
  2253. picomatch: 2.3.1
  2254. [email protected]: {}
  2255. [email protected]:
  2256. dependencies:
  2257. brace-expansion: 1.1.11
  2258. optional: true
  2259. [email protected]: {}
  2260. [email protected]:
  2261. optional: true
  2262. [email protected]:
  2263. optional: true
  2264. [email protected]: {}
  2265. [email protected]: {}
  2266. [email protected]:
  2267. optional: true
  2268. [email protected]: {}
  2269. [email protected]: {}
  2270. [email protected]: {}
  2271. [email protected]:
  2272. dependencies:
  2273. path-key: 4.0.0
  2274. unicorn-magic: 0.3.0
  2275. [email protected]:
  2276. dependencies:
  2277. boolbase: 1.0.0
  2278. [email protected]:
  2279. dependencies:
  2280. wrappy: 1.0.2
  2281. optional: true
  2282. [email protected]:
  2283. dependencies:
  2284. mimic-function: 5.0.1
  2285. [email protected]:
  2286. dependencies:
  2287. chalk: 5.3.0
  2288. cli-cursor: 5.0.0
  2289. cli-spinners: 2.9.2
  2290. is-interactive: 2.0.0
  2291. is-unicode-supported: 2.1.0
  2292. log-symbols: 6.0.0
  2293. stdin-discarder: 0.2.2
  2294. string-width: 7.2.0
  2295. strip-ansi: 7.1.0
  2296. [email protected]: {}
  2297. [email protected]:
  2298. dependencies:
  2299. domhandler: 5.0.3
  2300. parse5: 7.2.1
  2301. [email protected]:
  2302. dependencies:
  2303. parse5: 7.2.1
  2304. [email protected]:
  2305. dependencies:
  2306. entities: 4.5.0
  2307. [email protected]:
  2308. optional: true
  2309. [email protected]: {}
  2310. [email protected]: {}
  2311. [email protected]: {}
  2312. [email protected]: {}
  2313. [email protected]: {}
  2314. [email protected]: {}
  2315. [email protected]([email protected])([email protected]):
  2316. dependencies:
  2317. lilconfig: 3.1.3
  2318. optionalDependencies:
  2319. postcss: 8.4.49
  2320. yaml: 2.6.1
  2321. [email protected]: {}
  2322. [email protected]:
  2323. dependencies:
  2324. nanoid: 3.3.8
  2325. picocolors: 1.1.1
  2326. source-map-js: 1.2.1
  2327. [email protected]:
  2328. dependencies:
  2329. parse-ms: 4.0.0
  2330. [email protected]: {}
  2331. [email protected]: {}
  2332. [email protected]: {}
  2333. [email protected]:
  2334. dependencies:
  2335. picomatch: 2.3.1
  2336. [email protected]: {}
  2337. [email protected]:
  2338. optional: true
  2339. [email protected]:
  2340. dependencies:
  2341. onetime: 7.0.0
  2342. signal-exit: 4.1.0
  2343. [email protected]: {}
  2344. [email protected]: {}
  2345. [email protected]:
  2346. dependencies:
  2347. '@types/estree': 1.0.6
  2348. optionalDependencies:
  2349. '@rollup/rollup-android-arm-eabi': 4.28.1
  2350. '@rollup/rollup-android-arm64': 4.28.1
  2351. '@rollup/rollup-darwin-arm64': 4.28.1
  2352. '@rollup/rollup-darwin-x64': 4.28.1
  2353. '@rollup/rollup-freebsd-arm64': 4.28.1
  2354. '@rollup/rollup-freebsd-x64': 4.28.1
  2355. '@rollup/rollup-linux-arm-gnueabihf': 4.28.1
  2356. '@rollup/rollup-linux-arm-musleabihf': 4.28.1
  2357. '@rollup/rollup-linux-arm64-gnu': 4.28.1
  2358. '@rollup/rollup-linux-arm64-musl': 4.28.1
  2359. '@rollup/rollup-linux-loongarch64-gnu': 4.28.1
  2360. '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1
  2361. '@rollup/rollup-linux-riscv64-gnu': 4.28.1
  2362. '@rollup/rollup-linux-s390x-gnu': 4.28.1
  2363. '@rollup/rollup-linux-x64-gnu': 4.28.1
  2364. '@rollup/rollup-linux-x64-musl': 4.28.1
  2365. '@rollup/rollup-win32-arm64-msvc': 4.28.1
  2366. '@rollup/rollup-win32-ia32-msvc': 4.28.1
  2367. '@rollup/rollup-win32-x64-msvc': 4.28.1
  2368. fsevents: 2.3.3
  2369. [email protected]:
  2370. dependencies:
  2371. queue-microtask: 1.2.3
  2372. [email protected]: {}
  2373. [email protected]:
  2374. dependencies:
  2375. chokidar: 4.0.2
  2376. immutable: 5.0.3
  2377. source-map-js: 1.2.1
  2378. optionalDependencies:
  2379. '@parcel/watcher': 2.5.0
  2380. [email protected]:
  2381. optional: true
  2382. [email protected]: {}
  2383. [email protected]:
  2384. dependencies:
  2385. extend-shallow: 2.0.1
  2386. kind-of: 6.0.3
  2387. [email protected]:
  2388. optional: true
  2389. [email protected]:
  2390. dependencies:
  2391. shebang-regex: 3.0.0
  2392. [email protected]: {}
  2393. [email protected]: {}
  2394. [email protected]:
  2395. dependencies:
  2396. '@types/node': 17.0.45
  2397. '@types/sax': 1.2.7
  2398. arg: 5.0.2
  2399. sax: 1.4.1
  2400. [email protected]: {}
  2401. [email protected]: {}
  2402. [email protected]:
  2403. dependencies:
  2404. atob: 2.1.2
  2405. decode-uri-component: 0.2.2
  2406. resolve-url: 0.2.1
  2407. source-map-url: 0.4.1
  2408. urix: 0.1.0
  2409. optional: true
  2410. [email protected]:
  2411. optional: true
  2412. [email protected]:
  2413. optional: true
  2414. [email protected]:
  2415. optional: true
  2416. [email protected]: {}
  2417. [email protected]: {}
  2418. [email protected]: {}
  2419. [email protected]:
  2420. dependencies:
  2421. emoji-regex: 10.4.0
  2422. get-east-asian-width: 1.3.0
  2423. strip-ansi: 7.1.0
  2424. [email protected]:
  2425. dependencies:
  2426. ansi-regex: 6.1.0
  2427. [email protected]: {}
  2428. [email protected]: {}
  2429. [email protected]:
  2430. dependencies:
  2431. css-parse: 2.0.0
  2432. debug: 3.1.0
  2433. glob: 7.2.3
  2434. mkdirp: 1.0.4
  2435. safer-buffer: 2.1.2
  2436. sax: 1.2.4
  2437. semver: 6.3.1
  2438. source-map: 0.7.4
  2439. transitivePeerDependencies:
  2440. - supports-color
  2441. optional: true
  2442. [email protected]:
  2443. dependencies:
  2444. copy-anything: 3.0.5
  2445. [email protected]:
  2446. dependencies:
  2447. is-number: 7.0.0
  2448. [email protected]: {}
  2449. [email protected]: {}
  2450. [email protected]: {}
  2451. [email protected]: {}
  2452. [email protected]: {}
  2453. [email protected]: {}
  2454. [email protected]: {}
  2455. [email protected]([email protected]):
  2456. dependencies:
  2457. browserslist: 4.24.3
  2458. escalade: 3.2.0
  2459. picocolors: 1.1.1
  2460. [email protected]:
  2461. optional: true
  2462. [email protected](@types/[email protected])([email protected])([email protected])([email protected]):
  2463. dependencies:
  2464. esbuild: 0.24.0
  2465. postcss: 8.4.49
  2466. rollup: 4.28.1
  2467. optionalDependencies:
  2468. '@types/node': 22.10.2
  2469. fsevents: 2.3.3
  2470. sass: 1.83.0
  2471. stylus: 0.54.8
  2472. yaml: 2.6.1
  2473. [email protected]([email protected]):
  2474. dependencies:
  2475. '@vue/devtools-api': 6.6.4
  2476. vue: 3.5.13
  2477. [email protected]:
  2478. dependencies:
  2479. '@vue/compiler-dom': 3.5.13
  2480. '@vue/compiler-sfc': 3.5.13
  2481. '@vue/runtime-dom': 3.5.13
  2482. '@vue/server-renderer': 3.5.13([email protected])
  2483. '@vue/shared': 3.5.13
  2484. [email protected](@vuepress/[email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]):
  2485. dependencies:
  2486. '@vuepress/cli': 2.0.0-rc.19
  2487. '@vuepress/client': 2.0.0-rc.19
  2488. '@vuepress/core': 2.0.0-rc.19
  2489. '@vuepress/markdown': 2.0.0-rc.19
  2490. '@vuepress/shared': 2.0.0-rc.19
  2491. '@vuepress/utils': 2.0.0-rc.19
  2492. vue: 3.5.13
  2493. optionalDependencies:
  2494. '@vuepress/bundler-vite': 2.0.0-rc.19(@types/[email protected])([email protected])([email protected])([email protected])
  2495. transitivePeerDependencies:
  2496. - supports-color
  2497. - typescript
  2498. [email protected]:
  2499. dependencies:
  2500. iconv-lite: 0.6.3
  2501. [email protected]: {}
  2502. [email protected]:
  2503. dependencies:
  2504. isexe: 2.0.0
  2505. [email protected]:
  2506. optional: true
  2507. [email protected]:
  2508. optional: true
  2509. [email protected]: {}