pnpm-lock.yaml 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@vueuse/core':
  9. specifier: ^14.2.1
  10. version: 14.2.1(vue@3.5.30(typescript@5.9.3))
  11. axios:
  12. specifier: ^1.13.6
  13. version: 1.13.6
  14. element-plus:
  15. specifier: ^2.13.5
  16. version: 2.13.5(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
  17. file-saver:
  18. specifier: ^2.0.5
  19. version: 2.0.5
  20. pinia:
  21. specifier: ^3.0.4
  22. version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
  23. vue:
  24. specifier: ^3.5.30
  25. version: 3.5.30(typescript@5.9.3)
  26. vue-router:
  27. specifier: ^5.0.3
  28. version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
  29. devDependencies:
  30. '@types/node':
  31. specifier: ^24.12.0
  32. version: 24.12.0
  33. '@vitejs/plugin-vue':
  34. specifier: ^6.0.5
  35. version: 6.0.5(vite@8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
  36. '@vue/tsconfig':
  37. specifier: ^0.9.0
  38. version: 0.9.0(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
  39. sass-embedded:
  40. specifier: ^1.98.0
  41. version: 1.98.0
  42. typescript:
  43. specifier: ~5.9.3
  44. version: 5.9.3
  45. unplugin-auto-import:
  46. specifier: ^21.0.0
  47. version: 21.0.0(@vueuse/core@14.2.1(vue@3.5.30(typescript@5.9.3)))
  48. unplugin-vue-components:
  49. specifier: ^31.0.0
  50. version: 31.0.0(vue@3.5.30(typescript@5.9.3))
  51. vite:
  52. specifier: ^8.0.0
  53. version: 8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2)
  54. vite-plugin-compression:
  55. specifier: ^0.5.1
  56. version: 0.5.1(vite@8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2))
  57. vue-tsc:
  58. specifier: ^3.2.5
  59. version: 3.2.5(typescript@5.9.3)
  60. packages:
  61. '@babel/generator@7.29.1':
  62. resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
  63. engines: {node: '>=6.9.0'}
  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.2':
  71. resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
  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. '@bufbuild/protobuf@2.11.0':
  78. resolution: {integrity: sha512-sBXGT13cpmPR5BMgHE6UEEfEaShh5Ror6rfN3yEK5si7QVrtZg8LEPQb0VVhiLRUslD2yLnXtnRzG035J/mZXQ==}
  79. '@ctrl/tinycolor@4.2.0':
  80. resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==}
  81. engines: {node: '>=14'}
  82. '@element-plus/icons-vue@2.3.2':
  83. resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
  84. peerDependencies:
  85. vue: ^3.2.0
  86. '@emnapi/core@1.9.0':
  87. resolution: {integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w==}
  88. '@emnapi/runtime@1.9.0':
  89. resolution: {integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==}
  90. '@emnapi/wasi-threads@1.2.0':
  91. resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
  92. '@floating-ui/core@1.7.5':
  93. resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
  94. '@floating-ui/dom@1.7.6':
  95. resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
  96. '@floating-ui/utils@0.2.11':
  97. resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
  98. '@jridgewell/gen-mapping@0.3.13':
  99. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  100. '@jridgewell/remapping@2.3.5':
  101. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  102. '@jridgewell/resolve-uri@3.1.2':
  103. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  104. engines: {node: '>=6.0.0'}
  105. '@jridgewell/sourcemap-codec@1.5.5':
  106. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  107. '@jridgewell/trace-mapping@0.3.31':
  108. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  109. '@napi-rs/wasm-runtime@1.1.1':
  110. resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
  111. '@oxc-project/runtime@0.115.0':
  112. resolution: {integrity: sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ==}
  113. engines: {node: ^20.19.0 || >=22.12.0}
  114. '@oxc-project/types@0.115.0':
  115. resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==}
  116. '@parcel/watcher-android-arm64@2.5.6':
  117. resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
  118. engines: {node: '>= 10.0.0'}
  119. cpu: [arm64]
  120. os: [android]
  121. '@parcel/watcher-darwin-arm64@2.5.6':
  122. resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==}
  123. engines: {node: '>= 10.0.0'}
  124. cpu: [arm64]
  125. os: [darwin]
  126. '@parcel/watcher-darwin-x64@2.5.6':
  127. resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==}
  128. engines: {node: '>= 10.0.0'}
  129. cpu: [x64]
  130. os: [darwin]
  131. '@parcel/watcher-freebsd-x64@2.5.6':
  132. resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==}
  133. engines: {node: '>= 10.0.0'}
  134. cpu: [x64]
  135. os: [freebsd]
  136. '@parcel/watcher-linux-arm-glibc@2.5.6':
  137. resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==}
  138. engines: {node: '>= 10.0.0'}
  139. cpu: [arm]
  140. os: [linux]
  141. libc: [glibc]
  142. '@parcel/watcher-linux-arm-musl@2.5.6':
  143. resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==}
  144. engines: {node: '>= 10.0.0'}
  145. cpu: [arm]
  146. os: [linux]
  147. libc: [musl]
  148. '@parcel/watcher-linux-arm64-glibc@2.5.6':
  149. resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==}
  150. engines: {node: '>= 10.0.0'}
  151. cpu: [arm64]
  152. os: [linux]
  153. libc: [glibc]
  154. '@parcel/watcher-linux-arm64-musl@2.5.6':
  155. resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==}
  156. engines: {node: '>= 10.0.0'}
  157. cpu: [arm64]
  158. os: [linux]
  159. libc: [musl]
  160. '@parcel/watcher-linux-x64-glibc@2.5.6':
  161. resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==}
  162. engines: {node: '>= 10.0.0'}
  163. cpu: [x64]
  164. os: [linux]
  165. libc: [glibc]
  166. '@parcel/watcher-linux-x64-musl@2.5.6':
  167. resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==}
  168. engines: {node: '>= 10.0.0'}
  169. cpu: [x64]
  170. os: [linux]
  171. libc: [musl]
  172. '@parcel/watcher-win32-arm64@2.5.6':
  173. resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==}
  174. engines: {node: '>= 10.0.0'}
  175. cpu: [arm64]
  176. os: [win32]
  177. '@parcel/watcher-win32-ia32@2.5.6':
  178. resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==}
  179. engines: {node: '>= 10.0.0'}
  180. cpu: [ia32]
  181. os: [win32]
  182. '@parcel/watcher-win32-x64@2.5.6':
  183. resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==}
  184. engines: {node: '>= 10.0.0'}
  185. cpu: [x64]
  186. os: [win32]
  187. '@parcel/watcher@2.5.6':
  188. resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
  189. engines: {node: '>= 10.0.0'}
  190. '@rolldown/binding-android-arm64@1.0.0-rc.9':
  191. resolution: {integrity: sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==}
  192. engines: {node: ^20.19.0 || >=22.12.0}
  193. cpu: [arm64]
  194. os: [android]
  195. '@rolldown/binding-darwin-arm64@1.0.0-rc.9':
  196. resolution: {integrity: sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==}
  197. engines: {node: ^20.19.0 || >=22.12.0}
  198. cpu: [arm64]
  199. os: [darwin]
  200. '@rolldown/binding-darwin-x64@1.0.0-rc.9':
  201. resolution: {integrity: sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==}
  202. engines: {node: ^20.19.0 || >=22.12.0}
  203. cpu: [x64]
  204. os: [darwin]
  205. '@rolldown/binding-freebsd-x64@1.0.0-rc.9':
  206. resolution: {integrity: sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==}
  207. engines: {node: ^20.19.0 || >=22.12.0}
  208. cpu: [x64]
  209. os: [freebsd]
  210. '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9':
  211. resolution: {integrity: sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==}
  212. engines: {node: ^20.19.0 || >=22.12.0}
  213. cpu: [arm]
  214. os: [linux]
  215. '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9':
  216. resolution: {integrity: sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==}
  217. engines: {node: ^20.19.0 || >=22.12.0}
  218. cpu: [arm64]
  219. os: [linux]
  220. libc: [glibc]
  221. '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9':
  222. resolution: {integrity: sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==}
  223. engines: {node: ^20.19.0 || >=22.12.0}
  224. cpu: [arm64]
  225. os: [linux]
  226. libc: [musl]
  227. '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9':
  228. resolution: {integrity: sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==}
  229. engines: {node: ^20.19.0 || >=22.12.0}
  230. cpu: [ppc64]
  231. os: [linux]
  232. libc: [glibc]
  233. '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9':
  234. resolution: {integrity: sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==}
  235. engines: {node: ^20.19.0 || >=22.12.0}
  236. cpu: [s390x]
  237. os: [linux]
  238. libc: [glibc]
  239. '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9':
  240. resolution: {integrity: sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==}
  241. engines: {node: ^20.19.0 || >=22.12.0}
  242. cpu: [x64]
  243. os: [linux]
  244. libc: [glibc]
  245. '@rolldown/binding-linux-x64-musl@1.0.0-rc.9':
  246. resolution: {integrity: sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==}
  247. engines: {node: ^20.19.0 || >=22.12.0}
  248. cpu: [x64]
  249. os: [linux]
  250. libc: [musl]
  251. '@rolldown/binding-openharmony-arm64@1.0.0-rc.9':
  252. resolution: {integrity: sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==}
  253. engines: {node: ^20.19.0 || >=22.12.0}
  254. cpu: [arm64]
  255. os: [openharmony]
  256. '@rolldown/binding-wasm32-wasi@1.0.0-rc.9':
  257. resolution: {integrity: sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==}
  258. engines: {node: '>=14.0.0'}
  259. cpu: [wasm32]
  260. '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9':
  261. resolution: {integrity: sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==}
  262. engines: {node: ^20.19.0 || >=22.12.0}
  263. cpu: [arm64]
  264. os: [win32]
  265. '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9':
  266. resolution: {integrity: sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==}
  267. engines: {node: ^20.19.0 || >=22.12.0}
  268. cpu: [x64]
  269. os: [win32]
  270. '@rolldown/pluginutils@1.0.0-rc.2':
  271. resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
  272. '@rolldown/pluginutils@1.0.0-rc.9':
  273. resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==}
  274. '@sxzz/popperjs-es@2.11.8':
  275. resolution: {integrity: sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==}
  276. '@tybys/wasm-util@0.10.1':
  277. resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
  278. '@types/estree@1.0.8':
  279. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  280. '@types/lodash-es@4.17.12':
  281. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  282. '@types/lodash@4.17.24':
  283. resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
  284. '@types/node@24.12.0':
  285. resolution: {integrity: sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==}
  286. '@types/web-bluetooth@0.0.20':
  287. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  288. '@types/web-bluetooth@0.0.21':
  289. resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
  290. '@vitejs/plugin-vue@6.0.5':
  291. resolution: {integrity: sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==}
  292. engines: {node: ^20.19.0 || >=22.12.0}
  293. peerDependencies:
  294. vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
  295. vue: ^3.2.25
  296. '@volar/language-core@2.4.28':
  297. resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
  298. '@volar/source-map@2.4.28':
  299. resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==}
  300. '@volar/typescript@2.4.28':
  301. resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
  302. '@vue-macros/common@3.1.2':
  303. resolution: {integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==}
  304. engines: {node: '>=20.19.0'}
  305. peerDependencies:
  306. vue: ^2.7.0 || ^3.2.25
  307. peerDependenciesMeta:
  308. vue:
  309. optional: true
  310. '@vue/compiler-core@3.5.30':
  311. resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
  312. '@vue/compiler-dom@3.5.30':
  313. resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
  314. '@vue/compiler-sfc@3.5.30':
  315. resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
  316. '@vue/compiler-ssr@3.5.30':
  317. resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
  318. '@vue/devtools-api@7.7.9':
  319. resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
  320. '@vue/devtools-api@8.1.0':
  321. resolution: {integrity: sha512-O44X57jjkLKbLEc4OgL/6fEPOOanRJU8kYpCE8qfKlV96RQZcdzrcLI5mxMuVRUeXhHKIHGhCpHacyCk0HyO4w==}
  322. '@vue/devtools-kit@7.7.9':
  323. resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
  324. '@vue/devtools-kit@8.1.0':
  325. resolution: {integrity: sha512-/NZlS4WtGIB54DA/z10gzk+n/V7zaqSzYZOVlg2CfdnpIKdB61bd7JDIMxf/zrtX41zod8E2/bbEBoW/d7x70Q==}
  326. '@vue/devtools-shared@7.7.9':
  327. resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
  328. '@vue/devtools-shared@8.1.0':
  329. resolution: {integrity: sha512-h8uCb4Qs8UT8VdTT5yjY6tOJ//qH7EpxToixR0xqejR55t5OdISIg7AJ7eBkhBs8iu1qG5gY3QQNN1DF1EelAA==}
  330. '@vue/language-core@3.2.5':
  331. resolution: {integrity: sha512-d3OIxN/+KRedeM5wQ6H6NIpwS3P5gC9nmyaHgBk+rO6dIsjY+tOh4UlPpiZbAh3YtLdCGEX4M16RmsBqPmJV+g==}
  332. '@vue/reactivity@3.5.30':
  333. resolution: {integrity: sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==}
  334. '@vue/runtime-core@3.5.30':
  335. resolution: {integrity: sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==}
  336. '@vue/runtime-dom@3.5.30':
  337. resolution: {integrity: sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==}
  338. '@vue/server-renderer@3.5.30':
  339. resolution: {integrity: sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==}
  340. peerDependencies:
  341. vue: 3.5.30
  342. '@vue/shared@3.5.30':
  343. resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
  344. '@vue/tsconfig@0.9.0':
  345. resolution: {integrity: sha512-RP+v9Cpbsk1ZVXltCHHkYBr7+624x6gcijJXVjIcsYk7JXqvIpRtMwU2ARLvWDhmy9ffdFYxhsfJnPztADBohQ==}
  346. peerDependencies:
  347. typescript: 5.x
  348. vue: ^3.4.0
  349. peerDependenciesMeta:
  350. typescript:
  351. optional: true
  352. vue:
  353. optional: true
  354. '@vueuse/core@12.0.0':
  355. resolution: {integrity: sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==}
  356. '@vueuse/core@14.2.1':
  357. resolution: {integrity: sha512-3vwDzV+GDUNpdegRY6kzpLm4Igptq+GA0QkJ3W61Iv27YWwW/ufSlOfgQIpN6FZRMG0mkaz4gglJRtq5SeJyIQ==}
  358. peerDependencies:
  359. vue: ^3.5.0
  360. '@vueuse/metadata@12.0.0':
  361. resolution: {integrity: sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==}
  362. '@vueuse/metadata@14.2.1':
  363. resolution: {integrity: sha512-1ButlVtj5Sb/HDtIy1HFr1VqCP4G6Ypqt5MAo0lCgjokrk2mvQKsK2uuy0vqu/Ks+sHfuHo0B9Y9jn9xKdjZsw==}
  364. '@vueuse/shared@12.0.0':
  365. resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==}
  366. '@vueuse/shared@14.2.1':
  367. resolution: {integrity: sha512-shTJncjV9JTI4oVNyF1FQonetYAiTBd+Qj7cY89SWbXSkx7gyhrgtEdF2ZAVWS1S3SHlaROO6F2IesJxQEkZBw==}
  368. peerDependencies:
  369. vue: ^3.5.0
  370. acorn@8.16.0:
  371. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  372. engines: {node: '>=0.4.0'}
  373. hasBin: true
  374. alien-signals@3.1.2:
  375. resolution: {integrity: sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==}
  376. ansi-styles@4.3.0:
  377. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  378. engines: {node: '>=8'}
  379. ast-kit@2.2.0:
  380. resolution: {integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==}
  381. engines: {node: '>=20.19.0'}
  382. ast-walker-scope@0.8.3:
  383. resolution: {integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==}
  384. engines: {node: '>=20.19.0'}
  385. async-validator@4.2.5:
  386. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  387. asynckit@0.4.0:
  388. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  389. axios@1.13.6:
  390. resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
  391. birpc@2.9.0:
  392. resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
  393. call-bind-apply-helpers@1.0.2:
  394. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  395. engines: {node: '>= 0.4'}
  396. chalk@4.1.2:
  397. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  398. engines: {node: '>=10'}
  399. chokidar@4.0.3:
  400. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  401. engines: {node: '>= 14.16.0'}
  402. chokidar@5.0.0:
  403. resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
  404. engines: {node: '>= 20.19.0'}
  405. color-convert@2.0.1:
  406. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  407. engines: {node: '>=7.0.0'}
  408. color-name@1.1.4:
  409. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  410. colorjs.io@0.5.2:
  411. resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==}
  412. combined-stream@1.0.8:
  413. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  414. engines: {node: '>= 0.8'}
  415. confbox@0.1.8:
  416. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  417. confbox@0.2.4:
  418. resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
  419. copy-anything@4.0.5:
  420. resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
  421. engines: {node: '>=18'}
  422. csstype@3.2.3:
  423. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  424. dayjs@1.11.20:
  425. resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
  426. debug@4.4.3:
  427. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  428. engines: {node: '>=6.0'}
  429. peerDependencies:
  430. supports-color: '*'
  431. peerDependenciesMeta:
  432. supports-color:
  433. optional: true
  434. delayed-stream@1.0.0:
  435. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  436. engines: {node: '>=0.4.0'}
  437. detect-libc@2.1.2:
  438. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  439. engines: {node: '>=8'}
  440. dunder-proto@1.0.1:
  441. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  442. engines: {node: '>= 0.4'}
  443. element-plus@2.13.5:
  444. resolution: {integrity: sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==}
  445. peerDependencies:
  446. vue: ^3.3.0
  447. entities@7.0.1:
  448. resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
  449. engines: {node: '>=0.12'}
  450. es-define-property@1.0.1:
  451. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  452. engines: {node: '>= 0.4'}
  453. es-errors@1.3.0:
  454. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  455. engines: {node: '>= 0.4'}
  456. es-object-atoms@1.1.1:
  457. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  458. engines: {node: '>= 0.4'}
  459. es-set-tostringtag@2.1.0:
  460. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  461. engines: {node: '>= 0.4'}
  462. escape-string-regexp@5.0.0:
  463. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  464. engines: {node: '>=12'}
  465. estree-walker@2.0.2:
  466. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  467. estree-walker@3.0.3:
  468. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  469. exsolve@1.0.8:
  470. resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
  471. fdir@6.5.0:
  472. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  473. engines: {node: '>=12.0.0'}
  474. peerDependencies:
  475. picomatch: ^3 || ^4
  476. peerDependenciesMeta:
  477. picomatch:
  478. optional: true
  479. file-saver@2.0.5:
  480. resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
  481. follow-redirects@1.15.11:
  482. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  483. engines: {node: '>=4.0'}
  484. peerDependencies:
  485. debug: '*'
  486. peerDependenciesMeta:
  487. debug:
  488. optional: true
  489. form-data@4.0.5:
  490. resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
  491. engines: {node: '>= 6'}
  492. fs-extra@10.1.0:
  493. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  494. engines: {node: '>=12'}
  495. fsevents@2.3.3:
  496. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  497. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  498. os: [darwin]
  499. function-bind@1.1.2:
  500. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  501. get-intrinsic@1.3.0:
  502. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  503. engines: {node: '>= 0.4'}
  504. get-proto@1.0.1:
  505. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  506. engines: {node: '>= 0.4'}
  507. gopd@1.2.0:
  508. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  509. engines: {node: '>= 0.4'}
  510. graceful-fs@4.2.11:
  511. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  512. has-flag@4.0.0:
  513. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  514. engines: {node: '>=8'}
  515. has-symbols@1.1.0:
  516. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  517. engines: {node: '>= 0.4'}
  518. has-tostringtag@1.0.2:
  519. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  520. engines: {node: '>= 0.4'}
  521. hasown@2.0.2:
  522. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  523. engines: {node: '>= 0.4'}
  524. hookable@5.5.3:
  525. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  526. immutable@5.1.5:
  527. resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==}
  528. is-extglob@2.1.1:
  529. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  530. engines: {node: '>=0.10.0'}
  531. is-glob@4.0.3:
  532. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  533. engines: {node: '>=0.10.0'}
  534. is-what@5.5.0:
  535. resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
  536. engines: {node: '>=18'}
  537. js-tokens@9.0.1:
  538. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  539. jsesc@3.1.0:
  540. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  541. engines: {node: '>=6'}
  542. hasBin: true
  543. json5@2.2.3:
  544. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  545. engines: {node: '>=6'}
  546. hasBin: true
  547. jsonfile@6.2.0:
  548. resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
  549. lightningcss-android-arm64@1.32.0:
  550. resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
  551. engines: {node: '>= 12.0.0'}
  552. cpu: [arm64]
  553. os: [android]
  554. lightningcss-darwin-arm64@1.32.0:
  555. resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
  556. engines: {node: '>= 12.0.0'}
  557. cpu: [arm64]
  558. os: [darwin]
  559. lightningcss-darwin-x64@1.32.0:
  560. resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
  561. engines: {node: '>= 12.0.0'}
  562. cpu: [x64]
  563. os: [darwin]
  564. lightningcss-freebsd-x64@1.32.0:
  565. resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
  566. engines: {node: '>= 12.0.0'}
  567. cpu: [x64]
  568. os: [freebsd]
  569. lightningcss-linux-arm-gnueabihf@1.32.0:
  570. resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
  571. engines: {node: '>= 12.0.0'}
  572. cpu: [arm]
  573. os: [linux]
  574. lightningcss-linux-arm64-gnu@1.32.0:
  575. resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
  576. engines: {node: '>= 12.0.0'}
  577. cpu: [arm64]
  578. os: [linux]
  579. libc: [glibc]
  580. lightningcss-linux-arm64-musl@1.32.0:
  581. resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
  582. engines: {node: '>= 12.0.0'}
  583. cpu: [arm64]
  584. os: [linux]
  585. libc: [musl]
  586. lightningcss-linux-x64-gnu@1.32.0:
  587. resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
  588. engines: {node: '>= 12.0.0'}
  589. cpu: [x64]
  590. os: [linux]
  591. libc: [glibc]
  592. lightningcss-linux-x64-musl@1.32.0:
  593. resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
  594. engines: {node: '>= 12.0.0'}
  595. cpu: [x64]
  596. os: [linux]
  597. libc: [musl]
  598. lightningcss-win32-arm64-msvc@1.32.0:
  599. resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
  600. engines: {node: '>= 12.0.0'}
  601. cpu: [arm64]
  602. os: [win32]
  603. lightningcss-win32-x64-msvc@1.32.0:
  604. resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
  605. engines: {node: '>= 12.0.0'}
  606. cpu: [x64]
  607. os: [win32]
  608. lightningcss@1.32.0:
  609. resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
  610. engines: {node: '>= 12.0.0'}
  611. local-pkg@1.1.2:
  612. resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
  613. engines: {node: '>=14'}
  614. lodash-es@4.17.23:
  615. resolution: {integrity: sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==}
  616. lodash-unified@1.0.3:
  617. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  618. peerDependencies:
  619. '@types/lodash-es': '*'
  620. lodash: '*'
  621. lodash-es: '*'
  622. lodash@4.17.23:
  623. resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
  624. magic-string-ast@1.0.3:
  625. resolution: {integrity: sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==}
  626. engines: {node: '>=20.19.0'}
  627. magic-string@0.30.21:
  628. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  629. math-intrinsics@1.1.0:
  630. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  631. engines: {node: '>= 0.4'}
  632. memoize-one@6.0.0:
  633. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  634. mime-db@1.52.0:
  635. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  636. engines: {node: '>= 0.6'}
  637. mime-types@2.1.35:
  638. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  639. engines: {node: '>= 0.6'}
  640. mitt@3.0.1:
  641. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  642. mlly@1.8.1:
  643. resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
  644. ms@2.1.3:
  645. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  646. muggle-string@0.4.1:
  647. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  648. nanoid@3.3.11:
  649. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  650. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  651. hasBin: true
  652. node-addon-api@7.1.1:
  653. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  654. normalize-wheel-es@1.2.0:
  655. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  656. obug@2.1.1:
  657. resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
  658. path-browserify@1.0.1:
  659. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  660. pathe@2.0.3:
  661. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  662. perfect-debounce@1.0.0:
  663. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  664. perfect-debounce@2.1.0:
  665. resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
  666. picocolors@1.1.1:
  667. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  668. picomatch@4.0.3:
  669. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  670. engines: {node: '>=12'}
  671. pinia@3.0.4:
  672. resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==}
  673. peerDependencies:
  674. typescript: '>=4.5.0'
  675. vue: ^3.5.11
  676. peerDependenciesMeta:
  677. typescript:
  678. optional: true
  679. pkg-types@1.3.1:
  680. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  681. pkg-types@2.3.0:
  682. resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==}
  683. postcss@8.5.8:
  684. resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
  685. engines: {node: ^10 || ^12 || >=14}
  686. proxy-from-env@1.1.0:
  687. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  688. quansync@0.2.11:
  689. resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
  690. readdirp@4.1.2:
  691. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  692. engines: {node: '>= 14.18.0'}
  693. readdirp@5.0.0:
  694. resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
  695. engines: {node: '>= 20.19.0'}
  696. rfdc@1.4.1:
  697. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  698. rolldown@1.0.0-rc.9:
  699. resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==}
  700. engines: {node: ^20.19.0 || >=22.12.0}
  701. hasBin: true
  702. rxjs@7.8.2:
  703. resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
  704. sass-embedded-all-unknown@1.98.0:
  705. resolution: {integrity: sha512-6n4RyK7/1mhdfYvpP3CClS3fGoYqDvRmLClCESS6I7+SAzqjxvGG6u5Fo+cb1nrPNbbilgbM4QKdgcgWHO9NCA==}
  706. cpu: ['!arm', '!arm64', '!riscv64', '!x64']
  707. sass-embedded-android-arm64@1.98.0:
  708. resolution: {integrity: sha512-M9Ra98A6vYJHpwhoC/5EuH1eOshQ9ZyNwC8XifUDSbRl/cGeQceT1NReR9wFj3L7s1pIbmes1vMmaY2np0uAKQ==}
  709. engines: {node: '>=14.0.0'}
  710. cpu: [arm64]
  711. os: [android]
  712. sass-embedded-android-arm@1.98.0:
  713. resolution: {integrity: sha512-LjGiMhHgu7VL1n7EJxTCre1x14bUsWd9d3dnkS2rku003IWOI/fxc7OXgaKagoVzok1kv09rzO3vFXJR5ZeONQ==}
  714. engines: {node: '>=14.0.0'}
  715. cpu: [arm]
  716. os: [android]
  717. sass-embedded-android-riscv64@1.98.0:
  718. resolution: {integrity: sha512-WPe+0NbaJIZE1fq/RfCZANMeIgmy83x4f+SvFOG7LhUthHpZWcOcrPTsCKKmN3xMT3iw+4DXvqTYOCYGRL3hcQ==}
  719. engines: {node: '>=14.0.0'}
  720. cpu: [riscv64]
  721. os: [android]
  722. sass-embedded-android-x64@1.98.0:
  723. resolution: {integrity: sha512-zrD25dT7OHPEgLWuPEByybnIfx4rnCtfge4clBgjZdZ3lF6E7qNLRBtSBmoFflh6Vg0RlEjJo5VlpnTMBM5MQQ==}
  724. engines: {node: '>=14.0.0'}
  725. cpu: [x64]
  726. os: [android]
  727. sass-embedded-darwin-arm64@1.98.0:
  728. resolution: {integrity: sha512-cgr1z9rBnCdMf8K+JabIaYd9Rag2OJi5mjq08XJfbJGMZV/TA6hFJCLGkr5/+ZOn4/geTM5/3aSfQ8z5EIJAOg==}
  729. engines: {node: '>=14.0.0'}
  730. cpu: [arm64]
  731. os: [darwin]
  732. sass-embedded-darwin-x64@1.98.0:
  733. resolution: {integrity: sha512-OLBOCs/NPeiMqTdOrMFbVHBQFj19GS3bSVSxIhcCq16ZyhouUkYJEZjxQgzv9SWA2q6Ki8GCqp4k6jMeUY9dcA==}
  734. engines: {node: '>=14.0.0'}
  735. cpu: [x64]
  736. os: [darwin]
  737. sass-embedded-linux-arm64@1.98.0:
  738. resolution: {integrity: sha512-axOE3t2MTBwCtkUCbrdM++Gj0gC0fdHJPrgzQ+q1WUmY9NoNMGqflBtk5mBZaWUeha2qYO3FawxCB8lctFwCtw==}
  739. engines: {node: '>=14.0.0'}
  740. cpu: [arm64]
  741. os: [linux]
  742. libc: glibc
  743. sass-embedded-linux-arm@1.98.0:
  744. resolution: {integrity: sha512-03baQZCxVyEp8v1NWBRlzGYrmVT/LK7ZrHlF1piscGiGxwfdxoLXVuxsylx3qn/dD/4i/rh7Bzk7reK1br9jvQ==}
  745. engines: {node: '>=14.0.0'}
  746. cpu: [arm]
  747. os: [linux]
  748. libc: glibc
  749. sass-embedded-linux-musl-arm64@1.98.0:
  750. resolution: {integrity: sha512-LeqNxQA8y4opjhe68CcFvMzCSrBuJqYVFbwElEj9bagHXQHTp9xVPJRn6VcrC+0VLEDq13HVXMv7RslIuU0zmA==}
  751. engines: {node: '>=14.0.0'}
  752. cpu: [arm64]
  753. os: [linux]
  754. libc: musl
  755. sass-embedded-linux-musl-arm@1.98.0:
  756. resolution: {integrity: sha512-OBkjTDPYR4hSaueOGIM6FDpl9nt/VZwbSRpbNu9/eEJcxE8G/vynRugW8KRZmCFjPy8j/jkGBvvS+k9iOqKV3g==}
  757. engines: {node: '>=14.0.0'}
  758. cpu: [arm]
  759. os: [linux]
  760. libc: musl
  761. sass-embedded-linux-musl-riscv64@1.98.0:
  762. resolution: {integrity: sha512-7w6hSuOHKt8FZsmjRb3iGSxEzM87fO9+M8nt5JIQYMhHTj5C+JY/vcske0v715HCVj5e1xyTnbGXf8FcASeAIw==}
  763. engines: {node: '>=14.0.0'}
  764. cpu: [riscv64]
  765. os: [linux]
  766. libc: musl
  767. sass-embedded-linux-musl-x64@1.98.0:
  768. resolution: {integrity: sha512-QikNyDEJOVqPmxyCFkci8ZdCwEssdItfjQFJB+D+Uy5HFqcS5Lv3d3GxWNX/h1dSb23RPyQdQc267ok5SbEyJw==}
  769. engines: {node: '>=14.0.0'}
  770. cpu: [x64]
  771. os: [linux]
  772. libc: musl
  773. sass-embedded-linux-riscv64@1.98.0:
  774. resolution: {integrity: sha512-E7fNytc/v4xFBQKzgzBddV/jretA4ULAPO6XmtBiQu4zZBdBozuSxsQLe2+XXeb0X4S2GIl72V7IPABdqke/vA==}
  775. engines: {node: '>=14.0.0'}
  776. cpu: [riscv64]
  777. os: [linux]
  778. libc: glibc
  779. sass-embedded-linux-x64@1.98.0:
  780. resolution: {integrity: sha512-VsvP0t/uw00mMNPv3vwyYKUrFbqzxQHnRMO+bHdAMjvLw4NFf6mscpym9Bzf+NXwi1ZNKnB6DtXjmcpcvqFqYg==}
  781. engines: {node: '>=14.0.0'}
  782. cpu: [x64]
  783. os: [linux]
  784. libc: glibc
  785. sass-embedded-unknown-all@1.98.0:
  786. resolution: {integrity: sha512-C4MMzcAo3oEDQnW7L8SBgB9F2Fq5qHPnaYTZRMOH3Mp/7kM4OooBInXpCiiFjLnjY95hzP4KyctVx0uYR6MYlQ==}
  787. os: ['!android', '!darwin', '!linux', '!win32']
  788. sass-embedded-win32-arm64@1.98.0:
  789. resolution: {integrity: sha512-nP/10xbAiPbhQkMr3zQfXE4TuOxPzWRQe1Hgbi90jv2R4TbzbqQTuZVOaJf7KOAN4L2Bo6XCTRjK5XkVnwZuwQ==}
  790. engines: {node: '>=14.0.0'}
  791. cpu: [arm64]
  792. os: [win32]
  793. sass-embedded-win32-x64@1.98.0:
  794. resolution: {integrity: sha512-/lbrVsfbcbdZQ5SJCWcV0NVPd6YRs+FtAnfedp4WbCkO/ZO7Zt/58MvI4X2BVpRY/Nt5ZBo1/7v2gYcQ+J4svQ==}
  795. engines: {node: '>=14.0.0'}
  796. cpu: [x64]
  797. os: [win32]
  798. sass-embedded@1.98.0:
  799. resolution: {integrity: sha512-Do7u6iRb6K+lrllcTkB1BXcHwOxcKe3rEfOF/GcCLE2w3WpddakRAosJOHFUR37DpsvimQXEt5abs3NzUjEIqg==}
  800. engines: {node: '>=16.0.0'}
  801. hasBin: true
  802. sass@1.98.0:
  803. resolution: {integrity: sha512-+4N/u9dZ4PrgzGgPlKnaaRQx64RO0JBKs9sDhQ2pLgN6JQZ25uPQZKQYaBJU48Kd5BxgXoJ4e09Dq7nMcOUW3A==}
  804. engines: {node: '>=14.0.0'}
  805. hasBin: true
  806. scule@1.3.0:
  807. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  808. source-map-js@1.2.1:
  809. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  810. engines: {node: '>=0.10.0'}
  811. speakingurl@14.0.1:
  812. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  813. engines: {node: '>=0.10.0'}
  814. strip-literal@3.1.0:
  815. resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
  816. superjson@2.2.6:
  817. resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
  818. engines: {node: '>=16'}
  819. supports-color@7.2.0:
  820. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  821. engines: {node: '>=8'}
  822. supports-color@8.1.1:
  823. resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
  824. engines: {node: '>=10'}
  825. sync-child-process@1.0.2:
  826. resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==}
  827. engines: {node: '>=16.0.0'}
  828. sync-message-port@1.2.0:
  829. resolution: {integrity: sha512-gAQ9qrUN/UCypHtGFbbe7Rc/f9bzO88IwrG8TDo/aMKAApKyD6E3W4Cm0EfhfBb6Z6SKt59tTCTfD+n1xmAvMg==}
  830. engines: {node: '>=16.0.0'}
  831. tinyglobby@0.2.15:
  832. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  833. engines: {node: '>=12.0.0'}
  834. tslib@2.8.1:
  835. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  836. typescript@5.9.3:
  837. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  838. engines: {node: '>=14.17'}
  839. hasBin: true
  840. ufo@1.6.3:
  841. resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
  842. undici-types@7.16.0:
  843. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  844. unimport@5.7.0:
  845. resolution: {integrity: sha512-njnL6sp8lEA8QQbZrt+52p/g4X0rw3bnGGmUcJnt1jeG8+iiqO779aGz0PirCtydAIVcuTBRlJ52F0u46z309Q==}
  846. engines: {node: '>=18.12.0'}
  847. universalify@2.0.1:
  848. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  849. engines: {node: '>= 10.0.0'}
  850. unplugin-auto-import@21.0.0:
  851. resolution: {integrity: sha512-vWuC8SwqJmxZFYwPojhOhOXDb5xFhNNcEVb9K/RFkyk/3VnfaOjzitWN7v+8DEKpMjSsY2AEGXNgt6I0yQrhRQ==}
  852. engines: {node: '>=20.19.0'}
  853. peerDependencies:
  854. '@nuxt/kit': ^4.0.0
  855. '@vueuse/core': '*'
  856. peerDependenciesMeta:
  857. '@nuxt/kit':
  858. optional: true
  859. '@vueuse/core':
  860. optional: true
  861. unplugin-utils@0.3.1:
  862. resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==}
  863. engines: {node: '>=20.19.0'}
  864. unplugin-vue-components@31.0.0:
  865. resolution: {integrity: sha512-4ULwfTZTLuWJ7+S9P7TrcStYLsSRkk6vy2jt/WTfgUEUb0nW9//xxmrfhyHUEVpZ2UKRRwfRb8Yy15PDbVZf+Q==}
  866. engines: {node: '>=20.19.0'}
  867. peerDependencies:
  868. '@nuxt/kit': ^3.2.2 || ^4.0.0
  869. vue: ^3.0.0
  870. peerDependenciesMeta:
  871. '@nuxt/kit':
  872. optional: true
  873. unplugin@2.3.11:
  874. resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
  875. engines: {node: '>=18.12.0'}
  876. unplugin@3.0.0:
  877. resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==}
  878. engines: {node: ^20.19.0 || >=22.12.0}
  879. varint@6.0.0:
  880. resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
  881. vite-plugin-compression@0.5.1:
  882. resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==}
  883. peerDependencies:
  884. vite: '>=2.0.0'
  885. vite@8.0.0:
  886. resolution: {integrity: sha512-fPGaRNj9Zytaf8LEiBhY7Z6ijnFKdzU/+mL8EFBaKr7Vw1/FWcTBAMW0wLPJAGMPX38ZPVCVgLceWiEqeoqL2Q==}
  887. engines: {node: ^20.19.0 || >=22.12.0}
  888. hasBin: true
  889. peerDependencies:
  890. '@types/node': ^20.19.0 || >=22.12.0
  891. '@vitejs/devtools': ^0.0.0-alpha.31
  892. esbuild: ^0.27.0
  893. jiti: '>=1.21.0'
  894. less: ^4.0.0
  895. sass: ^1.70.0
  896. sass-embedded: ^1.70.0
  897. stylus: '>=0.54.8'
  898. sugarss: ^5.0.0
  899. terser: ^5.16.0
  900. tsx: ^4.8.1
  901. yaml: ^2.4.2
  902. peerDependenciesMeta:
  903. '@types/node':
  904. optional: true
  905. '@vitejs/devtools':
  906. optional: true
  907. esbuild:
  908. optional: true
  909. jiti:
  910. optional: true
  911. less:
  912. optional: true
  913. sass:
  914. optional: true
  915. sass-embedded:
  916. optional: true
  917. stylus:
  918. optional: true
  919. sugarss:
  920. optional: true
  921. terser:
  922. optional: true
  923. tsx:
  924. optional: true
  925. yaml:
  926. optional: true
  927. vscode-uri@3.1.0:
  928. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  929. vue-router@5.0.3:
  930. resolution: {integrity: sha512-nG1c7aAFac7NYj8Hluo68WyWfc41xkEjaR0ViLHCa3oDvTQ/nIuLJlXJX1NUPw/DXzx/8+OKMng045HHQKQKWw==}
  931. peerDependencies:
  932. '@pinia/colada': '>=0.21.2'
  933. '@vue/compiler-sfc': ^3.5.17
  934. pinia: ^3.0.4
  935. vue: ^3.5.0
  936. peerDependenciesMeta:
  937. '@pinia/colada':
  938. optional: true
  939. '@vue/compiler-sfc':
  940. optional: true
  941. pinia:
  942. optional: true
  943. vue-tsc@3.2.5:
  944. resolution: {integrity: sha512-/htfTCMluQ+P2FISGAooul8kO4JMheOTCbCy4M6dYnYYjqLe3BExZudAua6MSIKSFYQtFOYAll7XobYwcpokGA==}
  945. hasBin: true
  946. peerDependencies:
  947. typescript: '>=5.0.0'
  948. vue@3.5.30:
  949. resolution: {integrity: sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==}
  950. peerDependencies:
  951. typescript: '*'
  952. peerDependenciesMeta:
  953. typescript:
  954. optional: true
  955. webpack-virtual-modules@0.6.2:
  956. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  957. yaml@2.8.2:
  958. resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
  959. engines: {node: '>= 14.6'}
  960. hasBin: true
  961. snapshots:
  962. '@babel/generator@7.29.1':
  963. dependencies:
  964. '@babel/parser': 7.29.2
  965. '@babel/types': 7.29.0
  966. '@jridgewell/gen-mapping': 0.3.13
  967. '@jridgewell/trace-mapping': 0.3.31
  968. jsesc: 3.1.0
  969. '@babel/helper-string-parser@7.27.1': {}
  970. '@babel/helper-validator-identifier@7.28.5': {}
  971. '@babel/parser@7.29.2':
  972. dependencies:
  973. '@babel/types': 7.29.0
  974. '@babel/types@7.29.0':
  975. dependencies:
  976. '@babel/helper-string-parser': 7.27.1
  977. '@babel/helper-validator-identifier': 7.28.5
  978. '@bufbuild/protobuf@2.11.0': {}
  979. '@ctrl/tinycolor@4.2.0': {}
  980. '@element-plus/icons-vue@2.3.2(vue@3.5.30(typescript@5.9.3))':
  981. dependencies:
  982. vue: 3.5.30(typescript@5.9.3)
  983. '@emnapi/core@1.9.0':
  984. dependencies:
  985. '@emnapi/wasi-threads': 1.2.0
  986. tslib: 2.8.1
  987. optional: true
  988. '@emnapi/runtime@1.9.0':
  989. dependencies:
  990. tslib: 2.8.1
  991. optional: true
  992. '@emnapi/wasi-threads@1.2.0':
  993. dependencies:
  994. tslib: 2.8.1
  995. optional: true
  996. '@floating-ui/core@1.7.5':
  997. dependencies:
  998. '@floating-ui/utils': 0.2.11
  999. '@floating-ui/dom@1.7.6':
  1000. dependencies:
  1001. '@floating-ui/core': 1.7.5
  1002. '@floating-ui/utils': 0.2.11
  1003. '@floating-ui/utils@0.2.11': {}
  1004. '@jridgewell/gen-mapping@0.3.13':
  1005. dependencies:
  1006. '@jridgewell/sourcemap-codec': 1.5.5
  1007. '@jridgewell/trace-mapping': 0.3.31
  1008. '@jridgewell/remapping@2.3.5':
  1009. dependencies:
  1010. '@jridgewell/gen-mapping': 0.3.13
  1011. '@jridgewell/trace-mapping': 0.3.31
  1012. '@jridgewell/resolve-uri@3.1.2': {}
  1013. '@jridgewell/sourcemap-codec@1.5.5': {}
  1014. '@jridgewell/trace-mapping@0.3.31':
  1015. dependencies:
  1016. '@jridgewell/resolve-uri': 3.1.2
  1017. '@jridgewell/sourcemap-codec': 1.5.5
  1018. '@napi-rs/wasm-runtime@1.1.1':
  1019. dependencies:
  1020. '@emnapi/core': 1.9.0
  1021. '@emnapi/runtime': 1.9.0
  1022. '@tybys/wasm-util': 0.10.1
  1023. optional: true
  1024. '@oxc-project/runtime@0.115.0': {}
  1025. '@oxc-project/types@0.115.0': {}
  1026. '@parcel/watcher-android-arm64@2.5.6':
  1027. optional: true
  1028. '@parcel/watcher-darwin-arm64@2.5.6':
  1029. optional: true
  1030. '@parcel/watcher-darwin-x64@2.5.6':
  1031. optional: true
  1032. '@parcel/watcher-freebsd-x64@2.5.6':
  1033. optional: true
  1034. '@parcel/watcher-linux-arm-glibc@2.5.6':
  1035. optional: true
  1036. '@parcel/watcher-linux-arm-musl@2.5.6':
  1037. optional: true
  1038. '@parcel/watcher-linux-arm64-glibc@2.5.6':
  1039. optional: true
  1040. '@parcel/watcher-linux-arm64-musl@2.5.6':
  1041. optional: true
  1042. '@parcel/watcher-linux-x64-glibc@2.5.6':
  1043. optional: true
  1044. '@parcel/watcher-linux-x64-musl@2.5.6':
  1045. optional: true
  1046. '@parcel/watcher-win32-arm64@2.5.6':
  1047. optional: true
  1048. '@parcel/watcher-win32-ia32@2.5.6':
  1049. optional: true
  1050. '@parcel/watcher-win32-x64@2.5.6':
  1051. optional: true
  1052. '@parcel/watcher@2.5.6':
  1053. dependencies:
  1054. detect-libc: 2.1.2
  1055. is-glob: 4.0.3
  1056. node-addon-api: 7.1.1
  1057. picomatch: 4.0.3
  1058. optionalDependencies:
  1059. '@parcel/watcher-android-arm64': 2.5.6
  1060. '@parcel/watcher-darwin-arm64': 2.5.6
  1061. '@parcel/watcher-darwin-x64': 2.5.6
  1062. '@parcel/watcher-freebsd-x64': 2.5.6
  1063. '@parcel/watcher-linux-arm-glibc': 2.5.6
  1064. '@parcel/watcher-linux-arm-musl': 2.5.6
  1065. '@parcel/watcher-linux-arm64-glibc': 2.5.6
  1066. '@parcel/watcher-linux-arm64-musl': 2.5.6
  1067. '@parcel/watcher-linux-x64-glibc': 2.5.6
  1068. '@parcel/watcher-linux-x64-musl': 2.5.6
  1069. '@parcel/watcher-win32-arm64': 2.5.6
  1070. '@parcel/watcher-win32-ia32': 2.5.6
  1071. '@parcel/watcher-win32-x64': 2.5.6
  1072. optional: true
  1073. '@rolldown/binding-android-arm64@1.0.0-rc.9':
  1074. optional: true
  1075. '@rolldown/binding-darwin-arm64@1.0.0-rc.9':
  1076. optional: true
  1077. '@rolldown/binding-darwin-x64@1.0.0-rc.9':
  1078. optional: true
  1079. '@rolldown/binding-freebsd-x64@1.0.0-rc.9':
  1080. optional: true
  1081. '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9':
  1082. optional: true
  1083. '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9':
  1084. optional: true
  1085. '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9':
  1086. optional: true
  1087. '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9':
  1088. optional: true
  1089. '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9':
  1090. optional: true
  1091. '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9':
  1092. optional: true
  1093. '@rolldown/binding-linux-x64-musl@1.0.0-rc.9':
  1094. optional: true
  1095. '@rolldown/binding-openharmony-arm64@1.0.0-rc.9':
  1096. optional: true
  1097. '@rolldown/binding-wasm32-wasi@1.0.0-rc.9':
  1098. dependencies:
  1099. '@napi-rs/wasm-runtime': 1.1.1
  1100. optional: true
  1101. '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9':
  1102. optional: true
  1103. '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9':
  1104. optional: true
  1105. '@rolldown/pluginutils@1.0.0-rc.2': {}
  1106. '@rolldown/pluginutils@1.0.0-rc.9': {}
  1107. '@sxzz/popperjs-es@2.11.8': {}
  1108. '@tybys/wasm-util@0.10.1':
  1109. dependencies:
  1110. tslib: 2.8.1
  1111. optional: true
  1112. '@types/estree@1.0.8': {}
  1113. '@types/lodash-es@4.17.12':
  1114. dependencies:
  1115. '@types/lodash': 4.17.24
  1116. '@types/lodash@4.17.24': {}
  1117. '@types/node@24.12.0':
  1118. dependencies:
  1119. undici-types: 7.16.0
  1120. '@types/web-bluetooth@0.0.20': {}
  1121. '@types/web-bluetooth@0.0.21': {}
  1122. '@vitejs/plugin-vue@6.0.5(vite@8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))':
  1123. dependencies:
  1124. '@rolldown/pluginutils': 1.0.0-rc.2
  1125. vite: 8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2)
  1126. vue: 3.5.30(typescript@5.9.3)
  1127. '@volar/language-core@2.4.28':
  1128. dependencies:
  1129. '@volar/source-map': 2.4.28
  1130. '@volar/source-map@2.4.28': {}
  1131. '@volar/typescript@2.4.28':
  1132. dependencies:
  1133. '@volar/language-core': 2.4.28
  1134. path-browserify: 1.0.1
  1135. vscode-uri: 3.1.0
  1136. '@vue-macros/common@3.1.2(vue@3.5.30(typescript@5.9.3))':
  1137. dependencies:
  1138. '@vue/compiler-sfc': 3.5.30
  1139. ast-kit: 2.2.0
  1140. local-pkg: 1.1.2
  1141. magic-string-ast: 1.0.3
  1142. unplugin-utils: 0.3.1
  1143. optionalDependencies:
  1144. vue: 3.5.30(typescript@5.9.3)
  1145. '@vue/compiler-core@3.5.30':
  1146. dependencies:
  1147. '@babel/parser': 7.29.2
  1148. '@vue/shared': 3.5.30
  1149. entities: 7.0.1
  1150. estree-walker: 2.0.2
  1151. source-map-js: 1.2.1
  1152. '@vue/compiler-dom@3.5.30':
  1153. dependencies:
  1154. '@vue/compiler-core': 3.5.30
  1155. '@vue/shared': 3.5.30
  1156. '@vue/compiler-sfc@3.5.30':
  1157. dependencies:
  1158. '@babel/parser': 7.29.2
  1159. '@vue/compiler-core': 3.5.30
  1160. '@vue/compiler-dom': 3.5.30
  1161. '@vue/compiler-ssr': 3.5.30
  1162. '@vue/shared': 3.5.30
  1163. estree-walker: 2.0.2
  1164. magic-string: 0.30.21
  1165. postcss: 8.5.8
  1166. source-map-js: 1.2.1
  1167. '@vue/compiler-ssr@3.5.30':
  1168. dependencies:
  1169. '@vue/compiler-dom': 3.5.30
  1170. '@vue/shared': 3.5.30
  1171. '@vue/devtools-api@7.7.9':
  1172. dependencies:
  1173. '@vue/devtools-kit': 7.7.9
  1174. '@vue/devtools-api@8.1.0':
  1175. dependencies:
  1176. '@vue/devtools-kit': 8.1.0
  1177. '@vue/devtools-kit@7.7.9':
  1178. dependencies:
  1179. '@vue/devtools-shared': 7.7.9
  1180. birpc: 2.9.0
  1181. hookable: 5.5.3
  1182. mitt: 3.0.1
  1183. perfect-debounce: 1.0.0
  1184. speakingurl: 14.0.1
  1185. superjson: 2.2.6
  1186. '@vue/devtools-kit@8.1.0':
  1187. dependencies:
  1188. '@vue/devtools-shared': 8.1.0
  1189. birpc: 2.9.0
  1190. hookable: 5.5.3
  1191. perfect-debounce: 2.1.0
  1192. '@vue/devtools-shared@7.7.9':
  1193. dependencies:
  1194. rfdc: 1.4.1
  1195. '@vue/devtools-shared@8.1.0': {}
  1196. '@vue/language-core@3.2.5':
  1197. dependencies:
  1198. '@volar/language-core': 2.4.28
  1199. '@vue/compiler-dom': 3.5.30
  1200. '@vue/shared': 3.5.30
  1201. alien-signals: 3.1.2
  1202. muggle-string: 0.4.1
  1203. path-browserify: 1.0.1
  1204. picomatch: 4.0.3
  1205. '@vue/reactivity@3.5.30':
  1206. dependencies:
  1207. '@vue/shared': 3.5.30
  1208. '@vue/runtime-core@3.5.30':
  1209. dependencies:
  1210. '@vue/reactivity': 3.5.30
  1211. '@vue/shared': 3.5.30
  1212. '@vue/runtime-dom@3.5.30':
  1213. dependencies:
  1214. '@vue/reactivity': 3.5.30
  1215. '@vue/runtime-core': 3.5.30
  1216. '@vue/shared': 3.5.30
  1217. csstype: 3.2.3
  1218. '@vue/server-renderer@3.5.30(vue@3.5.30(typescript@5.9.3))':
  1219. dependencies:
  1220. '@vue/compiler-ssr': 3.5.30
  1221. '@vue/shared': 3.5.30
  1222. vue: 3.5.30(typescript@5.9.3)
  1223. '@vue/shared@3.5.30': {}
  1224. '@vue/tsconfig@0.9.0(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))':
  1225. optionalDependencies:
  1226. typescript: 5.9.3
  1227. vue: 3.5.30(typescript@5.9.3)
  1228. '@vueuse/core@12.0.0(typescript@5.9.3)':
  1229. dependencies:
  1230. '@types/web-bluetooth': 0.0.20
  1231. '@vueuse/metadata': 12.0.0
  1232. '@vueuse/shared': 12.0.0(typescript@5.9.3)
  1233. vue: 3.5.30(typescript@5.9.3)
  1234. transitivePeerDependencies:
  1235. - typescript
  1236. '@vueuse/core@14.2.1(vue@3.5.30(typescript@5.9.3))':
  1237. dependencies:
  1238. '@types/web-bluetooth': 0.0.21
  1239. '@vueuse/metadata': 14.2.1
  1240. '@vueuse/shared': 14.2.1(vue@3.5.30(typescript@5.9.3))
  1241. vue: 3.5.30(typescript@5.9.3)
  1242. '@vueuse/metadata@12.0.0': {}
  1243. '@vueuse/metadata@14.2.1': {}
  1244. '@vueuse/shared@12.0.0(typescript@5.9.3)':
  1245. dependencies:
  1246. vue: 3.5.30(typescript@5.9.3)
  1247. transitivePeerDependencies:
  1248. - typescript
  1249. '@vueuse/shared@14.2.1(vue@3.5.30(typescript@5.9.3))':
  1250. dependencies:
  1251. vue: 3.5.30(typescript@5.9.3)
  1252. acorn@8.16.0: {}
  1253. alien-signals@3.1.2: {}
  1254. ansi-styles@4.3.0:
  1255. dependencies:
  1256. color-convert: 2.0.1
  1257. ast-kit@2.2.0:
  1258. dependencies:
  1259. '@babel/parser': 7.29.2
  1260. pathe: 2.0.3
  1261. ast-walker-scope@0.8.3:
  1262. dependencies:
  1263. '@babel/parser': 7.29.2
  1264. ast-kit: 2.2.0
  1265. async-validator@4.2.5: {}
  1266. asynckit@0.4.0: {}
  1267. axios@1.13.6:
  1268. dependencies:
  1269. follow-redirects: 1.15.11
  1270. form-data: 4.0.5
  1271. proxy-from-env: 1.1.0
  1272. transitivePeerDependencies:
  1273. - debug
  1274. birpc@2.9.0: {}
  1275. call-bind-apply-helpers@1.0.2:
  1276. dependencies:
  1277. es-errors: 1.3.0
  1278. function-bind: 1.1.2
  1279. chalk@4.1.2:
  1280. dependencies:
  1281. ansi-styles: 4.3.0
  1282. supports-color: 7.2.0
  1283. chokidar@4.0.3:
  1284. dependencies:
  1285. readdirp: 4.1.2
  1286. optional: true
  1287. chokidar@5.0.0:
  1288. dependencies:
  1289. readdirp: 5.0.0
  1290. color-convert@2.0.1:
  1291. dependencies:
  1292. color-name: 1.1.4
  1293. color-name@1.1.4: {}
  1294. colorjs.io@0.5.2: {}
  1295. combined-stream@1.0.8:
  1296. dependencies:
  1297. delayed-stream: 1.0.0
  1298. confbox@0.1.8: {}
  1299. confbox@0.2.4: {}
  1300. copy-anything@4.0.5:
  1301. dependencies:
  1302. is-what: 5.5.0
  1303. csstype@3.2.3: {}
  1304. dayjs@1.11.20: {}
  1305. debug@4.4.3:
  1306. dependencies:
  1307. ms: 2.1.3
  1308. delayed-stream@1.0.0: {}
  1309. detect-libc@2.1.2: {}
  1310. dunder-proto@1.0.1:
  1311. dependencies:
  1312. call-bind-apply-helpers: 1.0.2
  1313. es-errors: 1.3.0
  1314. gopd: 1.2.0
  1315. element-plus@2.13.5(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)):
  1316. dependencies:
  1317. '@ctrl/tinycolor': 4.2.0
  1318. '@element-plus/icons-vue': 2.3.2(vue@3.5.30(typescript@5.9.3))
  1319. '@floating-ui/dom': 1.7.6
  1320. '@popperjs/core': '@sxzz/popperjs-es@2.11.8'
  1321. '@types/lodash': 4.17.24
  1322. '@types/lodash-es': 4.17.12
  1323. '@vueuse/core': 12.0.0(typescript@5.9.3)
  1324. async-validator: 4.2.5
  1325. dayjs: 1.11.20
  1326. lodash: 4.17.23
  1327. lodash-es: 4.17.23
  1328. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.23)(lodash@4.17.23)
  1329. memoize-one: 6.0.0
  1330. normalize-wheel-es: 1.2.0
  1331. vue: 3.5.30(typescript@5.9.3)
  1332. transitivePeerDependencies:
  1333. - typescript
  1334. entities@7.0.1: {}
  1335. es-define-property@1.0.1: {}
  1336. es-errors@1.3.0: {}
  1337. es-object-atoms@1.1.1:
  1338. dependencies:
  1339. es-errors: 1.3.0
  1340. es-set-tostringtag@2.1.0:
  1341. dependencies:
  1342. es-errors: 1.3.0
  1343. get-intrinsic: 1.3.0
  1344. has-tostringtag: 1.0.2
  1345. hasown: 2.0.2
  1346. escape-string-regexp@5.0.0: {}
  1347. estree-walker@2.0.2: {}
  1348. estree-walker@3.0.3:
  1349. dependencies:
  1350. '@types/estree': 1.0.8
  1351. exsolve@1.0.8: {}
  1352. fdir@6.5.0(picomatch@4.0.3):
  1353. optionalDependencies:
  1354. picomatch: 4.0.3
  1355. file-saver@2.0.5: {}
  1356. follow-redirects@1.15.11: {}
  1357. form-data@4.0.5:
  1358. dependencies:
  1359. asynckit: 0.4.0
  1360. combined-stream: 1.0.8
  1361. es-set-tostringtag: 2.1.0
  1362. hasown: 2.0.2
  1363. mime-types: 2.1.35
  1364. fs-extra@10.1.0:
  1365. dependencies:
  1366. graceful-fs: 4.2.11
  1367. jsonfile: 6.2.0
  1368. universalify: 2.0.1
  1369. fsevents@2.3.3:
  1370. optional: true
  1371. function-bind@1.1.2: {}
  1372. get-intrinsic@1.3.0:
  1373. dependencies:
  1374. call-bind-apply-helpers: 1.0.2
  1375. es-define-property: 1.0.1
  1376. es-errors: 1.3.0
  1377. es-object-atoms: 1.1.1
  1378. function-bind: 1.1.2
  1379. get-proto: 1.0.1
  1380. gopd: 1.2.0
  1381. has-symbols: 1.1.0
  1382. hasown: 2.0.2
  1383. math-intrinsics: 1.1.0
  1384. get-proto@1.0.1:
  1385. dependencies:
  1386. dunder-proto: 1.0.1
  1387. es-object-atoms: 1.1.1
  1388. gopd@1.2.0: {}
  1389. graceful-fs@4.2.11: {}
  1390. has-flag@4.0.0: {}
  1391. has-symbols@1.1.0: {}
  1392. has-tostringtag@1.0.2:
  1393. dependencies:
  1394. has-symbols: 1.1.0
  1395. hasown@2.0.2:
  1396. dependencies:
  1397. function-bind: 1.1.2
  1398. hookable@5.5.3: {}
  1399. immutable@5.1.5: {}
  1400. is-extglob@2.1.1:
  1401. optional: true
  1402. is-glob@4.0.3:
  1403. dependencies:
  1404. is-extglob: 2.1.1
  1405. optional: true
  1406. is-what@5.5.0: {}
  1407. js-tokens@9.0.1: {}
  1408. jsesc@3.1.0: {}
  1409. json5@2.2.3: {}
  1410. jsonfile@6.2.0:
  1411. dependencies:
  1412. universalify: 2.0.1
  1413. optionalDependencies:
  1414. graceful-fs: 4.2.11
  1415. lightningcss-android-arm64@1.32.0:
  1416. optional: true
  1417. lightningcss-darwin-arm64@1.32.0:
  1418. optional: true
  1419. lightningcss-darwin-x64@1.32.0:
  1420. optional: true
  1421. lightningcss-freebsd-x64@1.32.0:
  1422. optional: true
  1423. lightningcss-linux-arm-gnueabihf@1.32.0:
  1424. optional: true
  1425. lightningcss-linux-arm64-gnu@1.32.0:
  1426. optional: true
  1427. lightningcss-linux-arm64-musl@1.32.0:
  1428. optional: true
  1429. lightningcss-linux-x64-gnu@1.32.0:
  1430. optional: true
  1431. lightningcss-linux-x64-musl@1.32.0:
  1432. optional: true
  1433. lightningcss-win32-arm64-msvc@1.32.0:
  1434. optional: true
  1435. lightningcss-win32-x64-msvc@1.32.0:
  1436. optional: true
  1437. lightningcss@1.32.0:
  1438. dependencies:
  1439. detect-libc: 2.1.2
  1440. optionalDependencies:
  1441. lightningcss-android-arm64: 1.32.0
  1442. lightningcss-darwin-arm64: 1.32.0
  1443. lightningcss-darwin-x64: 1.32.0
  1444. lightningcss-freebsd-x64: 1.32.0
  1445. lightningcss-linux-arm-gnueabihf: 1.32.0
  1446. lightningcss-linux-arm64-gnu: 1.32.0
  1447. lightningcss-linux-arm64-musl: 1.32.0
  1448. lightningcss-linux-x64-gnu: 1.32.0
  1449. lightningcss-linux-x64-musl: 1.32.0
  1450. lightningcss-win32-arm64-msvc: 1.32.0
  1451. lightningcss-win32-x64-msvc: 1.32.0
  1452. local-pkg@1.1.2:
  1453. dependencies:
  1454. mlly: 1.8.1
  1455. pkg-types: 2.3.0
  1456. quansync: 0.2.11
  1457. lodash-es@4.17.23: {}
  1458. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.23)(lodash@4.17.23):
  1459. dependencies:
  1460. '@types/lodash-es': 4.17.12
  1461. lodash: 4.17.23
  1462. lodash-es: 4.17.23
  1463. lodash@4.17.23: {}
  1464. magic-string-ast@1.0.3:
  1465. dependencies:
  1466. magic-string: 0.30.21
  1467. magic-string@0.30.21:
  1468. dependencies:
  1469. '@jridgewell/sourcemap-codec': 1.5.5
  1470. math-intrinsics@1.1.0: {}
  1471. memoize-one@6.0.0: {}
  1472. mime-db@1.52.0: {}
  1473. mime-types@2.1.35:
  1474. dependencies:
  1475. mime-db: 1.52.0
  1476. mitt@3.0.1: {}
  1477. mlly@1.8.1:
  1478. dependencies:
  1479. acorn: 8.16.0
  1480. pathe: 2.0.3
  1481. pkg-types: 1.3.1
  1482. ufo: 1.6.3
  1483. ms@2.1.3: {}
  1484. muggle-string@0.4.1: {}
  1485. nanoid@3.3.11: {}
  1486. node-addon-api@7.1.1:
  1487. optional: true
  1488. normalize-wheel-es@1.2.0: {}
  1489. obug@2.1.1: {}
  1490. path-browserify@1.0.1: {}
  1491. pathe@2.0.3: {}
  1492. perfect-debounce@1.0.0: {}
  1493. perfect-debounce@2.1.0: {}
  1494. picocolors@1.1.1: {}
  1495. picomatch@4.0.3: {}
  1496. pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)):
  1497. dependencies:
  1498. '@vue/devtools-api': 7.7.9
  1499. vue: 3.5.30(typescript@5.9.3)
  1500. optionalDependencies:
  1501. typescript: 5.9.3
  1502. pkg-types@1.3.1:
  1503. dependencies:
  1504. confbox: 0.1.8
  1505. mlly: 1.8.1
  1506. pathe: 2.0.3
  1507. pkg-types@2.3.0:
  1508. dependencies:
  1509. confbox: 0.2.4
  1510. exsolve: 1.0.8
  1511. pathe: 2.0.3
  1512. postcss@8.5.8:
  1513. dependencies:
  1514. nanoid: 3.3.11
  1515. picocolors: 1.1.1
  1516. source-map-js: 1.2.1
  1517. proxy-from-env@1.1.0: {}
  1518. quansync@0.2.11: {}
  1519. readdirp@4.1.2:
  1520. optional: true
  1521. readdirp@5.0.0: {}
  1522. rfdc@1.4.1: {}
  1523. rolldown@1.0.0-rc.9:
  1524. dependencies:
  1525. '@oxc-project/types': 0.115.0
  1526. '@rolldown/pluginutils': 1.0.0-rc.9
  1527. optionalDependencies:
  1528. '@rolldown/binding-android-arm64': 1.0.0-rc.9
  1529. '@rolldown/binding-darwin-arm64': 1.0.0-rc.9
  1530. '@rolldown/binding-darwin-x64': 1.0.0-rc.9
  1531. '@rolldown/binding-freebsd-x64': 1.0.0-rc.9
  1532. '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.9
  1533. '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.9
  1534. '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.9
  1535. '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.9
  1536. '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.9
  1537. '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.9
  1538. '@rolldown/binding-linux-x64-musl': 1.0.0-rc.9
  1539. '@rolldown/binding-openharmony-arm64': 1.0.0-rc.9
  1540. '@rolldown/binding-wasm32-wasi': 1.0.0-rc.9
  1541. '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.9
  1542. '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.9
  1543. rxjs@7.8.2:
  1544. dependencies:
  1545. tslib: 2.8.1
  1546. sass-embedded-all-unknown@1.98.0:
  1547. dependencies:
  1548. sass: 1.98.0
  1549. optional: true
  1550. sass-embedded-android-arm64@1.98.0:
  1551. optional: true
  1552. sass-embedded-android-arm@1.98.0:
  1553. optional: true
  1554. sass-embedded-android-riscv64@1.98.0:
  1555. optional: true
  1556. sass-embedded-android-x64@1.98.0:
  1557. optional: true
  1558. sass-embedded-darwin-arm64@1.98.0:
  1559. optional: true
  1560. sass-embedded-darwin-x64@1.98.0:
  1561. optional: true
  1562. sass-embedded-linux-arm64@1.98.0:
  1563. optional: true
  1564. sass-embedded-linux-arm@1.98.0:
  1565. optional: true
  1566. sass-embedded-linux-musl-arm64@1.98.0:
  1567. optional: true
  1568. sass-embedded-linux-musl-arm@1.98.0:
  1569. optional: true
  1570. sass-embedded-linux-musl-riscv64@1.98.0:
  1571. optional: true
  1572. sass-embedded-linux-musl-x64@1.98.0:
  1573. optional: true
  1574. sass-embedded-linux-riscv64@1.98.0:
  1575. optional: true
  1576. sass-embedded-linux-x64@1.98.0:
  1577. optional: true
  1578. sass-embedded-unknown-all@1.98.0:
  1579. dependencies:
  1580. sass: 1.98.0
  1581. optional: true
  1582. sass-embedded-win32-arm64@1.98.0:
  1583. optional: true
  1584. sass-embedded-win32-x64@1.98.0:
  1585. optional: true
  1586. sass-embedded@1.98.0:
  1587. dependencies:
  1588. '@bufbuild/protobuf': 2.11.0
  1589. colorjs.io: 0.5.2
  1590. immutable: 5.1.5
  1591. rxjs: 7.8.2
  1592. supports-color: 8.1.1
  1593. sync-child-process: 1.0.2
  1594. varint: 6.0.0
  1595. optionalDependencies:
  1596. sass-embedded-all-unknown: 1.98.0
  1597. sass-embedded-android-arm: 1.98.0
  1598. sass-embedded-android-arm64: 1.98.0
  1599. sass-embedded-android-riscv64: 1.98.0
  1600. sass-embedded-android-x64: 1.98.0
  1601. sass-embedded-darwin-arm64: 1.98.0
  1602. sass-embedded-darwin-x64: 1.98.0
  1603. sass-embedded-linux-arm: 1.98.0
  1604. sass-embedded-linux-arm64: 1.98.0
  1605. sass-embedded-linux-musl-arm: 1.98.0
  1606. sass-embedded-linux-musl-arm64: 1.98.0
  1607. sass-embedded-linux-musl-riscv64: 1.98.0
  1608. sass-embedded-linux-musl-x64: 1.98.0
  1609. sass-embedded-linux-riscv64: 1.98.0
  1610. sass-embedded-linux-x64: 1.98.0
  1611. sass-embedded-unknown-all: 1.98.0
  1612. sass-embedded-win32-arm64: 1.98.0
  1613. sass-embedded-win32-x64: 1.98.0
  1614. sass@1.98.0:
  1615. dependencies:
  1616. chokidar: 4.0.3
  1617. immutable: 5.1.5
  1618. source-map-js: 1.2.1
  1619. optionalDependencies:
  1620. '@parcel/watcher': 2.5.6
  1621. optional: true
  1622. scule@1.3.0: {}
  1623. source-map-js@1.2.1: {}
  1624. speakingurl@14.0.1: {}
  1625. strip-literal@3.1.0:
  1626. dependencies:
  1627. js-tokens: 9.0.1
  1628. superjson@2.2.6:
  1629. dependencies:
  1630. copy-anything: 4.0.5
  1631. supports-color@7.2.0:
  1632. dependencies:
  1633. has-flag: 4.0.0
  1634. supports-color@8.1.1:
  1635. dependencies:
  1636. has-flag: 4.0.0
  1637. sync-child-process@1.0.2:
  1638. dependencies:
  1639. sync-message-port: 1.2.0
  1640. sync-message-port@1.2.0: {}
  1641. tinyglobby@0.2.15:
  1642. dependencies:
  1643. fdir: 6.5.0(picomatch@4.0.3)
  1644. picomatch: 4.0.3
  1645. tslib@2.8.1: {}
  1646. typescript@5.9.3: {}
  1647. ufo@1.6.3: {}
  1648. undici-types@7.16.0: {}
  1649. unimport@5.7.0:
  1650. dependencies:
  1651. acorn: 8.16.0
  1652. escape-string-regexp: 5.0.0
  1653. estree-walker: 3.0.3
  1654. local-pkg: 1.1.2
  1655. magic-string: 0.30.21
  1656. mlly: 1.8.1
  1657. pathe: 2.0.3
  1658. picomatch: 4.0.3
  1659. pkg-types: 2.3.0
  1660. scule: 1.3.0
  1661. strip-literal: 3.1.0
  1662. tinyglobby: 0.2.15
  1663. unplugin: 2.3.11
  1664. unplugin-utils: 0.3.1
  1665. universalify@2.0.1: {}
  1666. unplugin-auto-import@21.0.0(@vueuse/core@14.2.1(vue@3.5.30(typescript@5.9.3))):
  1667. dependencies:
  1668. local-pkg: 1.1.2
  1669. magic-string: 0.30.21
  1670. picomatch: 4.0.3
  1671. unimport: 5.7.0
  1672. unplugin: 2.3.11
  1673. unplugin-utils: 0.3.1
  1674. optionalDependencies:
  1675. '@vueuse/core': 14.2.1(vue@3.5.30(typescript@5.9.3))
  1676. unplugin-utils@0.3.1:
  1677. dependencies:
  1678. pathe: 2.0.3
  1679. picomatch: 4.0.3
  1680. unplugin-vue-components@31.0.0(vue@3.5.30(typescript@5.9.3)):
  1681. dependencies:
  1682. chokidar: 5.0.0
  1683. local-pkg: 1.1.2
  1684. magic-string: 0.30.21
  1685. mlly: 1.8.1
  1686. obug: 2.1.1
  1687. picomatch: 4.0.3
  1688. tinyglobby: 0.2.15
  1689. unplugin: 2.3.11
  1690. unplugin-utils: 0.3.1
  1691. vue: 3.5.30(typescript@5.9.3)
  1692. unplugin@2.3.11:
  1693. dependencies:
  1694. '@jridgewell/remapping': 2.3.5
  1695. acorn: 8.16.0
  1696. picomatch: 4.0.3
  1697. webpack-virtual-modules: 0.6.2
  1698. unplugin@3.0.0:
  1699. dependencies:
  1700. '@jridgewell/remapping': 2.3.5
  1701. picomatch: 4.0.3
  1702. webpack-virtual-modules: 0.6.2
  1703. varint@6.0.0: {}
  1704. vite-plugin-compression@0.5.1(vite@8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2)):
  1705. dependencies:
  1706. chalk: 4.1.2
  1707. debug: 4.4.3
  1708. fs-extra: 10.1.0
  1709. vite: 8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2)
  1710. transitivePeerDependencies:
  1711. - supports-color
  1712. vite@8.0.0(@types/node@24.12.0)(sass-embedded@1.98.0)(sass@1.98.0)(yaml@2.8.2):
  1713. dependencies:
  1714. '@oxc-project/runtime': 0.115.0
  1715. lightningcss: 1.32.0
  1716. picomatch: 4.0.3
  1717. postcss: 8.5.8
  1718. rolldown: 1.0.0-rc.9
  1719. tinyglobby: 0.2.15
  1720. optionalDependencies:
  1721. '@types/node': 24.12.0
  1722. fsevents: 2.3.3
  1723. sass: 1.98.0
  1724. sass-embedded: 1.98.0
  1725. yaml: 2.8.2
  1726. vscode-uri@3.1.0: {}
  1727. vue-router@5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3)):
  1728. dependencies:
  1729. '@babel/generator': 7.29.1
  1730. '@vue-macros/common': 3.1.2(vue@3.5.30(typescript@5.9.3))
  1731. '@vue/devtools-api': 8.1.0
  1732. ast-walker-scope: 0.8.3
  1733. chokidar: 5.0.0
  1734. json5: 2.2.3
  1735. local-pkg: 1.1.2
  1736. magic-string: 0.30.21
  1737. mlly: 1.8.1
  1738. muggle-string: 0.4.1
  1739. pathe: 2.0.3
  1740. picomatch: 4.0.3
  1741. scule: 1.3.0
  1742. tinyglobby: 0.2.15
  1743. unplugin: 3.0.0
  1744. unplugin-utils: 0.3.1
  1745. vue: 3.5.30(typescript@5.9.3)
  1746. yaml: 2.8.2
  1747. optionalDependencies:
  1748. '@vue/compiler-sfc': 3.5.30
  1749. pinia: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
  1750. vue-tsc@3.2.5(typescript@5.9.3):
  1751. dependencies:
  1752. '@volar/typescript': 2.4.28
  1753. '@vue/language-core': 3.2.5
  1754. typescript: 5.9.3
  1755. vue@3.5.30(typescript@5.9.3):
  1756. dependencies:
  1757. '@vue/compiler-dom': 3.5.30
  1758. '@vue/compiler-sfc': 3.5.30
  1759. '@vue/runtime-dom': 3.5.30
  1760. '@vue/server-renderer': 3.5.30(vue@3.5.30(typescript@5.9.3))
  1761. '@vue/shared': 3.5.30
  1762. optionalDependencies:
  1763. typescript: 5.9.3
  1764. webpack-virtual-modules@0.6.2: {}
  1765. yaml@2.8.2: {}