pnpm-lock.yaml 59 KB

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