pnpm-lock.yaml 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. axios:
  9. specifier: ^1.7.7
  10. version: 1.7.7
  11. element-plus:
  12. specifier: ^2.8.7
  13. version: 2.8.7(vue@3.5.12(typescript@5.6.3))
  14. pinia:
  15. specifier: ^2.2.6
  16. version: 2.2.6(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3))
  17. vue:
  18. specifier: ^3.5.12
  19. version: 3.5.12(typescript@5.6.3)
  20. vue-router:
  21. specifier: ^4.4.5
  22. version: 4.4.5(vue@3.5.12(typescript@5.6.3))
  23. devDependencies:
  24. '@tsconfig/node20':
  25. specifier: ^20.1.4
  26. version: 20.1.4
  27. '@types/node':
  28. specifier: ^20.17.6
  29. version: 20.17.6
  30. '@vitejs/plugin-vue':
  31. specifier: ^5.1.4
  32. version: 5.1.4(vite@5.4.10(@types/node@20.17.6))(vue@3.5.12(typescript@5.6.3))
  33. '@vue/eslint-config-prettier':
  34. specifier: ^10.1.0
  35. version: 10.1.0(eslint@9.14.0)(prettier@3.3.3)
  36. '@vue/eslint-config-typescript':
  37. specifier: ^14.1.3
  38. version: 14.1.3(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint-plugin-vue@9.30.0(eslint@9.14.0))(eslint@9.14.0)(typescript@5.6.3)
  39. '@vue/tsconfig':
  40. specifier: ^0.5.1
  41. version: 0.5.1
  42. eslint:
  43. specifier: ^9.14.0
  44. version: 9.14.0
  45. eslint-plugin-vue:
  46. specifier: ^9.30.0
  47. version: 9.30.0(eslint@9.14.0)
  48. npm-run-all2:
  49. specifier: ^7.0.1
  50. version: 7.0.1
  51. prettier:
  52. specifier: ^3.3.3
  53. version: 3.3.3
  54. typescript:
  55. specifier: ~5.6.3
  56. version: 5.6.3
  57. unplugin-auto-import:
  58. specifier: ^0.18.3
  59. version: 0.18.3(@vueuse/core@9.13.0(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.4)
  60. unplugin-vue-components:
  61. specifier: ^0.27.4
  62. version: 0.27.4(@babel/parser@7.26.2)(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3))
  63. vite:
  64. specifier: ^5.4.10
  65. version: 5.4.10(@types/node@20.17.6)
  66. vue-tsc:
  67. specifier: ^2.1.10
  68. version: 2.1.10(typescript@5.6.3)
  69. packages:
  70. '@antfu/utils@0.7.10':
  71. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  72. '@babel/helper-string-parser@7.25.9':
  73. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  74. engines: {node: '>=6.9.0'}
  75. '@babel/helper-validator-identifier@7.25.9':
  76. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  77. engines: {node: '>=6.9.0'}
  78. '@babel/parser@7.26.2':
  79. resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
  80. engines: {node: '>=6.0.0'}
  81. hasBin: true
  82. '@babel/types@7.26.0':
  83. resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
  84. engines: {node: '>=6.9.0'}
  85. '@ctrl/tinycolor@3.6.1':
  86. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  87. engines: {node: '>=10'}
  88. '@element-plus/icons-vue@2.3.1':
  89. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  90. peerDependencies:
  91. vue: ^3.2.0
  92. '@esbuild/aix-ppc64@0.21.5':
  93. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  94. engines: {node: '>=12'}
  95. cpu: [ppc64]
  96. os: [aix]
  97. '@esbuild/android-arm64@0.21.5':
  98. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  99. engines: {node: '>=12'}
  100. cpu: [arm64]
  101. os: [android]
  102. '@esbuild/android-arm@0.21.5':
  103. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  104. engines: {node: '>=12'}
  105. cpu: [arm]
  106. os: [android]
  107. '@esbuild/android-x64@0.21.5':
  108. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  109. engines: {node: '>=12'}
  110. cpu: [x64]
  111. os: [android]
  112. '@esbuild/darwin-arm64@0.21.5':
  113. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  114. engines: {node: '>=12'}
  115. cpu: [arm64]
  116. os: [darwin]
  117. '@esbuild/darwin-x64@0.21.5':
  118. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  119. engines: {node: '>=12'}
  120. cpu: [x64]
  121. os: [darwin]
  122. '@esbuild/freebsd-arm64@0.21.5':
  123. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  124. engines: {node: '>=12'}
  125. cpu: [arm64]
  126. os: [freebsd]
  127. '@esbuild/freebsd-x64@0.21.5':
  128. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  129. engines: {node: '>=12'}
  130. cpu: [x64]
  131. os: [freebsd]
  132. '@esbuild/linux-arm64@0.21.5':
  133. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  134. engines: {node: '>=12'}
  135. cpu: [arm64]
  136. os: [linux]
  137. '@esbuild/linux-arm@0.21.5':
  138. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  139. engines: {node: '>=12'}
  140. cpu: [arm]
  141. os: [linux]
  142. '@esbuild/linux-ia32@0.21.5':
  143. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  144. engines: {node: '>=12'}
  145. cpu: [ia32]
  146. os: [linux]
  147. '@esbuild/linux-loong64@0.21.5':
  148. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  149. engines: {node: '>=12'}
  150. cpu: [loong64]
  151. os: [linux]
  152. '@esbuild/linux-mips64el@0.21.5':
  153. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  154. engines: {node: '>=12'}
  155. cpu: [mips64el]
  156. os: [linux]
  157. '@esbuild/linux-ppc64@0.21.5':
  158. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  159. engines: {node: '>=12'}
  160. cpu: [ppc64]
  161. os: [linux]
  162. '@esbuild/linux-riscv64@0.21.5':
  163. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  164. engines: {node: '>=12'}
  165. cpu: [riscv64]
  166. os: [linux]
  167. '@esbuild/linux-s390x@0.21.5':
  168. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  169. engines: {node: '>=12'}
  170. cpu: [s390x]
  171. os: [linux]
  172. '@esbuild/linux-x64@0.21.5':
  173. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  174. engines: {node: '>=12'}
  175. cpu: [x64]
  176. os: [linux]
  177. '@esbuild/netbsd-x64@0.21.5':
  178. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  179. engines: {node: '>=12'}
  180. cpu: [x64]
  181. os: [netbsd]
  182. '@esbuild/openbsd-x64@0.21.5':
  183. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  184. engines: {node: '>=12'}
  185. cpu: [x64]
  186. os: [openbsd]
  187. '@esbuild/sunos-x64@0.21.5':
  188. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  189. engines: {node: '>=12'}
  190. cpu: [x64]
  191. os: [sunos]
  192. '@esbuild/win32-arm64@0.21.5':
  193. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  194. engines: {node: '>=12'}
  195. cpu: [arm64]
  196. os: [win32]
  197. '@esbuild/win32-ia32@0.21.5':
  198. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  199. engines: {node: '>=12'}
  200. cpu: [ia32]
  201. os: [win32]
  202. '@esbuild/win32-x64@0.21.5':
  203. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  204. engines: {node: '>=12'}
  205. cpu: [x64]
  206. os: [win32]
  207. '@eslint-community/eslint-utils@4.4.1':
  208. resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
  209. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  210. peerDependencies:
  211. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  212. '@eslint-community/regexpp@4.12.1':
  213. resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
  214. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  215. '@eslint/config-array@0.18.0':
  216. resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
  217. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  218. '@eslint/core@0.7.0':
  219. resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
  220. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  221. '@eslint/eslintrc@3.1.0':
  222. resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
  223. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  224. '@eslint/js@9.14.0':
  225. resolution: {integrity: sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==}
  226. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  227. '@eslint/object-schema@2.1.4':
  228. resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
  229. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  230. '@eslint/plugin-kit@0.2.2':
  231. resolution: {integrity: sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==}
  232. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  233. '@floating-ui/core@1.6.8':
  234. resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
  235. '@floating-ui/dom@1.6.12':
  236. resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
  237. '@floating-ui/utils@0.2.8':
  238. resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
  239. '@humanfs/core@0.19.1':
  240. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  241. engines: {node: '>=18.18.0'}
  242. '@humanfs/node@0.16.6':
  243. resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
  244. engines: {node: '>=18.18.0'}
  245. '@humanwhocodes/module-importer@1.0.1':
  246. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  247. engines: {node: '>=12.22'}
  248. '@humanwhocodes/retry@0.3.1':
  249. resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
  250. engines: {node: '>=18.18'}
  251. '@humanwhocodes/retry@0.4.1':
  252. resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
  253. engines: {node: '>=18.18'}
  254. '@jridgewell/sourcemap-codec@1.5.0':
  255. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  256. '@nodelib/fs.scandir@2.1.5':
  257. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  258. engines: {node: '>= 8'}
  259. '@nodelib/fs.stat@2.0.5':
  260. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  261. engines: {node: '>= 8'}
  262. '@nodelib/fs.walk@1.2.8':
  263. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  264. engines: {node: '>= 8'}
  265. '@pkgr/core@0.1.1':
  266. resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
  267. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  268. '@rollup/pluginutils@5.1.3':
  269. resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
  270. engines: {node: '>=14.0.0'}
  271. peerDependencies:
  272. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  273. peerDependenciesMeta:
  274. rollup:
  275. optional: true
  276. '@rollup/rollup-android-arm-eabi@4.24.4':
  277. resolution: {integrity: sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==}
  278. cpu: [arm]
  279. os: [android]
  280. '@rollup/rollup-android-arm64@4.24.4':
  281. resolution: {integrity: sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==}
  282. cpu: [arm64]
  283. os: [android]
  284. '@rollup/rollup-darwin-arm64@4.24.4':
  285. resolution: {integrity: sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==}
  286. cpu: [arm64]
  287. os: [darwin]
  288. '@rollup/rollup-darwin-x64@4.24.4':
  289. resolution: {integrity: sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==}
  290. cpu: [x64]
  291. os: [darwin]
  292. '@rollup/rollup-freebsd-arm64@4.24.4':
  293. resolution: {integrity: sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==}
  294. cpu: [arm64]
  295. os: [freebsd]
  296. '@rollup/rollup-freebsd-x64@4.24.4':
  297. resolution: {integrity: sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==}
  298. cpu: [x64]
  299. os: [freebsd]
  300. '@rollup/rollup-linux-arm-gnueabihf@4.24.4':
  301. resolution: {integrity: sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==}
  302. cpu: [arm]
  303. os: [linux]
  304. libc: [glibc]
  305. '@rollup/rollup-linux-arm-musleabihf@4.24.4':
  306. resolution: {integrity: sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==}
  307. cpu: [arm]
  308. os: [linux]
  309. libc: [musl]
  310. '@rollup/rollup-linux-arm64-gnu@4.24.4':
  311. resolution: {integrity: sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==}
  312. cpu: [arm64]
  313. os: [linux]
  314. libc: [glibc]
  315. '@rollup/rollup-linux-arm64-musl@4.24.4':
  316. resolution: {integrity: sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==}
  317. cpu: [arm64]
  318. os: [linux]
  319. libc: [musl]
  320. '@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
  321. resolution: {integrity: sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==}
  322. cpu: [ppc64]
  323. os: [linux]
  324. libc: [glibc]
  325. '@rollup/rollup-linux-riscv64-gnu@4.24.4':
  326. resolution: {integrity: sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==}
  327. cpu: [riscv64]
  328. os: [linux]
  329. libc: [glibc]
  330. '@rollup/rollup-linux-s390x-gnu@4.24.4':
  331. resolution: {integrity: sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==}
  332. cpu: [s390x]
  333. os: [linux]
  334. libc: [glibc]
  335. '@rollup/rollup-linux-x64-gnu@4.24.4':
  336. resolution: {integrity: sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==}
  337. cpu: [x64]
  338. os: [linux]
  339. libc: [glibc]
  340. '@rollup/rollup-linux-x64-musl@4.24.4':
  341. resolution: {integrity: sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==}
  342. cpu: [x64]
  343. os: [linux]
  344. libc: [musl]
  345. '@rollup/rollup-win32-arm64-msvc@4.24.4':
  346. resolution: {integrity: sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==}
  347. cpu: [arm64]
  348. os: [win32]
  349. '@rollup/rollup-win32-ia32-msvc@4.24.4':
  350. resolution: {integrity: sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==}
  351. cpu: [ia32]
  352. os: [win32]
  353. '@rollup/rollup-win32-x64-msvc@4.24.4':
  354. resolution: {integrity: sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==}
  355. cpu: [x64]
  356. os: [win32]
  357. '@sxzz/popperjs-es@2.11.7':
  358. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  359. '@tsconfig/node20@20.1.4':
  360. resolution: {integrity: sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==}
  361. '@types/estree@1.0.6':
  362. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  363. '@types/json-schema@7.0.15':
  364. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  365. '@types/lodash-es@4.17.12':
  366. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  367. '@types/lodash@4.17.13':
  368. resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
  369. '@types/node@20.17.6':
  370. resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
  371. '@types/web-bluetooth@0.0.16':
  372. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  373. '@typescript-eslint/eslint-plugin@8.13.0':
  374. resolution: {integrity: sha512-nQtBLiZYMUPkclSeC3id+x4uVd1SGtHuElTxL++SfP47jR0zfkZBJHc+gL4qPsgTuypz0k8Y2GheaDYn6Gy3rg==}
  375. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  376. peerDependencies:
  377. '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
  378. eslint: ^8.57.0 || ^9.0.0
  379. typescript: '*'
  380. peerDependenciesMeta:
  381. typescript:
  382. optional: true
  383. '@typescript-eslint/parser@8.13.0':
  384. resolution: {integrity: sha512-w0xp+xGg8u/nONcGw1UXAr6cjCPU1w0XVyBs6Zqaj5eLmxkKQAByTdV/uGgNN5tVvN/kKpoQlP2cL7R+ajZZIQ==}
  385. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  386. peerDependencies:
  387. eslint: ^8.57.0 || ^9.0.0
  388. typescript: '*'
  389. peerDependenciesMeta:
  390. typescript:
  391. optional: true
  392. '@typescript-eslint/scope-manager@8.13.0':
  393. resolution: {integrity: sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==}
  394. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  395. '@typescript-eslint/type-utils@8.13.0':
  396. resolution: {integrity: sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==}
  397. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  398. peerDependencies:
  399. typescript: '*'
  400. peerDependenciesMeta:
  401. typescript:
  402. optional: true
  403. '@typescript-eslint/types@8.13.0':
  404. resolution: {integrity: sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==}
  405. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  406. '@typescript-eslint/typescript-estree@8.13.0':
  407. resolution: {integrity: sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==}
  408. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  409. peerDependencies:
  410. typescript: '*'
  411. peerDependenciesMeta:
  412. typescript:
  413. optional: true
  414. '@typescript-eslint/utils@8.13.0':
  415. resolution: {integrity: sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==}
  416. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  417. peerDependencies:
  418. eslint: ^8.57.0 || ^9.0.0
  419. '@typescript-eslint/visitor-keys@8.13.0':
  420. resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==}
  421. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  422. '@vitejs/plugin-vue@5.1.4':
  423. resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==}
  424. engines: {node: ^18.0.0 || >=20.0.0}
  425. peerDependencies:
  426. vite: ^5.0.0
  427. vue: ^3.2.25
  428. '@volar/language-core@2.4.8':
  429. resolution: {integrity: sha512-K/GxMOXGq997bO00cdFhTNuR85xPxj0BEEAy+BaqqayTmy9Tmhfgmq2wpJcVspRhcwfgPoE2/mEJa26emUhG/g==}
  430. '@volar/source-map@2.4.8':
  431. resolution: {integrity: sha512-jeWJBkC/WivdelMwxKkpFL811uH/jJ1kVxa+c7OvG48DXc3VrP7pplSWPP2W1dLMqBxD+awRlg55FQQfiup4cA==}
  432. '@volar/typescript@2.4.8':
  433. resolution: {integrity: sha512-6xkIYJ5xxghVBhVywMoPMidDDAFT1OoQeXwa27HSgJ6AiIKRe61RXLoik+14Z7r0JvnblXVsjsRLmCr42SGzqg==}
  434. '@vue/compiler-core@3.5.12':
  435. resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==}
  436. '@vue/compiler-dom@3.5.12':
  437. resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==}
  438. '@vue/compiler-sfc@3.5.12':
  439. resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==}
  440. '@vue/compiler-ssr@3.5.12':
  441. resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==}
  442. '@vue/compiler-vue2@2.7.16':
  443. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  444. '@vue/devtools-api@6.6.4':
  445. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  446. '@vue/eslint-config-prettier@10.1.0':
  447. resolution: {integrity: sha512-J6wV91y2pXc0Phha01k0WOHBTPsoSTf4xlmMjoKaeSxBpAdsgTppGF5RZRdOHM7OA74zAXD+VLANrtYXpiPKkQ==}
  448. peerDependencies:
  449. eslint: '>= 8.21.0'
  450. prettier: '>= 3.0.0'
  451. '@vue/eslint-config-typescript@14.1.3':
  452. resolution: {integrity: sha512-L4NUJQz/0We2QYtrNwRAGRy4KfpOagl5V3MpZZ+rQ51a+bKjlKYYrugi7lp7PIX8LolRgu06ZwDoswnSGWnAmA==}
  453. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  454. peerDependencies:
  455. eslint: ^9.10.0
  456. eslint-plugin-vue: ^9.28.0
  457. typescript: '>=4.8.4'
  458. peerDependenciesMeta:
  459. typescript:
  460. optional: true
  461. '@vue/language-core@2.1.10':
  462. resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==}
  463. peerDependencies:
  464. typescript: '*'
  465. peerDependenciesMeta:
  466. typescript:
  467. optional: true
  468. '@vue/reactivity@3.5.12':
  469. resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==}
  470. '@vue/runtime-core@3.5.12':
  471. resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==}
  472. '@vue/runtime-dom@3.5.12':
  473. resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==}
  474. '@vue/server-renderer@3.5.12':
  475. resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==}
  476. peerDependencies:
  477. vue: 3.5.12
  478. '@vue/shared@3.5.12':
  479. resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
  480. '@vue/tsconfig@0.5.1':
  481. resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
  482. '@vueuse/core@9.13.0':
  483. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  484. '@vueuse/metadata@9.13.0':
  485. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  486. '@vueuse/shared@9.13.0':
  487. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  488. acorn-jsx@5.3.2:
  489. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  490. peerDependencies:
  491. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  492. acorn@8.14.0:
  493. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  494. engines: {node: '>=0.4.0'}
  495. hasBin: true
  496. ajv@6.12.6:
  497. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  498. alien-signals@0.2.0:
  499. resolution: {integrity: sha512-StlonZhBBrsPPwrDjiPAiVTf/rolxffLxVPT60Qv/t88BZ81BvUVzHgGqEFvJ1ii8HXtm1+zU2Icr59tfWEcag==}
  500. ansi-styles@4.3.0:
  501. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  502. engines: {node: '>=8'}
  503. ansi-styles@6.2.1:
  504. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  505. engines: {node: '>=12'}
  506. anymatch@3.1.3:
  507. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  508. engines: {node: '>= 8'}
  509. argparse@2.0.1:
  510. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  511. async-validator@4.2.5:
  512. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  513. asynckit@0.4.0:
  514. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  515. axios@1.7.7:
  516. resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
  517. balanced-match@1.0.2:
  518. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  519. binary-extensions@2.3.0:
  520. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  521. engines: {node: '>=8'}
  522. boolbase@1.0.0:
  523. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  524. brace-expansion@1.1.11:
  525. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  526. brace-expansion@2.0.1:
  527. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  528. braces@3.0.3:
  529. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  530. engines: {node: '>=8'}
  531. callsites@3.1.0:
  532. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  533. engines: {node: '>=6'}
  534. chalk@4.1.2:
  535. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  536. engines: {node: '>=10'}
  537. chokidar@3.6.0:
  538. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  539. engines: {node: '>= 8.10.0'}
  540. color-convert@2.0.1:
  541. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  542. engines: {node: '>=7.0.0'}
  543. color-name@1.1.4:
  544. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  545. combined-stream@1.0.8:
  546. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  547. engines: {node: '>= 0.8'}
  548. concat-map@0.0.1:
  549. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  550. confbox@0.1.8:
  551. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  552. cross-spawn@7.0.3:
  553. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  554. engines: {node: '>= 8'}
  555. cssesc@3.0.0:
  556. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  557. engines: {node: '>=4'}
  558. hasBin: true
  559. csstype@3.1.3:
  560. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  561. dayjs@1.11.13:
  562. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  563. de-indent@1.0.2:
  564. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  565. debug@4.3.7:
  566. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  567. engines: {node: '>=6.0'}
  568. peerDependencies:
  569. supports-color: '*'
  570. peerDependenciesMeta:
  571. supports-color:
  572. optional: true
  573. deep-is@0.1.4:
  574. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  575. delayed-stream@1.0.0:
  576. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  577. engines: {node: '>=0.4.0'}
  578. element-plus@2.8.7:
  579. resolution: {integrity: sha512-oGQyFRufFOgjd872tZc+T4xQAYLlX4hj6d3ixeY13L4fFNUuc1N49JHAqJGPda0tdx3qCnjceZoh1kqqj2+tXQ==}
  580. peerDependencies:
  581. vue: ^3.2.0
  582. entities@4.5.0:
  583. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  584. engines: {node: '>=0.12'}
  585. esbuild@0.21.5:
  586. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  587. engines: {node: '>=12'}
  588. hasBin: true
  589. escape-html@1.0.3:
  590. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  591. escape-string-regexp@4.0.0:
  592. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  593. engines: {node: '>=10'}
  594. escape-string-regexp@5.0.0:
  595. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  596. engines: {node: '>=12'}
  597. eslint-config-prettier@9.1.0:
  598. resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
  599. hasBin: true
  600. peerDependencies:
  601. eslint: '>=7.0.0'
  602. eslint-plugin-prettier@5.2.1:
  603. resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==}
  604. engines: {node: ^14.18.0 || >=16.0.0}
  605. peerDependencies:
  606. '@types/eslint': '>=8.0.0'
  607. eslint: '>=8.0.0'
  608. eslint-config-prettier: '*'
  609. prettier: '>=3.0.0'
  610. peerDependenciesMeta:
  611. '@types/eslint':
  612. optional: true
  613. eslint-config-prettier:
  614. optional: true
  615. eslint-plugin-vue@9.30.0:
  616. resolution: {integrity: sha512-CyqlRgShvljFkOeYK8wN5frh/OGTvkj1S7wlr2Q2pUvwq+X5VYiLd6ZjujpgSgLnys2W8qrBLkXQ41SUYaoPIQ==}
  617. engines: {node: ^14.17.0 || >=16.0.0}
  618. peerDependencies:
  619. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  620. eslint-scope@7.2.2:
  621. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  622. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  623. eslint-scope@8.2.0:
  624. resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
  625. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  626. eslint-visitor-keys@3.4.3:
  627. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  628. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  629. eslint-visitor-keys@4.2.0:
  630. resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
  631. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  632. eslint@9.14.0:
  633. resolution: {integrity: sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==}
  634. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  635. hasBin: true
  636. peerDependencies:
  637. jiti: '*'
  638. peerDependenciesMeta:
  639. jiti:
  640. optional: true
  641. espree@10.3.0:
  642. resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
  643. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  644. espree@9.6.1:
  645. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  646. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  647. esquery@1.6.0:
  648. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  649. engines: {node: '>=0.10'}
  650. esrecurse@4.3.0:
  651. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  652. engines: {node: '>=4.0'}
  653. estraverse@5.3.0:
  654. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  655. engines: {node: '>=4.0'}
  656. estree-walker@2.0.2:
  657. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  658. estree-walker@3.0.3:
  659. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  660. esutils@2.0.3:
  661. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  662. engines: {node: '>=0.10.0'}
  663. fast-deep-equal@3.1.3:
  664. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  665. fast-diff@1.3.0:
  666. resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
  667. fast-glob@3.3.2:
  668. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  669. engines: {node: '>=8.6.0'}
  670. fast-json-stable-stringify@2.1.0:
  671. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  672. fast-levenshtein@2.0.6:
  673. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  674. fastq@1.17.1:
  675. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  676. file-entry-cache@8.0.0:
  677. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  678. engines: {node: '>=16.0.0'}
  679. fill-range@7.1.1:
  680. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  681. engines: {node: '>=8'}
  682. find-up@5.0.0:
  683. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  684. engines: {node: '>=10'}
  685. flat-cache@4.0.1:
  686. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  687. engines: {node: '>=16'}
  688. flatted@3.3.1:
  689. resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
  690. follow-redirects@1.15.9:
  691. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  692. engines: {node: '>=4.0'}
  693. peerDependencies:
  694. debug: '*'
  695. peerDependenciesMeta:
  696. debug:
  697. optional: true
  698. form-data@4.0.1:
  699. resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
  700. engines: {node: '>= 6'}
  701. fsevents@2.3.3:
  702. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  703. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  704. os: [darwin]
  705. glob-parent@5.1.2:
  706. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  707. engines: {node: '>= 6'}
  708. glob-parent@6.0.2:
  709. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  710. engines: {node: '>=10.13.0'}
  711. globals@13.24.0:
  712. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  713. engines: {node: '>=8'}
  714. globals@14.0.0:
  715. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  716. engines: {node: '>=18'}
  717. graphemer@1.4.0:
  718. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  719. has-flag@4.0.0:
  720. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  721. engines: {node: '>=8'}
  722. he@1.2.0:
  723. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  724. hasBin: true
  725. ignore@5.3.2:
  726. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  727. engines: {node: '>= 4'}
  728. import-fresh@3.3.0:
  729. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  730. engines: {node: '>=6'}
  731. imurmurhash@0.1.4:
  732. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  733. engines: {node: '>=0.8.19'}
  734. is-binary-path@2.1.0:
  735. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  736. engines: {node: '>=8'}
  737. is-extglob@2.1.1:
  738. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  739. engines: {node: '>=0.10.0'}
  740. is-glob@4.0.3:
  741. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  742. engines: {node: '>=0.10.0'}
  743. is-number@7.0.0:
  744. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  745. engines: {node: '>=0.12.0'}
  746. isexe@2.0.0:
  747. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  748. isexe@3.1.1:
  749. resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
  750. engines: {node: '>=16'}
  751. js-tokens@9.0.0:
  752. resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
  753. js-yaml@4.1.0:
  754. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  755. hasBin: true
  756. json-buffer@3.0.1:
  757. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  758. json-parse-even-better-errors@4.0.0:
  759. resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
  760. engines: {node: ^18.17.0 || >=20.5.0}
  761. json-schema-traverse@0.4.1:
  762. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  763. json-stable-stringify-without-jsonify@1.0.1:
  764. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  765. keyv@4.5.4:
  766. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  767. levn@0.4.1:
  768. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  769. engines: {node: '>= 0.8.0'}
  770. local-pkg@0.5.0:
  771. resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
  772. engines: {node: '>=14'}
  773. locate-path@6.0.0:
  774. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  775. engines: {node: '>=10'}
  776. lodash-es@4.17.21:
  777. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  778. lodash-unified@1.0.3:
  779. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  780. peerDependencies:
  781. '@types/lodash-es': '*'
  782. lodash: '*'
  783. lodash-es: '*'
  784. lodash.merge@4.6.2:
  785. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  786. lodash@4.17.21:
  787. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  788. magic-string@0.30.12:
  789. resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
  790. memoize-one@6.0.0:
  791. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  792. memorystream@0.3.1:
  793. resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
  794. engines: {node: '>= 0.10.0'}
  795. merge2@1.4.1:
  796. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  797. engines: {node: '>= 8'}
  798. micromatch@4.0.8:
  799. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  800. engines: {node: '>=8.6'}
  801. mime-db@1.52.0:
  802. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  803. engines: {node: '>= 0.6'}
  804. mime-types@2.1.35:
  805. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  806. engines: {node: '>= 0.6'}
  807. minimatch@3.1.2:
  808. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  809. minimatch@9.0.5:
  810. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  811. engines: {node: '>=16 || 14 >=14.17'}
  812. mlly@1.7.3:
  813. resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
  814. ms@2.1.3:
  815. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  816. muggle-string@0.4.1:
  817. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  818. nanoid@3.3.7:
  819. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  820. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  821. hasBin: true
  822. natural-compare@1.4.0:
  823. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  824. normalize-path@3.0.0:
  825. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  826. engines: {node: '>=0.10.0'}
  827. normalize-wheel-es@1.2.0:
  828. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  829. npm-normalize-package-bin@4.0.0:
  830. resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
  831. engines: {node: ^18.17.0 || >=20.5.0}
  832. npm-run-all2@7.0.1:
  833. resolution: {integrity: sha512-Adbv+bJQ8UTAM03rRODqrO5cx0YU5KCG2CvHtSURiadvdTjjgGJXdbc1oQ9CXBh9dnGfHSoSB1Web/0Dzp6kOQ==}
  834. engines: {node: ^18.17.0 || >=20.5.0, npm: '>= 9'}
  835. hasBin: true
  836. nth-check@2.1.1:
  837. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  838. optionator@0.9.4:
  839. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  840. engines: {node: '>= 0.8.0'}
  841. p-limit@3.1.0:
  842. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  843. engines: {node: '>=10'}
  844. p-locate@5.0.0:
  845. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  846. engines: {node: '>=10'}
  847. parent-module@1.0.1:
  848. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  849. engines: {node: '>=6'}
  850. path-browserify@1.0.1:
  851. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  852. path-exists@4.0.0:
  853. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  854. engines: {node: '>=8'}
  855. path-key@3.1.1:
  856. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  857. engines: {node: '>=8'}
  858. pathe@1.1.2:
  859. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  860. picocolors@1.1.1:
  861. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  862. picomatch@2.3.1:
  863. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  864. engines: {node: '>=8.6'}
  865. picomatch@4.0.2:
  866. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  867. engines: {node: '>=12'}
  868. pidtree@0.6.0:
  869. resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
  870. engines: {node: '>=0.10'}
  871. hasBin: true
  872. pinia@2.2.6:
  873. resolution: {integrity: sha512-vIsR8JkDN5Ga2vAxqOE2cJj4VtsHnzpR1Fz30kClxlh0yCHfec6uoMeM3e/ddqmwFUejK3NlrcQa/shnpyT4hA==}
  874. peerDependencies:
  875. '@vue/composition-api': ^1.4.0
  876. typescript: '>=4.4.4'
  877. vue: ^2.6.14 || ^3.5.11
  878. peerDependenciesMeta:
  879. '@vue/composition-api':
  880. optional: true
  881. typescript:
  882. optional: true
  883. pkg-types@1.2.1:
  884. resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
  885. postcss-selector-parser@6.1.2:
  886. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  887. engines: {node: '>=4'}
  888. postcss@8.4.47:
  889. resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
  890. engines: {node: ^10 || ^12 || >=14}
  891. prelude-ls@1.2.1:
  892. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  893. engines: {node: '>= 0.8.0'}
  894. prettier-linter-helpers@1.0.0:
  895. resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
  896. engines: {node: '>=6.0.0'}
  897. prettier@3.3.3:
  898. resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
  899. engines: {node: '>=14'}
  900. hasBin: true
  901. proxy-from-env@1.1.0:
  902. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  903. punycode@2.3.1:
  904. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  905. engines: {node: '>=6'}
  906. queue-microtask@1.2.3:
  907. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  908. read-package-json-fast@4.0.0:
  909. resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==}
  910. engines: {node: ^18.17.0 || >=20.5.0}
  911. readdirp@3.6.0:
  912. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  913. engines: {node: '>=8.10.0'}
  914. resolve-from@4.0.0:
  915. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  916. engines: {node: '>=4'}
  917. reusify@1.0.4:
  918. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  919. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  920. rollup@4.24.4:
  921. resolution: {integrity: sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==}
  922. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  923. hasBin: true
  924. run-parallel@1.2.0:
  925. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  926. scule@1.3.0:
  927. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  928. semver@7.6.3:
  929. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  930. engines: {node: '>=10'}
  931. hasBin: true
  932. shebang-command@2.0.0:
  933. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  934. engines: {node: '>=8'}
  935. shebang-regex@3.0.0:
  936. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  937. engines: {node: '>=8'}
  938. shell-quote@1.8.1:
  939. resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
  940. source-map-js@1.2.1:
  941. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  942. engines: {node: '>=0.10.0'}
  943. strip-json-comments@3.1.1:
  944. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  945. engines: {node: '>=8'}
  946. strip-literal@2.1.0:
  947. resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
  948. supports-color@7.2.0:
  949. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  950. engines: {node: '>=8'}
  951. synckit@0.9.2:
  952. resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
  953. engines: {node: ^14.18.0 || >=16.0.0}
  954. text-table@0.2.0:
  955. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  956. to-regex-range@5.0.1:
  957. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  958. engines: {node: '>=8.0'}
  959. ts-api-utils@1.4.0:
  960. resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
  961. engines: {node: '>=16'}
  962. peerDependencies:
  963. typescript: '>=4.2.0'
  964. tslib@2.8.1:
  965. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  966. type-check@0.4.0:
  967. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  968. engines: {node: '>= 0.8.0'}
  969. type-fest@0.20.2:
  970. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  971. engines: {node: '>=10'}
  972. typescript-eslint@8.13.0:
  973. resolution: {integrity: sha512-vIMpDRJrQd70au2G8w34mPps0ezFSPMEX4pXkTzUkrNbRX+36ais2ksGWN0esZL+ZMaFJEneOBHzCgSqle7DHw==}
  974. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  975. peerDependencies:
  976. typescript: '*'
  977. peerDependenciesMeta:
  978. typescript:
  979. optional: true
  980. typescript@5.6.3:
  981. resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
  982. engines: {node: '>=14.17'}
  983. hasBin: true
  984. ufo@1.5.4:
  985. resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
  986. undici-types@6.19.8:
  987. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  988. unimport@3.13.1:
  989. resolution: {integrity: sha512-nNrVzcs93yrZQOW77qnyOVHtb68LegvhYFwxFMfuuWScmwQmyVCG/NBuN8tYsaGzgQUVYv34E/af+Cc9u4og4A==}
  990. unplugin-auto-import@0.18.3:
  991. resolution: {integrity: sha512-q3FUtGQjYA2e+kb1WumyiQMjHM27MrTQ05QfVwtLRVhyYe+KF6TblBYaEX9L6Z0EibsqaXAiW+RFfkcQpfaXzg==}
  992. engines: {node: '>=14'}
  993. peerDependencies:
  994. '@nuxt/kit': ^3.2.2
  995. '@vueuse/core': '*'
  996. peerDependenciesMeta:
  997. '@nuxt/kit':
  998. optional: true
  999. '@vueuse/core':
  1000. optional: true
  1001. unplugin-vue-components@0.27.4:
  1002. resolution: {integrity: sha512-1XVl5iXG7P1UrOMnaj2ogYa5YTq8aoh5jwDPQhemwO/OrXW+lPQKDXd1hMz15qxQPxgb/XXlbgo3HQ2rLEbmXQ==}
  1003. engines: {node: '>=14'}
  1004. peerDependencies:
  1005. '@babel/parser': ^7.15.8
  1006. '@nuxt/kit': ^3.2.2
  1007. vue: 2 || 3
  1008. peerDependenciesMeta:
  1009. '@babel/parser':
  1010. optional: true
  1011. '@nuxt/kit':
  1012. optional: true
  1013. unplugin@1.15.0:
  1014. resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==}
  1015. engines: {node: '>=14.0.0'}
  1016. peerDependencies:
  1017. webpack-sources: ^3
  1018. peerDependenciesMeta:
  1019. webpack-sources:
  1020. optional: true
  1021. uri-js@4.4.1:
  1022. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1023. util-deprecate@1.0.2:
  1024. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1025. vite@5.4.10:
  1026. resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
  1027. engines: {node: ^18.0.0 || >=20.0.0}
  1028. hasBin: true
  1029. peerDependencies:
  1030. '@types/node': ^18.0.0 || >=20.0.0
  1031. less: '*'
  1032. lightningcss: ^1.21.0
  1033. sass: '*'
  1034. sass-embedded: '*'
  1035. stylus: '*'
  1036. sugarss: '*'
  1037. terser: ^5.4.0
  1038. peerDependenciesMeta:
  1039. '@types/node':
  1040. optional: true
  1041. less:
  1042. optional: true
  1043. lightningcss:
  1044. optional: true
  1045. sass:
  1046. optional: true
  1047. sass-embedded:
  1048. optional: true
  1049. stylus:
  1050. optional: true
  1051. sugarss:
  1052. optional: true
  1053. terser:
  1054. optional: true
  1055. vscode-uri@3.0.8:
  1056. resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
  1057. vue-demi@0.14.10:
  1058. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1059. engines: {node: '>=12'}
  1060. hasBin: true
  1061. peerDependencies:
  1062. '@vue/composition-api': ^1.0.0-rc.1
  1063. vue: ^3.0.0-0 || ^2.6.0
  1064. peerDependenciesMeta:
  1065. '@vue/composition-api':
  1066. optional: true
  1067. vue-eslint-parser@9.4.3:
  1068. resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
  1069. engines: {node: ^14.17.0 || >=16.0.0}
  1070. peerDependencies:
  1071. eslint: '>=6.0.0'
  1072. vue-router@4.4.5:
  1073. resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
  1074. peerDependencies:
  1075. vue: ^3.2.0
  1076. vue-tsc@2.1.10:
  1077. resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==}
  1078. hasBin: true
  1079. peerDependencies:
  1080. typescript: '>=5.0.0'
  1081. vue@3.5.12:
  1082. resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==}
  1083. peerDependencies:
  1084. typescript: '*'
  1085. peerDependenciesMeta:
  1086. typescript:
  1087. optional: true
  1088. webpack-virtual-modules@0.6.2:
  1089. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1090. which@2.0.2:
  1091. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1092. engines: {node: '>= 8'}
  1093. hasBin: true
  1094. which@5.0.0:
  1095. resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
  1096. engines: {node: ^18.17.0 || >=20.5.0}
  1097. hasBin: true
  1098. word-wrap@1.2.5:
  1099. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1100. engines: {node: '>=0.10.0'}
  1101. xml-name-validator@4.0.0:
  1102. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  1103. engines: {node: '>=12'}
  1104. yocto-queue@0.1.0:
  1105. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1106. engines: {node: '>=10'}
  1107. snapshots:
  1108. '@antfu/utils@0.7.10': {}
  1109. '@babel/helper-string-parser@7.25.9': {}
  1110. '@babel/helper-validator-identifier@7.25.9': {}
  1111. '@babel/parser@7.26.2':
  1112. dependencies:
  1113. '@babel/types': 7.26.0
  1114. '@babel/types@7.26.0':
  1115. dependencies:
  1116. '@babel/helper-string-parser': 7.25.9
  1117. '@babel/helper-validator-identifier': 7.25.9
  1118. '@ctrl/tinycolor@3.6.1': {}
  1119. '@element-plus/icons-vue@2.3.1(vue@3.5.12(typescript@5.6.3))':
  1120. dependencies:
  1121. vue: 3.5.12(typescript@5.6.3)
  1122. '@esbuild/aix-ppc64@0.21.5':
  1123. optional: true
  1124. '@esbuild/android-arm64@0.21.5':
  1125. optional: true
  1126. '@esbuild/android-arm@0.21.5':
  1127. optional: true
  1128. '@esbuild/android-x64@0.21.5':
  1129. optional: true
  1130. '@esbuild/darwin-arm64@0.21.5':
  1131. optional: true
  1132. '@esbuild/darwin-x64@0.21.5':
  1133. optional: true
  1134. '@esbuild/freebsd-arm64@0.21.5':
  1135. optional: true
  1136. '@esbuild/freebsd-x64@0.21.5':
  1137. optional: true
  1138. '@esbuild/linux-arm64@0.21.5':
  1139. optional: true
  1140. '@esbuild/linux-arm@0.21.5':
  1141. optional: true
  1142. '@esbuild/linux-ia32@0.21.5':
  1143. optional: true
  1144. '@esbuild/linux-loong64@0.21.5':
  1145. optional: true
  1146. '@esbuild/linux-mips64el@0.21.5':
  1147. optional: true
  1148. '@esbuild/linux-ppc64@0.21.5':
  1149. optional: true
  1150. '@esbuild/linux-riscv64@0.21.5':
  1151. optional: true
  1152. '@esbuild/linux-s390x@0.21.5':
  1153. optional: true
  1154. '@esbuild/linux-x64@0.21.5':
  1155. optional: true
  1156. '@esbuild/netbsd-x64@0.21.5':
  1157. optional: true
  1158. '@esbuild/openbsd-x64@0.21.5':
  1159. optional: true
  1160. '@esbuild/sunos-x64@0.21.5':
  1161. optional: true
  1162. '@esbuild/win32-arm64@0.21.5':
  1163. optional: true
  1164. '@esbuild/win32-ia32@0.21.5':
  1165. optional: true
  1166. '@esbuild/win32-x64@0.21.5':
  1167. optional: true
  1168. '@eslint-community/eslint-utils@4.4.1(eslint@9.14.0)':
  1169. dependencies:
  1170. eslint: 9.14.0
  1171. eslint-visitor-keys: 3.4.3
  1172. '@eslint-community/regexpp@4.12.1': {}
  1173. '@eslint/config-array@0.18.0':
  1174. dependencies:
  1175. '@eslint/object-schema': 2.1.4
  1176. debug: 4.3.7
  1177. minimatch: 3.1.2
  1178. transitivePeerDependencies:
  1179. - supports-color
  1180. '@eslint/core@0.7.0': {}
  1181. '@eslint/eslintrc@3.1.0':
  1182. dependencies:
  1183. ajv: 6.12.6
  1184. debug: 4.3.7
  1185. espree: 10.3.0
  1186. globals: 14.0.0
  1187. ignore: 5.3.2
  1188. import-fresh: 3.3.0
  1189. js-yaml: 4.1.0
  1190. minimatch: 3.1.2
  1191. strip-json-comments: 3.1.1
  1192. transitivePeerDependencies:
  1193. - supports-color
  1194. '@eslint/js@9.14.0': {}
  1195. '@eslint/object-schema@2.1.4': {}
  1196. '@eslint/plugin-kit@0.2.2':
  1197. dependencies:
  1198. levn: 0.4.1
  1199. '@floating-ui/core@1.6.8':
  1200. dependencies:
  1201. '@floating-ui/utils': 0.2.8
  1202. '@floating-ui/dom@1.6.12':
  1203. dependencies:
  1204. '@floating-ui/core': 1.6.8
  1205. '@floating-ui/utils': 0.2.8
  1206. '@floating-ui/utils@0.2.8': {}
  1207. '@humanfs/core@0.19.1': {}
  1208. '@humanfs/node@0.16.6':
  1209. dependencies:
  1210. '@humanfs/core': 0.19.1
  1211. '@humanwhocodes/retry': 0.3.1
  1212. '@humanwhocodes/module-importer@1.0.1': {}
  1213. '@humanwhocodes/retry@0.3.1': {}
  1214. '@humanwhocodes/retry@0.4.1': {}
  1215. '@jridgewell/sourcemap-codec@1.5.0': {}
  1216. '@nodelib/fs.scandir@2.1.5':
  1217. dependencies:
  1218. '@nodelib/fs.stat': 2.0.5
  1219. run-parallel: 1.2.0
  1220. '@nodelib/fs.stat@2.0.5': {}
  1221. '@nodelib/fs.walk@1.2.8':
  1222. dependencies:
  1223. '@nodelib/fs.scandir': 2.1.5
  1224. fastq: 1.17.1
  1225. '@pkgr/core@0.1.1': {}
  1226. '@rollup/pluginutils@5.1.3(rollup@4.24.4)':
  1227. dependencies:
  1228. '@types/estree': 1.0.6
  1229. estree-walker: 2.0.2
  1230. picomatch: 4.0.2
  1231. optionalDependencies:
  1232. rollup: 4.24.4
  1233. '@rollup/rollup-android-arm-eabi@4.24.4':
  1234. optional: true
  1235. '@rollup/rollup-android-arm64@4.24.4':
  1236. optional: true
  1237. '@rollup/rollup-darwin-arm64@4.24.4':
  1238. optional: true
  1239. '@rollup/rollup-darwin-x64@4.24.4':
  1240. optional: true
  1241. '@rollup/rollup-freebsd-arm64@4.24.4':
  1242. optional: true
  1243. '@rollup/rollup-freebsd-x64@4.24.4':
  1244. optional: true
  1245. '@rollup/rollup-linux-arm-gnueabihf@4.24.4':
  1246. optional: true
  1247. '@rollup/rollup-linux-arm-musleabihf@4.24.4':
  1248. optional: true
  1249. '@rollup/rollup-linux-arm64-gnu@4.24.4':
  1250. optional: true
  1251. '@rollup/rollup-linux-arm64-musl@4.24.4':
  1252. optional: true
  1253. '@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
  1254. optional: true
  1255. '@rollup/rollup-linux-riscv64-gnu@4.24.4':
  1256. optional: true
  1257. '@rollup/rollup-linux-s390x-gnu@4.24.4':
  1258. optional: true
  1259. '@rollup/rollup-linux-x64-gnu@4.24.4':
  1260. optional: true
  1261. '@rollup/rollup-linux-x64-musl@4.24.4':
  1262. optional: true
  1263. '@rollup/rollup-win32-arm64-msvc@4.24.4':
  1264. optional: true
  1265. '@rollup/rollup-win32-ia32-msvc@4.24.4':
  1266. optional: true
  1267. '@rollup/rollup-win32-x64-msvc@4.24.4':
  1268. optional: true
  1269. '@sxzz/popperjs-es@2.11.7': {}
  1270. '@tsconfig/node20@20.1.4': {}
  1271. '@types/estree@1.0.6': {}
  1272. '@types/json-schema@7.0.15': {}
  1273. '@types/lodash-es@4.17.12':
  1274. dependencies:
  1275. '@types/lodash': 4.17.13
  1276. '@types/lodash@4.17.13': {}
  1277. '@types/node@20.17.6':
  1278. dependencies:
  1279. undici-types: 6.19.8
  1280. '@types/web-bluetooth@0.0.16': {}
  1281. '@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint@9.14.0)(typescript@5.6.3)':
  1282. dependencies:
  1283. '@eslint-community/regexpp': 4.12.1
  1284. '@typescript-eslint/parser': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1285. '@typescript-eslint/scope-manager': 8.13.0
  1286. '@typescript-eslint/type-utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1287. '@typescript-eslint/utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1288. '@typescript-eslint/visitor-keys': 8.13.0
  1289. eslint: 9.14.0
  1290. graphemer: 1.4.0
  1291. ignore: 5.3.2
  1292. natural-compare: 1.4.0
  1293. ts-api-utils: 1.4.0(typescript@5.6.3)
  1294. optionalDependencies:
  1295. typescript: 5.6.3
  1296. transitivePeerDependencies:
  1297. - supports-color
  1298. '@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3)':
  1299. dependencies:
  1300. '@typescript-eslint/scope-manager': 8.13.0
  1301. '@typescript-eslint/types': 8.13.0
  1302. '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
  1303. '@typescript-eslint/visitor-keys': 8.13.0
  1304. debug: 4.3.7
  1305. eslint: 9.14.0
  1306. optionalDependencies:
  1307. typescript: 5.6.3
  1308. transitivePeerDependencies:
  1309. - supports-color
  1310. '@typescript-eslint/scope-manager@8.13.0':
  1311. dependencies:
  1312. '@typescript-eslint/types': 8.13.0
  1313. '@typescript-eslint/visitor-keys': 8.13.0
  1314. '@typescript-eslint/type-utils@8.13.0(eslint@9.14.0)(typescript@5.6.3)':
  1315. dependencies:
  1316. '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
  1317. '@typescript-eslint/utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1318. debug: 4.3.7
  1319. ts-api-utils: 1.4.0(typescript@5.6.3)
  1320. optionalDependencies:
  1321. typescript: 5.6.3
  1322. transitivePeerDependencies:
  1323. - eslint
  1324. - supports-color
  1325. '@typescript-eslint/types@8.13.0': {}
  1326. '@typescript-eslint/typescript-estree@8.13.0(typescript@5.6.3)':
  1327. dependencies:
  1328. '@typescript-eslint/types': 8.13.0
  1329. '@typescript-eslint/visitor-keys': 8.13.0
  1330. debug: 4.3.7
  1331. fast-glob: 3.3.2
  1332. is-glob: 4.0.3
  1333. minimatch: 9.0.5
  1334. semver: 7.6.3
  1335. ts-api-utils: 1.4.0(typescript@5.6.3)
  1336. optionalDependencies:
  1337. typescript: 5.6.3
  1338. transitivePeerDependencies:
  1339. - supports-color
  1340. '@typescript-eslint/utils@8.13.0(eslint@9.14.0)(typescript@5.6.3)':
  1341. dependencies:
  1342. '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0)
  1343. '@typescript-eslint/scope-manager': 8.13.0
  1344. '@typescript-eslint/types': 8.13.0
  1345. '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
  1346. eslint: 9.14.0
  1347. transitivePeerDependencies:
  1348. - supports-color
  1349. - typescript
  1350. '@typescript-eslint/visitor-keys@8.13.0':
  1351. dependencies:
  1352. '@typescript-eslint/types': 8.13.0
  1353. eslint-visitor-keys: 3.4.3
  1354. '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@20.17.6))(vue@3.5.12(typescript@5.6.3))':
  1355. dependencies:
  1356. vite: 5.4.10(@types/node@20.17.6)
  1357. vue: 3.5.12(typescript@5.6.3)
  1358. '@volar/language-core@2.4.8':
  1359. dependencies:
  1360. '@volar/source-map': 2.4.8
  1361. '@volar/source-map@2.4.8': {}
  1362. '@volar/typescript@2.4.8':
  1363. dependencies:
  1364. '@volar/language-core': 2.4.8
  1365. path-browserify: 1.0.1
  1366. vscode-uri: 3.0.8
  1367. '@vue/compiler-core@3.5.12':
  1368. dependencies:
  1369. '@babel/parser': 7.26.2
  1370. '@vue/shared': 3.5.12
  1371. entities: 4.5.0
  1372. estree-walker: 2.0.2
  1373. source-map-js: 1.2.1
  1374. '@vue/compiler-dom@3.5.12':
  1375. dependencies:
  1376. '@vue/compiler-core': 3.5.12
  1377. '@vue/shared': 3.5.12
  1378. '@vue/compiler-sfc@3.5.12':
  1379. dependencies:
  1380. '@babel/parser': 7.26.2
  1381. '@vue/compiler-core': 3.5.12
  1382. '@vue/compiler-dom': 3.5.12
  1383. '@vue/compiler-ssr': 3.5.12
  1384. '@vue/shared': 3.5.12
  1385. estree-walker: 2.0.2
  1386. magic-string: 0.30.12
  1387. postcss: 8.4.47
  1388. source-map-js: 1.2.1
  1389. '@vue/compiler-ssr@3.5.12':
  1390. dependencies:
  1391. '@vue/compiler-dom': 3.5.12
  1392. '@vue/shared': 3.5.12
  1393. '@vue/compiler-vue2@2.7.16':
  1394. dependencies:
  1395. de-indent: 1.0.2
  1396. he: 1.2.0
  1397. '@vue/devtools-api@6.6.4': {}
  1398. '@vue/eslint-config-prettier@10.1.0(eslint@9.14.0)(prettier@3.3.3)':
  1399. dependencies:
  1400. eslint: 9.14.0
  1401. eslint-config-prettier: 9.1.0(eslint@9.14.0)
  1402. eslint-plugin-prettier: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.14.0))(eslint@9.14.0)(prettier@3.3.3)
  1403. prettier: 3.3.3
  1404. transitivePeerDependencies:
  1405. - '@types/eslint'
  1406. '@vue/eslint-config-typescript@14.1.3(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint-plugin-vue@9.30.0(eslint@9.14.0))(eslint@9.14.0)(typescript@5.6.3)':
  1407. dependencies:
  1408. '@typescript-eslint/eslint-plugin': 8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint@9.14.0)(typescript@5.6.3)
  1409. eslint: 9.14.0
  1410. eslint-plugin-vue: 9.30.0(eslint@9.14.0)
  1411. fast-glob: 3.3.2
  1412. typescript-eslint: 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1413. vue-eslint-parser: 9.4.3(eslint@9.14.0)
  1414. optionalDependencies:
  1415. typescript: 5.6.3
  1416. transitivePeerDependencies:
  1417. - '@typescript-eslint/parser'
  1418. - supports-color
  1419. '@vue/language-core@2.1.10(typescript@5.6.3)':
  1420. dependencies:
  1421. '@volar/language-core': 2.4.8
  1422. '@vue/compiler-dom': 3.5.12
  1423. '@vue/compiler-vue2': 2.7.16
  1424. '@vue/shared': 3.5.12
  1425. alien-signals: 0.2.0
  1426. minimatch: 9.0.5
  1427. muggle-string: 0.4.1
  1428. path-browserify: 1.0.1
  1429. optionalDependencies:
  1430. typescript: 5.6.3
  1431. '@vue/reactivity@3.5.12':
  1432. dependencies:
  1433. '@vue/shared': 3.5.12
  1434. '@vue/runtime-core@3.5.12':
  1435. dependencies:
  1436. '@vue/reactivity': 3.5.12
  1437. '@vue/shared': 3.5.12
  1438. '@vue/runtime-dom@3.5.12':
  1439. dependencies:
  1440. '@vue/reactivity': 3.5.12
  1441. '@vue/runtime-core': 3.5.12
  1442. '@vue/shared': 3.5.12
  1443. csstype: 3.1.3
  1444. '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))':
  1445. dependencies:
  1446. '@vue/compiler-ssr': 3.5.12
  1447. '@vue/shared': 3.5.12
  1448. vue: 3.5.12(typescript@5.6.3)
  1449. '@vue/shared@3.5.12': {}
  1450. '@vue/tsconfig@0.5.1': {}
  1451. '@vueuse/core@9.13.0(vue@3.5.12(typescript@5.6.3))':
  1452. dependencies:
  1453. '@types/web-bluetooth': 0.0.16
  1454. '@vueuse/metadata': 9.13.0
  1455. '@vueuse/shared': 9.13.0(vue@3.5.12(typescript@5.6.3))
  1456. vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
  1457. transitivePeerDependencies:
  1458. - '@vue/composition-api'
  1459. - vue
  1460. '@vueuse/metadata@9.13.0': {}
  1461. '@vueuse/shared@9.13.0(vue@3.5.12(typescript@5.6.3))':
  1462. dependencies:
  1463. vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
  1464. transitivePeerDependencies:
  1465. - '@vue/composition-api'
  1466. - vue
  1467. acorn-jsx@5.3.2(acorn@8.14.0):
  1468. dependencies:
  1469. acorn: 8.14.0
  1470. acorn@8.14.0: {}
  1471. ajv@6.12.6:
  1472. dependencies:
  1473. fast-deep-equal: 3.1.3
  1474. fast-json-stable-stringify: 2.1.0
  1475. json-schema-traverse: 0.4.1
  1476. uri-js: 4.4.1
  1477. alien-signals@0.2.0: {}
  1478. ansi-styles@4.3.0:
  1479. dependencies:
  1480. color-convert: 2.0.1
  1481. ansi-styles@6.2.1: {}
  1482. anymatch@3.1.3:
  1483. dependencies:
  1484. normalize-path: 3.0.0
  1485. picomatch: 2.3.1
  1486. argparse@2.0.1: {}
  1487. async-validator@4.2.5: {}
  1488. asynckit@0.4.0: {}
  1489. axios@1.7.7:
  1490. dependencies:
  1491. follow-redirects: 1.15.9
  1492. form-data: 4.0.1
  1493. proxy-from-env: 1.1.0
  1494. transitivePeerDependencies:
  1495. - debug
  1496. balanced-match@1.0.2: {}
  1497. binary-extensions@2.3.0: {}
  1498. boolbase@1.0.0: {}
  1499. brace-expansion@1.1.11:
  1500. dependencies:
  1501. balanced-match: 1.0.2
  1502. concat-map: 0.0.1
  1503. brace-expansion@2.0.1:
  1504. dependencies:
  1505. balanced-match: 1.0.2
  1506. braces@3.0.3:
  1507. dependencies:
  1508. fill-range: 7.1.1
  1509. callsites@3.1.0: {}
  1510. chalk@4.1.2:
  1511. dependencies:
  1512. ansi-styles: 4.3.0
  1513. supports-color: 7.2.0
  1514. chokidar@3.6.0:
  1515. dependencies:
  1516. anymatch: 3.1.3
  1517. braces: 3.0.3
  1518. glob-parent: 5.1.2
  1519. is-binary-path: 2.1.0
  1520. is-glob: 4.0.3
  1521. normalize-path: 3.0.0
  1522. readdirp: 3.6.0
  1523. optionalDependencies:
  1524. fsevents: 2.3.3
  1525. color-convert@2.0.1:
  1526. dependencies:
  1527. color-name: 1.1.4
  1528. color-name@1.1.4: {}
  1529. combined-stream@1.0.8:
  1530. dependencies:
  1531. delayed-stream: 1.0.0
  1532. concat-map@0.0.1: {}
  1533. confbox@0.1.8: {}
  1534. cross-spawn@7.0.3:
  1535. dependencies:
  1536. path-key: 3.1.1
  1537. shebang-command: 2.0.0
  1538. which: 2.0.2
  1539. cssesc@3.0.0: {}
  1540. csstype@3.1.3: {}
  1541. dayjs@1.11.13: {}
  1542. de-indent@1.0.2: {}
  1543. debug@4.3.7:
  1544. dependencies:
  1545. ms: 2.1.3
  1546. deep-is@0.1.4: {}
  1547. delayed-stream@1.0.0: {}
  1548. element-plus@2.8.7(vue@3.5.12(typescript@5.6.3)):
  1549. dependencies:
  1550. '@ctrl/tinycolor': 3.6.1
  1551. '@element-plus/icons-vue': 2.3.1(vue@3.5.12(typescript@5.6.3))
  1552. '@floating-ui/dom': 1.6.12
  1553. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1554. '@types/lodash': 4.17.13
  1555. '@types/lodash-es': 4.17.12
  1556. '@vueuse/core': 9.13.0(vue@3.5.12(typescript@5.6.3))
  1557. async-validator: 4.2.5
  1558. dayjs: 1.11.13
  1559. escape-html: 1.0.3
  1560. lodash: 4.17.21
  1561. lodash-es: 4.17.21
  1562. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1563. memoize-one: 6.0.0
  1564. normalize-wheel-es: 1.2.0
  1565. vue: 3.5.12(typescript@5.6.3)
  1566. transitivePeerDependencies:
  1567. - '@vue/composition-api'
  1568. entities@4.5.0: {}
  1569. esbuild@0.21.5:
  1570. optionalDependencies:
  1571. '@esbuild/aix-ppc64': 0.21.5
  1572. '@esbuild/android-arm': 0.21.5
  1573. '@esbuild/android-arm64': 0.21.5
  1574. '@esbuild/android-x64': 0.21.5
  1575. '@esbuild/darwin-arm64': 0.21.5
  1576. '@esbuild/darwin-x64': 0.21.5
  1577. '@esbuild/freebsd-arm64': 0.21.5
  1578. '@esbuild/freebsd-x64': 0.21.5
  1579. '@esbuild/linux-arm': 0.21.5
  1580. '@esbuild/linux-arm64': 0.21.5
  1581. '@esbuild/linux-ia32': 0.21.5
  1582. '@esbuild/linux-loong64': 0.21.5
  1583. '@esbuild/linux-mips64el': 0.21.5
  1584. '@esbuild/linux-ppc64': 0.21.5
  1585. '@esbuild/linux-riscv64': 0.21.5
  1586. '@esbuild/linux-s390x': 0.21.5
  1587. '@esbuild/linux-x64': 0.21.5
  1588. '@esbuild/netbsd-x64': 0.21.5
  1589. '@esbuild/openbsd-x64': 0.21.5
  1590. '@esbuild/sunos-x64': 0.21.5
  1591. '@esbuild/win32-arm64': 0.21.5
  1592. '@esbuild/win32-ia32': 0.21.5
  1593. '@esbuild/win32-x64': 0.21.5
  1594. escape-html@1.0.3: {}
  1595. escape-string-regexp@4.0.0: {}
  1596. escape-string-regexp@5.0.0: {}
  1597. eslint-config-prettier@9.1.0(eslint@9.14.0):
  1598. dependencies:
  1599. eslint: 9.14.0
  1600. eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.14.0))(eslint@9.14.0)(prettier@3.3.3):
  1601. dependencies:
  1602. eslint: 9.14.0
  1603. prettier: 3.3.3
  1604. prettier-linter-helpers: 1.0.0
  1605. synckit: 0.9.2
  1606. optionalDependencies:
  1607. eslint-config-prettier: 9.1.0(eslint@9.14.0)
  1608. eslint-plugin-vue@9.30.0(eslint@9.14.0):
  1609. dependencies:
  1610. '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0)
  1611. eslint: 9.14.0
  1612. globals: 13.24.0
  1613. natural-compare: 1.4.0
  1614. nth-check: 2.1.1
  1615. postcss-selector-parser: 6.1.2
  1616. semver: 7.6.3
  1617. vue-eslint-parser: 9.4.3(eslint@9.14.0)
  1618. xml-name-validator: 4.0.0
  1619. transitivePeerDependencies:
  1620. - supports-color
  1621. eslint-scope@7.2.2:
  1622. dependencies:
  1623. esrecurse: 4.3.0
  1624. estraverse: 5.3.0
  1625. eslint-scope@8.2.0:
  1626. dependencies:
  1627. esrecurse: 4.3.0
  1628. estraverse: 5.3.0
  1629. eslint-visitor-keys@3.4.3: {}
  1630. eslint-visitor-keys@4.2.0: {}
  1631. eslint@9.14.0:
  1632. dependencies:
  1633. '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0)
  1634. '@eslint-community/regexpp': 4.12.1
  1635. '@eslint/config-array': 0.18.0
  1636. '@eslint/core': 0.7.0
  1637. '@eslint/eslintrc': 3.1.0
  1638. '@eslint/js': 9.14.0
  1639. '@eslint/plugin-kit': 0.2.2
  1640. '@humanfs/node': 0.16.6
  1641. '@humanwhocodes/module-importer': 1.0.1
  1642. '@humanwhocodes/retry': 0.4.1
  1643. '@types/estree': 1.0.6
  1644. '@types/json-schema': 7.0.15
  1645. ajv: 6.12.6
  1646. chalk: 4.1.2
  1647. cross-spawn: 7.0.3
  1648. debug: 4.3.7
  1649. escape-string-regexp: 4.0.0
  1650. eslint-scope: 8.2.0
  1651. eslint-visitor-keys: 4.2.0
  1652. espree: 10.3.0
  1653. esquery: 1.6.0
  1654. esutils: 2.0.3
  1655. fast-deep-equal: 3.1.3
  1656. file-entry-cache: 8.0.0
  1657. find-up: 5.0.0
  1658. glob-parent: 6.0.2
  1659. ignore: 5.3.2
  1660. imurmurhash: 0.1.4
  1661. is-glob: 4.0.3
  1662. json-stable-stringify-without-jsonify: 1.0.1
  1663. lodash.merge: 4.6.2
  1664. minimatch: 3.1.2
  1665. natural-compare: 1.4.0
  1666. optionator: 0.9.4
  1667. text-table: 0.2.0
  1668. transitivePeerDependencies:
  1669. - supports-color
  1670. espree@10.3.0:
  1671. dependencies:
  1672. acorn: 8.14.0
  1673. acorn-jsx: 5.3.2(acorn@8.14.0)
  1674. eslint-visitor-keys: 4.2.0
  1675. espree@9.6.1:
  1676. dependencies:
  1677. acorn: 8.14.0
  1678. acorn-jsx: 5.3.2(acorn@8.14.0)
  1679. eslint-visitor-keys: 3.4.3
  1680. esquery@1.6.0:
  1681. dependencies:
  1682. estraverse: 5.3.0
  1683. esrecurse@4.3.0:
  1684. dependencies:
  1685. estraverse: 5.3.0
  1686. estraverse@5.3.0: {}
  1687. estree-walker@2.0.2: {}
  1688. estree-walker@3.0.3:
  1689. dependencies:
  1690. '@types/estree': 1.0.6
  1691. esutils@2.0.3: {}
  1692. fast-deep-equal@3.1.3: {}
  1693. fast-diff@1.3.0: {}
  1694. fast-glob@3.3.2:
  1695. dependencies:
  1696. '@nodelib/fs.stat': 2.0.5
  1697. '@nodelib/fs.walk': 1.2.8
  1698. glob-parent: 5.1.2
  1699. merge2: 1.4.1
  1700. micromatch: 4.0.8
  1701. fast-json-stable-stringify@2.1.0: {}
  1702. fast-levenshtein@2.0.6: {}
  1703. fastq@1.17.1:
  1704. dependencies:
  1705. reusify: 1.0.4
  1706. file-entry-cache@8.0.0:
  1707. dependencies:
  1708. flat-cache: 4.0.1
  1709. fill-range@7.1.1:
  1710. dependencies:
  1711. to-regex-range: 5.0.1
  1712. find-up@5.0.0:
  1713. dependencies:
  1714. locate-path: 6.0.0
  1715. path-exists: 4.0.0
  1716. flat-cache@4.0.1:
  1717. dependencies:
  1718. flatted: 3.3.1
  1719. keyv: 4.5.4
  1720. flatted@3.3.1: {}
  1721. follow-redirects@1.15.9: {}
  1722. form-data@4.0.1:
  1723. dependencies:
  1724. asynckit: 0.4.0
  1725. combined-stream: 1.0.8
  1726. mime-types: 2.1.35
  1727. fsevents@2.3.3:
  1728. optional: true
  1729. glob-parent@5.1.2:
  1730. dependencies:
  1731. is-glob: 4.0.3
  1732. glob-parent@6.0.2:
  1733. dependencies:
  1734. is-glob: 4.0.3
  1735. globals@13.24.0:
  1736. dependencies:
  1737. type-fest: 0.20.2
  1738. globals@14.0.0: {}
  1739. graphemer@1.4.0: {}
  1740. has-flag@4.0.0: {}
  1741. he@1.2.0: {}
  1742. ignore@5.3.2: {}
  1743. import-fresh@3.3.0:
  1744. dependencies:
  1745. parent-module: 1.0.1
  1746. resolve-from: 4.0.0
  1747. imurmurhash@0.1.4: {}
  1748. is-binary-path@2.1.0:
  1749. dependencies:
  1750. binary-extensions: 2.3.0
  1751. is-extglob@2.1.1: {}
  1752. is-glob@4.0.3:
  1753. dependencies:
  1754. is-extglob: 2.1.1
  1755. is-number@7.0.0: {}
  1756. isexe@2.0.0: {}
  1757. isexe@3.1.1: {}
  1758. js-tokens@9.0.0: {}
  1759. js-yaml@4.1.0:
  1760. dependencies:
  1761. argparse: 2.0.1
  1762. json-buffer@3.0.1: {}
  1763. json-parse-even-better-errors@4.0.0: {}
  1764. json-schema-traverse@0.4.1: {}
  1765. json-stable-stringify-without-jsonify@1.0.1: {}
  1766. keyv@4.5.4:
  1767. dependencies:
  1768. json-buffer: 3.0.1
  1769. levn@0.4.1:
  1770. dependencies:
  1771. prelude-ls: 1.2.1
  1772. type-check: 0.4.0
  1773. local-pkg@0.5.0:
  1774. dependencies:
  1775. mlly: 1.7.3
  1776. pkg-types: 1.2.1
  1777. locate-path@6.0.0:
  1778. dependencies:
  1779. p-locate: 5.0.0
  1780. lodash-es@4.17.21: {}
  1781. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1782. dependencies:
  1783. '@types/lodash-es': 4.17.12
  1784. lodash: 4.17.21
  1785. lodash-es: 4.17.21
  1786. lodash.merge@4.6.2: {}
  1787. lodash@4.17.21: {}
  1788. magic-string@0.30.12:
  1789. dependencies:
  1790. '@jridgewell/sourcemap-codec': 1.5.0
  1791. memoize-one@6.0.0: {}
  1792. memorystream@0.3.1: {}
  1793. merge2@1.4.1: {}
  1794. micromatch@4.0.8:
  1795. dependencies:
  1796. braces: 3.0.3
  1797. picomatch: 2.3.1
  1798. mime-db@1.52.0: {}
  1799. mime-types@2.1.35:
  1800. dependencies:
  1801. mime-db: 1.52.0
  1802. minimatch@3.1.2:
  1803. dependencies:
  1804. brace-expansion: 1.1.11
  1805. minimatch@9.0.5:
  1806. dependencies:
  1807. brace-expansion: 2.0.1
  1808. mlly@1.7.3:
  1809. dependencies:
  1810. acorn: 8.14.0
  1811. pathe: 1.1.2
  1812. pkg-types: 1.2.1
  1813. ufo: 1.5.4
  1814. ms@2.1.3: {}
  1815. muggle-string@0.4.1: {}
  1816. nanoid@3.3.7: {}
  1817. natural-compare@1.4.0: {}
  1818. normalize-path@3.0.0: {}
  1819. normalize-wheel-es@1.2.0: {}
  1820. npm-normalize-package-bin@4.0.0: {}
  1821. npm-run-all2@7.0.1:
  1822. dependencies:
  1823. ansi-styles: 6.2.1
  1824. cross-spawn: 7.0.3
  1825. memorystream: 0.3.1
  1826. minimatch: 9.0.5
  1827. pidtree: 0.6.0
  1828. read-package-json-fast: 4.0.0
  1829. shell-quote: 1.8.1
  1830. which: 5.0.0
  1831. nth-check@2.1.1:
  1832. dependencies:
  1833. boolbase: 1.0.0
  1834. optionator@0.9.4:
  1835. dependencies:
  1836. deep-is: 0.1.4
  1837. fast-levenshtein: 2.0.6
  1838. levn: 0.4.1
  1839. prelude-ls: 1.2.1
  1840. type-check: 0.4.0
  1841. word-wrap: 1.2.5
  1842. p-limit@3.1.0:
  1843. dependencies:
  1844. yocto-queue: 0.1.0
  1845. p-locate@5.0.0:
  1846. dependencies:
  1847. p-limit: 3.1.0
  1848. parent-module@1.0.1:
  1849. dependencies:
  1850. callsites: 3.1.0
  1851. path-browserify@1.0.1: {}
  1852. path-exists@4.0.0: {}
  1853. path-key@3.1.1: {}
  1854. pathe@1.1.2: {}
  1855. picocolors@1.1.1: {}
  1856. picomatch@2.3.1: {}
  1857. picomatch@4.0.2: {}
  1858. pidtree@0.6.0: {}
  1859. pinia@2.2.6(typescript@5.6.3)(vue@3.5.12(typescript@5.6.3)):
  1860. dependencies:
  1861. '@vue/devtools-api': 6.6.4
  1862. vue: 3.5.12(typescript@5.6.3)
  1863. vue-demi: 0.14.10(vue@3.5.12(typescript@5.6.3))
  1864. optionalDependencies:
  1865. typescript: 5.6.3
  1866. pkg-types@1.2.1:
  1867. dependencies:
  1868. confbox: 0.1.8
  1869. mlly: 1.7.3
  1870. pathe: 1.1.2
  1871. postcss-selector-parser@6.1.2:
  1872. dependencies:
  1873. cssesc: 3.0.0
  1874. util-deprecate: 1.0.2
  1875. postcss@8.4.47:
  1876. dependencies:
  1877. nanoid: 3.3.7
  1878. picocolors: 1.1.1
  1879. source-map-js: 1.2.1
  1880. prelude-ls@1.2.1: {}
  1881. prettier-linter-helpers@1.0.0:
  1882. dependencies:
  1883. fast-diff: 1.3.0
  1884. prettier@3.3.3: {}
  1885. proxy-from-env@1.1.0: {}
  1886. punycode@2.3.1: {}
  1887. queue-microtask@1.2.3: {}
  1888. read-package-json-fast@4.0.0:
  1889. dependencies:
  1890. json-parse-even-better-errors: 4.0.0
  1891. npm-normalize-package-bin: 4.0.0
  1892. readdirp@3.6.0:
  1893. dependencies:
  1894. picomatch: 2.3.1
  1895. resolve-from@4.0.0: {}
  1896. reusify@1.0.4: {}
  1897. rollup@4.24.4:
  1898. dependencies:
  1899. '@types/estree': 1.0.6
  1900. optionalDependencies:
  1901. '@rollup/rollup-android-arm-eabi': 4.24.4
  1902. '@rollup/rollup-android-arm64': 4.24.4
  1903. '@rollup/rollup-darwin-arm64': 4.24.4
  1904. '@rollup/rollup-darwin-x64': 4.24.4
  1905. '@rollup/rollup-freebsd-arm64': 4.24.4
  1906. '@rollup/rollup-freebsd-x64': 4.24.4
  1907. '@rollup/rollup-linux-arm-gnueabihf': 4.24.4
  1908. '@rollup/rollup-linux-arm-musleabihf': 4.24.4
  1909. '@rollup/rollup-linux-arm64-gnu': 4.24.4
  1910. '@rollup/rollup-linux-arm64-musl': 4.24.4
  1911. '@rollup/rollup-linux-powerpc64le-gnu': 4.24.4
  1912. '@rollup/rollup-linux-riscv64-gnu': 4.24.4
  1913. '@rollup/rollup-linux-s390x-gnu': 4.24.4
  1914. '@rollup/rollup-linux-x64-gnu': 4.24.4
  1915. '@rollup/rollup-linux-x64-musl': 4.24.4
  1916. '@rollup/rollup-win32-arm64-msvc': 4.24.4
  1917. '@rollup/rollup-win32-ia32-msvc': 4.24.4
  1918. '@rollup/rollup-win32-x64-msvc': 4.24.4
  1919. fsevents: 2.3.3
  1920. run-parallel@1.2.0:
  1921. dependencies:
  1922. queue-microtask: 1.2.3
  1923. scule@1.3.0: {}
  1924. semver@7.6.3: {}
  1925. shebang-command@2.0.0:
  1926. dependencies:
  1927. shebang-regex: 3.0.0
  1928. shebang-regex@3.0.0: {}
  1929. shell-quote@1.8.1: {}
  1930. source-map-js@1.2.1: {}
  1931. strip-json-comments@3.1.1: {}
  1932. strip-literal@2.1.0:
  1933. dependencies:
  1934. js-tokens: 9.0.0
  1935. supports-color@7.2.0:
  1936. dependencies:
  1937. has-flag: 4.0.0
  1938. synckit@0.9.2:
  1939. dependencies:
  1940. '@pkgr/core': 0.1.1
  1941. tslib: 2.8.1
  1942. text-table@0.2.0: {}
  1943. to-regex-range@5.0.1:
  1944. dependencies:
  1945. is-number: 7.0.0
  1946. ts-api-utils@1.4.0(typescript@5.6.3):
  1947. dependencies:
  1948. typescript: 5.6.3
  1949. tslib@2.8.1: {}
  1950. type-check@0.4.0:
  1951. dependencies:
  1952. prelude-ls: 1.2.1
  1953. type-fest@0.20.2: {}
  1954. typescript-eslint@8.13.0(eslint@9.14.0)(typescript@5.6.3):
  1955. dependencies:
  1956. '@typescript-eslint/eslint-plugin': 8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0)(typescript@5.6.3))(eslint@9.14.0)(typescript@5.6.3)
  1957. '@typescript-eslint/parser': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1958. '@typescript-eslint/utils': 8.13.0(eslint@9.14.0)(typescript@5.6.3)
  1959. optionalDependencies:
  1960. typescript: 5.6.3
  1961. transitivePeerDependencies:
  1962. - eslint
  1963. - supports-color
  1964. typescript@5.6.3: {}
  1965. ufo@1.5.4: {}
  1966. undici-types@6.19.8: {}
  1967. unimport@3.13.1(rollup@4.24.4):
  1968. dependencies:
  1969. '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
  1970. acorn: 8.14.0
  1971. escape-string-regexp: 5.0.0
  1972. estree-walker: 3.0.3
  1973. fast-glob: 3.3.2
  1974. local-pkg: 0.5.0
  1975. magic-string: 0.30.12
  1976. mlly: 1.7.3
  1977. pathe: 1.1.2
  1978. pkg-types: 1.2.1
  1979. scule: 1.3.0
  1980. strip-literal: 2.1.0
  1981. unplugin: 1.15.0
  1982. transitivePeerDependencies:
  1983. - rollup
  1984. - webpack-sources
  1985. unplugin-auto-import@0.18.3(@vueuse/core@9.13.0(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.4):
  1986. dependencies:
  1987. '@antfu/utils': 0.7.10
  1988. '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
  1989. fast-glob: 3.3.2
  1990. local-pkg: 0.5.0
  1991. magic-string: 0.30.12
  1992. minimatch: 9.0.5
  1993. unimport: 3.13.1(rollup@4.24.4)
  1994. unplugin: 1.15.0
  1995. optionalDependencies:
  1996. '@vueuse/core': 9.13.0(vue@3.5.12(typescript@5.6.3))
  1997. transitivePeerDependencies:
  1998. - rollup
  1999. - webpack-sources
  2000. unplugin-vue-components@0.27.4(@babel/parser@7.26.2)(rollup@4.24.4)(vue@3.5.12(typescript@5.6.3)):
  2001. dependencies:
  2002. '@antfu/utils': 0.7.10
  2003. '@rollup/pluginutils': 5.1.3(rollup@4.24.4)
  2004. chokidar: 3.6.0
  2005. debug: 4.3.7
  2006. fast-glob: 3.3.2
  2007. local-pkg: 0.5.0
  2008. magic-string: 0.30.12
  2009. minimatch: 9.0.5
  2010. mlly: 1.7.3
  2011. unplugin: 1.15.0
  2012. vue: 3.5.12(typescript@5.6.3)
  2013. optionalDependencies:
  2014. '@babel/parser': 7.26.2
  2015. transitivePeerDependencies:
  2016. - rollup
  2017. - supports-color
  2018. - webpack-sources
  2019. unplugin@1.15.0:
  2020. dependencies:
  2021. acorn: 8.14.0
  2022. webpack-virtual-modules: 0.6.2
  2023. uri-js@4.4.1:
  2024. dependencies:
  2025. punycode: 2.3.1
  2026. util-deprecate@1.0.2: {}
  2027. vite@5.4.10(@types/node@20.17.6):
  2028. dependencies:
  2029. esbuild: 0.21.5
  2030. postcss: 8.4.47
  2031. rollup: 4.24.4
  2032. optionalDependencies:
  2033. '@types/node': 20.17.6
  2034. fsevents: 2.3.3
  2035. vscode-uri@3.0.8: {}
  2036. vue-demi@0.14.10(vue@3.5.12(typescript@5.6.3)):
  2037. dependencies:
  2038. vue: 3.5.12(typescript@5.6.3)
  2039. vue-eslint-parser@9.4.3(eslint@9.14.0):
  2040. dependencies:
  2041. debug: 4.3.7
  2042. eslint: 9.14.0
  2043. eslint-scope: 7.2.2
  2044. eslint-visitor-keys: 3.4.3
  2045. espree: 9.6.1
  2046. esquery: 1.6.0
  2047. lodash: 4.17.21
  2048. semver: 7.6.3
  2049. transitivePeerDependencies:
  2050. - supports-color
  2051. vue-router@4.4.5(vue@3.5.12(typescript@5.6.3)):
  2052. dependencies:
  2053. '@vue/devtools-api': 6.6.4
  2054. vue: 3.5.12(typescript@5.6.3)
  2055. vue-tsc@2.1.10(typescript@5.6.3):
  2056. dependencies:
  2057. '@volar/typescript': 2.4.8
  2058. '@vue/language-core': 2.1.10(typescript@5.6.3)
  2059. semver: 7.6.3
  2060. typescript: 5.6.3
  2061. vue@3.5.12(typescript@5.6.3):
  2062. dependencies:
  2063. '@vue/compiler-dom': 3.5.12
  2064. '@vue/compiler-sfc': 3.5.12
  2065. '@vue/runtime-dom': 3.5.12
  2066. '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.3))
  2067. '@vue/shared': 3.5.12
  2068. optionalDependencies:
  2069. typescript: 5.6.3
  2070. webpack-virtual-modules@0.6.2: {}
  2071. which@2.0.2:
  2072. dependencies:
  2073. isexe: 2.0.0
  2074. which@5.0.0:
  2075. dependencies:
  2076. isexe: 3.1.1
  2077. word-wrap@1.2.5: {}
  2078. xml-name-validator@4.0.0: {}
  2079. yocto-queue@0.1.0: {}