pnpm-lock.yaml 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. pinia:
  9. specifier: ^2.2.6
  10. version: 2.3.0(vue@3.5.13)
  11. vue:
  12. specifier: ^3.5.13
  13. version: 3.5.13
  14. vue-router:
  15. specifier: ^4.4.5
  16. version: 4.5.0(vue@3.5.13)
  17. devDependencies:
  18. '@vitejs/plugin-vue':
  19. specifier: ^5.2.1
  20. version: 5.2.1(vite@6.0.3(sass@1.82.0))(vue@3.5.13)
  21. sass:
  22. specifier: ^1.82.0
  23. version: 1.82.0
  24. vite:
  25. specifier: ^6.0.1
  26. version: 6.0.3(sass@1.82.0)
  27. vite-plugin-vue-devtools:
  28. specifier: ^7.6.5
  29. version: 7.6.7(rollup@4.28.1)(vite@6.0.3(sass@1.82.0))(vue@3.5.13)
  30. packages:
  31. '@ampproject/remapping@2.3.0':
  32. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  33. engines: {node: '>=6.0.0'}
  34. '@antfu/utils@0.7.10':
  35. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  36. '@babel/code-frame@7.26.2':
  37. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  38. engines: {node: '>=6.9.0'}
  39. '@babel/compat-data@7.26.3':
  40. resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
  41. engines: {node: '>=6.9.0'}
  42. '@babel/core@7.26.0':
  43. resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
  44. engines: {node: '>=6.9.0'}
  45. '@babel/generator@7.26.3':
  46. resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
  47. engines: {node: '>=6.9.0'}
  48. '@babel/helper-annotate-as-pure@7.25.9':
  49. resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
  50. engines: {node: '>=6.9.0'}
  51. '@babel/helper-compilation-targets@7.25.9':
  52. resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
  53. engines: {node: '>=6.9.0'}
  54. '@babel/helper-create-class-features-plugin@7.25.9':
  55. resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
  56. engines: {node: '>=6.9.0'}
  57. peerDependencies:
  58. '@babel/core': ^7.0.0
  59. '@babel/helper-member-expression-to-functions@7.25.9':
  60. resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
  61. engines: {node: '>=6.9.0'}
  62. '@babel/helper-module-imports@7.25.9':
  63. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  64. engines: {node: '>=6.9.0'}
  65. '@babel/helper-module-transforms@7.26.0':
  66. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  67. engines: {node: '>=6.9.0'}
  68. peerDependencies:
  69. '@babel/core': ^7.0.0
  70. '@babel/helper-optimise-call-expression@7.25.9':
  71. resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
  72. engines: {node: '>=6.9.0'}
  73. '@babel/helper-plugin-utils@7.25.9':
  74. resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
  75. engines: {node: '>=6.9.0'}
  76. '@babel/helper-replace-supers@7.25.9':
  77. resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
  78. engines: {node: '>=6.9.0'}
  79. peerDependencies:
  80. '@babel/core': ^7.0.0
  81. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  82. resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
  83. engines: {node: '>=6.9.0'}
  84. '@babel/helper-string-parser@7.25.9':
  85. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  86. engines: {node: '>=6.9.0'}
  87. '@babel/helper-validator-identifier@7.25.9':
  88. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  89. engines: {node: '>=6.9.0'}
  90. '@babel/helper-validator-option@7.25.9':
  91. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  92. engines: {node: '>=6.9.0'}
  93. '@babel/helpers@7.26.0':
  94. resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
  95. engines: {node: '>=6.9.0'}
  96. '@babel/parser@7.26.3':
  97. resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
  98. engines: {node: '>=6.0.0'}
  99. hasBin: true
  100. '@babel/plugin-proposal-decorators@7.25.9':
  101. resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
  102. engines: {node: '>=6.9.0'}
  103. peerDependencies:
  104. '@babel/core': ^7.0.0-0
  105. '@babel/plugin-syntax-decorators@7.25.9':
  106. resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
  107. engines: {node: '>=6.9.0'}
  108. peerDependencies:
  109. '@babel/core': ^7.0.0-0
  110. '@babel/plugin-syntax-import-attributes@7.26.0':
  111. resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
  112. engines: {node: '>=6.9.0'}
  113. peerDependencies:
  114. '@babel/core': ^7.0.0-0
  115. '@babel/plugin-syntax-import-meta@7.10.4':
  116. resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
  117. peerDependencies:
  118. '@babel/core': ^7.0.0-0
  119. '@babel/plugin-syntax-jsx@7.25.9':
  120. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  121. engines: {node: '>=6.9.0'}
  122. peerDependencies:
  123. '@babel/core': ^7.0.0-0
  124. '@babel/plugin-syntax-typescript@7.25.9':
  125. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  126. engines: {node: '>=6.9.0'}
  127. peerDependencies:
  128. '@babel/core': ^7.0.0-0
  129. '@babel/plugin-transform-typescript@7.26.3':
  130. resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
  131. engines: {node: '>=6.9.0'}
  132. peerDependencies:
  133. '@babel/core': ^7.0.0-0
  134. '@babel/template@7.25.9':
  135. resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
  136. engines: {node: '>=6.9.0'}
  137. '@babel/traverse@7.26.4':
  138. resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
  139. engines: {node: '>=6.9.0'}
  140. '@babel/types@7.26.3':
  141. resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
  142. engines: {node: '>=6.9.0'}
  143. '@esbuild/aix-ppc64@0.24.0':
  144. resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
  145. engines: {node: '>=18'}
  146. cpu: [ppc64]
  147. os: [aix]
  148. '@esbuild/android-arm64@0.24.0':
  149. resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
  150. engines: {node: '>=18'}
  151. cpu: [arm64]
  152. os: [android]
  153. '@esbuild/android-arm@0.24.0':
  154. resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
  155. engines: {node: '>=18'}
  156. cpu: [arm]
  157. os: [android]
  158. '@esbuild/android-x64@0.24.0':
  159. resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
  160. engines: {node: '>=18'}
  161. cpu: [x64]
  162. os: [android]
  163. '@esbuild/darwin-arm64@0.24.0':
  164. resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
  165. engines: {node: '>=18'}
  166. cpu: [arm64]
  167. os: [darwin]
  168. '@esbuild/darwin-x64@0.24.0':
  169. resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
  170. engines: {node: '>=18'}
  171. cpu: [x64]
  172. os: [darwin]
  173. '@esbuild/freebsd-arm64@0.24.0':
  174. resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
  175. engines: {node: '>=18'}
  176. cpu: [arm64]
  177. os: [freebsd]
  178. '@esbuild/freebsd-x64@0.24.0':
  179. resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
  180. engines: {node: '>=18'}
  181. cpu: [x64]
  182. os: [freebsd]
  183. '@esbuild/linux-arm64@0.24.0':
  184. resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
  185. engines: {node: '>=18'}
  186. cpu: [arm64]
  187. os: [linux]
  188. '@esbuild/linux-arm@0.24.0':
  189. resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
  190. engines: {node: '>=18'}
  191. cpu: [arm]
  192. os: [linux]
  193. '@esbuild/linux-ia32@0.24.0':
  194. resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
  195. engines: {node: '>=18'}
  196. cpu: [ia32]
  197. os: [linux]
  198. '@esbuild/linux-loong64@0.24.0':
  199. resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
  200. engines: {node: '>=18'}
  201. cpu: [loong64]
  202. os: [linux]
  203. '@esbuild/linux-mips64el@0.24.0':
  204. resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
  205. engines: {node: '>=18'}
  206. cpu: [mips64el]
  207. os: [linux]
  208. '@esbuild/linux-ppc64@0.24.0':
  209. resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
  210. engines: {node: '>=18'}
  211. cpu: [ppc64]
  212. os: [linux]
  213. '@esbuild/linux-riscv64@0.24.0':
  214. resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
  215. engines: {node: '>=18'}
  216. cpu: [riscv64]
  217. os: [linux]
  218. '@esbuild/linux-s390x@0.24.0':
  219. resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
  220. engines: {node: '>=18'}
  221. cpu: [s390x]
  222. os: [linux]
  223. '@esbuild/linux-x64@0.24.0':
  224. resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
  225. engines: {node: '>=18'}
  226. cpu: [x64]
  227. os: [linux]
  228. '@esbuild/netbsd-x64@0.24.0':
  229. resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
  230. engines: {node: '>=18'}
  231. cpu: [x64]
  232. os: [netbsd]
  233. '@esbuild/openbsd-arm64@0.24.0':
  234. resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
  235. engines: {node: '>=18'}
  236. cpu: [arm64]
  237. os: [openbsd]
  238. '@esbuild/openbsd-x64@0.24.0':
  239. resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
  240. engines: {node: '>=18'}
  241. cpu: [x64]
  242. os: [openbsd]
  243. '@esbuild/sunos-x64@0.24.0':
  244. resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
  245. engines: {node: '>=18'}
  246. cpu: [x64]
  247. os: [sunos]
  248. '@esbuild/win32-arm64@0.24.0':
  249. resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
  250. engines: {node: '>=18'}
  251. cpu: [arm64]
  252. os: [win32]
  253. '@esbuild/win32-ia32@0.24.0':
  254. resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
  255. engines: {node: '>=18'}
  256. cpu: [ia32]
  257. os: [win32]
  258. '@esbuild/win32-x64@0.24.0':
  259. resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
  260. engines: {node: '>=18'}
  261. cpu: [x64]
  262. os: [win32]
  263. '@jridgewell/gen-mapping@0.3.5':
  264. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  265. engines: {node: '>=6.0.0'}
  266. '@jridgewell/resolve-uri@3.1.2':
  267. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  268. engines: {node: '>=6.0.0'}
  269. '@jridgewell/set-array@1.2.1':
  270. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  271. engines: {node: '>=6.0.0'}
  272. '@jridgewell/sourcemap-codec@1.5.0':
  273. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  274. '@jridgewell/trace-mapping@0.3.25':
  275. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  276. '@parcel/watcher-android-arm64@2.5.0':
  277. resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
  278. engines: {node: '>= 10.0.0'}
  279. cpu: [arm64]
  280. os: [android]
  281. '@parcel/watcher-darwin-arm64@2.5.0':
  282. resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
  283. engines: {node: '>= 10.0.0'}
  284. cpu: [arm64]
  285. os: [darwin]
  286. '@parcel/watcher-darwin-x64@2.5.0':
  287. resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
  288. engines: {node: '>= 10.0.0'}
  289. cpu: [x64]
  290. os: [darwin]
  291. '@parcel/watcher-freebsd-x64@2.5.0':
  292. resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
  293. engines: {node: '>= 10.0.0'}
  294. cpu: [x64]
  295. os: [freebsd]
  296. '@parcel/watcher-linux-arm-glibc@2.5.0':
  297. resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
  298. engines: {node: '>= 10.0.0'}
  299. cpu: [arm]
  300. os: [linux]
  301. libc: [glibc]
  302. '@parcel/watcher-linux-arm-musl@2.5.0':
  303. resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
  304. engines: {node: '>= 10.0.0'}
  305. cpu: [arm]
  306. os: [linux]
  307. libc: [musl]
  308. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  309. resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
  310. engines: {node: '>= 10.0.0'}
  311. cpu: [arm64]
  312. os: [linux]
  313. libc: [glibc]
  314. '@parcel/watcher-linux-arm64-musl@2.5.0':
  315. resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
  316. engines: {node: '>= 10.0.0'}
  317. cpu: [arm64]
  318. os: [linux]
  319. libc: [musl]
  320. '@parcel/watcher-linux-x64-glibc@2.5.0':
  321. resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
  322. engines: {node: '>= 10.0.0'}
  323. cpu: [x64]
  324. os: [linux]
  325. libc: [glibc]
  326. '@parcel/watcher-linux-x64-musl@2.5.0':
  327. resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
  328. engines: {node: '>= 10.0.0'}
  329. cpu: [x64]
  330. os: [linux]
  331. libc: [musl]
  332. '@parcel/watcher-win32-arm64@2.5.0':
  333. resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
  334. engines: {node: '>= 10.0.0'}
  335. cpu: [arm64]
  336. os: [win32]
  337. '@parcel/watcher-win32-ia32@2.5.0':
  338. resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
  339. engines: {node: '>= 10.0.0'}
  340. cpu: [ia32]
  341. os: [win32]
  342. '@parcel/watcher-win32-x64@2.5.0':
  343. resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
  344. engines: {node: '>= 10.0.0'}
  345. cpu: [x64]
  346. os: [win32]
  347. '@parcel/watcher@2.5.0':
  348. resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
  349. engines: {node: '>= 10.0.0'}
  350. '@polka/url@1.0.0-next.28':
  351. resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
  352. '@rollup/pluginutils@5.1.3':
  353. resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
  354. engines: {node: '>=14.0.0'}
  355. peerDependencies:
  356. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  357. peerDependenciesMeta:
  358. rollup:
  359. optional: true
  360. '@rollup/rollup-android-arm-eabi@4.28.1':
  361. resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==}
  362. cpu: [arm]
  363. os: [android]
  364. '@rollup/rollup-android-arm64@4.28.1':
  365. resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==}
  366. cpu: [arm64]
  367. os: [android]
  368. '@rollup/rollup-darwin-arm64@4.28.1':
  369. resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==}
  370. cpu: [arm64]
  371. os: [darwin]
  372. '@rollup/rollup-darwin-x64@4.28.1':
  373. resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==}
  374. cpu: [x64]
  375. os: [darwin]
  376. '@rollup/rollup-freebsd-arm64@4.28.1':
  377. resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==}
  378. cpu: [arm64]
  379. os: [freebsd]
  380. '@rollup/rollup-freebsd-x64@4.28.1':
  381. resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==}
  382. cpu: [x64]
  383. os: [freebsd]
  384. '@rollup/rollup-linux-arm-gnueabihf@4.28.1':
  385. resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==}
  386. cpu: [arm]
  387. os: [linux]
  388. libc: [glibc]
  389. '@rollup/rollup-linux-arm-musleabihf@4.28.1':
  390. resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==}
  391. cpu: [arm]
  392. os: [linux]
  393. libc: [musl]
  394. '@rollup/rollup-linux-arm64-gnu@4.28.1':
  395. resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==}
  396. cpu: [arm64]
  397. os: [linux]
  398. libc: [glibc]
  399. '@rollup/rollup-linux-arm64-musl@4.28.1':
  400. resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==}
  401. cpu: [arm64]
  402. os: [linux]
  403. libc: [musl]
  404. '@rollup/rollup-linux-loongarch64-gnu@4.28.1':
  405. resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==}
  406. cpu: [loong64]
  407. os: [linux]
  408. libc: [glibc]
  409. '@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
  410. resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==}
  411. cpu: [ppc64]
  412. os: [linux]
  413. libc: [glibc]
  414. '@rollup/rollup-linux-riscv64-gnu@4.28.1':
  415. resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==}
  416. cpu: [riscv64]
  417. os: [linux]
  418. libc: [glibc]
  419. '@rollup/rollup-linux-s390x-gnu@4.28.1':
  420. resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==}
  421. cpu: [s390x]
  422. os: [linux]
  423. libc: [glibc]
  424. '@rollup/rollup-linux-x64-gnu@4.28.1':
  425. resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==}
  426. cpu: [x64]
  427. os: [linux]
  428. libc: [glibc]
  429. '@rollup/rollup-linux-x64-musl@4.28.1':
  430. resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==}
  431. cpu: [x64]
  432. os: [linux]
  433. libc: [musl]
  434. '@rollup/rollup-win32-arm64-msvc@4.28.1':
  435. resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==}
  436. cpu: [arm64]
  437. os: [win32]
  438. '@rollup/rollup-win32-ia32-msvc@4.28.1':
  439. resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==}
  440. cpu: [ia32]
  441. os: [win32]
  442. '@rollup/rollup-win32-x64-msvc@4.28.1':
  443. resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==}
  444. cpu: [x64]
  445. os: [win32]
  446. '@sec-ant/readable-stream@0.4.1':
  447. resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
  448. '@sindresorhus/merge-streams@4.0.0':
  449. resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
  450. engines: {node: '>=18'}
  451. '@types/estree@1.0.6':
  452. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  453. '@vitejs/plugin-vue@5.2.1':
  454. resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
  455. engines: {node: ^18.0.0 || >=20.0.0}
  456. peerDependencies:
  457. vite: ^5.0.0 || ^6.0.0
  458. vue: ^3.2.25
  459. '@vue/babel-helper-vue-transform-on@1.2.5':
  460. resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
  461. '@vue/babel-plugin-jsx@1.2.5':
  462. resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
  463. peerDependencies:
  464. '@babel/core': ^7.0.0-0
  465. peerDependenciesMeta:
  466. '@babel/core':
  467. optional: true
  468. '@vue/babel-plugin-resolve-type@1.2.5':
  469. resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
  470. peerDependencies:
  471. '@babel/core': ^7.0.0-0
  472. '@vue/compiler-core@3.5.13':
  473. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  474. '@vue/compiler-dom@3.5.13':
  475. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  476. '@vue/compiler-sfc@3.5.13':
  477. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  478. '@vue/compiler-ssr@3.5.13':
  479. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  480. '@vue/devtools-api@6.6.4':
  481. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  482. '@vue/devtools-core@7.6.7':
  483. resolution: {integrity: sha512-6fW8Q0H1NHDXdEcuV6dylT5U2Yxg3SdMnVCey99Y6S4R2PNgFL2vC+VU9U9rHIiaoEUkeza42S7FfHxV4VI3Jg==}
  484. peerDependencies:
  485. vue: ^3.0.0
  486. '@vue/devtools-kit@7.6.7':
  487. resolution: {integrity: sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==}
  488. '@vue/devtools-shared@7.6.7':
  489. resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==}
  490. '@vue/reactivity@3.5.13':
  491. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  492. '@vue/runtime-core@3.5.13':
  493. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  494. '@vue/runtime-dom@3.5.13':
  495. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  496. '@vue/server-renderer@3.5.13':
  497. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  498. peerDependencies:
  499. vue: 3.5.13
  500. '@vue/shared@3.5.13':
  501. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  502. birpc@0.2.19:
  503. resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
  504. braces@3.0.3:
  505. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  506. engines: {node: '>=8'}
  507. browserslist@4.24.2:
  508. resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
  509. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  510. hasBin: true
  511. bundle-name@4.1.0:
  512. resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
  513. engines: {node: '>=18'}
  514. caniuse-lite@1.0.30001687:
  515. resolution: {integrity: sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==}
  516. chokidar@4.0.1:
  517. resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
  518. engines: {node: '>= 14.16.0'}
  519. convert-source-map@2.0.0:
  520. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  521. copy-anything@3.0.5:
  522. resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
  523. engines: {node: '>=12.13'}
  524. cross-spawn@7.0.6:
  525. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  526. engines: {node: '>= 8'}
  527. csstype@3.1.3:
  528. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  529. debug@4.4.0:
  530. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  531. engines: {node: '>=6.0'}
  532. peerDependencies:
  533. supports-color: '*'
  534. peerDependenciesMeta:
  535. supports-color:
  536. optional: true
  537. default-browser-id@5.0.0:
  538. resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
  539. engines: {node: '>=18'}
  540. default-browser@5.2.1:
  541. resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
  542. engines: {node: '>=18'}
  543. define-lazy-prop@3.0.0:
  544. resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
  545. engines: {node: '>=12'}
  546. detect-libc@1.0.3:
  547. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  548. engines: {node: '>=0.10'}
  549. hasBin: true
  550. electron-to-chromium@1.5.72:
  551. resolution: {integrity: sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw==}
  552. entities@4.5.0:
  553. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  554. engines: {node: '>=0.12'}
  555. error-stack-parser-es@0.1.5:
  556. resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
  557. esbuild@0.24.0:
  558. resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
  559. engines: {node: '>=18'}
  560. hasBin: true
  561. escalade@3.2.0:
  562. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  563. engines: {node: '>=6'}
  564. estree-walker@2.0.2:
  565. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  566. execa@9.5.2:
  567. resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==}
  568. engines: {node: ^18.19.0 || >=20.5.0}
  569. figures@6.1.0:
  570. resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
  571. engines: {node: '>=18'}
  572. fill-range@7.1.1:
  573. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  574. engines: {node: '>=8'}
  575. fs-extra@11.2.0:
  576. resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
  577. engines: {node: '>=14.14'}
  578. fsevents@2.3.3:
  579. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  580. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  581. os: [darwin]
  582. gensync@1.0.0-beta.2:
  583. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  584. engines: {node: '>=6.9.0'}
  585. get-stream@9.0.1:
  586. resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
  587. engines: {node: '>=18'}
  588. globals@11.12.0:
  589. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  590. engines: {node: '>=4'}
  591. graceful-fs@4.2.11:
  592. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  593. hookable@5.5.3:
  594. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  595. html-tags@3.3.1:
  596. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  597. engines: {node: '>=8'}
  598. human-signals@8.0.0:
  599. resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
  600. engines: {node: '>=18.18.0'}
  601. immutable@5.0.3:
  602. resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
  603. is-docker@3.0.0:
  604. resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
  605. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  606. hasBin: true
  607. is-extglob@2.1.1:
  608. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  609. engines: {node: '>=0.10.0'}
  610. is-glob@4.0.3:
  611. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  612. engines: {node: '>=0.10.0'}
  613. is-inside-container@1.0.0:
  614. resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
  615. engines: {node: '>=14.16'}
  616. hasBin: true
  617. is-number@7.0.0:
  618. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  619. engines: {node: '>=0.12.0'}
  620. is-plain-obj@4.1.0:
  621. resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
  622. engines: {node: '>=12'}
  623. is-stream@4.0.1:
  624. resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
  625. engines: {node: '>=18'}
  626. is-unicode-supported@2.1.0:
  627. resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
  628. engines: {node: '>=18'}
  629. is-what@4.1.16:
  630. resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
  631. engines: {node: '>=12.13'}
  632. is-wsl@3.1.0:
  633. resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
  634. engines: {node: '>=16'}
  635. isexe@2.0.0:
  636. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  637. js-tokens@4.0.0:
  638. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  639. jsesc@3.0.2:
  640. resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
  641. engines: {node: '>=6'}
  642. hasBin: true
  643. json5@2.2.3:
  644. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  645. engines: {node: '>=6'}
  646. hasBin: true
  647. jsonfile@6.1.0:
  648. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  649. kolorist@1.8.0:
  650. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  651. lru-cache@5.1.1:
  652. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  653. magic-string@0.30.15:
  654. resolution: {integrity: sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==}
  655. micromatch@4.0.8:
  656. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  657. engines: {node: '>=8.6'}
  658. mitt@3.0.1:
  659. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  660. mrmime@2.0.0:
  661. resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
  662. engines: {node: '>=10'}
  663. ms@2.1.3:
  664. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  665. nanoid@3.3.8:
  666. resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
  667. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  668. hasBin: true
  669. nanoid@5.0.9:
  670. resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
  671. engines: {node: ^18 || >=20}
  672. hasBin: true
  673. node-addon-api@7.1.1:
  674. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  675. node-releases@2.0.19:
  676. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  677. npm-run-path@6.0.0:
  678. resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
  679. engines: {node: '>=18'}
  680. open@10.1.0:
  681. resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
  682. engines: {node: '>=18'}
  683. parse-ms@4.0.0:
  684. resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
  685. engines: {node: '>=18'}
  686. path-key@3.1.1:
  687. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  688. engines: {node: '>=8'}
  689. path-key@4.0.0:
  690. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  691. engines: {node: '>=12'}
  692. pathe@1.1.2:
  693. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  694. perfect-debounce@1.0.0:
  695. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  696. picocolors@1.1.1:
  697. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  698. picomatch@2.3.1:
  699. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  700. engines: {node: '>=8.6'}
  701. picomatch@4.0.2:
  702. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  703. engines: {node: '>=12'}
  704. pinia@2.3.0:
  705. resolution: {integrity: sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ==}
  706. peerDependencies:
  707. typescript: '>=4.4.4'
  708. vue: ^2.7.0 || ^3.5.11
  709. peerDependenciesMeta:
  710. typescript:
  711. optional: true
  712. postcss@8.4.49:
  713. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  714. engines: {node: ^10 || ^12 || >=14}
  715. pretty-ms@9.2.0:
  716. resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
  717. engines: {node: '>=18'}
  718. readdirp@4.0.2:
  719. resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
  720. engines: {node: '>= 14.16.0'}
  721. rfdc@1.4.1:
  722. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  723. rollup@4.28.1:
  724. resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==}
  725. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  726. hasBin: true
  727. run-applescript@7.0.0:
  728. resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
  729. engines: {node: '>=18'}
  730. sass@1.82.0:
  731. resolution: {integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==}
  732. engines: {node: '>=14.0.0'}
  733. hasBin: true
  734. semver@6.3.1:
  735. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  736. hasBin: true
  737. shebang-command@2.0.0:
  738. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  739. engines: {node: '>=8'}
  740. shebang-regex@3.0.0:
  741. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  742. engines: {node: '>=8'}
  743. signal-exit@4.1.0:
  744. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  745. engines: {node: '>=14'}
  746. sirv@3.0.0:
  747. resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
  748. engines: {node: '>=18'}
  749. source-map-js@1.2.1:
  750. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  751. engines: {node: '>=0.10.0'}
  752. speakingurl@14.0.1:
  753. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  754. engines: {node: '>=0.10.0'}
  755. strip-final-newline@4.0.0:
  756. resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
  757. engines: {node: '>=18'}
  758. superjson@2.2.2:
  759. resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
  760. engines: {node: '>=16'}
  761. svg-tags@1.0.0:
  762. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  763. to-regex-range@5.0.1:
  764. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  765. engines: {node: '>=8.0'}
  766. totalist@3.0.1:
  767. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  768. engines: {node: '>=6'}
  769. unicorn-magic@0.3.0:
  770. resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
  771. engines: {node: '>=18'}
  772. universalify@2.0.1:
  773. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  774. engines: {node: '>= 10.0.0'}
  775. update-browserslist-db@1.1.1:
  776. resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
  777. hasBin: true
  778. peerDependencies:
  779. browserslist: '>= 4.21.0'
  780. vite-hot-client@0.2.4:
  781. resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
  782. peerDependencies:
  783. vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
  784. vite-plugin-inspect@0.8.8:
  785. resolution: {integrity: sha512-aZlBuXsWUPJFmMK92GIv6lH7LrwG2POu4KJ+aEdcqnu92OAf+rhBnfMDQvxIJPEB7hE2t5EyY/PMgf5aDLT8EA==}
  786. engines: {node: '>=14'}
  787. peerDependencies:
  788. '@nuxt/kit': '*'
  789. vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
  790. peerDependenciesMeta:
  791. '@nuxt/kit':
  792. optional: true
  793. vite-plugin-vue-devtools@7.6.7:
  794. resolution: {integrity: sha512-H1ZyjtpWjP5mHA5R15sQeYgAARuh2Myg3TDFXWZK6QOQRy8s3XjTIt319DogVjU/x3rC3L/jJQjIasRU04mWXA==}
  795. engines: {node: '>=v14.21.3'}
  796. peerDependencies:
  797. vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
  798. vite-plugin-vue-inspector@5.3.1:
  799. resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
  800. peerDependencies:
  801. vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
  802. vite@6.0.3:
  803. resolution: {integrity: sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==}
  804. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  805. hasBin: true
  806. peerDependencies:
  807. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  808. jiti: '>=1.21.0'
  809. less: '*'
  810. lightningcss: ^1.21.0
  811. sass: '*'
  812. sass-embedded: '*'
  813. stylus: '*'
  814. sugarss: '*'
  815. terser: ^5.16.0
  816. tsx: ^4.8.1
  817. yaml: ^2.4.2
  818. peerDependenciesMeta:
  819. '@types/node':
  820. optional: true
  821. jiti:
  822. optional: true
  823. less:
  824. optional: true
  825. lightningcss:
  826. optional: true
  827. sass:
  828. optional: true
  829. sass-embedded:
  830. optional: true
  831. stylus:
  832. optional: true
  833. sugarss:
  834. optional: true
  835. terser:
  836. optional: true
  837. tsx:
  838. optional: true
  839. yaml:
  840. optional: true
  841. vue-demi@0.14.10:
  842. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  843. engines: {node: '>=12'}
  844. hasBin: true
  845. peerDependencies:
  846. '@vue/composition-api': ^1.0.0-rc.1
  847. vue: ^3.0.0-0 || ^2.6.0
  848. peerDependenciesMeta:
  849. '@vue/composition-api':
  850. optional: true
  851. vue-router@4.5.0:
  852. resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
  853. peerDependencies:
  854. vue: ^3.2.0
  855. vue@3.5.13:
  856. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  857. peerDependencies:
  858. typescript: '*'
  859. peerDependenciesMeta:
  860. typescript:
  861. optional: true
  862. which@2.0.2:
  863. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  864. engines: {node: '>= 8'}
  865. hasBin: true
  866. yallist@3.1.1:
  867. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  868. yoctocolors@2.1.1:
  869. resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
  870. engines: {node: '>=18'}
  871. snapshots:
  872. '@ampproject/remapping@2.3.0':
  873. dependencies:
  874. '@jridgewell/gen-mapping': 0.3.5
  875. '@jridgewell/trace-mapping': 0.3.25
  876. '@antfu/utils@0.7.10': {}
  877. '@babel/code-frame@7.26.2':
  878. dependencies:
  879. '@babel/helper-validator-identifier': 7.25.9
  880. js-tokens: 4.0.0
  881. picocolors: 1.1.1
  882. '@babel/compat-data@7.26.3': {}
  883. '@babel/core@7.26.0':
  884. dependencies:
  885. '@ampproject/remapping': 2.3.0
  886. '@babel/code-frame': 7.26.2
  887. '@babel/generator': 7.26.3
  888. '@babel/helper-compilation-targets': 7.25.9
  889. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
  890. '@babel/helpers': 7.26.0
  891. '@babel/parser': 7.26.3
  892. '@babel/template': 7.25.9
  893. '@babel/traverse': 7.26.4
  894. '@babel/types': 7.26.3
  895. convert-source-map: 2.0.0
  896. debug: 4.4.0
  897. gensync: 1.0.0-beta.2
  898. json5: 2.2.3
  899. semver: 6.3.1
  900. transitivePeerDependencies:
  901. - supports-color
  902. '@babel/generator@7.26.3':
  903. dependencies:
  904. '@babel/parser': 7.26.3
  905. '@babel/types': 7.26.3
  906. '@jridgewell/gen-mapping': 0.3.5
  907. '@jridgewell/trace-mapping': 0.3.25
  908. jsesc: 3.0.2
  909. '@babel/helper-annotate-as-pure@7.25.9':
  910. dependencies:
  911. '@babel/types': 7.26.3
  912. '@babel/helper-compilation-targets@7.25.9':
  913. dependencies:
  914. '@babel/compat-data': 7.26.3
  915. '@babel/helper-validator-option': 7.25.9
  916. browserslist: 4.24.2
  917. lru-cache: 5.1.1
  918. semver: 6.3.1
  919. '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
  920. dependencies:
  921. '@babel/core': 7.26.0
  922. '@babel/helper-annotate-as-pure': 7.25.9
  923. '@babel/helper-member-expression-to-functions': 7.25.9
  924. '@babel/helper-optimise-call-expression': 7.25.9
  925. '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
  926. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  927. '@babel/traverse': 7.26.4
  928. semver: 6.3.1
  929. transitivePeerDependencies:
  930. - supports-color
  931. '@babel/helper-member-expression-to-functions@7.25.9':
  932. dependencies:
  933. '@babel/traverse': 7.26.4
  934. '@babel/types': 7.26.3
  935. transitivePeerDependencies:
  936. - supports-color
  937. '@babel/helper-module-imports@7.25.9':
  938. dependencies:
  939. '@babel/traverse': 7.26.4
  940. '@babel/types': 7.26.3
  941. transitivePeerDependencies:
  942. - supports-color
  943. '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
  944. dependencies:
  945. '@babel/core': 7.26.0
  946. '@babel/helper-module-imports': 7.25.9
  947. '@babel/helper-validator-identifier': 7.25.9
  948. '@babel/traverse': 7.26.4
  949. transitivePeerDependencies:
  950. - supports-color
  951. '@babel/helper-optimise-call-expression@7.25.9':
  952. dependencies:
  953. '@babel/types': 7.26.3
  954. '@babel/helper-plugin-utils@7.25.9': {}
  955. '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
  956. dependencies:
  957. '@babel/core': 7.26.0
  958. '@babel/helper-member-expression-to-functions': 7.25.9
  959. '@babel/helper-optimise-call-expression': 7.25.9
  960. '@babel/traverse': 7.26.4
  961. transitivePeerDependencies:
  962. - supports-color
  963. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  964. dependencies:
  965. '@babel/traverse': 7.26.4
  966. '@babel/types': 7.26.3
  967. transitivePeerDependencies:
  968. - supports-color
  969. '@babel/helper-string-parser@7.25.9': {}
  970. '@babel/helper-validator-identifier@7.25.9': {}
  971. '@babel/helper-validator-option@7.25.9': {}
  972. '@babel/helpers@7.26.0':
  973. dependencies:
  974. '@babel/template': 7.25.9
  975. '@babel/types': 7.26.3
  976. '@babel/parser@7.26.3':
  977. dependencies:
  978. '@babel/types': 7.26.3
  979. '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
  980. dependencies:
  981. '@babel/core': 7.26.0
  982. '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
  983. '@babel/helper-plugin-utils': 7.25.9
  984. '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
  985. transitivePeerDependencies:
  986. - supports-color
  987. '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
  988. dependencies:
  989. '@babel/core': 7.26.0
  990. '@babel/helper-plugin-utils': 7.25.9
  991. '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
  992. dependencies:
  993. '@babel/core': 7.26.0
  994. '@babel/helper-plugin-utils': 7.25.9
  995. '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
  996. dependencies:
  997. '@babel/core': 7.26.0
  998. '@babel/helper-plugin-utils': 7.25.9
  999. '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
  1000. dependencies:
  1001. '@babel/core': 7.26.0
  1002. '@babel/helper-plugin-utils': 7.25.9
  1003. '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
  1004. dependencies:
  1005. '@babel/core': 7.26.0
  1006. '@babel/helper-plugin-utils': 7.25.9
  1007. '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
  1008. dependencies:
  1009. '@babel/core': 7.26.0
  1010. '@babel/helper-annotate-as-pure': 7.25.9
  1011. '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
  1012. '@babel/helper-plugin-utils': 7.25.9
  1013. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1014. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
  1015. transitivePeerDependencies:
  1016. - supports-color
  1017. '@babel/template@7.25.9':
  1018. dependencies:
  1019. '@babel/code-frame': 7.26.2
  1020. '@babel/parser': 7.26.3
  1021. '@babel/types': 7.26.3
  1022. '@babel/traverse@7.26.4':
  1023. dependencies:
  1024. '@babel/code-frame': 7.26.2
  1025. '@babel/generator': 7.26.3
  1026. '@babel/parser': 7.26.3
  1027. '@babel/template': 7.25.9
  1028. '@babel/types': 7.26.3
  1029. debug: 4.4.0
  1030. globals: 11.12.0
  1031. transitivePeerDependencies:
  1032. - supports-color
  1033. '@babel/types@7.26.3':
  1034. dependencies:
  1035. '@babel/helper-string-parser': 7.25.9
  1036. '@babel/helper-validator-identifier': 7.25.9
  1037. '@esbuild/aix-ppc64@0.24.0':
  1038. optional: true
  1039. '@esbuild/android-arm64@0.24.0':
  1040. optional: true
  1041. '@esbuild/android-arm@0.24.0':
  1042. optional: true
  1043. '@esbuild/android-x64@0.24.0':
  1044. optional: true
  1045. '@esbuild/darwin-arm64@0.24.0':
  1046. optional: true
  1047. '@esbuild/darwin-x64@0.24.0':
  1048. optional: true
  1049. '@esbuild/freebsd-arm64@0.24.0':
  1050. optional: true
  1051. '@esbuild/freebsd-x64@0.24.0':
  1052. optional: true
  1053. '@esbuild/linux-arm64@0.24.0':
  1054. optional: true
  1055. '@esbuild/linux-arm@0.24.0':
  1056. optional: true
  1057. '@esbuild/linux-ia32@0.24.0':
  1058. optional: true
  1059. '@esbuild/linux-loong64@0.24.0':
  1060. optional: true
  1061. '@esbuild/linux-mips64el@0.24.0':
  1062. optional: true
  1063. '@esbuild/linux-ppc64@0.24.0':
  1064. optional: true
  1065. '@esbuild/linux-riscv64@0.24.0':
  1066. optional: true
  1067. '@esbuild/linux-s390x@0.24.0':
  1068. optional: true
  1069. '@esbuild/linux-x64@0.24.0':
  1070. optional: true
  1071. '@esbuild/netbsd-x64@0.24.0':
  1072. optional: true
  1073. '@esbuild/openbsd-arm64@0.24.0':
  1074. optional: true
  1075. '@esbuild/openbsd-x64@0.24.0':
  1076. optional: true
  1077. '@esbuild/sunos-x64@0.24.0':
  1078. optional: true
  1079. '@esbuild/win32-arm64@0.24.0':
  1080. optional: true
  1081. '@esbuild/win32-ia32@0.24.0':
  1082. optional: true
  1083. '@esbuild/win32-x64@0.24.0':
  1084. optional: true
  1085. '@jridgewell/gen-mapping@0.3.5':
  1086. dependencies:
  1087. '@jridgewell/set-array': 1.2.1
  1088. '@jridgewell/sourcemap-codec': 1.5.0
  1089. '@jridgewell/trace-mapping': 0.3.25
  1090. '@jridgewell/resolve-uri@3.1.2': {}
  1091. '@jridgewell/set-array@1.2.1': {}
  1092. '@jridgewell/sourcemap-codec@1.5.0': {}
  1093. '@jridgewell/trace-mapping@0.3.25':
  1094. dependencies:
  1095. '@jridgewell/resolve-uri': 3.1.2
  1096. '@jridgewell/sourcemap-codec': 1.5.0
  1097. '@parcel/watcher-android-arm64@2.5.0':
  1098. optional: true
  1099. '@parcel/watcher-darwin-arm64@2.5.0':
  1100. optional: true
  1101. '@parcel/watcher-darwin-x64@2.5.0':
  1102. optional: true
  1103. '@parcel/watcher-freebsd-x64@2.5.0':
  1104. optional: true
  1105. '@parcel/watcher-linux-arm-glibc@2.5.0':
  1106. optional: true
  1107. '@parcel/watcher-linux-arm-musl@2.5.0':
  1108. optional: true
  1109. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  1110. optional: true
  1111. '@parcel/watcher-linux-arm64-musl@2.5.0':
  1112. optional: true
  1113. '@parcel/watcher-linux-x64-glibc@2.5.0':
  1114. optional: true
  1115. '@parcel/watcher-linux-x64-musl@2.5.0':
  1116. optional: true
  1117. '@parcel/watcher-win32-arm64@2.5.0':
  1118. optional: true
  1119. '@parcel/watcher-win32-ia32@2.5.0':
  1120. optional: true
  1121. '@parcel/watcher-win32-x64@2.5.0':
  1122. optional: true
  1123. '@parcel/watcher@2.5.0':
  1124. dependencies:
  1125. detect-libc: 1.0.3
  1126. is-glob: 4.0.3
  1127. micromatch: 4.0.8
  1128. node-addon-api: 7.1.1
  1129. optionalDependencies:
  1130. '@parcel/watcher-android-arm64': 2.5.0
  1131. '@parcel/watcher-darwin-arm64': 2.5.0
  1132. '@parcel/watcher-darwin-x64': 2.5.0
  1133. '@parcel/watcher-freebsd-x64': 2.5.0
  1134. '@parcel/watcher-linux-arm-glibc': 2.5.0
  1135. '@parcel/watcher-linux-arm-musl': 2.5.0
  1136. '@parcel/watcher-linux-arm64-glibc': 2.5.0
  1137. '@parcel/watcher-linux-arm64-musl': 2.5.0
  1138. '@parcel/watcher-linux-x64-glibc': 2.5.0
  1139. '@parcel/watcher-linux-x64-musl': 2.5.0
  1140. '@parcel/watcher-win32-arm64': 2.5.0
  1141. '@parcel/watcher-win32-ia32': 2.5.0
  1142. '@parcel/watcher-win32-x64': 2.5.0
  1143. optional: true
  1144. '@polka/url@1.0.0-next.28': {}
  1145. '@rollup/pluginutils@5.1.3(rollup@4.28.1)':
  1146. dependencies:
  1147. '@types/estree': 1.0.6
  1148. estree-walker: 2.0.2
  1149. picomatch: 4.0.2
  1150. optionalDependencies:
  1151. rollup: 4.28.1
  1152. '@rollup/rollup-android-arm-eabi@4.28.1':
  1153. optional: true
  1154. '@rollup/rollup-android-arm64@4.28.1':
  1155. optional: true
  1156. '@rollup/rollup-darwin-arm64@4.28.1':
  1157. optional: true
  1158. '@rollup/rollup-darwin-x64@4.28.1':
  1159. optional: true
  1160. '@rollup/rollup-freebsd-arm64@4.28.1':
  1161. optional: true
  1162. '@rollup/rollup-freebsd-x64@4.28.1':
  1163. optional: true
  1164. '@rollup/rollup-linux-arm-gnueabihf@4.28.1':
  1165. optional: true
  1166. '@rollup/rollup-linux-arm-musleabihf@4.28.1':
  1167. optional: true
  1168. '@rollup/rollup-linux-arm64-gnu@4.28.1':
  1169. optional: true
  1170. '@rollup/rollup-linux-arm64-musl@4.28.1':
  1171. optional: true
  1172. '@rollup/rollup-linux-loongarch64-gnu@4.28.1':
  1173. optional: true
  1174. '@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
  1175. optional: true
  1176. '@rollup/rollup-linux-riscv64-gnu@4.28.1':
  1177. optional: true
  1178. '@rollup/rollup-linux-s390x-gnu@4.28.1':
  1179. optional: true
  1180. '@rollup/rollup-linux-x64-gnu@4.28.1':
  1181. optional: true
  1182. '@rollup/rollup-linux-x64-musl@4.28.1':
  1183. optional: true
  1184. '@rollup/rollup-win32-arm64-msvc@4.28.1':
  1185. optional: true
  1186. '@rollup/rollup-win32-ia32-msvc@4.28.1':
  1187. optional: true
  1188. '@rollup/rollup-win32-x64-msvc@4.28.1':
  1189. optional: true
  1190. '@sec-ant/readable-stream@0.4.1': {}
  1191. '@sindresorhus/merge-streams@4.0.0': {}
  1192. '@types/estree@1.0.6': {}
  1193. '@vitejs/plugin-vue@5.2.1(vite@6.0.3(sass@1.82.0))(vue@3.5.13)':
  1194. dependencies:
  1195. vite: 6.0.3(sass@1.82.0)
  1196. vue: 3.5.13
  1197. '@vue/babel-helper-vue-transform-on@1.2.5': {}
  1198. '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.0)':
  1199. dependencies:
  1200. '@babel/helper-module-imports': 7.25.9
  1201. '@babel/helper-plugin-utils': 7.25.9
  1202. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
  1203. '@babel/template': 7.25.9
  1204. '@babel/traverse': 7.26.4
  1205. '@babel/types': 7.26.3
  1206. '@vue/babel-helper-vue-transform-on': 1.2.5
  1207. '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
  1208. html-tags: 3.3.1
  1209. svg-tags: 1.0.0
  1210. optionalDependencies:
  1211. '@babel/core': 7.26.0
  1212. transitivePeerDependencies:
  1213. - supports-color
  1214. '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
  1215. dependencies:
  1216. '@babel/code-frame': 7.26.2
  1217. '@babel/core': 7.26.0
  1218. '@babel/helper-module-imports': 7.25.9
  1219. '@babel/helper-plugin-utils': 7.25.9
  1220. '@babel/parser': 7.26.3
  1221. '@vue/compiler-sfc': 3.5.13
  1222. transitivePeerDependencies:
  1223. - supports-color
  1224. '@vue/compiler-core@3.5.13':
  1225. dependencies:
  1226. '@babel/parser': 7.26.3
  1227. '@vue/shared': 3.5.13
  1228. entities: 4.5.0
  1229. estree-walker: 2.0.2
  1230. source-map-js: 1.2.1
  1231. '@vue/compiler-dom@3.5.13':
  1232. dependencies:
  1233. '@vue/compiler-core': 3.5.13
  1234. '@vue/shared': 3.5.13
  1235. '@vue/compiler-sfc@3.5.13':
  1236. dependencies:
  1237. '@babel/parser': 7.26.3
  1238. '@vue/compiler-core': 3.5.13
  1239. '@vue/compiler-dom': 3.5.13
  1240. '@vue/compiler-ssr': 3.5.13
  1241. '@vue/shared': 3.5.13
  1242. estree-walker: 2.0.2
  1243. magic-string: 0.30.15
  1244. postcss: 8.4.49
  1245. source-map-js: 1.2.1
  1246. '@vue/compiler-ssr@3.5.13':
  1247. dependencies:
  1248. '@vue/compiler-dom': 3.5.13
  1249. '@vue/shared': 3.5.13
  1250. '@vue/devtools-api@6.6.4': {}
  1251. '@vue/devtools-core@7.6.7(vite@6.0.3(sass@1.82.0))(vue@3.5.13)':
  1252. dependencies:
  1253. '@vue/devtools-kit': 7.6.7
  1254. '@vue/devtools-shared': 7.6.7
  1255. mitt: 3.0.1
  1256. nanoid: 5.0.9
  1257. pathe: 1.1.2
  1258. vite-hot-client: 0.2.4(vite@6.0.3(sass@1.82.0))
  1259. vue: 3.5.13
  1260. transitivePeerDependencies:
  1261. - vite
  1262. '@vue/devtools-kit@7.6.7':
  1263. dependencies:
  1264. '@vue/devtools-shared': 7.6.7
  1265. birpc: 0.2.19
  1266. hookable: 5.5.3
  1267. mitt: 3.0.1
  1268. perfect-debounce: 1.0.0
  1269. speakingurl: 14.0.1
  1270. superjson: 2.2.2
  1271. '@vue/devtools-shared@7.6.7':
  1272. dependencies:
  1273. rfdc: 1.4.1
  1274. '@vue/reactivity@3.5.13':
  1275. dependencies:
  1276. '@vue/shared': 3.5.13
  1277. '@vue/runtime-core@3.5.13':
  1278. dependencies:
  1279. '@vue/reactivity': 3.5.13
  1280. '@vue/shared': 3.5.13
  1281. '@vue/runtime-dom@3.5.13':
  1282. dependencies:
  1283. '@vue/reactivity': 3.5.13
  1284. '@vue/runtime-core': 3.5.13
  1285. '@vue/shared': 3.5.13
  1286. csstype: 3.1.3
  1287. '@vue/server-renderer@3.5.13(vue@3.5.13)':
  1288. dependencies:
  1289. '@vue/compiler-ssr': 3.5.13
  1290. '@vue/shared': 3.5.13
  1291. vue: 3.5.13
  1292. '@vue/shared@3.5.13': {}
  1293. birpc@0.2.19: {}
  1294. braces@3.0.3:
  1295. dependencies:
  1296. fill-range: 7.1.1
  1297. optional: true
  1298. browserslist@4.24.2:
  1299. dependencies:
  1300. caniuse-lite: 1.0.30001687
  1301. electron-to-chromium: 1.5.72
  1302. node-releases: 2.0.19
  1303. update-browserslist-db: 1.1.1(browserslist@4.24.2)
  1304. bundle-name@4.1.0:
  1305. dependencies:
  1306. run-applescript: 7.0.0
  1307. caniuse-lite@1.0.30001687: {}
  1308. chokidar@4.0.1:
  1309. dependencies:
  1310. readdirp: 4.0.2
  1311. convert-source-map@2.0.0: {}
  1312. copy-anything@3.0.5:
  1313. dependencies:
  1314. is-what: 4.1.16
  1315. cross-spawn@7.0.6:
  1316. dependencies:
  1317. path-key: 3.1.1
  1318. shebang-command: 2.0.0
  1319. which: 2.0.2
  1320. csstype@3.1.3: {}
  1321. debug@4.4.0:
  1322. dependencies:
  1323. ms: 2.1.3
  1324. default-browser-id@5.0.0: {}
  1325. default-browser@5.2.1:
  1326. dependencies:
  1327. bundle-name: 4.1.0
  1328. default-browser-id: 5.0.0
  1329. define-lazy-prop@3.0.0: {}
  1330. detect-libc@1.0.3:
  1331. optional: true
  1332. electron-to-chromium@1.5.72: {}
  1333. entities@4.5.0: {}
  1334. error-stack-parser-es@0.1.5: {}
  1335. esbuild@0.24.0:
  1336. optionalDependencies:
  1337. '@esbuild/aix-ppc64': 0.24.0
  1338. '@esbuild/android-arm': 0.24.0
  1339. '@esbuild/android-arm64': 0.24.0
  1340. '@esbuild/android-x64': 0.24.0
  1341. '@esbuild/darwin-arm64': 0.24.0
  1342. '@esbuild/darwin-x64': 0.24.0
  1343. '@esbuild/freebsd-arm64': 0.24.0
  1344. '@esbuild/freebsd-x64': 0.24.0
  1345. '@esbuild/linux-arm': 0.24.0
  1346. '@esbuild/linux-arm64': 0.24.0
  1347. '@esbuild/linux-ia32': 0.24.0
  1348. '@esbuild/linux-loong64': 0.24.0
  1349. '@esbuild/linux-mips64el': 0.24.0
  1350. '@esbuild/linux-ppc64': 0.24.0
  1351. '@esbuild/linux-riscv64': 0.24.0
  1352. '@esbuild/linux-s390x': 0.24.0
  1353. '@esbuild/linux-x64': 0.24.0
  1354. '@esbuild/netbsd-x64': 0.24.0
  1355. '@esbuild/openbsd-arm64': 0.24.0
  1356. '@esbuild/openbsd-x64': 0.24.0
  1357. '@esbuild/sunos-x64': 0.24.0
  1358. '@esbuild/win32-arm64': 0.24.0
  1359. '@esbuild/win32-ia32': 0.24.0
  1360. '@esbuild/win32-x64': 0.24.0
  1361. escalade@3.2.0: {}
  1362. estree-walker@2.0.2: {}
  1363. execa@9.5.2:
  1364. dependencies:
  1365. '@sindresorhus/merge-streams': 4.0.0
  1366. cross-spawn: 7.0.6
  1367. figures: 6.1.0
  1368. get-stream: 9.0.1
  1369. human-signals: 8.0.0
  1370. is-plain-obj: 4.1.0
  1371. is-stream: 4.0.1
  1372. npm-run-path: 6.0.0
  1373. pretty-ms: 9.2.0
  1374. signal-exit: 4.1.0
  1375. strip-final-newline: 4.0.0
  1376. yoctocolors: 2.1.1
  1377. figures@6.1.0:
  1378. dependencies:
  1379. is-unicode-supported: 2.1.0
  1380. fill-range@7.1.1:
  1381. dependencies:
  1382. to-regex-range: 5.0.1
  1383. optional: true
  1384. fs-extra@11.2.0:
  1385. dependencies:
  1386. graceful-fs: 4.2.11
  1387. jsonfile: 6.1.0
  1388. universalify: 2.0.1
  1389. fsevents@2.3.3:
  1390. optional: true
  1391. gensync@1.0.0-beta.2: {}
  1392. get-stream@9.0.1:
  1393. dependencies:
  1394. '@sec-ant/readable-stream': 0.4.1
  1395. is-stream: 4.0.1
  1396. globals@11.12.0: {}
  1397. graceful-fs@4.2.11: {}
  1398. hookable@5.5.3: {}
  1399. html-tags@3.3.1: {}
  1400. human-signals@8.0.0: {}
  1401. immutable@5.0.3: {}
  1402. is-docker@3.0.0: {}
  1403. is-extglob@2.1.1:
  1404. optional: true
  1405. is-glob@4.0.3:
  1406. dependencies:
  1407. is-extglob: 2.1.1
  1408. optional: true
  1409. is-inside-container@1.0.0:
  1410. dependencies:
  1411. is-docker: 3.0.0
  1412. is-number@7.0.0:
  1413. optional: true
  1414. is-plain-obj@4.1.0: {}
  1415. is-stream@4.0.1: {}
  1416. is-unicode-supported@2.1.0: {}
  1417. is-what@4.1.16: {}
  1418. is-wsl@3.1.0:
  1419. dependencies:
  1420. is-inside-container: 1.0.0
  1421. isexe@2.0.0: {}
  1422. js-tokens@4.0.0: {}
  1423. jsesc@3.0.2: {}
  1424. json5@2.2.3: {}
  1425. jsonfile@6.1.0:
  1426. dependencies:
  1427. universalify: 2.0.1
  1428. optionalDependencies:
  1429. graceful-fs: 4.2.11
  1430. kolorist@1.8.0: {}
  1431. lru-cache@5.1.1:
  1432. dependencies:
  1433. yallist: 3.1.1
  1434. magic-string@0.30.15:
  1435. dependencies:
  1436. '@jridgewell/sourcemap-codec': 1.5.0
  1437. micromatch@4.0.8:
  1438. dependencies:
  1439. braces: 3.0.3
  1440. picomatch: 2.3.1
  1441. optional: true
  1442. mitt@3.0.1: {}
  1443. mrmime@2.0.0: {}
  1444. ms@2.1.3: {}
  1445. nanoid@3.3.8: {}
  1446. nanoid@5.0.9: {}
  1447. node-addon-api@7.1.1:
  1448. optional: true
  1449. node-releases@2.0.19: {}
  1450. npm-run-path@6.0.0:
  1451. dependencies:
  1452. path-key: 4.0.0
  1453. unicorn-magic: 0.3.0
  1454. open@10.1.0:
  1455. dependencies:
  1456. default-browser: 5.2.1
  1457. define-lazy-prop: 3.0.0
  1458. is-inside-container: 1.0.0
  1459. is-wsl: 3.1.0
  1460. parse-ms@4.0.0: {}
  1461. path-key@3.1.1: {}
  1462. path-key@4.0.0: {}
  1463. pathe@1.1.2: {}
  1464. perfect-debounce@1.0.0: {}
  1465. picocolors@1.1.1: {}
  1466. picomatch@2.3.1:
  1467. optional: true
  1468. picomatch@4.0.2: {}
  1469. pinia@2.3.0(vue@3.5.13):
  1470. dependencies:
  1471. '@vue/devtools-api': 6.6.4
  1472. vue: 3.5.13
  1473. vue-demi: 0.14.10(vue@3.5.13)
  1474. transitivePeerDependencies:
  1475. - '@vue/composition-api'
  1476. postcss@8.4.49:
  1477. dependencies:
  1478. nanoid: 3.3.8
  1479. picocolors: 1.1.1
  1480. source-map-js: 1.2.1
  1481. pretty-ms@9.2.0:
  1482. dependencies:
  1483. parse-ms: 4.0.0
  1484. readdirp@4.0.2: {}
  1485. rfdc@1.4.1: {}
  1486. rollup@4.28.1:
  1487. dependencies:
  1488. '@types/estree': 1.0.6
  1489. optionalDependencies:
  1490. '@rollup/rollup-android-arm-eabi': 4.28.1
  1491. '@rollup/rollup-android-arm64': 4.28.1
  1492. '@rollup/rollup-darwin-arm64': 4.28.1
  1493. '@rollup/rollup-darwin-x64': 4.28.1
  1494. '@rollup/rollup-freebsd-arm64': 4.28.1
  1495. '@rollup/rollup-freebsd-x64': 4.28.1
  1496. '@rollup/rollup-linux-arm-gnueabihf': 4.28.1
  1497. '@rollup/rollup-linux-arm-musleabihf': 4.28.1
  1498. '@rollup/rollup-linux-arm64-gnu': 4.28.1
  1499. '@rollup/rollup-linux-arm64-musl': 4.28.1
  1500. '@rollup/rollup-linux-loongarch64-gnu': 4.28.1
  1501. '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1
  1502. '@rollup/rollup-linux-riscv64-gnu': 4.28.1
  1503. '@rollup/rollup-linux-s390x-gnu': 4.28.1
  1504. '@rollup/rollup-linux-x64-gnu': 4.28.1
  1505. '@rollup/rollup-linux-x64-musl': 4.28.1
  1506. '@rollup/rollup-win32-arm64-msvc': 4.28.1
  1507. '@rollup/rollup-win32-ia32-msvc': 4.28.1
  1508. '@rollup/rollup-win32-x64-msvc': 4.28.1
  1509. fsevents: 2.3.3
  1510. run-applescript@7.0.0: {}
  1511. sass@1.82.0:
  1512. dependencies:
  1513. chokidar: 4.0.1
  1514. immutable: 5.0.3
  1515. source-map-js: 1.2.1
  1516. optionalDependencies:
  1517. '@parcel/watcher': 2.5.0
  1518. semver@6.3.1: {}
  1519. shebang-command@2.0.0:
  1520. dependencies:
  1521. shebang-regex: 3.0.0
  1522. shebang-regex@3.0.0: {}
  1523. signal-exit@4.1.0: {}
  1524. sirv@3.0.0:
  1525. dependencies:
  1526. '@polka/url': 1.0.0-next.28
  1527. mrmime: 2.0.0
  1528. totalist: 3.0.1
  1529. source-map-js@1.2.1: {}
  1530. speakingurl@14.0.1: {}
  1531. strip-final-newline@4.0.0: {}
  1532. superjson@2.2.2:
  1533. dependencies:
  1534. copy-anything: 3.0.5
  1535. svg-tags@1.0.0: {}
  1536. to-regex-range@5.0.1:
  1537. dependencies:
  1538. is-number: 7.0.0
  1539. optional: true
  1540. totalist@3.0.1: {}
  1541. unicorn-magic@0.3.0: {}
  1542. universalify@2.0.1: {}
  1543. update-browserslist-db@1.1.1(browserslist@4.24.2):
  1544. dependencies:
  1545. browserslist: 4.24.2
  1546. escalade: 3.2.0
  1547. picocolors: 1.1.1
  1548. vite-hot-client@0.2.4(vite@6.0.3(sass@1.82.0)):
  1549. dependencies:
  1550. vite: 6.0.3(sass@1.82.0)
  1551. vite-plugin-inspect@0.8.8(rollup@4.28.1)(vite@6.0.3(sass@1.82.0)):
  1552. dependencies:
  1553. '@antfu/utils': 0.7.10
  1554. '@rollup/pluginutils': 5.1.3(rollup@4.28.1)
  1555. debug: 4.4.0
  1556. error-stack-parser-es: 0.1.5
  1557. fs-extra: 11.2.0
  1558. open: 10.1.0
  1559. perfect-debounce: 1.0.0
  1560. picocolors: 1.1.1
  1561. sirv: 3.0.0
  1562. vite: 6.0.3(sass@1.82.0)
  1563. transitivePeerDependencies:
  1564. - rollup
  1565. - supports-color
  1566. vite-plugin-vue-devtools@7.6.7(rollup@4.28.1)(vite@6.0.3(sass@1.82.0))(vue@3.5.13):
  1567. dependencies:
  1568. '@vue/devtools-core': 7.6.7(vite@6.0.3(sass@1.82.0))(vue@3.5.13)
  1569. '@vue/devtools-kit': 7.6.7
  1570. '@vue/devtools-shared': 7.6.7
  1571. execa: 9.5.2
  1572. sirv: 3.0.0
  1573. vite: 6.0.3(sass@1.82.0)
  1574. vite-plugin-inspect: 0.8.8(rollup@4.28.1)(vite@6.0.3(sass@1.82.0))
  1575. vite-plugin-vue-inspector: 5.3.1(vite@6.0.3(sass@1.82.0))
  1576. transitivePeerDependencies:
  1577. - '@nuxt/kit'
  1578. - rollup
  1579. - supports-color
  1580. - vue
  1581. vite-plugin-vue-inspector@5.3.1(vite@6.0.3(sass@1.82.0)):
  1582. dependencies:
  1583. '@babel/core': 7.26.0
  1584. '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
  1585. '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
  1586. '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
  1587. '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
  1588. '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
  1589. '@vue/compiler-dom': 3.5.13
  1590. kolorist: 1.8.0
  1591. magic-string: 0.30.15
  1592. vite: 6.0.3(sass@1.82.0)
  1593. transitivePeerDependencies:
  1594. - supports-color
  1595. vite@6.0.3(sass@1.82.0):
  1596. dependencies:
  1597. esbuild: 0.24.0
  1598. postcss: 8.4.49
  1599. rollup: 4.28.1
  1600. optionalDependencies:
  1601. fsevents: 2.3.3
  1602. sass: 1.82.0
  1603. vue-demi@0.14.10(vue@3.5.13):
  1604. dependencies:
  1605. vue: 3.5.13
  1606. vue-router@4.5.0(vue@3.5.13):
  1607. dependencies:
  1608. '@vue/devtools-api': 6.6.4
  1609. vue: 3.5.13
  1610. vue@3.5.13:
  1611. dependencies:
  1612. '@vue/compiler-dom': 3.5.13
  1613. '@vue/compiler-sfc': 3.5.13
  1614. '@vue/runtime-dom': 3.5.13
  1615. '@vue/server-renderer': 3.5.13(vue@3.5.13)
  1616. '@vue/shared': 3.5.13
  1617. which@2.0.2:
  1618. dependencies:
  1619. isexe: 2.0.0
  1620. yallist@3.1.1: {}
  1621. yoctocolors@2.1.1: {}