pnpm-lock.yaml 60 KB

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