pnpm-lock.yaml 61 KB

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