pnpm-lock.yaml 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@iconify/vue':
  9. specifier: ^5.0.0
  10. version: 5.0.1(vue@3.5.34(typescript@5.9.3))
  11. '@vueuse/core':
  12. specifier: ^14.2.1
  13. version: 14.3.0(vue@3.5.34(typescript@5.9.3))
  14. '@vueuse/motion':
  15. specifier: ^3.0.3
  16. version: 3.0.3(vue@3.5.34(typescript@5.9.3))
  17. axios:
  18. specifier: ^1.13.6
  19. version: 1.16.0
  20. dayjs:
  21. specifier: ^1.11.20
  22. version: 1.11.20
  23. klinecharts:
  24. specifier: ^10.0.0-beta1
  25. version: 10.0.0-beta1
  26. lightweight-charts:
  27. specifier: ^5.1.0
  28. version: 5.2.0
  29. pinia:
  30. specifier: ^2.1.7
  31. version: 2.3.1(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))
  32. qrcode:
  33. specifier: ^1.5.4
  34. version: 1.5.4
  35. vee-validate:
  36. specifier: ^4.15.1
  37. version: 4.15.1(vue@3.5.34(typescript@5.9.3))
  38. vue:
  39. specifier: ^3.4.0
  40. version: 3.5.34(typescript@5.9.3)
  41. vue-router:
  42. specifier: ^4.3.0
  43. version: 4.6.4(vue@3.5.34(typescript@5.9.3))
  44. zod:
  45. specifier: ^4.3.6
  46. version: 4.4.3
  47. devDependencies:
  48. '@types/qrcode':
  49. specifier: ^1.5.6
  50. version: 1.5.6
  51. '@vitejs/plugin-vue':
  52. specifier: ^5.0.0
  53. version: 5.2.4(vite@5.4.21(@types/node@25.6.2))(vue@3.5.34(typescript@5.9.3))
  54. typescript:
  55. specifier: ^5.3.0
  56. version: 5.9.3
  57. vite:
  58. specifier: ^5.1.0
  59. version: 5.4.21(@types/node@25.6.2)
  60. vue-tsc:
  61. specifier: ^2.0.0
  62. version: 2.2.12(typescript@5.9.3)
  63. packages:
  64. '@babel/helper-string-parser@7.27.1':
  65. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  66. engines: {node: '>=6.9.0'}
  67. '@babel/helper-validator-identifier@7.28.5':
  68. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  69. engines: {node: '>=6.9.0'}
  70. '@babel/parser@7.29.3':
  71. resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
  72. engines: {node: '>=6.0.0'}
  73. hasBin: true
  74. '@babel/types@7.29.0':
  75. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  76. engines: {node: '>=6.9.0'}
  77. '@esbuild/aix-ppc64@0.21.5':
  78. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  79. engines: {node: '>=12'}
  80. cpu: [ppc64]
  81. os: [aix]
  82. '@esbuild/android-arm64@0.21.5':
  83. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  84. engines: {node: '>=12'}
  85. cpu: [arm64]
  86. os: [android]
  87. '@esbuild/android-arm@0.21.5':
  88. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  89. engines: {node: '>=12'}
  90. cpu: [arm]
  91. os: [android]
  92. '@esbuild/android-x64@0.21.5':
  93. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  94. engines: {node: '>=12'}
  95. cpu: [x64]
  96. os: [android]
  97. '@esbuild/darwin-arm64@0.21.5':
  98. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  99. engines: {node: '>=12'}
  100. cpu: [arm64]
  101. os: [darwin]
  102. '@esbuild/darwin-x64@0.21.5':
  103. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  104. engines: {node: '>=12'}
  105. cpu: [x64]
  106. os: [darwin]
  107. '@esbuild/freebsd-arm64@0.21.5':
  108. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  109. engines: {node: '>=12'}
  110. cpu: [arm64]
  111. os: [freebsd]
  112. '@esbuild/freebsd-x64@0.21.5':
  113. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  114. engines: {node: '>=12'}
  115. cpu: [x64]
  116. os: [freebsd]
  117. '@esbuild/linux-arm64@0.21.5':
  118. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  119. engines: {node: '>=12'}
  120. cpu: [arm64]
  121. os: [linux]
  122. '@esbuild/linux-arm@0.21.5':
  123. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  124. engines: {node: '>=12'}
  125. cpu: [arm]
  126. os: [linux]
  127. '@esbuild/linux-ia32@0.21.5':
  128. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  129. engines: {node: '>=12'}
  130. cpu: [ia32]
  131. os: [linux]
  132. '@esbuild/linux-loong64@0.21.5':
  133. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  134. engines: {node: '>=12'}
  135. cpu: [loong64]
  136. os: [linux]
  137. '@esbuild/linux-mips64el@0.21.5':
  138. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  139. engines: {node: '>=12'}
  140. cpu: [mips64el]
  141. os: [linux]
  142. '@esbuild/linux-ppc64@0.21.5':
  143. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  144. engines: {node: '>=12'}
  145. cpu: [ppc64]
  146. os: [linux]
  147. '@esbuild/linux-riscv64@0.21.5':
  148. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  149. engines: {node: '>=12'}
  150. cpu: [riscv64]
  151. os: [linux]
  152. '@esbuild/linux-s390x@0.21.5':
  153. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  154. engines: {node: '>=12'}
  155. cpu: [s390x]
  156. os: [linux]
  157. '@esbuild/linux-x64@0.21.5':
  158. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  159. engines: {node: '>=12'}
  160. cpu: [x64]
  161. os: [linux]
  162. '@esbuild/netbsd-x64@0.21.5':
  163. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  164. engines: {node: '>=12'}
  165. cpu: [x64]
  166. os: [netbsd]
  167. '@esbuild/openbsd-x64@0.21.5':
  168. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  169. engines: {node: '>=12'}
  170. cpu: [x64]
  171. os: [openbsd]
  172. '@esbuild/sunos-x64@0.21.5':
  173. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  174. engines: {node: '>=12'}
  175. cpu: [x64]
  176. os: [sunos]
  177. '@esbuild/win32-arm64@0.21.5':
  178. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  179. engines: {node: '>=12'}
  180. cpu: [arm64]
  181. os: [win32]
  182. '@esbuild/win32-ia32@0.21.5':
  183. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  184. engines: {node: '>=12'}
  185. cpu: [ia32]
  186. os: [win32]
  187. '@esbuild/win32-x64@0.21.5':
  188. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  189. engines: {node: '>=12'}
  190. cpu: [x64]
  191. os: [win32]
  192. '@iconify/types@2.0.0':
  193. resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
  194. '@iconify/vue@5.0.1':
  195. resolution: {integrity: sha512-aumwwooJlFJ5H5qYWB6ZTAyM0C8hpfcSVLB9/a3qnH1GGvIJ+FEbpEs4s/HfErYe/M5qZeLjwmESR5fFm3lXEw==}
  196. peerDependencies:
  197. vue: '>=3.0.0'
  198. '@jridgewell/gen-mapping@0.3.13':
  199. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  200. '@jridgewell/remapping@2.3.5':
  201. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  202. '@jridgewell/resolve-uri@3.1.2':
  203. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  204. engines: {node: '>=6.0.0'}
  205. '@jridgewell/sourcemap-codec@1.5.5':
  206. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  207. '@jridgewell/trace-mapping@0.3.31':
  208. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  209. '@nuxt/kit@3.21.4':
  210. resolution: {integrity: sha512-XDWhQJsA5hpdFpVSmImQIVXcsANJI07TjT1LZC/AUKJxl/dcM52Rq4uU+b3uqyVl4LZR1fODSDEzLxcdXq4Rmg==}
  211. engines: {node: '>=18.12.0'}
  212. '@rollup/rollup-android-arm-eabi@4.60.3':
  213. resolution: {integrity: sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==}
  214. cpu: [arm]
  215. os: [android]
  216. '@rollup/rollup-android-arm64@4.60.3':
  217. resolution: {integrity: sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==}
  218. cpu: [arm64]
  219. os: [android]
  220. '@rollup/rollup-darwin-arm64@4.60.3':
  221. resolution: {integrity: sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==}
  222. cpu: [arm64]
  223. os: [darwin]
  224. '@rollup/rollup-darwin-x64@4.60.3':
  225. resolution: {integrity: sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==}
  226. cpu: [x64]
  227. os: [darwin]
  228. '@rollup/rollup-freebsd-arm64@4.60.3':
  229. resolution: {integrity: sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==}
  230. cpu: [arm64]
  231. os: [freebsd]
  232. '@rollup/rollup-freebsd-x64@4.60.3':
  233. resolution: {integrity: sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==}
  234. cpu: [x64]
  235. os: [freebsd]
  236. '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
  237. resolution: {integrity: sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==}
  238. cpu: [arm]
  239. os: [linux]
  240. libc: [glibc]
  241. '@rollup/rollup-linux-arm-musleabihf@4.60.3':
  242. resolution: {integrity: sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==}
  243. cpu: [arm]
  244. os: [linux]
  245. libc: [musl]
  246. '@rollup/rollup-linux-arm64-gnu@4.60.3':
  247. resolution: {integrity: sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==}
  248. cpu: [arm64]
  249. os: [linux]
  250. libc: [glibc]
  251. '@rollup/rollup-linux-arm64-musl@4.60.3':
  252. resolution: {integrity: sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==}
  253. cpu: [arm64]
  254. os: [linux]
  255. libc: [musl]
  256. '@rollup/rollup-linux-loong64-gnu@4.60.3':
  257. resolution: {integrity: sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==}
  258. cpu: [loong64]
  259. os: [linux]
  260. libc: [glibc]
  261. '@rollup/rollup-linux-loong64-musl@4.60.3':
  262. resolution: {integrity: sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==}
  263. cpu: [loong64]
  264. os: [linux]
  265. libc: [musl]
  266. '@rollup/rollup-linux-ppc64-gnu@4.60.3':
  267. resolution: {integrity: sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==}
  268. cpu: [ppc64]
  269. os: [linux]
  270. libc: [glibc]
  271. '@rollup/rollup-linux-ppc64-musl@4.60.3':
  272. resolution: {integrity: sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==}
  273. cpu: [ppc64]
  274. os: [linux]
  275. libc: [musl]
  276. '@rollup/rollup-linux-riscv64-gnu@4.60.3':
  277. resolution: {integrity: sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==}
  278. cpu: [riscv64]
  279. os: [linux]
  280. libc: [glibc]
  281. '@rollup/rollup-linux-riscv64-musl@4.60.3':
  282. resolution: {integrity: sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==}
  283. cpu: [riscv64]
  284. os: [linux]
  285. libc: [musl]
  286. '@rollup/rollup-linux-s390x-gnu@4.60.3':
  287. resolution: {integrity: sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==}
  288. cpu: [s390x]
  289. os: [linux]
  290. libc: [glibc]
  291. '@rollup/rollup-linux-x64-gnu@4.60.3':
  292. resolution: {integrity: sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==}
  293. cpu: [x64]
  294. os: [linux]
  295. libc: [glibc]
  296. '@rollup/rollup-linux-x64-musl@4.60.3':
  297. resolution: {integrity: sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==}
  298. cpu: [x64]
  299. os: [linux]
  300. libc: [musl]
  301. '@rollup/rollup-openbsd-x64@4.60.3':
  302. resolution: {integrity: sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==}
  303. cpu: [x64]
  304. os: [openbsd]
  305. '@rollup/rollup-openharmony-arm64@4.60.3':
  306. resolution: {integrity: sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==}
  307. cpu: [arm64]
  308. os: [openharmony]
  309. '@rollup/rollup-win32-arm64-msvc@4.60.3':
  310. resolution: {integrity: sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==}
  311. cpu: [arm64]
  312. os: [win32]
  313. '@rollup/rollup-win32-ia32-msvc@4.60.3':
  314. resolution: {integrity: sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==}
  315. cpu: [ia32]
  316. os: [win32]
  317. '@rollup/rollup-win32-x64-gnu@4.60.3':
  318. resolution: {integrity: sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==}
  319. cpu: [x64]
  320. os: [win32]
  321. '@rollup/rollup-win32-x64-msvc@4.60.3':
  322. resolution: {integrity: sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==}
  323. cpu: [x64]
  324. os: [win32]
  325. '@types/estree@1.0.8':
  326. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  327. '@types/estree@1.0.9':
  328. resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
  329. '@types/node@25.6.2':
  330. resolution: {integrity: sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw==}
  331. '@types/qrcode@1.5.6':
  332. resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
  333. '@types/web-bluetooth@0.0.21':
  334. resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
  335. '@vitejs/plugin-vue@5.2.4':
  336. resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
  337. engines: {node: ^18.0.0 || >=20.0.0}
  338. peerDependencies:
  339. vite: ^5.0.0 || ^6.0.0
  340. vue: ^3.2.25
  341. '@volar/language-core@2.4.15':
  342. resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
  343. '@volar/source-map@2.4.15':
  344. resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
  345. '@volar/typescript@2.4.15':
  346. resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
  347. '@vue/compiler-core@3.5.34':
  348. resolution: {integrity: sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==}
  349. '@vue/compiler-dom@3.5.34':
  350. resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==}
  351. '@vue/compiler-sfc@3.5.34':
  352. resolution: {integrity: sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==}
  353. '@vue/compiler-ssr@3.5.34':
  354. resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==}
  355. '@vue/compiler-vue2@2.7.16':
  356. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  357. '@vue/devtools-api@6.6.4':
  358. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  359. '@vue/devtools-api@7.7.9':
  360. resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
  361. '@vue/devtools-kit@7.7.9':
  362. resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
  363. '@vue/devtools-shared@7.7.9':
  364. resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
  365. '@vue/language-core@2.2.12':
  366. resolution: {integrity: sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==}
  367. peerDependencies:
  368. typescript: '*'
  369. peerDependenciesMeta:
  370. typescript:
  371. optional: true
  372. '@vue/reactivity@3.5.34':
  373. resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
  374. '@vue/runtime-core@3.5.34':
  375. resolution: {integrity: sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==}
  376. '@vue/runtime-dom@3.5.34':
  377. resolution: {integrity: sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==}
  378. '@vue/server-renderer@3.5.34':
  379. resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==}
  380. peerDependencies:
  381. vue: 3.5.34
  382. '@vue/shared@3.5.34':
  383. resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==}
  384. '@vueuse/core@13.9.0':
  385. resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
  386. peerDependencies:
  387. vue: ^3.5.0
  388. '@vueuse/core@14.3.0':
  389. resolution: {integrity: sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==}
  390. peerDependencies:
  391. vue: ^3.5.0
  392. '@vueuse/metadata@13.9.0':
  393. resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
  394. '@vueuse/metadata@14.3.0':
  395. resolution: {integrity: sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==}
  396. '@vueuse/motion@3.0.3':
  397. resolution: {integrity: sha512-4B+ITsxCI9cojikvrpaJcLXyq0spj3sdlzXjzesWdMRd99hhtFI6OJ/1JsqwtF73YooLe0hUn/xDR6qCtmn5GQ==}
  398. peerDependencies:
  399. vue: '>=3.0.0'
  400. '@vueuse/shared@13.9.0':
  401. resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
  402. peerDependencies:
  403. vue: ^3.5.0
  404. '@vueuse/shared@14.3.0':
  405. resolution: {integrity: sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==}
  406. peerDependencies:
  407. vue: ^3.5.0
  408. acorn@8.16.0:
  409. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  410. engines: {node: '>=0.4.0'}
  411. hasBin: true
  412. alien-signals@1.0.13:
  413. resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
  414. ansi-regex@5.0.1:
  415. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  416. engines: {node: '>=8'}
  417. ansi-styles@4.3.0:
  418. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  419. engines: {node: '>=8'}
  420. asynckit@0.4.0:
  421. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  422. axios@1.16.0:
  423. resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==}
  424. balanced-match@1.0.2:
  425. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  426. birpc@2.9.0:
  427. resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
  428. brace-expansion@2.1.0:
  429. resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
  430. c12@3.3.4:
  431. resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
  432. peerDependencies:
  433. magicast: '*'
  434. peerDependenciesMeta:
  435. magicast:
  436. optional: true
  437. call-bind-apply-helpers@1.0.2:
  438. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  439. engines: {node: '>= 0.4'}
  440. camelcase@5.3.1:
  441. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  442. engines: {node: '>=6'}
  443. chokidar@5.0.0:
  444. resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
  445. engines: {node: '>= 20.19.0'}
  446. citty@0.1.6:
  447. resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
  448. cliui@6.0.0:
  449. resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
  450. color-convert@2.0.1:
  451. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  452. engines: {node: '>=7.0.0'}
  453. color-name@1.1.4:
  454. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  455. combined-stream@1.0.8:
  456. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  457. engines: {node: '>= 0.8'}
  458. confbox@0.1.8:
  459. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  460. confbox@0.2.4:
  461. resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
  462. consola@3.4.2:
  463. resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
  464. engines: {node: ^14.18.0 || >=16.10.0}
  465. copy-anything@4.0.5:
  466. resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
  467. engines: {node: '>=18'}
  468. csstype@3.2.3:
  469. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  470. dayjs@1.11.20:
  471. resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
  472. de-indent@1.0.2:
  473. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  474. decamelize@1.2.0:
  475. resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
  476. engines: {node: '>=0.10.0'}
  477. defu@6.1.7:
  478. resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
  479. delayed-stream@1.0.0:
  480. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  481. engines: {node: '>=0.4.0'}
  482. destr@2.0.5:
  483. resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
  484. dijkstrajs@1.0.3:
  485. resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
  486. dotenv@17.4.2:
  487. resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
  488. engines: {node: '>=12'}
  489. dunder-proto@1.0.1:
  490. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  491. engines: {node: '>= 0.4'}
  492. emoji-regex@8.0.0:
  493. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  494. entities@7.0.1:
  495. resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
  496. engines: {node: '>=0.12'}
  497. errx@0.1.0:
  498. resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
  499. es-define-property@1.0.1:
  500. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  501. engines: {node: '>= 0.4'}
  502. es-errors@1.3.0:
  503. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  504. engines: {node: '>= 0.4'}
  505. es-object-atoms@1.1.1:
  506. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  507. engines: {node: '>= 0.4'}
  508. es-set-tostringtag@2.1.0:
  509. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  510. engines: {node: '>= 0.4'}
  511. esbuild@0.21.5:
  512. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  513. engines: {node: '>=12'}
  514. hasBin: true
  515. estree-walker@2.0.2:
  516. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  517. estree-walker@3.0.3:
  518. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  519. exsolve@1.0.8:
  520. resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
  521. fancy-canvas@2.1.0:
  522. resolution: {integrity: sha512-nifxXJ95JNLFR2NgRV4/MxVP45G9909wJTEKz5fg/TZS20JJZA6hfgRVh/bC9bwl2zBtBNcYPjiBE4njQHVBwQ==}
  523. fdir@6.5.0:
  524. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  525. engines: {node: '>=12.0.0'}
  526. peerDependencies:
  527. picomatch: ^3 || ^4
  528. peerDependenciesMeta:
  529. picomatch:
  530. optional: true
  531. find-up@4.1.0:
  532. resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
  533. engines: {node: '>=8'}
  534. follow-redirects@1.16.0:
  535. resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==}
  536. engines: {node: '>=4.0'}
  537. peerDependencies:
  538. debug: '*'
  539. peerDependenciesMeta:
  540. debug:
  541. optional: true
  542. form-data@4.0.5:
  543. resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
  544. engines: {node: '>= 6'}
  545. framesync@6.1.2:
  546. resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
  547. fsevents@2.3.3:
  548. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  549. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  550. os: [darwin]
  551. function-bind@1.1.2:
  552. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  553. get-caller-file@2.0.5:
  554. resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
  555. engines: {node: 6.* || 8.* || >= 10.*}
  556. get-intrinsic@1.3.0:
  557. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  558. engines: {node: '>= 0.4'}
  559. get-proto@1.0.1:
  560. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  561. engines: {node: '>= 0.4'}
  562. giget@3.2.0:
  563. resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
  564. hasBin: true
  565. gopd@1.2.0:
  566. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  567. engines: {node: '>= 0.4'}
  568. has-symbols@1.1.0:
  569. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  570. engines: {node: '>= 0.4'}
  571. has-tostringtag@1.0.2:
  572. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  573. engines: {node: '>= 0.4'}
  574. hasown@2.0.3:
  575. resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
  576. engines: {node: '>= 0.4'}
  577. he@1.2.0:
  578. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  579. hasBin: true
  580. hey-listen@1.0.8:
  581. resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
  582. hookable@5.5.3:
  583. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  584. ignore@7.0.5:
  585. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  586. engines: {node: '>= 4'}
  587. is-fullwidth-code-point@3.0.0:
  588. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  589. engines: {node: '>=8'}
  590. is-what@5.5.0:
  591. resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
  592. engines: {node: '>=18'}
  593. jiti@2.7.0:
  594. resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
  595. hasBin: true
  596. klinecharts@10.0.0-beta1:
  597. resolution: {integrity: sha512-5ZxFGjJeZqt9+q45lZDhApC3kdgrk51i27uSpIELgXJLNgfSc0anlb8XkU+52LVrBYnTv9dFr8/Q7lG81vIV1w==}
  598. klona@2.0.6:
  599. resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
  600. engines: {node: '>= 8'}
  601. knitwork@1.3.0:
  602. resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==}
  603. lightweight-charts@5.2.0:
  604. resolution: {integrity: sha512-ey3Vas8UhV06ni+LT9TA1nEe4y8So4Mi6CL/oarNHFMyTktz/xy8e8+oh04Q//eO3t6etvFXgayz2fClyFQb5w==}
  605. locate-path@5.0.0:
  606. resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
  607. engines: {node: '>=8'}
  608. magic-string@0.30.21:
  609. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  610. math-intrinsics@1.1.0:
  611. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  612. engines: {node: '>= 0.4'}
  613. mime-db@1.52.0:
  614. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  615. engines: {node: '>= 0.6'}
  616. mime-types@2.1.35:
  617. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  618. engines: {node: '>= 0.6'}
  619. minimatch@9.0.9:
  620. resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
  621. engines: {node: '>=16 || 14 >=14.17'}
  622. mitt@3.0.1:
  623. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  624. mlly@1.8.2:
  625. resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
  626. muggle-string@0.4.1:
  627. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  628. nanoid@3.3.12:
  629. resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
  630. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  631. hasBin: true
  632. ohash@2.0.11:
  633. resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
  634. p-limit@2.3.0:
  635. resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
  636. engines: {node: '>=6'}
  637. p-locate@4.1.0:
  638. resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
  639. engines: {node: '>=8'}
  640. p-try@2.2.0:
  641. resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
  642. engines: {node: '>=6'}
  643. path-browserify@1.0.1:
  644. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  645. path-exists@4.0.0:
  646. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  647. engines: {node: '>=8'}
  648. pathe@2.0.3:
  649. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  650. perfect-debounce@1.0.0:
  651. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  652. perfect-debounce@2.1.0:
  653. resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
  654. picocolors@1.1.1:
  655. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  656. picomatch@4.0.4:
  657. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  658. engines: {node: '>=12'}
  659. pinia@2.3.1:
  660. resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==}
  661. peerDependencies:
  662. typescript: '>=4.4.4'
  663. vue: ^2.7.0 || ^3.5.11
  664. peerDependenciesMeta:
  665. typescript:
  666. optional: true
  667. pkg-types@1.3.1:
  668. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  669. pkg-types@2.3.1:
  670. resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==}
  671. pngjs@5.0.0:
  672. resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
  673. engines: {node: '>=10.13.0'}
  674. popmotion@11.0.5:
  675. resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==}
  676. postcss@8.5.14:
  677. resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==}
  678. engines: {node: ^10 || ^12 || >=14}
  679. proxy-from-env@2.1.0:
  680. resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==}
  681. engines: {node: '>=10'}
  682. qrcode@1.5.4:
  683. resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
  684. engines: {node: '>=10.13.0'}
  685. hasBin: true
  686. rc9@3.0.1:
  687. resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
  688. readdirp@5.0.0:
  689. resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
  690. engines: {node: '>= 20.19.0'}
  691. require-directory@2.1.1:
  692. resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
  693. engines: {node: '>=0.10.0'}
  694. require-main-filename@2.0.0:
  695. resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
  696. rfdc@1.4.1:
  697. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  698. rollup@4.60.3:
  699. resolution: {integrity: sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==}
  700. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  701. hasBin: true
  702. scule@1.3.0:
  703. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  704. semver@7.7.4:
  705. resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
  706. engines: {node: '>=10'}
  707. hasBin: true
  708. set-blocking@2.0.0:
  709. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  710. source-map-js@1.2.1:
  711. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  712. engines: {node: '>=0.10.0'}
  713. speakingurl@14.0.1:
  714. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  715. engines: {node: '>=0.10.0'}
  716. string-width@4.2.3:
  717. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  718. engines: {node: '>=8'}
  719. strip-ansi@6.0.1:
  720. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  721. engines: {node: '>=8'}
  722. style-value-types@5.1.2:
  723. resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==}
  724. superjson@2.2.6:
  725. resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
  726. engines: {node: '>=16'}
  727. tinyglobby@0.2.16:
  728. resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
  729. engines: {node: '>=12.0.0'}
  730. tslib@2.4.0:
  731. resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
  732. type-fest@4.41.0:
  733. resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
  734. engines: {node: '>=16'}
  735. typescript@5.9.3:
  736. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  737. engines: {node: '>=14.17'}
  738. hasBin: true
  739. ufo@1.6.4:
  740. resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
  741. unctx@2.5.0:
  742. resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
  743. undici-types@7.19.2:
  744. resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
  745. unplugin@2.3.11:
  746. resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
  747. engines: {node: '>=18.12.0'}
  748. untyped@2.0.0:
  749. resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
  750. hasBin: true
  751. vee-validate@4.15.1:
  752. resolution: {integrity: sha512-DkFsiTwEKau8VIxyZBGdO6tOudD+QoUBPuHj3e6QFqmbfCRj1ArmYWue9lEp6jLSWBIw4XPlDLjFIZNLdRAMSg==}
  753. peerDependencies:
  754. vue: ^3.4.26
  755. vite@5.4.21:
  756. resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
  757. engines: {node: ^18.0.0 || >=20.0.0}
  758. hasBin: true
  759. peerDependencies:
  760. '@types/node': ^18.0.0 || >=20.0.0
  761. less: '*'
  762. lightningcss: ^1.21.0
  763. sass: '*'
  764. sass-embedded: '*'
  765. stylus: '*'
  766. sugarss: '*'
  767. terser: ^5.4.0
  768. peerDependenciesMeta:
  769. '@types/node':
  770. optional: true
  771. less:
  772. optional: true
  773. lightningcss:
  774. optional: true
  775. sass:
  776. optional: true
  777. sass-embedded:
  778. optional: true
  779. stylus:
  780. optional: true
  781. sugarss:
  782. optional: true
  783. terser:
  784. optional: true
  785. vscode-uri@3.1.0:
  786. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  787. vue-demi@0.14.10:
  788. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  789. engines: {node: '>=12'}
  790. hasBin: true
  791. peerDependencies:
  792. '@vue/composition-api': ^1.0.0-rc.1
  793. vue: ^3.0.0-0 || ^2.6.0
  794. peerDependenciesMeta:
  795. '@vue/composition-api':
  796. optional: true
  797. vue-router@4.6.4:
  798. resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
  799. peerDependencies:
  800. vue: ^3.5.0
  801. vue-tsc@2.2.12:
  802. resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==}
  803. hasBin: true
  804. peerDependencies:
  805. typescript: '>=5.0.0'
  806. vue@3.5.34:
  807. resolution: {integrity: sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==}
  808. peerDependencies:
  809. typescript: '*'
  810. peerDependenciesMeta:
  811. typescript:
  812. optional: true
  813. webpack-virtual-modules@0.6.2:
  814. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  815. which-module@2.0.1:
  816. resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
  817. wrap-ansi@6.2.0:
  818. resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
  819. engines: {node: '>=8'}
  820. y18n@4.0.3:
  821. resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
  822. yargs-parser@18.1.3:
  823. resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
  824. engines: {node: '>=6'}
  825. yargs@15.4.1:
  826. resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
  827. engines: {node: '>=8'}
  828. zod@4.4.3:
  829. resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
  830. snapshots:
  831. '@babel/helper-string-parser@7.27.1': {}
  832. '@babel/helper-validator-identifier@7.28.5': {}
  833. '@babel/parser@7.29.3':
  834. dependencies:
  835. '@babel/types': 7.29.0
  836. '@babel/types@7.29.0':
  837. dependencies:
  838. '@babel/helper-string-parser': 7.27.1
  839. '@babel/helper-validator-identifier': 7.28.5
  840. '@esbuild/aix-ppc64@0.21.5':
  841. optional: true
  842. '@esbuild/android-arm64@0.21.5':
  843. optional: true
  844. '@esbuild/android-arm@0.21.5':
  845. optional: true
  846. '@esbuild/android-x64@0.21.5':
  847. optional: true
  848. '@esbuild/darwin-arm64@0.21.5':
  849. optional: true
  850. '@esbuild/darwin-x64@0.21.5':
  851. optional: true
  852. '@esbuild/freebsd-arm64@0.21.5':
  853. optional: true
  854. '@esbuild/freebsd-x64@0.21.5':
  855. optional: true
  856. '@esbuild/linux-arm64@0.21.5':
  857. optional: true
  858. '@esbuild/linux-arm@0.21.5':
  859. optional: true
  860. '@esbuild/linux-ia32@0.21.5':
  861. optional: true
  862. '@esbuild/linux-loong64@0.21.5':
  863. optional: true
  864. '@esbuild/linux-mips64el@0.21.5':
  865. optional: true
  866. '@esbuild/linux-ppc64@0.21.5':
  867. optional: true
  868. '@esbuild/linux-riscv64@0.21.5':
  869. optional: true
  870. '@esbuild/linux-s390x@0.21.5':
  871. optional: true
  872. '@esbuild/linux-x64@0.21.5':
  873. optional: true
  874. '@esbuild/netbsd-x64@0.21.5':
  875. optional: true
  876. '@esbuild/openbsd-x64@0.21.5':
  877. optional: true
  878. '@esbuild/sunos-x64@0.21.5':
  879. optional: true
  880. '@esbuild/win32-arm64@0.21.5':
  881. optional: true
  882. '@esbuild/win32-ia32@0.21.5':
  883. optional: true
  884. '@esbuild/win32-x64@0.21.5':
  885. optional: true
  886. '@iconify/types@2.0.0': {}
  887. '@iconify/vue@5.0.1(vue@3.5.34(typescript@5.9.3))':
  888. dependencies:
  889. '@iconify/types': 2.0.0
  890. vue: 3.5.34(typescript@5.9.3)
  891. '@jridgewell/gen-mapping@0.3.13':
  892. dependencies:
  893. '@jridgewell/sourcemap-codec': 1.5.5
  894. '@jridgewell/trace-mapping': 0.3.31
  895. optional: true
  896. '@jridgewell/remapping@2.3.5':
  897. dependencies:
  898. '@jridgewell/gen-mapping': 0.3.13
  899. '@jridgewell/trace-mapping': 0.3.31
  900. optional: true
  901. '@jridgewell/resolve-uri@3.1.2':
  902. optional: true
  903. '@jridgewell/sourcemap-codec@1.5.5': {}
  904. '@jridgewell/trace-mapping@0.3.31':
  905. dependencies:
  906. '@jridgewell/resolve-uri': 3.1.2
  907. '@jridgewell/sourcemap-codec': 1.5.5
  908. optional: true
  909. '@nuxt/kit@3.21.4':
  910. dependencies:
  911. c12: 3.3.4
  912. consola: 3.4.2
  913. defu: 6.1.7
  914. destr: 2.0.5
  915. errx: 0.1.0
  916. exsolve: 1.0.8
  917. ignore: 7.0.5
  918. jiti: 2.7.0
  919. klona: 2.0.6
  920. knitwork: 1.3.0
  921. mlly: 1.8.2
  922. ohash: 2.0.11
  923. pathe: 2.0.3
  924. pkg-types: 2.3.1
  925. rc9: 3.0.1
  926. scule: 1.3.0
  927. semver: 7.7.4
  928. tinyglobby: 0.2.16
  929. ufo: 1.6.4
  930. unctx: 2.5.0
  931. untyped: 2.0.0
  932. transitivePeerDependencies:
  933. - magicast
  934. optional: true
  935. '@rollup/rollup-android-arm-eabi@4.60.3':
  936. optional: true
  937. '@rollup/rollup-android-arm64@4.60.3':
  938. optional: true
  939. '@rollup/rollup-darwin-arm64@4.60.3':
  940. optional: true
  941. '@rollup/rollup-darwin-x64@4.60.3':
  942. optional: true
  943. '@rollup/rollup-freebsd-arm64@4.60.3':
  944. optional: true
  945. '@rollup/rollup-freebsd-x64@4.60.3':
  946. optional: true
  947. '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
  948. optional: true
  949. '@rollup/rollup-linux-arm-musleabihf@4.60.3':
  950. optional: true
  951. '@rollup/rollup-linux-arm64-gnu@4.60.3':
  952. optional: true
  953. '@rollup/rollup-linux-arm64-musl@4.60.3':
  954. optional: true
  955. '@rollup/rollup-linux-loong64-gnu@4.60.3':
  956. optional: true
  957. '@rollup/rollup-linux-loong64-musl@4.60.3':
  958. optional: true
  959. '@rollup/rollup-linux-ppc64-gnu@4.60.3':
  960. optional: true
  961. '@rollup/rollup-linux-ppc64-musl@4.60.3':
  962. optional: true
  963. '@rollup/rollup-linux-riscv64-gnu@4.60.3':
  964. optional: true
  965. '@rollup/rollup-linux-riscv64-musl@4.60.3':
  966. optional: true
  967. '@rollup/rollup-linux-s390x-gnu@4.60.3':
  968. optional: true
  969. '@rollup/rollup-linux-x64-gnu@4.60.3':
  970. optional: true
  971. '@rollup/rollup-linux-x64-musl@4.60.3':
  972. optional: true
  973. '@rollup/rollup-openbsd-x64@4.60.3':
  974. optional: true
  975. '@rollup/rollup-openharmony-arm64@4.60.3':
  976. optional: true
  977. '@rollup/rollup-win32-arm64-msvc@4.60.3':
  978. optional: true
  979. '@rollup/rollup-win32-ia32-msvc@4.60.3':
  980. optional: true
  981. '@rollup/rollup-win32-x64-gnu@4.60.3':
  982. optional: true
  983. '@rollup/rollup-win32-x64-msvc@4.60.3':
  984. optional: true
  985. '@types/estree@1.0.8': {}
  986. '@types/estree@1.0.9':
  987. optional: true
  988. '@types/node@25.6.2':
  989. dependencies:
  990. undici-types: 7.19.2
  991. '@types/qrcode@1.5.6':
  992. dependencies:
  993. '@types/node': 25.6.2
  994. '@types/web-bluetooth@0.0.21': {}
  995. '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.6.2))(vue@3.5.34(typescript@5.9.3))':
  996. dependencies:
  997. vite: 5.4.21(@types/node@25.6.2)
  998. vue: 3.5.34(typescript@5.9.3)
  999. '@volar/language-core@2.4.15':
  1000. dependencies:
  1001. '@volar/source-map': 2.4.15
  1002. '@volar/source-map@2.4.15': {}
  1003. '@volar/typescript@2.4.15':
  1004. dependencies:
  1005. '@volar/language-core': 2.4.15
  1006. path-browserify: 1.0.1
  1007. vscode-uri: 3.1.0
  1008. '@vue/compiler-core@3.5.34':
  1009. dependencies:
  1010. '@babel/parser': 7.29.3
  1011. '@vue/shared': 3.5.34
  1012. entities: 7.0.1
  1013. estree-walker: 2.0.2
  1014. source-map-js: 1.2.1
  1015. '@vue/compiler-dom@3.5.34':
  1016. dependencies:
  1017. '@vue/compiler-core': 3.5.34
  1018. '@vue/shared': 3.5.34
  1019. '@vue/compiler-sfc@3.5.34':
  1020. dependencies:
  1021. '@babel/parser': 7.29.3
  1022. '@vue/compiler-core': 3.5.34
  1023. '@vue/compiler-dom': 3.5.34
  1024. '@vue/compiler-ssr': 3.5.34
  1025. '@vue/shared': 3.5.34
  1026. estree-walker: 2.0.2
  1027. magic-string: 0.30.21
  1028. postcss: 8.5.14
  1029. source-map-js: 1.2.1
  1030. '@vue/compiler-ssr@3.5.34':
  1031. dependencies:
  1032. '@vue/compiler-dom': 3.5.34
  1033. '@vue/shared': 3.5.34
  1034. '@vue/compiler-vue2@2.7.16':
  1035. dependencies:
  1036. de-indent: 1.0.2
  1037. he: 1.2.0
  1038. '@vue/devtools-api@6.6.4': {}
  1039. '@vue/devtools-api@7.7.9':
  1040. dependencies:
  1041. '@vue/devtools-kit': 7.7.9
  1042. '@vue/devtools-kit@7.7.9':
  1043. dependencies:
  1044. '@vue/devtools-shared': 7.7.9
  1045. birpc: 2.9.0
  1046. hookable: 5.5.3
  1047. mitt: 3.0.1
  1048. perfect-debounce: 1.0.0
  1049. speakingurl: 14.0.1
  1050. superjson: 2.2.6
  1051. '@vue/devtools-shared@7.7.9':
  1052. dependencies:
  1053. rfdc: 1.4.1
  1054. '@vue/language-core@2.2.12(typescript@5.9.3)':
  1055. dependencies:
  1056. '@volar/language-core': 2.4.15
  1057. '@vue/compiler-dom': 3.5.34
  1058. '@vue/compiler-vue2': 2.7.16
  1059. '@vue/shared': 3.5.34
  1060. alien-signals: 1.0.13
  1061. minimatch: 9.0.9
  1062. muggle-string: 0.4.1
  1063. path-browserify: 1.0.1
  1064. optionalDependencies:
  1065. typescript: 5.9.3
  1066. '@vue/reactivity@3.5.34':
  1067. dependencies:
  1068. '@vue/shared': 3.5.34
  1069. '@vue/runtime-core@3.5.34':
  1070. dependencies:
  1071. '@vue/reactivity': 3.5.34
  1072. '@vue/shared': 3.5.34
  1073. '@vue/runtime-dom@3.5.34':
  1074. dependencies:
  1075. '@vue/reactivity': 3.5.34
  1076. '@vue/runtime-core': 3.5.34
  1077. '@vue/shared': 3.5.34
  1078. csstype: 3.2.3
  1079. '@vue/server-renderer@3.5.34(vue@3.5.34(typescript@5.9.3))':
  1080. dependencies:
  1081. '@vue/compiler-ssr': 3.5.34
  1082. '@vue/shared': 3.5.34
  1083. vue: 3.5.34(typescript@5.9.3)
  1084. '@vue/shared@3.5.34': {}
  1085. '@vueuse/core@13.9.0(vue@3.5.34(typescript@5.9.3))':
  1086. dependencies:
  1087. '@types/web-bluetooth': 0.0.21
  1088. '@vueuse/metadata': 13.9.0
  1089. '@vueuse/shared': 13.9.0(vue@3.5.34(typescript@5.9.3))
  1090. vue: 3.5.34(typescript@5.9.3)
  1091. '@vueuse/core@14.3.0(vue@3.5.34(typescript@5.9.3))':
  1092. dependencies:
  1093. '@types/web-bluetooth': 0.0.21
  1094. '@vueuse/metadata': 14.3.0
  1095. '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@5.9.3))
  1096. vue: 3.5.34(typescript@5.9.3)
  1097. '@vueuse/metadata@13.9.0': {}
  1098. '@vueuse/metadata@14.3.0': {}
  1099. '@vueuse/motion@3.0.3(vue@3.5.34(typescript@5.9.3))':
  1100. dependencies:
  1101. '@vueuse/core': 13.9.0(vue@3.5.34(typescript@5.9.3))
  1102. '@vueuse/shared': 13.9.0(vue@3.5.34(typescript@5.9.3))
  1103. defu: 6.1.7
  1104. framesync: 6.1.2
  1105. popmotion: 11.0.5
  1106. style-value-types: 5.1.2
  1107. vue: 3.5.34(typescript@5.9.3)
  1108. optionalDependencies:
  1109. '@nuxt/kit': 3.21.4
  1110. transitivePeerDependencies:
  1111. - magicast
  1112. '@vueuse/shared@13.9.0(vue@3.5.34(typescript@5.9.3))':
  1113. dependencies:
  1114. vue: 3.5.34(typescript@5.9.3)
  1115. '@vueuse/shared@14.3.0(vue@3.5.34(typescript@5.9.3))':
  1116. dependencies:
  1117. vue: 3.5.34(typescript@5.9.3)
  1118. acorn@8.16.0:
  1119. optional: true
  1120. alien-signals@1.0.13: {}
  1121. ansi-regex@5.0.1: {}
  1122. ansi-styles@4.3.0:
  1123. dependencies:
  1124. color-convert: 2.0.1
  1125. asynckit@0.4.0: {}
  1126. axios@1.16.0:
  1127. dependencies:
  1128. follow-redirects: 1.16.0
  1129. form-data: 4.0.5
  1130. proxy-from-env: 2.1.0
  1131. transitivePeerDependencies:
  1132. - debug
  1133. balanced-match@1.0.2: {}
  1134. birpc@2.9.0: {}
  1135. brace-expansion@2.1.0:
  1136. dependencies:
  1137. balanced-match: 1.0.2
  1138. c12@3.3.4:
  1139. dependencies:
  1140. chokidar: 5.0.0
  1141. confbox: 0.2.4
  1142. defu: 6.1.7
  1143. dotenv: 17.4.2
  1144. exsolve: 1.0.8
  1145. giget: 3.2.0
  1146. jiti: 2.7.0
  1147. ohash: 2.0.11
  1148. pathe: 2.0.3
  1149. perfect-debounce: 2.1.0
  1150. pkg-types: 2.3.1
  1151. rc9: 3.0.1
  1152. optional: true
  1153. call-bind-apply-helpers@1.0.2:
  1154. dependencies:
  1155. es-errors: 1.3.0
  1156. function-bind: 1.1.2
  1157. camelcase@5.3.1: {}
  1158. chokidar@5.0.0:
  1159. dependencies:
  1160. readdirp: 5.0.0
  1161. optional: true
  1162. citty@0.1.6:
  1163. dependencies:
  1164. consola: 3.4.2
  1165. optional: true
  1166. cliui@6.0.0:
  1167. dependencies:
  1168. string-width: 4.2.3
  1169. strip-ansi: 6.0.1
  1170. wrap-ansi: 6.2.0
  1171. color-convert@2.0.1:
  1172. dependencies:
  1173. color-name: 1.1.4
  1174. color-name@1.1.4: {}
  1175. combined-stream@1.0.8:
  1176. dependencies:
  1177. delayed-stream: 1.0.0
  1178. confbox@0.1.8:
  1179. optional: true
  1180. confbox@0.2.4:
  1181. optional: true
  1182. consola@3.4.2:
  1183. optional: true
  1184. copy-anything@4.0.5:
  1185. dependencies:
  1186. is-what: 5.5.0
  1187. csstype@3.2.3: {}
  1188. dayjs@1.11.20: {}
  1189. de-indent@1.0.2: {}
  1190. decamelize@1.2.0: {}
  1191. defu@6.1.7: {}
  1192. delayed-stream@1.0.0: {}
  1193. destr@2.0.5:
  1194. optional: true
  1195. dijkstrajs@1.0.3: {}
  1196. dotenv@17.4.2:
  1197. optional: true
  1198. dunder-proto@1.0.1:
  1199. dependencies:
  1200. call-bind-apply-helpers: 1.0.2
  1201. es-errors: 1.3.0
  1202. gopd: 1.2.0
  1203. emoji-regex@8.0.0: {}
  1204. entities@7.0.1: {}
  1205. errx@0.1.0:
  1206. optional: true
  1207. es-define-property@1.0.1: {}
  1208. es-errors@1.3.0: {}
  1209. es-object-atoms@1.1.1:
  1210. dependencies:
  1211. es-errors: 1.3.0
  1212. es-set-tostringtag@2.1.0:
  1213. dependencies:
  1214. es-errors: 1.3.0
  1215. get-intrinsic: 1.3.0
  1216. has-tostringtag: 1.0.2
  1217. hasown: 2.0.3
  1218. esbuild@0.21.5:
  1219. optionalDependencies:
  1220. '@esbuild/aix-ppc64': 0.21.5
  1221. '@esbuild/android-arm': 0.21.5
  1222. '@esbuild/android-arm64': 0.21.5
  1223. '@esbuild/android-x64': 0.21.5
  1224. '@esbuild/darwin-arm64': 0.21.5
  1225. '@esbuild/darwin-x64': 0.21.5
  1226. '@esbuild/freebsd-arm64': 0.21.5
  1227. '@esbuild/freebsd-x64': 0.21.5
  1228. '@esbuild/linux-arm': 0.21.5
  1229. '@esbuild/linux-arm64': 0.21.5
  1230. '@esbuild/linux-ia32': 0.21.5
  1231. '@esbuild/linux-loong64': 0.21.5
  1232. '@esbuild/linux-mips64el': 0.21.5
  1233. '@esbuild/linux-ppc64': 0.21.5
  1234. '@esbuild/linux-riscv64': 0.21.5
  1235. '@esbuild/linux-s390x': 0.21.5
  1236. '@esbuild/linux-x64': 0.21.5
  1237. '@esbuild/netbsd-x64': 0.21.5
  1238. '@esbuild/openbsd-x64': 0.21.5
  1239. '@esbuild/sunos-x64': 0.21.5
  1240. '@esbuild/win32-arm64': 0.21.5
  1241. '@esbuild/win32-ia32': 0.21.5
  1242. '@esbuild/win32-x64': 0.21.5
  1243. estree-walker@2.0.2: {}
  1244. estree-walker@3.0.3:
  1245. dependencies:
  1246. '@types/estree': 1.0.9
  1247. optional: true
  1248. exsolve@1.0.8:
  1249. optional: true
  1250. fancy-canvas@2.1.0: {}
  1251. fdir@6.5.0(picomatch@4.0.4):
  1252. optionalDependencies:
  1253. picomatch: 4.0.4
  1254. optional: true
  1255. find-up@4.1.0:
  1256. dependencies:
  1257. locate-path: 5.0.0
  1258. path-exists: 4.0.0
  1259. follow-redirects@1.16.0: {}
  1260. form-data@4.0.5:
  1261. dependencies:
  1262. asynckit: 0.4.0
  1263. combined-stream: 1.0.8
  1264. es-set-tostringtag: 2.1.0
  1265. hasown: 2.0.3
  1266. mime-types: 2.1.35
  1267. framesync@6.1.2:
  1268. dependencies:
  1269. tslib: 2.4.0
  1270. fsevents@2.3.3:
  1271. optional: true
  1272. function-bind@1.1.2: {}
  1273. get-caller-file@2.0.5: {}
  1274. get-intrinsic@1.3.0:
  1275. dependencies:
  1276. call-bind-apply-helpers: 1.0.2
  1277. es-define-property: 1.0.1
  1278. es-errors: 1.3.0
  1279. es-object-atoms: 1.1.1
  1280. function-bind: 1.1.2
  1281. get-proto: 1.0.1
  1282. gopd: 1.2.0
  1283. has-symbols: 1.1.0
  1284. hasown: 2.0.3
  1285. math-intrinsics: 1.1.0
  1286. get-proto@1.0.1:
  1287. dependencies:
  1288. dunder-proto: 1.0.1
  1289. es-object-atoms: 1.1.1
  1290. giget@3.2.0:
  1291. optional: true
  1292. gopd@1.2.0: {}
  1293. has-symbols@1.1.0: {}
  1294. has-tostringtag@1.0.2:
  1295. dependencies:
  1296. has-symbols: 1.1.0
  1297. hasown@2.0.3:
  1298. dependencies:
  1299. function-bind: 1.1.2
  1300. he@1.2.0: {}
  1301. hey-listen@1.0.8: {}
  1302. hookable@5.5.3: {}
  1303. ignore@7.0.5:
  1304. optional: true
  1305. is-fullwidth-code-point@3.0.0: {}
  1306. is-what@5.5.0: {}
  1307. jiti@2.7.0:
  1308. optional: true
  1309. klinecharts@10.0.0-beta1: {}
  1310. klona@2.0.6:
  1311. optional: true
  1312. knitwork@1.3.0:
  1313. optional: true
  1314. lightweight-charts@5.2.0:
  1315. dependencies:
  1316. fancy-canvas: 2.1.0
  1317. locate-path@5.0.0:
  1318. dependencies:
  1319. p-locate: 4.1.0
  1320. magic-string@0.30.21:
  1321. dependencies:
  1322. '@jridgewell/sourcemap-codec': 1.5.5
  1323. math-intrinsics@1.1.0: {}
  1324. mime-db@1.52.0: {}
  1325. mime-types@2.1.35:
  1326. dependencies:
  1327. mime-db: 1.52.0
  1328. minimatch@9.0.9:
  1329. dependencies:
  1330. brace-expansion: 2.1.0
  1331. mitt@3.0.1: {}
  1332. mlly@1.8.2:
  1333. dependencies:
  1334. acorn: 8.16.0
  1335. pathe: 2.0.3
  1336. pkg-types: 1.3.1
  1337. ufo: 1.6.4
  1338. optional: true
  1339. muggle-string@0.4.1: {}
  1340. nanoid@3.3.12: {}
  1341. ohash@2.0.11:
  1342. optional: true
  1343. p-limit@2.3.0:
  1344. dependencies:
  1345. p-try: 2.2.0
  1346. p-locate@4.1.0:
  1347. dependencies:
  1348. p-limit: 2.3.0
  1349. p-try@2.2.0: {}
  1350. path-browserify@1.0.1: {}
  1351. path-exists@4.0.0: {}
  1352. pathe@2.0.3:
  1353. optional: true
  1354. perfect-debounce@1.0.0: {}
  1355. perfect-debounce@2.1.0:
  1356. optional: true
  1357. picocolors@1.1.1: {}
  1358. picomatch@4.0.4:
  1359. optional: true
  1360. pinia@2.3.1(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3)):
  1361. dependencies:
  1362. '@vue/devtools-api': 6.6.4
  1363. vue: 3.5.34(typescript@5.9.3)
  1364. vue-demi: 0.14.10(vue@3.5.34(typescript@5.9.3))
  1365. optionalDependencies:
  1366. typescript: 5.9.3
  1367. transitivePeerDependencies:
  1368. - '@vue/composition-api'
  1369. pkg-types@1.3.1:
  1370. dependencies:
  1371. confbox: 0.1.8
  1372. mlly: 1.8.2
  1373. pathe: 2.0.3
  1374. optional: true
  1375. pkg-types@2.3.1:
  1376. dependencies:
  1377. confbox: 0.2.4
  1378. exsolve: 1.0.8
  1379. pathe: 2.0.3
  1380. optional: true
  1381. pngjs@5.0.0: {}
  1382. popmotion@11.0.5:
  1383. dependencies:
  1384. framesync: 6.1.2
  1385. hey-listen: 1.0.8
  1386. style-value-types: 5.1.2
  1387. tslib: 2.4.0
  1388. postcss@8.5.14:
  1389. dependencies:
  1390. nanoid: 3.3.12
  1391. picocolors: 1.1.1
  1392. source-map-js: 1.2.1
  1393. proxy-from-env@2.1.0: {}
  1394. qrcode@1.5.4:
  1395. dependencies:
  1396. dijkstrajs: 1.0.3
  1397. pngjs: 5.0.0
  1398. yargs: 15.4.1
  1399. rc9@3.0.1:
  1400. dependencies:
  1401. defu: 6.1.7
  1402. destr: 2.0.5
  1403. optional: true
  1404. readdirp@5.0.0:
  1405. optional: true
  1406. require-directory@2.1.1: {}
  1407. require-main-filename@2.0.0: {}
  1408. rfdc@1.4.1: {}
  1409. rollup@4.60.3:
  1410. dependencies:
  1411. '@types/estree': 1.0.8
  1412. optionalDependencies:
  1413. '@rollup/rollup-android-arm-eabi': 4.60.3
  1414. '@rollup/rollup-android-arm64': 4.60.3
  1415. '@rollup/rollup-darwin-arm64': 4.60.3
  1416. '@rollup/rollup-darwin-x64': 4.60.3
  1417. '@rollup/rollup-freebsd-arm64': 4.60.3
  1418. '@rollup/rollup-freebsd-x64': 4.60.3
  1419. '@rollup/rollup-linux-arm-gnueabihf': 4.60.3
  1420. '@rollup/rollup-linux-arm-musleabihf': 4.60.3
  1421. '@rollup/rollup-linux-arm64-gnu': 4.60.3
  1422. '@rollup/rollup-linux-arm64-musl': 4.60.3
  1423. '@rollup/rollup-linux-loong64-gnu': 4.60.3
  1424. '@rollup/rollup-linux-loong64-musl': 4.60.3
  1425. '@rollup/rollup-linux-ppc64-gnu': 4.60.3
  1426. '@rollup/rollup-linux-ppc64-musl': 4.60.3
  1427. '@rollup/rollup-linux-riscv64-gnu': 4.60.3
  1428. '@rollup/rollup-linux-riscv64-musl': 4.60.3
  1429. '@rollup/rollup-linux-s390x-gnu': 4.60.3
  1430. '@rollup/rollup-linux-x64-gnu': 4.60.3
  1431. '@rollup/rollup-linux-x64-musl': 4.60.3
  1432. '@rollup/rollup-openbsd-x64': 4.60.3
  1433. '@rollup/rollup-openharmony-arm64': 4.60.3
  1434. '@rollup/rollup-win32-arm64-msvc': 4.60.3
  1435. '@rollup/rollup-win32-ia32-msvc': 4.60.3
  1436. '@rollup/rollup-win32-x64-gnu': 4.60.3
  1437. '@rollup/rollup-win32-x64-msvc': 4.60.3
  1438. fsevents: 2.3.3
  1439. scule@1.3.0:
  1440. optional: true
  1441. semver@7.7.4:
  1442. optional: true
  1443. set-blocking@2.0.0: {}
  1444. source-map-js@1.2.1: {}
  1445. speakingurl@14.0.1: {}
  1446. string-width@4.2.3:
  1447. dependencies:
  1448. emoji-regex: 8.0.0
  1449. is-fullwidth-code-point: 3.0.0
  1450. strip-ansi: 6.0.1
  1451. strip-ansi@6.0.1:
  1452. dependencies:
  1453. ansi-regex: 5.0.1
  1454. style-value-types@5.1.2:
  1455. dependencies:
  1456. hey-listen: 1.0.8
  1457. tslib: 2.4.0
  1458. superjson@2.2.6:
  1459. dependencies:
  1460. copy-anything: 4.0.5
  1461. tinyglobby@0.2.16:
  1462. dependencies:
  1463. fdir: 6.5.0(picomatch@4.0.4)
  1464. picomatch: 4.0.4
  1465. optional: true
  1466. tslib@2.4.0: {}
  1467. type-fest@4.41.0: {}
  1468. typescript@5.9.3: {}
  1469. ufo@1.6.4:
  1470. optional: true
  1471. unctx@2.5.0:
  1472. dependencies:
  1473. acorn: 8.16.0
  1474. estree-walker: 3.0.3
  1475. magic-string: 0.30.21
  1476. unplugin: 2.3.11
  1477. optional: true
  1478. undici-types@7.19.2: {}
  1479. unplugin@2.3.11:
  1480. dependencies:
  1481. '@jridgewell/remapping': 2.3.5
  1482. acorn: 8.16.0
  1483. picomatch: 4.0.4
  1484. webpack-virtual-modules: 0.6.2
  1485. optional: true
  1486. untyped@2.0.0:
  1487. dependencies:
  1488. citty: 0.1.6
  1489. defu: 6.1.7
  1490. jiti: 2.7.0
  1491. knitwork: 1.3.0
  1492. scule: 1.3.0
  1493. optional: true
  1494. vee-validate@4.15.1(vue@3.5.34(typescript@5.9.3)):
  1495. dependencies:
  1496. '@vue/devtools-api': 7.7.9
  1497. type-fest: 4.41.0
  1498. vue: 3.5.34(typescript@5.9.3)
  1499. vite@5.4.21(@types/node@25.6.2):
  1500. dependencies:
  1501. esbuild: 0.21.5
  1502. postcss: 8.5.14
  1503. rollup: 4.60.3
  1504. optionalDependencies:
  1505. '@types/node': 25.6.2
  1506. fsevents: 2.3.3
  1507. vscode-uri@3.1.0: {}
  1508. vue-demi@0.14.10(vue@3.5.34(typescript@5.9.3)):
  1509. dependencies:
  1510. vue: 3.5.34(typescript@5.9.3)
  1511. vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)):
  1512. dependencies:
  1513. '@vue/devtools-api': 6.6.4
  1514. vue: 3.5.34(typescript@5.9.3)
  1515. vue-tsc@2.2.12(typescript@5.9.3):
  1516. dependencies:
  1517. '@volar/typescript': 2.4.15
  1518. '@vue/language-core': 2.2.12(typescript@5.9.3)
  1519. typescript: 5.9.3
  1520. vue@3.5.34(typescript@5.9.3):
  1521. dependencies:
  1522. '@vue/compiler-dom': 3.5.34
  1523. '@vue/compiler-sfc': 3.5.34
  1524. '@vue/runtime-dom': 3.5.34
  1525. '@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@5.9.3))
  1526. '@vue/shared': 3.5.34
  1527. optionalDependencies:
  1528. typescript: 5.9.3
  1529. webpack-virtual-modules@0.6.2:
  1530. optional: true
  1531. which-module@2.0.1: {}
  1532. wrap-ansi@6.2.0:
  1533. dependencies:
  1534. ansi-styles: 4.3.0
  1535. string-width: 4.2.3
  1536. strip-ansi: 6.0.1
  1537. y18n@4.0.3: {}
  1538. yargs-parser@18.1.3:
  1539. dependencies:
  1540. camelcase: 5.3.1
  1541. decamelize: 1.2.0
  1542. yargs@15.4.1:
  1543. dependencies:
  1544. cliui: 6.0.0
  1545. decamelize: 1.2.0
  1546. find-up: 4.1.0
  1547. get-caller-file: 2.0.5
  1548. require-directory: 2.1.1
  1549. require-main-filename: 2.0.0
  1550. set-blocking: 2.0.0
  1551. string-width: 4.2.3
  1552. which-module: 2.0.1
  1553. y18n: 4.0.3
  1554. yargs-parser: 18.1.3
  1555. zod@4.4.3: {}