pnpm-lock.yaml 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@element-plus/icons-vue':
  9. specifier: ^2.3.1
  10. version: 2.3.1(vue@3.5.13(typescript@5.7.3))
  11. '@tailwindcss/vite':
  12. specifier: ^4.0.8
  13. version: 4.0.8(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0))
  14. '@tauri-apps/api':
  15. specifier: ^2
  16. version: 2.2.0
  17. '@tauri-apps/plugin-http':
  18. specifier: ~2
  19. version: 2.3.0
  20. '@tauri-apps/plugin-opener':
  21. specifier: ^2
  22. version: 2.2.5
  23. '@tauri-apps/plugin-os':
  24. specifier: ~2
  25. version: 2.2.0
  26. '@tauri-apps/plugin-store':
  27. specifier: ~2
  28. version: 2.2.0
  29. '@tauri-apps/plugin-upload':
  30. specifier: ~2
  31. version: 2.2.1
  32. element-plus:
  33. specifier: ^2.9.5
  34. version: 2.9.5(vue@3.5.13(typescript@5.7.3))
  35. pinia:
  36. specifier: ^3.0.1
  37. version: 3.0.1(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))
  38. tailwindcss:
  39. specifier: ^4.0.8
  40. version: 4.0.8
  41. vue:
  42. specifier: ^3.5.13
  43. version: 3.5.13(typescript@5.7.3)
  44. vue-i18n:
  45. specifier: '9'
  46. version: 9.14.2(vue@3.5.13(typescript@5.7.3))
  47. vue-router:
  48. specifier: '4'
  49. version: 4.5.0(vue@3.5.13(typescript@5.7.3))
  50. devDependencies:
  51. '@tauri-apps/cli':
  52. specifier: ^2
  53. version: 2.2.7
  54. '@vitejs/plugin-vue':
  55. specifier: ^5.2.1
  56. version: 5.2.1(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0))(vue@3.5.13(typescript@5.7.3))
  57. sass-embedded:
  58. specifier: ^1.85.0
  59. version: 1.85.0
  60. typescript:
  61. specifier: ^5.7.3
  62. version: 5.7.3
  63. unplugin-element-plus:
  64. specifier: ^0.9.1
  65. version: 0.9.1
  66. vite:
  67. specifier: ^6.0.3
  68. version: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0)
  69. packages:
  70. '@babel/helper-string-parser@7.25.9':
  71. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  72. engines: {node: '>=6.9.0'}
  73. '@babel/helper-validator-identifier@7.25.9':
  74. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  75. engines: {node: '>=6.9.0'}
  76. '@babel/parser@7.26.9':
  77. resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
  78. engines: {node: '>=6.0.0'}
  79. hasBin: true
  80. '@babel/types@7.26.9':
  81. resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
  82. engines: {node: '>=6.9.0'}
  83. '@bufbuild/protobuf@2.2.3':
  84. resolution: {integrity: sha512-tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg==}
  85. '@ctrl/tinycolor@3.6.1':
  86. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  87. engines: {node: '>=10'}
  88. '@element-plus/icons-vue@2.3.1':
  89. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  90. peerDependencies:
  91. vue: ^3.2.0
  92. '@esbuild/aix-ppc64@0.24.2':
  93. resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
  94. engines: {node: '>=18'}
  95. cpu: [ppc64]
  96. os: [aix]
  97. '@esbuild/android-arm64@0.24.2':
  98. resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
  99. engines: {node: '>=18'}
  100. cpu: [arm64]
  101. os: [android]
  102. '@esbuild/android-arm@0.24.2':
  103. resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
  104. engines: {node: '>=18'}
  105. cpu: [arm]
  106. os: [android]
  107. '@esbuild/android-x64@0.24.2':
  108. resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
  109. engines: {node: '>=18'}
  110. cpu: [x64]
  111. os: [android]
  112. '@esbuild/darwin-arm64@0.24.2':
  113. resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
  114. engines: {node: '>=18'}
  115. cpu: [arm64]
  116. os: [darwin]
  117. '@esbuild/darwin-x64@0.24.2':
  118. resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
  119. engines: {node: '>=18'}
  120. cpu: [x64]
  121. os: [darwin]
  122. '@esbuild/freebsd-arm64@0.24.2':
  123. resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
  124. engines: {node: '>=18'}
  125. cpu: [arm64]
  126. os: [freebsd]
  127. '@esbuild/freebsd-x64@0.24.2':
  128. resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
  129. engines: {node: '>=18'}
  130. cpu: [x64]
  131. os: [freebsd]
  132. '@esbuild/linux-arm64@0.24.2':
  133. resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
  134. engines: {node: '>=18'}
  135. cpu: [arm64]
  136. os: [linux]
  137. '@esbuild/linux-arm@0.24.2':
  138. resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
  139. engines: {node: '>=18'}
  140. cpu: [arm]
  141. os: [linux]
  142. '@esbuild/linux-ia32@0.24.2':
  143. resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
  144. engines: {node: '>=18'}
  145. cpu: [ia32]
  146. os: [linux]
  147. '@esbuild/linux-loong64@0.24.2':
  148. resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
  149. engines: {node: '>=18'}
  150. cpu: [loong64]
  151. os: [linux]
  152. '@esbuild/linux-mips64el@0.24.2':
  153. resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
  154. engines: {node: '>=18'}
  155. cpu: [mips64el]
  156. os: [linux]
  157. '@esbuild/linux-ppc64@0.24.2':
  158. resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
  159. engines: {node: '>=18'}
  160. cpu: [ppc64]
  161. os: [linux]
  162. '@esbuild/linux-riscv64@0.24.2':
  163. resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
  164. engines: {node: '>=18'}
  165. cpu: [riscv64]
  166. os: [linux]
  167. '@esbuild/linux-s390x@0.24.2':
  168. resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
  169. engines: {node: '>=18'}
  170. cpu: [s390x]
  171. os: [linux]
  172. '@esbuild/linux-x64@0.24.2':
  173. resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
  174. engines: {node: '>=18'}
  175. cpu: [x64]
  176. os: [linux]
  177. '@esbuild/netbsd-arm64@0.24.2':
  178. resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
  179. engines: {node: '>=18'}
  180. cpu: [arm64]
  181. os: [netbsd]
  182. '@esbuild/netbsd-x64@0.24.2':
  183. resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
  184. engines: {node: '>=18'}
  185. cpu: [x64]
  186. os: [netbsd]
  187. '@esbuild/openbsd-arm64@0.24.2':
  188. resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
  189. engines: {node: '>=18'}
  190. cpu: [arm64]
  191. os: [openbsd]
  192. '@esbuild/openbsd-x64@0.24.2':
  193. resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
  194. engines: {node: '>=18'}
  195. cpu: [x64]
  196. os: [openbsd]
  197. '@esbuild/sunos-x64@0.24.2':
  198. resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
  199. engines: {node: '>=18'}
  200. cpu: [x64]
  201. os: [sunos]
  202. '@esbuild/win32-arm64@0.24.2':
  203. resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
  204. engines: {node: '>=18'}
  205. cpu: [arm64]
  206. os: [win32]
  207. '@esbuild/win32-ia32@0.24.2':
  208. resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
  209. engines: {node: '>=18'}
  210. cpu: [ia32]
  211. os: [win32]
  212. '@esbuild/win32-x64@0.24.2':
  213. resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
  214. engines: {node: '>=18'}
  215. cpu: [x64]
  216. os: [win32]
  217. '@floating-ui/core@1.6.9':
  218. resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
  219. '@floating-ui/dom@1.6.13':
  220. resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
  221. '@floating-ui/utils@0.2.9':
  222. resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
  223. '@intlify/core-base@9.14.2':
  224. resolution: {integrity: sha512-DZyQ4Hk22sC81MP4qiCDuU+LdaYW91A6lCjq8AWPvY3+mGMzhGDfOCzvyR6YBQxtlPjFqMoFk9ylnNYRAQwXtQ==}
  225. engines: {node: '>= 16'}
  226. '@intlify/message-compiler@9.14.2':
  227. resolution: {integrity: sha512-YsKKuV4Qv4wrLNsvgWbTf0E40uRv+Qiw1BeLQ0LAxifQuhiMe+hfTIzOMdWj/ZpnTDj4RSZtkXjJM7JDiiB5LQ==}
  228. engines: {node: '>= 16'}
  229. '@intlify/shared@9.14.2':
  230. resolution: {integrity: sha512-uRAHAxYPeF+G5DBIboKpPgC/Waecd4Jz8ihtkpJQD5ycb5PwXp0k/+hBGl5dAjwF7w+l74kz/PKA8r8OK//RUw==}
  231. engines: {node: '>= 16'}
  232. '@jridgewell/sourcemap-codec@1.5.0':
  233. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  234. '@rollup/rollup-android-arm-eabi@4.34.8':
  235. resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
  236. cpu: [arm]
  237. os: [android]
  238. '@rollup/rollup-android-arm64@4.34.8':
  239. resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
  240. cpu: [arm64]
  241. os: [android]
  242. '@rollup/rollup-darwin-arm64@4.34.8':
  243. resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
  244. cpu: [arm64]
  245. os: [darwin]
  246. '@rollup/rollup-darwin-x64@4.34.8':
  247. resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
  248. cpu: [x64]
  249. os: [darwin]
  250. '@rollup/rollup-freebsd-arm64@4.34.8':
  251. resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
  252. cpu: [arm64]
  253. os: [freebsd]
  254. '@rollup/rollup-freebsd-x64@4.34.8':
  255. resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
  256. cpu: [x64]
  257. os: [freebsd]
  258. '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
  259. resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
  260. cpu: [arm]
  261. os: [linux]
  262. libc: [glibc]
  263. '@rollup/rollup-linux-arm-musleabihf@4.34.8':
  264. resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
  265. cpu: [arm]
  266. os: [linux]
  267. libc: [musl]
  268. '@rollup/rollup-linux-arm64-gnu@4.34.8':
  269. resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
  270. cpu: [arm64]
  271. os: [linux]
  272. libc: [glibc]
  273. '@rollup/rollup-linux-arm64-musl@4.34.8':
  274. resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
  275. cpu: [arm64]
  276. os: [linux]
  277. libc: [musl]
  278. '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
  279. resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
  280. cpu: [loong64]
  281. os: [linux]
  282. libc: [glibc]
  283. '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
  284. resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
  285. cpu: [ppc64]
  286. os: [linux]
  287. libc: [glibc]
  288. '@rollup/rollup-linux-riscv64-gnu@4.34.8':
  289. resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
  290. cpu: [riscv64]
  291. os: [linux]
  292. libc: [glibc]
  293. '@rollup/rollup-linux-s390x-gnu@4.34.8':
  294. resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
  295. cpu: [s390x]
  296. os: [linux]
  297. libc: [glibc]
  298. '@rollup/rollup-linux-x64-gnu@4.34.8':
  299. resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
  300. cpu: [x64]
  301. os: [linux]
  302. libc: [glibc]
  303. '@rollup/rollup-linux-x64-musl@4.34.8':
  304. resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
  305. cpu: [x64]
  306. os: [linux]
  307. libc: [musl]
  308. '@rollup/rollup-win32-arm64-msvc@4.34.8':
  309. resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
  310. cpu: [arm64]
  311. os: [win32]
  312. '@rollup/rollup-win32-ia32-msvc@4.34.8':
  313. resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
  314. cpu: [ia32]
  315. os: [win32]
  316. '@rollup/rollup-win32-x64-msvc@4.34.8':
  317. resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
  318. cpu: [x64]
  319. os: [win32]
  320. '@sxzz/popperjs-es@2.11.7':
  321. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  322. '@tailwindcss/node@4.0.8':
  323. resolution: {integrity: sha512-FKArQpbrbwv08TNT0k7ejYXpF+R8knZFAatNc0acOxbgeqLzwb86r+P3LGOjIeI3Idqe9CVkZrh4GlsJLJKkkw==}
  324. '@tailwindcss/oxide-android-arm64@4.0.8':
  325. resolution: {integrity: sha512-We7K79+Sm4mwJHk26Yzu/GAj7C7myemm7PeXvpgMxyxO70SSFSL3uCcqFbz9JA5M5UPkrl7N9fkBe/Y0iazqpA==}
  326. engines: {node: '>= 10'}
  327. cpu: [arm64]
  328. os: [android]
  329. '@tailwindcss/oxide-darwin-arm64@4.0.8':
  330. resolution: {integrity: sha512-Lv9Isi2EwkCTG1sRHNDi0uRNN1UGFdEThUAGFrydRmQZnraGLMjN8gahzg2FFnOizDl7LB2TykLUuiw833DSNg==}
  331. engines: {node: '>= 10'}
  332. cpu: [arm64]
  333. os: [darwin]
  334. '@tailwindcss/oxide-darwin-x64@4.0.8':
  335. resolution: {integrity: sha512-fWfywfYIlSWtKoqWTjukTHLWV3ARaBRjXCC2Eo0l6KVpaqGY4c2y8snUjp1xpxUtpqwMvCvFWFaleMoz1Vhzlw==}
  336. engines: {node: '>= 10'}
  337. cpu: [x64]
  338. os: [darwin]
  339. '@tailwindcss/oxide-freebsd-x64@4.0.8':
  340. resolution: {integrity: sha512-SO+dyvjJV9G94bnmq2288Ke0BIdvrbSbvtPLaQdqjqHR83v5L2fWADyFO+1oecHo9Owsk8MxcXh1agGVPIKIqw==}
  341. engines: {node: '>= 10'}
  342. cpu: [x64]
  343. os: [freebsd]
  344. '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.8':
  345. resolution: {integrity: sha512-ZSHggWiEblQNV69V0qUK5vuAtHP+I+S2eGrKGJ5lPgwgJeAd6GjLsVBN+Mqn2SPVfYM3BOpS9jX/zVg9RWQVDQ==}
  346. engines: {node: '>= 10'}
  347. cpu: [arm]
  348. os: [linux]
  349. '@tailwindcss/oxide-linux-arm64-gnu@4.0.8':
  350. resolution: {integrity: sha512-xWpr6M0OZLDNsr7+bQz+3X7zcnDJZJ1N9gtBWCtfhkEtDjjxYEp+Lr5L5nc/yXlL4MyCHnn0uonGVXy3fhxaVA==}
  351. engines: {node: '>= 10'}
  352. cpu: [arm64]
  353. os: [linux]
  354. libc: [glibc]
  355. '@tailwindcss/oxide-linux-arm64-musl@4.0.8':
  356. resolution: {integrity: sha512-5tz2IL7LN58ssGEq7h/staD7pu/izF/KeMWdlJ86WDe2Ah46LF3ET6ZGKTr5eZMrnEA0M9cVFuSPprKRHNgjeg==}
  357. engines: {node: '>= 10'}
  358. cpu: [arm64]
  359. os: [linux]
  360. libc: [musl]
  361. '@tailwindcss/oxide-linux-x64-gnu@4.0.8':
  362. resolution: {integrity: sha512-KSzMkhyrxAQyY2o194NKVKU9j/c+NFSoMvnHWFaNHKi3P1lb+Vq1UC19tLHrmxSkKapcMMu69D7+G1+FVGNDXQ==}
  363. engines: {node: '>= 10'}
  364. cpu: [x64]
  365. os: [linux]
  366. libc: [glibc]
  367. '@tailwindcss/oxide-linux-x64-musl@4.0.8':
  368. resolution: {integrity: sha512-yFYKG5UtHTRimjtqxUWXBgI4Tc6NJe3USjRIVdlTczpLRxq/SFwgzGl5JbatCxgSRDPBFwRrNPxq+ukfQFGdrw==}
  369. engines: {node: '>= 10'}
  370. cpu: [x64]
  371. os: [linux]
  372. libc: [musl]
  373. '@tailwindcss/oxide-win32-arm64-msvc@4.0.8':
  374. resolution: {integrity: sha512-tndGujmCSba85cRCnQzXgpA2jx5gXimyspsUYae5jlPyLRG0RjXbDshFKOheVXU4TLflo7FSG8EHCBJ0EHTKdQ==}
  375. engines: {node: '>= 10'}
  376. cpu: [arm64]
  377. os: [win32]
  378. '@tailwindcss/oxide-win32-x64-msvc@4.0.8':
  379. resolution: {integrity: sha512-T77jroAc0p4EHVVgTUiNeFn6Nj3jtD3IeNId2X+0k+N1XxfNipy81BEkYErpKLiOkNhpNFjPee8/ZVas29b2OQ==}
  380. engines: {node: '>= 10'}
  381. cpu: [x64]
  382. os: [win32]
  383. '@tailwindcss/oxide@4.0.8':
  384. resolution: {integrity: sha512-KfMcuAu/Iw+DcV1e8twrFyr2yN8/ZDC/odIGta4wuuJOGkrkHZbvJvRNIbQNhGh7erZTYV6Ie0IeD6WC9Y8Hcw==}
  385. engines: {node: '>= 10'}
  386. '@tailwindcss/vite@4.0.8':
  387. resolution: {integrity: sha512-+SAq44yLzYlzyrb7QTcFCdU8Xa7FOA0jp+Xby7fPMUie+MY9HhJysM7Vp+vL8qIp8ceQJfLD+FjgJuJ4lL6nyg==}
  388. peerDependencies:
  389. vite: ^5.2.0 || ^6
  390. '@tauri-apps/api@2.2.0':
  391. resolution: {integrity: sha512-R8epOeZl1eJEl603aUMIGb4RXlhPjpgxbGVEaqY+0G5JG9vzV/clNlzTeqc+NLYXVqXcn8mb4c5b9pJIUDEyAg==}
  392. '@tauri-apps/cli-darwin-arm64@2.2.7':
  393. resolution: {integrity: sha512-54kcpxZ3X1Rq+pPTzk3iIcjEVY4yv493uRx/80rLoAA95vAC0c//31Whz75UVddDjJfZvXlXZ3uSZ+bnCOnt0A==}
  394. engines: {node: '>= 10'}
  395. cpu: [arm64]
  396. os: [darwin]
  397. '@tauri-apps/cli-darwin-x64@2.2.7':
  398. resolution: {integrity: sha512-Vgu2XtBWemLnarB+6LqQeLanDlRj7CeFN//H8bVVdjbNzxcSxsvbLYMBP8+3boa7eBnjDrqMImRySSgL6IrwTw==}
  399. engines: {node: '>= 10'}
  400. cpu: [x64]
  401. os: [darwin]
  402. '@tauri-apps/cli-linux-arm-gnueabihf@2.2.7':
  403. resolution: {integrity: sha512-+Clha2iQAiK9zoY/KKW0KLHkR0k36O78YLx5Sl98tWkwI3OBZFg5H5WT1plH/4sbZIS2aLFN6dw58/JlY9Bu/g==}
  404. engines: {node: '>= 10'}
  405. cpu: [arm]
  406. os: [linux]
  407. '@tauri-apps/cli-linux-arm64-gnu@2.2.7':
  408. resolution: {integrity: sha512-Z/Lp4SQe6BUEOays9BQAEum2pvZF4w9igyXijP+WbkOejZx4cDvarFJ5qXrqSLmBh7vxrdZcLwoLk9U//+yQrg==}
  409. engines: {node: '>= 10'}
  410. cpu: [arm64]
  411. os: [linux]
  412. libc: [glibc]
  413. '@tauri-apps/cli-linux-arm64-musl@2.2.7':
  414. resolution: {integrity: sha512-+8HZ+txff/Y3YjAh80XcLXcX8kpGXVdr1P8AfjLHxHdS6QD4Md+acSxGTTNbplmHuBaSHJvuTvZf9tU1eDCTDg==}
  415. engines: {node: '>= 10'}
  416. cpu: [arm64]
  417. os: [linux]
  418. libc: [musl]
  419. '@tauri-apps/cli-linux-x64-gnu@2.2.7':
  420. resolution: {integrity: sha512-ahlSnuCnUntblp9dG7/w5ZWZOdzRFi3zl0oScgt7GF4KNAOEa7duADsxPA4/FT2hLRa0SvpqtD4IYFvCxoVv3Q==}
  421. engines: {node: '>= 10'}
  422. cpu: [x64]
  423. os: [linux]
  424. libc: [glibc]
  425. '@tauri-apps/cli-linux-x64-musl@2.2.7':
  426. resolution: {integrity: sha512-+qKAWnJRSX+pjjRbKAQgTdFY8ecdcu8UdJ69i7wn3ZcRn2nMMzOO2LOMOTQV42B7/Q64D1pIpmZj9yblTMvadA==}
  427. engines: {node: '>= 10'}
  428. cpu: [x64]
  429. os: [linux]
  430. libc: [musl]
  431. '@tauri-apps/cli-win32-arm64-msvc@2.2.7':
  432. resolution: {integrity: sha512-aa86nRnrwT04u9D9fhf5JVssuAZlUCCc8AjqQjqODQjMd4BMA2+d4K9qBMpEG/1kVh95vZaNsLogjEaqSTTw4A==}
  433. engines: {node: '>= 10'}
  434. cpu: [arm64]
  435. os: [win32]
  436. '@tauri-apps/cli-win32-ia32-msvc@2.2.7':
  437. resolution: {integrity: sha512-EiJ5/25tLSQOSGvv+t6o3ZBfOTKB5S3vb+hHQuKbfmKdRF0XQu2YPdIi1CQw1DU97ZAE0Dq4frvnyYEKWgMzVQ==}
  438. engines: {node: '>= 10'}
  439. cpu: [ia32]
  440. os: [win32]
  441. '@tauri-apps/cli-win32-x64-msvc@2.2.7':
  442. resolution: {integrity: sha512-ZB8Kw90j8Ld+9tCWyD2fWCYfIrzbQohJ4DJSidNwbnehlZzP7wAz6Z3xjsvUdKtQ3ibtfoeTqVInzCCEpI+pWg==}
  443. engines: {node: '>= 10'}
  444. cpu: [x64]
  445. os: [win32]
  446. '@tauri-apps/cli@2.2.7':
  447. resolution: {integrity: sha512-ZnsS2B4BplwXP37celanNANiIy8TCYhvg5RT09n72uR/o+navFZtGpFSqljV8fy1Y4ixIPds8FrGSXJCN2BerA==}
  448. engines: {node: '>= 10'}
  449. hasBin: true
  450. '@tauri-apps/plugin-http@2.3.0':
  451. resolution: {integrity: sha512-pigTvz+zzAqbIhCzRiR1GE98Jw7A03j2V+Eiexr9thBI8VfMiwFQMcbgON51xlwnVaI72LdbYKNajU84im8tlg==}
  452. '@tauri-apps/plugin-opener@2.2.5':
  453. resolution: {integrity: sha512-hHsJ9RPWpZvZEPVFaL+d25gABMUMOf/A6ESXnvf/ii9guTukj58WXsAE/SOysXRIhej7kseRCxnOnIMpSCdUsQ==}
  454. '@tauri-apps/plugin-os@2.2.0':
  455. resolution: {integrity: sha512-HszbCdbisMlu5QhCNAN8YIWyz2v33abAWha6+uvV2CKX8P5VSct/y+kEe22JeyqrxCnWlQ3DRx7s49Byg7/0EA==}
  456. '@tauri-apps/plugin-store@2.2.0':
  457. resolution: {integrity: sha512-hJTRtuJis4w5fW1dkcgftsYxKXK0+DbAqurZ3CURHG5WkAyyZgbxpeYctw12bbzF9ZbZREXZklPq8mocCC3Sgg==}
  458. '@tauri-apps/plugin-upload@2.2.1':
  459. resolution: {integrity: sha512-2EyVhJYLAp2mJH0UzO3QGU0vPk/YWvAfdI2wXbczyzEZY/AZVa9wConyB1TV/NGhyJRim4LwWgkmnEvcKLkECw==}
  460. '@types/estree@1.0.6':
  461. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  462. '@types/lodash-es@4.17.12':
  463. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  464. '@types/lodash@4.17.15':
  465. resolution: {integrity: sha512-w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw==}
  466. '@types/web-bluetooth@0.0.16':
  467. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  468. '@vitejs/plugin-vue@5.2.1':
  469. resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
  470. engines: {node: ^18.0.0 || >=20.0.0}
  471. peerDependencies:
  472. vite: ^5.0.0 || ^6.0.0
  473. vue: ^3.2.25
  474. '@vue/compiler-core@3.5.13':
  475. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  476. '@vue/compiler-dom@3.5.13':
  477. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  478. '@vue/compiler-sfc@3.5.13':
  479. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  480. '@vue/compiler-ssr@3.5.13':
  481. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  482. '@vue/devtools-api@6.6.4':
  483. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  484. '@vue/devtools-api@7.7.2':
  485. resolution: {integrity: sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==}
  486. '@vue/devtools-kit@7.7.2':
  487. resolution: {integrity: sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==}
  488. '@vue/devtools-shared@7.7.2':
  489. resolution: {integrity: sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==}
  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. '@vueuse/core@9.13.0':
  503. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  504. '@vueuse/metadata@9.13.0':
  505. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  506. '@vueuse/shared@9.13.0':
  507. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  508. acorn@8.14.0:
  509. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  510. engines: {node: '>=0.4.0'}
  511. hasBin: true
  512. async-validator@4.2.5:
  513. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  514. birpc@0.2.19:
  515. resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
  516. buffer-builder@0.2.0:
  517. resolution: {integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==}
  518. colorjs.io@0.5.2:
  519. resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==}
  520. copy-anything@3.0.5:
  521. resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
  522. engines: {node: '>=12.13'}
  523. csstype@3.1.3:
  524. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  525. dayjs@1.11.13:
  526. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  527. detect-libc@1.0.3:
  528. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  529. engines: {node: '>=0.10'}
  530. hasBin: true
  531. element-plus@2.9.5:
  532. resolution: {integrity: sha512-r+X79oogLbYq8p9L5f9fHSHhUFNM0AL72aikqiZVxSc2/08mK6m/PotiB9e/D90QmWTIHIaFnFmW65AcXmneig==}
  533. peerDependencies:
  534. vue: ^3.2.0
  535. enhanced-resolve@5.18.1:
  536. resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
  537. engines: {node: '>=10.13.0'}
  538. entities@4.5.0:
  539. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  540. engines: {node: '>=0.12'}
  541. es-module-lexer@1.6.0:
  542. resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
  543. esbuild@0.24.2:
  544. resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
  545. engines: {node: '>=18'}
  546. hasBin: true
  547. escape-html@1.0.3:
  548. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  549. estree-walker@2.0.2:
  550. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  551. fsevents@2.3.3:
  552. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  553. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  554. os: [darwin]
  555. graceful-fs@4.2.11:
  556. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  557. has-flag@4.0.0:
  558. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  559. engines: {node: '>=8'}
  560. hookable@5.5.3:
  561. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  562. immutable@5.0.3:
  563. resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
  564. is-what@4.1.16:
  565. resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
  566. engines: {node: '>=12.13'}
  567. jiti@2.4.2:
  568. resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
  569. hasBin: true
  570. lightningcss-darwin-arm64@1.29.1:
  571. resolution: {integrity: sha512-HtR5XJ5A0lvCqYAoSv2QdZZyoHNttBpa5EP9aNuzBQeKGfbyH5+UipLWvVzpP4Uml5ej4BYs5I9Lco9u1fECqw==}
  572. engines: {node: '>= 12.0.0'}
  573. cpu: [arm64]
  574. os: [darwin]
  575. lightningcss-darwin-x64@1.29.1:
  576. resolution: {integrity: sha512-k33G9IzKUpHy/J/3+9MCO4e+PzaFblsgBjSGlpAaFikeBFm8B/CkO3cKU9oI4g+fjS2KlkLM/Bza9K/aw8wsNA==}
  577. engines: {node: '>= 12.0.0'}
  578. cpu: [x64]
  579. os: [darwin]
  580. lightningcss-freebsd-x64@1.29.1:
  581. resolution: {integrity: sha512-0SUW22fv/8kln2LnIdOCmSuXnxgxVC276W5KLTwoehiO0hxkacBxjHOL5EtHD8BAXg2BvuhsJPmVMasvby3LiQ==}
  582. engines: {node: '>= 12.0.0'}
  583. cpu: [x64]
  584. os: [freebsd]
  585. lightningcss-linux-arm-gnueabihf@1.29.1:
  586. resolution: {integrity: sha512-sD32pFvlR0kDlqsOZmYqH/68SqUMPNj+0pucGxToXZi4XZgZmqeX/NkxNKCPsswAXU3UeYgDSpGhu05eAufjDg==}
  587. engines: {node: '>= 12.0.0'}
  588. cpu: [arm]
  589. os: [linux]
  590. lightningcss-linux-arm64-gnu@1.29.1:
  591. resolution: {integrity: sha512-0+vClRIZ6mmJl/dxGuRsE197o1HDEeeRk6nzycSy2GofC2JsY4ifCRnvUWf/CUBQmlrvMzt6SMQNMSEu22csWQ==}
  592. engines: {node: '>= 12.0.0'}
  593. cpu: [arm64]
  594. os: [linux]
  595. libc: [glibc]
  596. lightningcss-linux-arm64-musl@1.29.1:
  597. resolution: {integrity: sha512-UKMFrG4rL/uHNgelBsDwJcBqVpzNJbzsKkbI3Ja5fg00sgQnHw/VrzUTEc4jhZ+AN2BvQYz/tkHu4vt1kLuJyw==}
  598. engines: {node: '>= 12.0.0'}
  599. cpu: [arm64]
  600. os: [linux]
  601. libc: [musl]
  602. lightningcss-linux-x64-gnu@1.29.1:
  603. resolution: {integrity: sha512-u1S+xdODy/eEtjADqirA774y3jLcm8RPtYztwReEXoZKdzgsHYPl0s5V52Tst+GKzqjebkULT86XMSxejzfISw==}
  604. engines: {node: '>= 12.0.0'}
  605. cpu: [x64]
  606. os: [linux]
  607. libc: [glibc]
  608. lightningcss-linux-x64-musl@1.29.1:
  609. resolution: {integrity: sha512-L0Tx0DtaNUTzXv0lbGCLB/c/qEADanHbu4QdcNOXLIe1i8i22rZRpbT3gpWYsCh9aSL9zFujY/WmEXIatWvXbw==}
  610. engines: {node: '>= 12.0.0'}
  611. cpu: [x64]
  612. os: [linux]
  613. libc: [musl]
  614. lightningcss-win32-arm64-msvc@1.29.1:
  615. resolution: {integrity: sha512-QoOVnkIEFfbW4xPi+dpdft/zAKmgLgsRHfJalEPYuJDOWf7cLQzYg0DEh8/sn737FaeMJxHZRc1oBreiwZCjog==}
  616. engines: {node: '>= 12.0.0'}
  617. cpu: [arm64]
  618. os: [win32]
  619. lightningcss-win32-x64-msvc@1.29.1:
  620. resolution: {integrity: sha512-NygcbThNBe4JElP+olyTI/doBNGJvLs3bFCRPdvuCcxZCcCZ71B858IHpdm7L1btZex0FvCmM17FK98Y9MRy1Q==}
  621. engines: {node: '>= 12.0.0'}
  622. cpu: [x64]
  623. os: [win32]
  624. lightningcss@1.29.1:
  625. resolution: {integrity: sha512-FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q==}
  626. engines: {node: '>= 12.0.0'}
  627. lodash-es@4.17.21:
  628. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  629. lodash-unified@1.0.3:
  630. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  631. peerDependencies:
  632. '@types/lodash-es': '*'
  633. lodash: '*'
  634. lodash-es: '*'
  635. lodash@4.17.21:
  636. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  637. magic-string@0.30.17:
  638. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  639. memoize-one@6.0.0:
  640. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  641. mitt@3.0.1:
  642. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  643. nanoid@3.3.8:
  644. resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
  645. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  646. hasBin: true
  647. normalize-wheel-es@1.2.0:
  648. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  649. pathe@2.0.3:
  650. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  651. perfect-debounce@1.0.0:
  652. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  653. picocolors@1.1.1:
  654. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  655. picomatch@4.0.2:
  656. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  657. engines: {node: '>=12'}
  658. pinia@3.0.1:
  659. resolution: {integrity: sha512-WXglsDzztOTH6IfcJ99ltYZin2mY8XZCXujkYWVIJlBjqsP6ST7zw+Aarh63E1cDVYeyUcPCxPHzJpEOmzB6Wg==}
  660. peerDependencies:
  661. typescript: '>=4.4.4'
  662. vue: ^2.7.0 || ^3.5.11
  663. peerDependenciesMeta:
  664. typescript:
  665. optional: true
  666. postcss@8.5.3:
  667. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  668. engines: {node: ^10 || ^12 || >=14}
  669. rfdc@1.4.1:
  670. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  671. rollup@4.34.8:
  672. resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
  673. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  674. hasBin: true
  675. rxjs@7.8.2:
  676. resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
  677. sass-embedded-android-arm64@1.85.0:
  678. resolution: {integrity: sha512-4itDzRwezwrW8+YzMLIwHtMeH+qrBNdBsRn9lTVI15K+cNLC8z5JWJi6UCZ8TNNZr9LDBfsh5jUdjSub0yF7jg==}
  679. engines: {node: '>=14.0.0'}
  680. cpu: [arm64]
  681. os: [android]
  682. sass-embedded-android-arm@1.85.0:
  683. resolution: {integrity: sha512-pPBT7Ad6G8Mlao8ypVNXW2ya7I/Bhcny+RYZ/EmrunEXfhzCNp4PWV2VAweitPO9RnPIJwvUTkLc8Fu6K3nVmw==}
  684. engines: {node: '>=14.0.0'}
  685. cpu: [arm]
  686. os: [android]
  687. sass-embedded-android-ia32@1.85.0:
  688. resolution: {integrity: sha512-bwqKq95hzbGbMTeXCMQhH7yEdc2xJVwIXj7rGdD3McvyFWbED6362XRFFPI5YyjfD2wRJd9yWLh/hn+6VyjcYA==}
  689. engines: {node: '>=14.0.0'}
  690. cpu: [ia32]
  691. os: [android]
  692. sass-embedded-android-riscv64@1.85.0:
  693. resolution: {integrity: sha512-Fgkgay+5EePJXZFHR5Vlkutnsmox2V6nX4U3mfGbSN1xjLRm8F5ST72V2s5Z0mnIFpGvEu/v7hfptgViqMvaxg==}
  694. engines: {node: '>=14.0.0'}
  695. cpu: [riscv64]
  696. os: [android]
  697. sass-embedded-android-x64@1.85.0:
  698. resolution: {integrity: sha512-/bG3JgTn3eoIDHCiJNVkLeJgUesat4ghxqYmKMZUJx++4e6iKCDj8XwQTJAgm+QDrsPKXHBacHEANJ9LEAuTqg==}
  699. engines: {node: '>=14.0.0'}
  700. cpu: [x64]
  701. os: [android]
  702. sass-embedded-darwin-arm64@1.85.0:
  703. resolution: {integrity: sha512-plp8TyMz97YFBCB3ndftEvoW29vyfsSBJILM5U84cGzr06SvLh/Npjj8psfUeRw+upEk1zkFtw5u61sRCdgwIw==}
  704. engines: {node: '>=14.0.0'}
  705. cpu: [arm64]
  706. os: [darwin]
  707. sass-embedded-darwin-x64@1.85.0:
  708. resolution: {integrity: sha512-LP8Zv8DG57Gn6PmSwWzC0gEZUsGdg36Ps3m0i1fVTOelql7N3HZIrlPYRjJvidL8ZlB3ISxNANebTREUHn/wkQ==}
  709. engines: {node: '>=14.0.0'}
  710. cpu: [x64]
  711. os: [darwin]
  712. sass-embedded-linux-arm64@1.85.0:
  713. resolution: {integrity: sha512-JRIRKVOY5Y8M1zlUOv9AQGju4P6lj8i5vLJZsVYVN/uY8Cd2dDJZPC8EOhjntp+IpF8AOGIHqCeCkHBceIyIjA==}
  714. engines: {node: '>=14.0.0'}
  715. cpu: [arm64]
  716. os: [linux]
  717. sass-embedded-linux-arm@1.85.0:
  718. resolution: {integrity: sha512-18xOAEfazJt1MMVS2TRHV94n81VyMnywOoJ7/S7I79qno/zx26OoqqP4XvH107xu8+mZ9Gg54LrUH6ZcgHk08g==}
  719. engines: {node: '>=14.0.0'}
  720. cpu: [arm]
  721. os: [linux]
  722. sass-embedded-linux-ia32@1.85.0:
  723. resolution: {integrity: sha512-4JH+h+gLt9So22nNPQtsKojEsLzjld9ol3zWcOtMGclv+HojZGbCuhJUrLUcK72F8adXYsULmWhJPKROLIwYMA==}
  724. engines: {node: '>=14.0.0'}
  725. cpu: [ia32]
  726. os: [linux]
  727. sass-embedded-linux-musl-arm64@1.85.0:
  728. resolution: {integrity: sha512-aoQjUjK28bvdw9XKTjQeayn8oWQ2QqvoTD11myklGd3IHH7Jj0nwXUstI4NxDueCKt3wghuZoIQkjOheReQxlg==}
  729. engines: {node: '>=14.0.0'}
  730. cpu: [arm64]
  731. os: [linux]
  732. sass-embedded-linux-musl-arm@1.85.0:
  733. resolution: {integrity: sha512-Z1j4ageDVFihqNUBnm89fxY46pY0zD/Clp1D3ZdI7S+D280+AEpbm5vMoH8LLhBQfQLf2w7H++SZGpQwrisudQ==}
  734. engines: {node: '>=14.0.0'}
  735. cpu: [arm]
  736. os: [linux]
  737. sass-embedded-linux-musl-ia32@1.85.0:
  738. resolution: {integrity: sha512-/cJCSXOfXmQFH8deE+3U9x+BSz8i0d1Tt9gKV/Gat1Xm43Oumw8pmZgno+cDuGjYQInr9ryW5121pTMlj/PBXQ==}
  739. engines: {node: '>=14.0.0'}
  740. cpu: [ia32]
  741. os: [linux]
  742. sass-embedded-linux-musl-riscv64@1.85.0:
  743. resolution: {integrity: sha512-l+FJxMXkmg42RZq5RFKXg4InX0IA7yEiPHe4kVSdrczP7z3NLxk+W9wVkPnoRKYIMe1qZPPQ25y0TgI4HNWouA==}
  744. engines: {node: '>=14.0.0'}
  745. cpu: [riscv64]
  746. os: [linux]
  747. sass-embedded-linux-musl-x64@1.85.0:
  748. resolution: {integrity: sha512-M9ffjcYfFcRvkFA6V3DpOS955AyvmpvPAhL/xNK45d/ma1n1ehTWpd24tVeKiNK5CZkNjjMEfyw2fHa6MpqmEA==}
  749. engines: {node: '>=14.0.0'}
  750. cpu: [x64]
  751. os: [linux]
  752. sass-embedded-linux-riscv64@1.85.0:
  753. resolution: {integrity: sha512-yqPXQWfM+qiIPkfn++48GOlbmSvUZIyL9nwFstBk0k4x40UhbhilfknqeTUpxoHfQzylTGVhrm5JE7MjM+LNZA==}
  754. engines: {node: '>=14.0.0'}
  755. cpu: [riscv64]
  756. os: [linux]
  757. sass-embedded-linux-x64@1.85.0:
  758. resolution: {integrity: sha512-NTDeQFZcuVR7COoaRy8pZD6/+QznwBR8kVFsj7NpmvX9aJ7TX/q+OQZHX7Bfb3tsfKXhf1YZozegPuYxRnMKAQ==}
  759. engines: {node: '>=14.0.0'}
  760. cpu: [x64]
  761. os: [linux]
  762. sass-embedded-win32-arm64@1.85.0:
  763. resolution: {integrity: sha512-gO0VAuxC4AdV+uZYJESRWVVHQWCGzNs0C3OKCAdH4r1vGRugooMi7J/5wbwUdXDA1MV9ICfhlKsph2n3GiPdqA==}
  764. engines: {node: '>=14.0.0'}
  765. cpu: [arm64]
  766. os: [win32]
  767. sass-embedded-win32-ia32@1.85.0:
  768. resolution: {integrity: sha512-PCyn6xeFIBUgBceNypuf73/5DWF2VWPlPqPuBprPsTvpZOMUJeBtP+Lf4mnu3dNy1z76mYVnpaCnQmzZ0zHZaA==}
  769. engines: {node: '>=14.0.0'}
  770. cpu: [ia32]
  771. os: [win32]
  772. sass-embedded-win32-x64@1.85.0:
  773. resolution: {integrity: sha512-AknE2jLp6OBwrR5hQ8pDsG94KhJCeSheFJ2xgbnk8RUjZX909JiNbgh2sNt9LG+RXf4xZa55dDL537gZoCx/iw==}
  774. engines: {node: '>=14.0.0'}
  775. cpu: [x64]
  776. os: [win32]
  777. sass-embedded@1.85.0:
  778. resolution: {integrity: sha512-x3Vv54g0jv1aPSW8OTA/0GzQCs/HMQOjIkLtZJ3Xsn/I4vnyjKbVTQmFTax9bQjldqLEEkdbvy6ES/cOOnYNwA==}
  779. engines: {node: '>=16.0.0'}
  780. hasBin: true
  781. source-map-js@1.2.1:
  782. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  783. engines: {node: '>=0.10.0'}
  784. speakingurl@14.0.1:
  785. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  786. engines: {node: '>=0.10.0'}
  787. superjson@2.2.2:
  788. resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
  789. engines: {node: '>=16'}
  790. supports-color@8.1.1:
  791. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  792. engines: {node: '>=10'}
  793. sync-child-process@1.0.2:
  794. resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==}
  795. engines: {node: '>=16.0.0'}
  796. sync-message-port@1.1.3:
  797. resolution: {integrity: sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==}
  798. engines: {node: '>=16.0.0'}
  799. tailwindcss@4.0.8:
  800. resolution: {integrity: sha512-Me7N5CKR+D2A1xdWA5t5+kjjT7bwnxZOE6/yDI/ixJdJokszsn2n++mdU5yJwrsTpqFX2B9ZNMBJDwcqk9C9lw==}
  801. tapable@2.2.1:
  802. resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
  803. engines: {node: '>=6'}
  804. tslib@2.8.1:
  805. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  806. typescript@5.7.3:
  807. resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
  808. engines: {node: '>=14.17'}
  809. hasBin: true
  810. unplugin-element-plus@0.9.1:
  811. resolution: {integrity: sha512-TtQ7bj82gM1Hw5A+LmG/oFrvYb6L0BqhxVUl7djMiicvk7LjdUiP70QhTKaBY/tiFR9NJCIPYSmw4naCuhK7Hg==}
  812. engines: {node: '>=18.12.0'}
  813. unplugin-utils@0.2.4:
  814. resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
  815. engines: {node: '>=18.12.0'}
  816. unplugin@2.2.0:
  817. resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==}
  818. engines: {node: '>=18.12.0'}
  819. varint@6.0.0:
  820. resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
  821. vite@6.1.1:
  822. resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==}
  823. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  824. hasBin: true
  825. peerDependencies:
  826. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  827. jiti: '>=1.21.0'
  828. less: '*'
  829. lightningcss: ^1.21.0
  830. sass: '*'
  831. sass-embedded: '*'
  832. stylus: '*'
  833. sugarss: '*'
  834. terser: ^5.16.0
  835. tsx: ^4.8.1
  836. yaml: ^2.4.2
  837. peerDependenciesMeta:
  838. '@types/node':
  839. optional: true
  840. jiti:
  841. optional: true
  842. less:
  843. optional: true
  844. lightningcss:
  845. optional: true
  846. sass:
  847. optional: true
  848. sass-embedded:
  849. optional: true
  850. stylus:
  851. optional: true
  852. sugarss:
  853. optional: true
  854. terser:
  855. optional: true
  856. tsx:
  857. optional: true
  858. yaml:
  859. optional: true
  860. vue-demi@0.14.10:
  861. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  862. engines: {node: '>=12'}
  863. hasBin: true
  864. peerDependencies:
  865. '@vue/composition-api': ^1.0.0-rc.1
  866. vue: ^3.0.0-0 || ^2.6.0
  867. peerDependenciesMeta:
  868. '@vue/composition-api':
  869. optional: true
  870. vue-i18n@9.14.2:
  871. resolution: {integrity: sha512-JK9Pm80OqssGJU2Y6F7DcM8RFHqVG4WkuCqOZTVsXkEzZME7ABejAUqUdA931zEBedc4thBgSUWxeQh4uocJAQ==}
  872. engines: {node: '>= 16'}
  873. peerDependencies:
  874. vue: ^3.0.0
  875. vue-router@4.5.0:
  876. resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
  877. peerDependencies:
  878. vue: ^3.2.0
  879. vue@3.5.13:
  880. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  881. peerDependencies:
  882. typescript: '*'
  883. peerDependenciesMeta:
  884. typescript:
  885. optional: true
  886. webpack-virtual-modules@0.6.2:
  887. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  888. snapshots:
  889. '@babel/helper-string-parser@7.25.9': {}
  890. '@babel/helper-validator-identifier@7.25.9': {}
  891. '@babel/parser@7.26.9':
  892. dependencies:
  893. '@babel/types': 7.26.9
  894. '@babel/types@7.26.9':
  895. dependencies:
  896. '@babel/helper-string-parser': 7.25.9
  897. '@babel/helper-validator-identifier': 7.25.9
  898. '@bufbuild/protobuf@2.2.3': {}
  899. '@ctrl/tinycolor@3.6.1': {}
  900. '@element-plus/icons-vue@2.3.1(vue@3.5.13(typescript@5.7.3))':
  901. dependencies:
  902. vue: 3.5.13(typescript@5.7.3)
  903. '@esbuild/aix-ppc64@0.24.2':
  904. optional: true
  905. '@esbuild/android-arm64@0.24.2':
  906. optional: true
  907. '@esbuild/android-arm@0.24.2':
  908. optional: true
  909. '@esbuild/android-x64@0.24.2':
  910. optional: true
  911. '@esbuild/darwin-arm64@0.24.2':
  912. optional: true
  913. '@esbuild/darwin-x64@0.24.2':
  914. optional: true
  915. '@esbuild/freebsd-arm64@0.24.2':
  916. optional: true
  917. '@esbuild/freebsd-x64@0.24.2':
  918. optional: true
  919. '@esbuild/linux-arm64@0.24.2':
  920. optional: true
  921. '@esbuild/linux-arm@0.24.2':
  922. optional: true
  923. '@esbuild/linux-ia32@0.24.2':
  924. optional: true
  925. '@esbuild/linux-loong64@0.24.2':
  926. optional: true
  927. '@esbuild/linux-mips64el@0.24.2':
  928. optional: true
  929. '@esbuild/linux-ppc64@0.24.2':
  930. optional: true
  931. '@esbuild/linux-riscv64@0.24.2':
  932. optional: true
  933. '@esbuild/linux-s390x@0.24.2':
  934. optional: true
  935. '@esbuild/linux-x64@0.24.2':
  936. optional: true
  937. '@esbuild/netbsd-arm64@0.24.2':
  938. optional: true
  939. '@esbuild/netbsd-x64@0.24.2':
  940. optional: true
  941. '@esbuild/openbsd-arm64@0.24.2':
  942. optional: true
  943. '@esbuild/openbsd-x64@0.24.2':
  944. optional: true
  945. '@esbuild/sunos-x64@0.24.2':
  946. optional: true
  947. '@esbuild/win32-arm64@0.24.2':
  948. optional: true
  949. '@esbuild/win32-ia32@0.24.2':
  950. optional: true
  951. '@esbuild/win32-x64@0.24.2':
  952. optional: true
  953. '@floating-ui/core@1.6.9':
  954. dependencies:
  955. '@floating-ui/utils': 0.2.9
  956. '@floating-ui/dom@1.6.13':
  957. dependencies:
  958. '@floating-ui/core': 1.6.9
  959. '@floating-ui/utils': 0.2.9
  960. '@floating-ui/utils@0.2.9': {}
  961. '@intlify/core-base@9.14.2':
  962. dependencies:
  963. '@intlify/message-compiler': 9.14.2
  964. '@intlify/shared': 9.14.2
  965. '@intlify/message-compiler@9.14.2':
  966. dependencies:
  967. '@intlify/shared': 9.14.2
  968. source-map-js: 1.2.1
  969. '@intlify/shared@9.14.2': {}
  970. '@jridgewell/sourcemap-codec@1.5.0': {}
  971. '@rollup/rollup-android-arm-eabi@4.34.8':
  972. optional: true
  973. '@rollup/rollup-android-arm64@4.34.8':
  974. optional: true
  975. '@rollup/rollup-darwin-arm64@4.34.8':
  976. optional: true
  977. '@rollup/rollup-darwin-x64@4.34.8':
  978. optional: true
  979. '@rollup/rollup-freebsd-arm64@4.34.8':
  980. optional: true
  981. '@rollup/rollup-freebsd-x64@4.34.8':
  982. optional: true
  983. '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
  984. optional: true
  985. '@rollup/rollup-linux-arm-musleabihf@4.34.8':
  986. optional: true
  987. '@rollup/rollup-linux-arm64-gnu@4.34.8':
  988. optional: true
  989. '@rollup/rollup-linux-arm64-musl@4.34.8':
  990. optional: true
  991. '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
  992. optional: true
  993. '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
  994. optional: true
  995. '@rollup/rollup-linux-riscv64-gnu@4.34.8':
  996. optional: true
  997. '@rollup/rollup-linux-s390x-gnu@4.34.8':
  998. optional: true
  999. '@rollup/rollup-linux-x64-gnu@4.34.8':
  1000. optional: true
  1001. '@rollup/rollup-linux-x64-musl@4.34.8':
  1002. optional: true
  1003. '@rollup/rollup-win32-arm64-msvc@4.34.8':
  1004. optional: true
  1005. '@rollup/rollup-win32-ia32-msvc@4.34.8':
  1006. optional: true
  1007. '@rollup/rollup-win32-x64-msvc@4.34.8':
  1008. optional: true
  1009. '@sxzz/popperjs-es@2.11.7': {}
  1010. '@tailwindcss/node@4.0.8':
  1011. dependencies:
  1012. enhanced-resolve: 5.18.1
  1013. jiti: 2.4.2
  1014. tailwindcss: 4.0.8
  1015. '@tailwindcss/oxide-android-arm64@4.0.8':
  1016. optional: true
  1017. '@tailwindcss/oxide-darwin-arm64@4.0.8':
  1018. optional: true
  1019. '@tailwindcss/oxide-darwin-x64@4.0.8':
  1020. optional: true
  1021. '@tailwindcss/oxide-freebsd-x64@4.0.8':
  1022. optional: true
  1023. '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.8':
  1024. optional: true
  1025. '@tailwindcss/oxide-linux-arm64-gnu@4.0.8':
  1026. optional: true
  1027. '@tailwindcss/oxide-linux-arm64-musl@4.0.8':
  1028. optional: true
  1029. '@tailwindcss/oxide-linux-x64-gnu@4.0.8':
  1030. optional: true
  1031. '@tailwindcss/oxide-linux-x64-musl@4.0.8':
  1032. optional: true
  1033. '@tailwindcss/oxide-win32-arm64-msvc@4.0.8':
  1034. optional: true
  1035. '@tailwindcss/oxide-win32-x64-msvc@4.0.8':
  1036. optional: true
  1037. '@tailwindcss/oxide@4.0.8':
  1038. optionalDependencies:
  1039. '@tailwindcss/oxide-android-arm64': 4.0.8
  1040. '@tailwindcss/oxide-darwin-arm64': 4.0.8
  1041. '@tailwindcss/oxide-darwin-x64': 4.0.8
  1042. '@tailwindcss/oxide-freebsd-x64': 4.0.8
  1043. '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.8
  1044. '@tailwindcss/oxide-linux-arm64-gnu': 4.0.8
  1045. '@tailwindcss/oxide-linux-arm64-musl': 4.0.8
  1046. '@tailwindcss/oxide-linux-x64-gnu': 4.0.8
  1047. '@tailwindcss/oxide-linux-x64-musl': 4.0.8
  1048. '@tailwindcss/oxide-win32-arm64-msvc': 4.0.8
  1049. '@tailwindcss/oxide-win32-x64-msvc': 4.0.8
  1050. '@tailwindcss/vite@4.0.8(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0))':
  1051. dependencies:
  1052. '@tailwindcss/node': 4.0.8
  1053. '@tailwindcss/oxide': 4.0.8
  1054. lightningcss: 1.29.1
  1055. tailwindcss: 4.0.8
  1056. vite: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0)
  1057. '@tauri-apps/api@2.2.0': {}
  1058. '@tauri-apps/cli-darwin-arm64@2.2.7':
  1059. optional: true
  1060. '@tauri-apps/cli-darwin-x64@2.2.7':
  1061. optional: true
  1062. '@tauri-apps/cli-linux-arm-gnueabihf@2.2.7':
  1063. optional: true
  1064. '@tauri-apps/cli-linux-arm64-gnu@2.2.7':
  1065. optional: true
  1066. '@tauri-apps/cli-linux-arm64-musl@2.2.7':
  1067. optional: true
  1068. '@tauri-apps/cli-linux-x64-gnu@2.2.7':
  1069. optional: true
  1070. '@tauri-apps/cli-linux-x64-musl@2.2.7':
  1071. optional: true
  1072. '@tauri-apps/cli-win32-arm64-msvc@2.2.7':
  1073. optional: true
  1074. '@tauri-apps/cli-win32-ia32-msvc@2.2.7':
  1075. optional: true
  1076. '@tauri-apps/cli-win32-x64-msvc@2.2.7':
  1077. optional: true
  1078. '@tauri-apps/cli@2.2.7':
  1079. optionalDependencies:
  1080. '@tauri-apps/cli-darwin-arm64': 2.2.7
  1081. '@tauri-apps/cli-darwin-x64': 2.2.7
  1082. '@tauri-apps/cli-linux-arm-gnueabihf': 2.2.7
  1083. '@tauri-apps/cli-linux-arm64-gnu': 2.2.7
  1084. '@tauri-apps/cli-linux-arm64-musl': 2.2.7
  1085. '@tauri-apps/cli-linux-x64-gnu': 2.2.7
  1086. '@tauri-apps/cli-linux-x64-musl': 2.2.7
  1087. '@tauri-apps/cli-win32-arm64-msvc': 2.2.7
  1088. '@tauri-apps/cli-win32-ia32-msvc': 2.2.7
  1089. '@tauri-apps/cli-win32-x64-msvc': 2.2.7
  1090. '@tauri-apps/plugin-http@2.3.0':
  1091. dependencies:
  1092. '@tauri-apps/api': 2.2.0
  1093. '@tauri-apps/plugin-opener@2.2.5':
  1094. dependencies:
  1095. '@tauri-apps/api': 2.2.0
  1096. '@tauri-apps/plugin-os@2.2.0':
  1097. dependencies:
  1098. '@tauri-apps/api': 2.2.0
  1099. '@tauri-apps/plugin-store@2.2.0':
  1100. dependencies:
  1101. '@tauri-apps/api': 2.2.0
  1102. '@tauri-apps/plugin-upload@2.2.1':
  1103. dependencies:
  1104. '@tauri-apps/api': 2.2.0
  1105. '@types/estree@1.0.6': {}
  1106. '@types/lodash-es@4.17.12':
  1107. dependencies:
  1108. '@types/lodash': 4.17.15
  1109. '@types/lodash@4.17.15': {}
  1110. '@types/web-bluetooth@0.0.16': {}
  1111. '@vitejs/plugin-vue@5.2.1(vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0))(vue@3.5.13(typescript@5.7.3))':
  1112. dependencies:
  1113. vite: 6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0)
  1114. vue: 3.5.13(typescript@5.7.3)
  1115. '@vue/compiler-core@3.5.13':
  1116. dependencies:
  1117. '@babel/parser': 7.26.9
  1118. '@vue/shared': 3.5.13
  1119. entities: 4.5.0
  1120. estree-walker: 2.0.2
  1121. source-map-js: 1.2.1
  1122. '@vue/compiler-dom@3.5.13':
  1123. dependencies:
  1124. '@vue/compiler-core': 3.5.13
  1125. '@vue/shared': 3.5.13
  1126. '@vue/compiler-sfc@3.5.13':
  1127. dependencies:
  1128. '@babel/parser': 7.26.9
  1129. '@vue/compiler-core': 3.5.13
  1130. '@vue/compiler-dom': 3.5.13
  1131. '@vue/compiler-ssr': 3.5.13
  1132. '@vue/shared': 3.5.13
  1133. estree-walker: 2.0.2
  1134. magic-string: 0.30.17
  1135. postcss: 8.5.3
  1136. source-map-js: 1.2.1
  1137. '@vue/compiler-ssr@3.5.13':
  1138. dependencies:
  1139. '@vue/compiler-dom': 3.5.13
  1140. '@vue/shared': 3.5.13
  1141. '@vue/devtools-api@6.6.4': {}
  1142. '@vue/devtools-api@7.7.2':
  1143. dependencies:
  1144. '@vue/devtools-kit': 7.7.2
  1145. '@vue/devtools-kit@7.7.2':
  1146. dependencies:
  1147. '@vue/devtools-shared': 7.7.2
  1148. birpc: 0.2.19
  1149. hookable: 5.5.3
  1150. mitt: 3.0.1
  1151. perfect-debounce: 1.0.0
  1152. speakingurl: 14.0.1
  1153. superjson: 2.2.2
  1154. '@vue/devtools-shared@7.7.2':
  1155. dependencies:
  1156. rfdc: 1.4.1
  1157. '@vue/reactivity@3.5.13':
  1158. dependencies:
  1159. '@vue/shared': 3.5.13
  1160. '@vue/runtime-core@3.5.13':
  1161. dependencies:
  1162. '@vue/reactivity': 3.5.13
  1163. '@vue/shared': 3.5.13
  1164. '@vue/runtime-dom@3.5.13':
  1165. dependencies:
  1166. '@vue/reactivity': 3.5.13
  1167. '@vue/runtime-core': 3.5.13
  1168. '@vue/shared': 3.5.13
  1169. csstype: 3.1.3
  1170. '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.3))':
  1171. dependencies:
  1172. '@vue/compiler-ssr': 3.5.13
  1173. '@vue/shared': 3.5.13
  1174. vue: 3.5.13(typescript@5.7.3)
  1175. '@vue/shared@3.5.13': {}
  1176. '@vueuse/core@9.13.0(vue@3.5.13(typescript@5.7.3))':
  1177. dependencies:
  1178. '@types/web-bluetooth': 0.0.16
  1179. '@vueuse/metadata': 9.13.0
  1180. '@vueuse/shared': 9.13.0(vue@3.5.13(typescript@5.7.3))
  1181. vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
  1182. transitivePeerDependencies:
  1183. - '@vue/composition-api'
  1184. - vue
  1185. '@vueuse/metadata@9.13.0': {}
  1186. '@vueuse/shared@9.13.0(vue@3.5.13(typescript@5.7.3))':
  1187. dependencies:
  1188. vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
  1189. transitivePeerDependencies:
  1190. - '@vue/composition-api'
  1191. - vue
  1192. acorn@8.14.0: {}
  1193. async-validator@4.2.5: {}
  1194. birpc@0.2.19: {}
  1195. buffer-builder@0.2.0: {}
  1196. colorjs.io@0.5.2: {}
  1197. copy-anything@3.0.5:
  1198. dependencies:
  1199. is-what: 4.1.16
  1200. csstype@3.1.3: {}
  1201. dayjs@1.11.13: {}
  1202. detect-libc@1.0.3: {}
  1203. element-plus@2.9.5(vue@3.5.13(typescript@5.7.3)):
  1204. dependencies:
  1205. '@ctrl/tinycolor': 3.6.1
  1206. '@element-plus/icons-vue': 2.3.1(vue@3.5.13(typescript@5.7.3))
  1207. '@floating-ui/dom': 1.6.13
  1208. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1209. '@types/lodash': 4.17.15
  1210. '@types/lodash-es': 4.17.12
  1211. '@vueuse/core': 9.13.0(vue@3.5.13(typescript@5.7.3))
  1212. async-validator: 4.2.5
  1213. dayjs: 1.11.13
  1214. escape-html: 1.0.3
  1215. lodash: 4.17.21
  1216. lodash-es: 4.17.21
  1217. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1218. memoize-one: 6.0.0
  1219. normalize-wheel-es: 1.2.0
  1220. vue: 3.5.13(typescript@5.7.3)
  1221. transitivePeerDependencies:
  1222. - '@vue/composition-api'
  1223. enhanced-resolve@5.18.1:
  1224. dependencies:
  1225. graceful-fs: 4.2.11
  1226. tapable: 2.2.1
  1227. entities@4.5.0: {}
  1228. es-module-lexer@1.6.0: {}
  1229. esbuild@0.24.2:
  1230. optionalDependencies:
  1231. '@esbuild/aix-ppc64': 0.24.2
  1232. '@esbuild/android-arm': 0.24.2
  1233. '@esbuild/android-arm64': 0.24.2
  1234. '@esbuild/android-x64': 0.24.2
  1235. '@esbuild/darwin-arm64': 0.24.2
  1236. '@esbuild/darwin-x64': 0.24.2
  1237. '@esbuild/freebsd-arm64': 0.24.2
  1238. '@esbuild/freebsd-x64': 0.24.2
  1239. '@esbuild/linux-arm': 0.24.2
  1240. '@esbuild/linux-arm64': 0.24.2
  1241. '@esbuild/linux-ia32': 0.24.2
  1242. '@esbuild/linux-loong64': 0.24.2
  1243. '@esbuild/linux-mips64el': 0.24.2
  1244. '@esbuild/linux-ppc64': 0.24.2
  1245. '@esbuild/linux-riscv64': 0.24.2
  1246. '@esbuild/linux-s390x': 0.24.2
  1247. '@esbuild/linux-x64': 0.24.2
  1248. '@esbuild/netbsd-arm64': 0.24.2
  1249. '@esbuild/netbsd-x64': 0.24.2
  1250. '@esbuild/openbsd-arm64': 0.24.2
  1251. '@esbuild/openbsd-x64': 0.24.2
  1252. '@esbuild/sunos-x64': 0.24.2
  1253. '@esbuild/win32-arm64': 0.24.2
  1254. '@esbuild/win32-ia32': 0.24.2
  1255. '@esbuild/win32-x64': 0.24.2
  1256. escape-html@1.0.3: {}
  1257. estree-walker@2.0.2: {}
  1258. fsevents@2.3.3:
  1259. optional: true
  1260. graceful-fs@4.2.11: {}
  1261. has-flag@4.0.0: {}
  1262. hookable@5.5.3: {}
  1263. immutable@5.0.3: {}
  1264. is-what@4.1.16: {}
  1265. jiti@2.4.2: {}
  1266. lightningcss-darwin-arm64@1.29.1:
  1267. optional: true
  1268. lightningcss-darwin-x64@1.29.1:
  1269. optional: true
  1270. lightningcss-freebsd-x64@1.29.1:
  1271. optional: true
  1272. lightningcss-linux-arm-gnueabihf@1.29.1:
  1273. optional: true
  1274. lightningcss-linux-arm64-gnu@1.29.1:
  1275. optional: true
  1276. lightningcss-linux-arm64-musl@1.29.1:
  1277. optional: true
  1278. lightningcss-linux-x64-gnu@1.29.1:
  1279. optional: true
  1280. lightningcss-linux-x64-musl@1.29.1:
  1281. optional: true
  1282. lightningcss-win32-arm64-msvc@1.29.1:
  1283. optional: true
  1284. lightningcss-win32-x64-msvc@1.29.1:
  1285. optional: true
  1286. lightningcss@1.29.1:
  1287. dependencies:
  1288. detect-libc: 1.0.3
  1289. optionalDependencies:
  1290. lightningcss-darwin-arm64: 1.29.1
  1291. lightningcss-darwin-x64: 1.29.1
  1292. lightningcss-freebsd-x64: 1.29.1
  1293. lightningcss-linux-arm-gnueabihf: 1.29.1
  1294. lightningcss-linux-arm64-gnu: 1.29.1
  1295. lightningcss-linux-arm64-musl: 1.29.1
  1296. lightningcss-linux-x64-gnu: 1.29.1
  1297. lightningcss-linux-x64-musl: 1.29.1
  1298. lightningcss-win32-arm64-msvc: 1.29.1
  1299. lightningcss-win32-x64-msvc: 1.29.1
  1300. lodash-es@4.17.21: {}
  1301. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1302. dependencies:
  1303. '@types/lodash-es': 4.17.12
  1304. lodash: 4.17.21
  1305. lodash-es: 4.17.21
  1306. lodash@4.17.21: {}
  1307. magic-string@0.30.17:
  1308. dependencies:
  1309. '@jridgewell/sourcemap-codec': 1.5.0
  1310. memoize-one@6.0.0: {}
  1311. mitt@3.0.1: {}
  1312. nanoid@3.3.8: {}
  1313. normalize-wheel-es@1.2.0: {}
  1314. pathe@2.0.3: {}
  1315. perfect-debounce@1.0.0: {}
  1316. picocolors@1.1.1: {}
  1317. picomatch@4.0.2: {}
  1318. pinia@3.0.1(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3)):
  1319. dependencies:
  1320. '@vue/devtools-api': 7.7.2
  1321. vue: 3.5.13(typescript@5.7.3)
  1322. optionalDependencies:
  1323. typescript: 5.7.3
  1324. postcss@8.5.3:
  1325. dependencies:
  1326. nanoid: 3.3.8
  1327. picocolors: 1.1.1
  1328. source-map-js: 1.2.1
  1329. rfdc@1.4.1: {}
  1330. rollup@4.34.8:
  1331. dependencies:
  1332. '@types/estree': 1.0.6
  1333. optionalDependencies:
  1334. '@rollup/rollup-android-arm-eabi': 4.34.8
  1335. '@rollup/rollup-android-arm64': 4.34.8
  1336. '@rollup/rollup-darwin-arm64': 4.34.8
  1337. '@rollup/rollup-darwin-x64': 4.34.8
  1338. '@rollup/rollup-freebsd-arm64': 4.34.8
  1339. '@rollup/rollup-freebsd-x64': 4.34.8
  1340. '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
  1341. '@rollup/rollup-linux-arm-musleabihf': 4.34.8
  1342. '@rollup/rollup-linux-arm64-gnu': 4.34.8
  1343. '@rollup/rollup-linux-arm64-musl': 4.34.8
  1344. '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
  1345. '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
  1346. '@rollup/rollup-linux-riscv64-gnu': 4.34.8
  1347. '@rollup/rollup-linux-s390x-gnu': 4.34.8
  1348. '@rollup/rollup-linux-x64-gnu': 4.34.8
  1349. '@rollup/rollup-linux-x64-musl': 4.34.8
  1350. '@rollup/rollup-win32-arm64-msvc': 4.34.8
  1351. '@rollup/rollup-win32-ia32-msvc': 4.34.8
  1352. '@rollup/rollup-win32-x64-msvc': 4.34.8
  1353. fsevents: 2.3.3
  1354. rxjs@7.8.2:
  1355. dependencies:
  1356. tslib: 2.8.1
  1357. sass-embedded-android-arm64@1.85.0:
  1358. optional: true
  1359. sass-embedded-android-arm@1.85.0:
  1360. optional: true
  1361. sass-embedded-android-ia32@1.85.0:
  1362. optional: true
  1363. sass-embedded-android-riscv64@1.85.0:
  1364. optional: true
  1365. sass-embedded-android-x64@1.85.0:
  1366. optional: true
  1367. sass-embedded-darwin-arm64@1.85.0:
  1368. optional: true
  1369. sass-embedded-darwin-x64@1.85.0:
  1370. optional: true
  1371. sass-embedded-linux-arm64@1.85.0:
  1372. optional: true
  1373. sass-embedded-linux-arm@1.85.0:
  1374. optional: true
  1375. sass-embedded-linux-ia32@1.85.0:
  1376. optional: true
  1377. sass-embedded-linux-musl-arm64@1.85.0:
  1378. optional: true
  1379. sass-embedded-linux-musl-arm@1.85.0:
  1380. optional: true
  1381. sass-embedded-linux-musl-ia32@1.85.0:
  1382. optional: true
  1383. sass-embedded-linux-musl-riscv64@1.85.0:
  1384. optional: true
  1385. sass-embedded-linux-musl-x64@1.85.0:
  1386. optional: true
  1387. sass-embedded-linux-riscv64@1.85.0:
  1388. optional: true
  1389. sass-embedded-linux-x64@1.85.0:
  1390. optional: true
  1391. sass-embedded-win32-arm64@1.85.0:
  1392. optional: true
  1393. sass-embedded-win32-ia32@1.85.0:
  1394. optional: true
  1395. sass-embedded-win32-x64@1.85.0:
  1396. optional: true
  1397. sass-embedded@1.85.0:
  1398. dependencies:
  1399. '@bufbuild/protobuf': 2.2.3
  1400. buffer-builder: 0.2.0
  1401. colorjs.io: 0.5.2
  1402. immutable: 5.0.3
  1403. rxjs: 7.8.2
  1404. supports-color: 8.1.1
  1405. sync-child-process: 1.0.2
  1406. varint: 6.0.0
  1407. optionalDependencies:
  1408. sass-embedded-android-arm: 1.85.0
  1409. sass-embedded-android-arm64: 1.85.0
  1410. sass-embedded-android-ia32: 1.85.0
  1411. sass-embedded-android-riscv64: 1.85.0
  1412. sass-embedded-android-x64: 1.85.0
  1413. sass-embedded-darwin-arm64: 1.85.0
  1414. sass-embedded-darwin-x64: 1.85.0
  1415. sass-embedded-linux-arm: 1.85.0
  1416. sass-embedded-linux-arm64: 1.85.0
  1417. sass-embedded-linux-ia32: 1.85.0
  1418. sass-embedded-linux-musl-arm: 1.85.0
  1419. sass-embedded-linux-musl-arm64: 1.85.0
  1420. sass-embedded-linux-musl-ia32: 1.85.0
  1421. sass-embedded-linux-musl-riscv64: 1.85.0
  1422. sass-embedded-linux-musl-x64: 1.85.0
  1423. sass-embedded-linux-riscv64: 1.85.0
  1424. sass-embedded-linux-x64: 1.85.0
  1425. sass-embedded-win32-arm64: 1.85.0
  1426. sass-embedded-win32-ia32: 1.85.0
  1427. sass-embedded-win32-x64: 1.85.0
  1428. source-map-js@1.2.1: {}
  1429. speakingurl@14.0.1: {}
  1430. superjson@2.2.2:
  1431. dependencies:
  1432. copy-anything: 3.0.5
  1433. supports-color@8.1.1:
  1434. dependencies:
  1435. has-flag: 4.0.0
  1436. sync-child-process@1.0.2:
  1437. dependencies:
  1438. sync-message-port: 1.1.3
  1439. sync-message-port@1.1.3: {}
  1440. tailwindcss@4.0.8: {}
  1441. tapable@2.2.1: {}
  1442. tslib@2.8.1: {}
  1443. typescript@5.7.3: {}
  1444. unplugin-element-plus@0.9.1:
  1445. dependencies:
  1446. es-module-lexer: 1.6.0
  1447. magic-string: 0.30.17
  1448. unplugin: 2.2.0
  1449. unplugin-utils: 0.2.4
  1450. unplugin-utils@0.2.4:
  1451. dependencies:
  1452. pathe: 2.0.3
  1453. picomatch: 4.0.2
  1454. unplugin@2.2.0:
  1455. dependencies:
  1456. acorn: 8.14.0
  1457. webpack-virtual-modules: 0.6.2
  1458. varint@6.0.0: {}
  1459. vite@6.1.1(jiti@2.4.2)(lightningcss@1.29.1)(sass-embedded@1.85.0):
  1460. dependencies:
  1461. esbuild: 0.24.2
  1462. postcss: 8.5.3
  1463. rollup: 4.34.8
  1464. optionalDependencies:
  1465. fsevents: 2.3.3
  1466. jiti: 2.4.2
  1467. lightningcss: 1.29.1
  1468. sass-embedded: 1.85.0
  1469. vue-demi@0.14.10(vue@3.5.13(typescript@5.7.3)):
  1470. dependencies:
  1471. vue: 3.5.13(typescript@5.7.3)
  1472. vue-i18n@9.14.2(vue@3.5.13(typescript@5.7.3)):
  1473. dependencies:
  1474. '@intlify/core-base': 9.14.2
  1475. '@intlify/shared': 9.14.2
  1476. '@vue/devtools-api': 6.6.4
  1477. vue: 3.5.13(typescript@5.7.3)
  1478. vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)):
  1479. dependencies:
  1480. '@vue/devtools-api': 6.6.4
  1481. vue: 3.5.13(typescript@5.7.3)
  1482. vue@3.5.13(typescript@5.7.3):
  1483. dependencies:
  1484. '@vue/compiler-dom': 3.5.13
  1485. '@vue/compiler-sfc': 3.5.13
  1486. '@vue/runtime-dom': 3.5.13
  1487. '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.3))
  1488. '@vue/shared': 3.5.13
  1489. optionalDependencies:
  1490. typescript: 5.7.3
  1491. webpack-virtual-modules@0.6.2: {}