pnpm-lock.yaml 71 KB

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