pnpm-lock.yaml 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. amfe-flexible:
  9. specifier: ^2.2.1
  10. version: 2.2.1
  11. element-plus:
  12. specifier: ^2.9.0
  13. version: 2.9.0(vue@3.5.13)
  14. pinia:
  15. specifier: ^2.2.6
  16. version: 2.3.0(vue@3.5.13)
  17. swiper:
  18. specifier: ^11.1.15
  19. version: 11.1.15
  20. vue:
  21. specifier: ^3.5.13
  22. version: 3.5.13
  23. vue-router:
  24. specifier: ^4.4.5
  25. version: 4.5.0(vue@3.5.13)
  26. vue3-lazy:
  27. specifier: 1.0.0-alpha.1
  28. version: 1.0.0-alpha.1(vue@3.5.13)
  29. devDependencies:
  30. '@vitejs/plugin-vue':
  31. specifier: ^5.2.1
  32. version: 5.2.1(vite@6.0.2(sass@1.82.0))(vue@3.5.13)
  33. postcss-pxtorem:
  34. specifier: ^6.1.0
  35. version: 6.1.0(postcss@8.4.49)
  36. sass:
  37. specifier: ^1.82.0
  38. version: 1.82.0
  39. unplugin-auto-import:
  40. specifier: ^0.18.6
  41. version: 0.18.6(@vueuse/core@9.13.0(vue@3.5.13))(rollup@4.28.0)
  42. unplugin-vue-components:
  43. specifier: ^0.27.5
  44. version: 0.27.5(@babel/parser@7.26.3)(rollup@4.28.0)(vue@3.5.13)
  45. vite:
  46. specifier: ^6.0.1
  47. version: 6.0.2(sass@1.82.0)
  48. vite-plugin-vue-devtools:
  49. specifier: ^7.6.5
  50. version: 7.6.7(rollup@4.28.0)(vite@6.0.2(sass@1.82.0))(vue@3.5.13)
  51. packages:
  52. '@ampproject/remapping@2.3.0':
  53. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  54. engines: {node: '>=6.0.0'}
  55. '@antfu/utils@0.7.10':
  56. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  57. '@babel/code-frame@7.26.2':
  58. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  59. engines: {node: '>=6.9.0'}
  60. '@babel/compat-data@7.26.3':
  61. resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
  62. engines: {node: '>=6.9.0'}
  63. '@babel/core@7.26.0':
  64. resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
  65. engines: {node: '>=6.9.0'}
  66. '@babel/generator@7.26.3':
  67. resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
  68. engines: {node: '>=6.9.0'}
  69. '@babel/helper-annotate-as-pure@7.25.9':
  70. resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
  71. engines: {node: '>=6.9.0'}
  72. '@babel/helper-compilation-targets@7.25.9':
  73. resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
  74. engines: {node: '>=6.9.0'}
  75. '@babel/helper-create-class-features-plugin@7.25.9':
  76. resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
  77. engines: {node: '>=6.9.0'}
  78. peerDependencies:
  79. '@babel/core': ^7.0.0
  80. '@babel/helper-member-expression-to-functions@7.25.9':
  81. resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
  82. engines: {node: '>=6.9.0'}
  83. '@babel/helper-module-imports@7.25.9':
  84. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  85. engines: {node: '>=6.9.0'}
  86. '@babel/helper-module-transforms@7.26.0':
  87. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  88. engines: {node: '>=6.9.0'}
  89. peerDependencies:
  90. '@babel/core': ^7.0.0
  91. '@babel/helper-optimise-call-expression@7.25.9':
  92. resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
  93. engines: {node: '>=6.9.0'}
  94. '@babel/helper-plugin-utils@7.25.9':
  95. resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
  96. engines: {node: '>=6.9.0'}
  97. '@babel/helper-replace-supers@7.25.9':
  98. resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
  99. engines: {node: '>=6.9.0'}
  100. peerDependencies:
  101. '@babel/core': ^7.0.0
  102. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  103. resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
  104. engines: {node: '>=6.9.0'}
  105. '@babel/helper-string-parser@7.25.9':
  106. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  107. engines: {node: '>=6.9.0'}
  108. '@babel/helper-validator-identifier@7.25.9':
  109. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  110. engines: {node: '>=6.9.0'}
  111. '@babel/helper-validator-option@7.25.9':
  112. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  113. engines: {node: '>=6.9.0'}
  114. '@babel/helpers@7.26.0':
  115. resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
  116. engines: {node: '>=6.9.0'}
  117. '@babel/parser@7.26.3':
  118. resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
  119. engines: {node: '>=6.0.0'}
  120. hasBin: true
  121. '@babel/plugin-proposal-decorators@7.25.9':
  122. resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
  123. engines: {node: '>=6.9.0'}
  124. peerDependencies:
  125. '@babel/core': ^7.0.0-0
  126. '@babel/plugin-syntax-decorators@7.25.9':
  127. resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
  128. engines: {node: '>=6.9.0'}
  129. peerDependencies:
  130. '@babel/core': ^7.0.0-0
  131. '@babel/plugin-syntax-import-attributes@7.26.0':
  132. resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
  133. engines: {node: '>=6.9.0'}
  134. peerDependencies:
  135. '@babel/core': ^7.0.0-0
  136. '@babel/plugin-syntax-import-meta@7.10.4':
  137. resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
  138. peerDependencies:
  139. '@babel/core': ^7.0.0-0
  140. '@babel/plugin-syntax-jsx@7.25.9':
  141. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  142. engines: {node: '>=6.9.0'}
  143. peerDependencies:
  144. '@babel/core': ^7.0.0-0
  145. '@babel/plugin-syntax-typescript@7.25.9':
  146. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  147. engines: {node: '>=6.9.0'}
  148. peerDependencies:
  149. '@babel/core': ^7.0.0-0
  150. '@babel/plugin-transform-typescript@7.26.3':
  151. resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
  152. engines: {node: '>=6.9.0'}
  153. peerDependencies:
  154. '@babel/core': ^7.0.0-0
  155. '@babel/template@7.25.9':
  156. resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
  157. engines: {node: '>=6.9.0'}
  158. '@babel/traverse@7.26.3':
  159. resolution: {integrity: sha512-yTmc8J+Sj8yLzwr4PD5Xb/WF3bOYu2C2OoSZPzbuqRm4n98XirsbzaX+GloeO376UnSYIYJ4NCanwV5/ugZkwA==}
  160. engines: {node: '>=6.9.0'}
  161. '@babel/types@7.26.3':
  162. resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
  163. engines: {node: '>=6.9.0'}
  164. '@ctrl/tinycolor@3.6.1':
  165. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  166. engines: {node: '>=10'}
  167. '@element-plus/icons-vue@2.3.1':
  168. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  169. peerDependencies:
  170. vue: ^3.2.0
  171. '@esbuild/aix-ppc64@0.24.0':
  172. resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
  173. engines: {node: '>=18'}
  174. cpu: [ppc64]
  175. os: [aix]
  176. '@esbuild/android-arm64@0.24.0':
  177. resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
  178. engines: {node: '>=18'}
  179. cpu: [arm64]
  180. os: [android]
  181. '@esbuild/android-arm@0.24.0':
  182. resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
  183. engines: {node: '>=18'}
  184. cpu: [arm]
  185. os: [android]
  186. '@esbuild/android-x64@0.24.0':
  187. resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
  188. engines: {node: '>=18'}
  189. cpu: [x64]
  190. os: [android]
  191. '@esbuild/darwin-arm64@0.24.0':
  192. resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
  193. engines: {node: '>=18'}
  194. cpu: [arm64]
  195. os: [darwin]
  196. '@esbuild/darwin-x64@0.24.0':
  197. resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
  198. engines: {node: '>=18'}
  199. cpu: [x64]
  200. os: [darwin]
  201. '@esbuild/freebsd-arm64@0.24.0':
  202. resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
  203. engines: {node: '>=18'}
  204. cpu: [arm64]
  205. os: [freebsd]
  206. '@esbuild/freebsd-x64@0.24.0':
  207. resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
  208. engines: {node: '>=18'}
  209. cpu: [x64]
  210. os: [freebsd]
  211. '@esbuild/linux-arm64@0.24.0':
  212. resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
  213. engines: {node: '>=18'}
  214. cpu: [arm64]
  215. os: [linux]
  216. '@esbuild/linux-arm@0.24.0':
  217. resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
  218. engines: {node: '>=18'}
  219. cpu: [arm]
  220. os: [linux]
  221. '@esbuild/linux-ia32@0.24.0':
  222. resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
  223. engines: {node: '>=18'}
  224. cpu: [ia32]
  225. os: [linux]
  226. '@esbuild/linux-loong64@0.24.0':
  227. resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
  228. engines: {node: '>=18'}
  229. cpu: [loong64]
  230. os: [linux]
  231. '@esbuild/linux-mips64el@0.24.0':
  232. resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
  233. engines: {node: '>=18'}
  234. cpu: [mips64el]
  235. os: [linux]
  236. '@esbuild/linux-ppc64@0.24.0':
  237. resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
  238. engines: {node: '>=18'}
  239. cpu: [ppc64]
  240. os: [linux]
  241. '@esbuild/linux-riscv64@0.24.0':
  242. resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
  243. engines: {node: '>=18'}
  244. cpu: [riscv64]
  245. os: [linux]
  246. '@esbuild/linux-s390x@0.24.0':
  247. resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
  248. engines: {node: '>=18'}
  249. cpu: [s390x]
  250. os: [linux]
  251. '@esbuild/linux-x64@0.24.0':
  252. resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
  253. engines: {node: '>=18'}
  254. cpu: [x64]
  255. os: [linux]
  256. '@esbuild/netbsd-x64@0.24.0':
  257. resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
  258. engines: {node: '>=18'}
  259. cpu: [x64]
  260. os: [netbsd]
  261. '@esbuild/openbsd-arm64@0.24.0':
  262. resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
  263. engines: {node: '>=18'}
  264. cpu: [arm64]
  265. os: [openbsd]
  266. '@esbuild/openbsd-x64@0.24.0':
  267. resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
  268. engines: {node: '>=18'}
  269. cpu: [x64]
  270. os: [openbsd]
  271. '@esbuild/sunos-x64@0.24.0':
  272. resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
  273. engines: {node: '>=18'}
  274. cpu: [x64]
  275. os: [sunos]
  276. '@esbuild/win32-arm64@0.24.0':
  277. resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
  278. engines: {node: '>=18'}
  279. cpu: [arm64]
  280. os: [win32]
  281. '@esbuild/win32-ia32@0.24.0':
  282. resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
  283. engines: {node: '>=18'}
  284. cpu: [ia32]
  285. os: [win32]
  286. '@esbuild/win32-x64@0.24.0':
  287. resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
  288. engines: {node: '>=18'}
  289. cpu: [x64]
  290. os: [win32]
  291. '@floating-ui/core@1.6.8':
  292. resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
  293. '@floating-ui/dom@1.6.12':
  294. resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
  295. '@floating-ui/utils@0.2.8':
  296. resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
  297. '@jridgewell/gen-mapping@0.3.5':
  298. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  299. engines: {node: '>=6.0.0'}
  300. '@jridgewell/resolve-uri@3.1.2':
  301. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  302. engines: {node: '>=6.0.0'}
  303. '@jridgewell/set-array@1.2.1':
  304. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  305. engines: {node: '>=6.0.0'}
  306. '@jridgewell/sourcemap-codec@1.5.0':
  307. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  308. '@jridgewell/trace-mapping@0.3.25':
  309. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  310. '@nodelib/fs.scandir@2.1.5':
  311. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  312. engines: {node: '>= 8'}
  313. '@nodelib/fs.stat@2.0.5':
  314. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  315. engines: {node: '>= 8'}
  316. '@nodelib/fs.walk@1.2.8':
  317. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  318. engines: {node: '>= 8'}
  319. '@parcel/watcher-android-arm64@2.5.0':
  320. resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
  321. engines: {node: '>= 10.0.0'}
  322. cpu: [arm64]
  323. os: [android]
  324. '@parcel/watcher-darwin-arm64@2.5.0':
  325. resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
  326. engines: {node: '>= 10.0.0'}
  327. cpu: [arm64]
  328. os: [darwin]
  329. '@parcel/watcher-darwin-x64@2.5.0':
  330. resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
  331. engines: {node: '>= 10.0.0'}
  332. cpu: [x64]
  333. os: [darwin]
  334. '@parcel/watcher-freebsd-x64@2.5.0':
  335. resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
  336. engines: {node: '>= 10.0.0'}
  337. cpu: [x64]
  338. os: [freebsd]
  339. '@parcel/watcher-linux-arm-glibc@2.5.0':
  340. resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
  341. engines: {node: '>= 10.0.0'}
  342. cpu: [arm]
  343. os: [linux]
  344. libc: [glibc]
  345. '@parcel/watcher-linux-arm-musl@2.5.0':
  346. resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
  347. engines: {node: '>= 10.0.0'}
  348. cpu: [arm]
  349. os: [linux]
  350. libc: [musl]
  351. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  352. resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
  353. engines: {node: '>= 10.0.0'}
  354. cpu: [arm64]
  355. os: [linux]
  356. libc: [glibc]
  357. '@parcel/watcher-linux-arm64-musl@2.5.0':
  358. resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
  359. engines: {node: '>= 10.0.0'}
  360. cpu: [arm64]
  361. os: [linux]
  362. libc: [musl]
  363. '@parcel/watcher-linux-x64-glibc@2.5.0':
  364. resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
  365. engines: {node: '>= 10.0.0'}
  366. cpu: [x64]
  367. os: [linux]
  368. libc: [glibc]
  369. '@parcel/watcher-linux-x64-musl@2.5.0':
  370. resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
  371. engines: {node: '>= 10.0.0'}
  372. cpu: [x64]
  373. os: [linux]
  374. libc: [musl]
  375. '@parcel/watcher-win32-arm64@2.5.0':
  376. resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
  377. engines: {node: '>= 10.0.0'}
  378. cpu: [arm64]
  379. os: [win32]
  380. '@parcel/watcher-win32-ia32@2.5.0':
  381. resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
  382. engines: {node: '>= 10.0.0'}
  383. cpu: [ia32]
  384. os: [win32]
  385. '@parcel/watcher-win32-x64@2.5.0':
  386. resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
  387. engines: {node: '>= 10.0.0'}
  388. cpu: [x64]
  389. os: [win32]
  390. '@parcel/watcher@2.5.0':
  391. resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
  392. engines: {node: '>= 10.0.0'}
  393. '@polka/url@1.0.0-next.28':
  394. resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
  395. '@rollup/pluginutils@5.1.3':
  396. resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
  397. engines: {node: '>=14.0.0'}
  398. peerDependencies:
  399. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  400. peerDependenciesMeta:
  401. rollup:
  402. optional: true
  403. '@rollup/rollup-android-arm-eabi@4.28.0':
  404. resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==}
  405. cpu: [arm]
  406. os: [android]
  407. '@rollup/rollup-android-arm64@4.28.0':
  408. resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==}
  409. cpu: [arm64]
  410. os: [android]
  411. '@rollup/rollup-darwin-arm64@4.28.0':
  412. resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==}
  413. cpu: [arm64]
  414. os: [darwin]
  415. '@rollup/rollup-darwin-x64@4.28.0':
  416. resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==}
  417. cpu: [x64]
  418. os: [darwin]
  419. '@rollup/rollup-freebsd-arm64@4.28.0':
  420. resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==}
  421. cpu: [arm64]
  422. os: [freebsd]
  423. '@rollup/rollup-freebsd-x64@4.28.0':
  424. resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==}
  425. cpu: [x64]
  426. os: [freebsd]
  427. '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
  428. resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==}
  429. cpu: [arm]
  430. os: [linux]
  431. libc: [glibc]
  432. '@rollup/rollup-linux-arm-musleabihf@4.28.0':
  433. resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==}
  434. cpu: [arm]
  435. os: [linux]
  436. libc: [musl]
  437. '@rollup/rollup-linux-arm64-gnu@4.28.0':
  438. resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==}
  439. cpu: [arm64]
  440. os: [linux]
  441. libc: [glibc]
  442. '@rollup/rollup-linux-arm64-musl@4.28.0':
  443. resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==}
  444. cpu: [arm64]
  445. os: [linux]
  446. libc: [musl]
  447. '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
  448. resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==}
  449. cpu: [ppc64]
  450. os: [linux]
  451. libc: [glibc]
  452. '@rollup/rollup-linux-riscv64-gnu@4.28.0':
  453. resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==}
  454. cpu: [riscv64]
  455. os: [linux]
  456. libc: [glibc]
  457. '@rollup/rollup-linux-s390x-gnu@4.28.0':
  458. resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==}
  459. cpu: [s390x]
  460. os: [linux]
  461. libc: [glibc]
  462. '@rollup/rollup-linux-x64-gnu@4.28.0':
  463. resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==}
  464. cpu: [x64]
  465. os: [linux]
  466. libc: [glibc]
  467. '@rollup/rollup-linux-x64-musl@4.28.0':
  468. resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==}
  469. cpu: [x64]
  470. os: [linux]
  471. libc: [musl]
  472. '@rollup/rollup-win32-arm64-msvc@4.28.0':
  473. resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==}
  474. cpu: [arm64]
  475. os: [win32]
  476. '@rollup/rollup-win32-ia32-msvc@4.28.0':
  477. resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==}
  478. cpu: [ia32]
  479. os: [win32]
  480. '@rollup/rollup-win32-x64-msvc@4.28.0':
  481. resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==}
  482. cpu: [x64]
  483. os: [win32]
  484. '@sec-ant/readable-stream@0.4.1':
  485. resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
  486. '@sindresorhus/merge-streams@4.0.0':
  487. resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
  488. engines: {node: '>=18'}
  489. '@sxzz/popperjs-es@2.11.7':
  490. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  491. '@types/estree@1.0.6':
  492. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  493. '@types/lodash-es@4.17.12':
  494. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  495. '@types/lodash@4.17.13':
  496. resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
  497. '@types/web-bluetooth@0.0.16':
  498. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  499. '@vitejs/plugin-vue@5.2.1':
  500. resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==}
  501. engines: {node: ^18.0.0 || >=20.0.0}
  502. peerDependencies:
  503. vite: ^5.0.0 || ^6.0.0
  504. vue: ^3.2.25
  505. '@vue/babel-helper-vue-transform-on@1.2.5':
  506. resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
  507. '@vue/babel-plugin-jsx@1.2.5':
  508. resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
  509. peerDependencies:
  510. '@babel/core': ^7.0.0-0
  511. peerDependenciesMeta:
  512. '@babel/core':
  513. optional: true
  514. '@vue/babel-plugin-resolve-type@1.2.5':
  515. resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
  516. peerDependencies:
  517. '@babel/core': ^7.0.0-0
  518. '@vue/compiler-core@3.5.13':
  519. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  520. '@vue/compiler-dom@3.5.13':
  521. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  522. '@vue/compiler-sfc@3.5.13':
  523. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  524. '@vue/compiler-ssr@3.5.13':
  525. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  526. '@vue/devtools-api@6.6.4':
  527. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  528. '@vue/devtools-core@7.6.7':
  529. resolution: {integrity: sha512-6fW8Q0H1NHDXdEcuV6dylT5U2Yxg3SdMnVCey99Y6S4R2PNgFL2vC+VU9U9rHIiaoEUkeza42S7FfHxV4VI3Jg==}
  530. peerDependencies:
  531. vue: ^3.0.0
  532. '@vue/devtools-kit@7.6.7':
  533. resolution: {integrity: sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==}
  534. '@vue/devtools-shared@7.6.7':
  535. resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==}
  536. '@vue/reactivity@3.5.13':
  537. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  538. '@vue/runtime-core@3.5.13':
  539. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  540. '@vue/runtime-dom@3.5.13':
  541. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  542. '@vue/server-renderer@3.5.13':
  543. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  544. peerDependencies:
  545. vue: 3.5.13
  546. '@vue/shared@3.5.13':
  547. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  548. '@vueuse/core@9.13.0':
  549. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  550. '@vueuse/metadata@9.13.0':
  551. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  552. '@vueuse/shared@9.13.0':
  553. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  554. acorn@8.14.0:
  555. resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
  556. engines: {node: '>=0.4.0'}
  557. hasBin: true
  558. amfe-flexible@2.2.1:
  559. resolution: {integrity: sha512-L2VfvDzoETBjhRptg5u/IUuzHSuxm22JpSRb404p/TBGeRfwWmmNEbB+TFPIP/sS/+pbM18bCFH9QnMojLuPNw==}
  560. anymatch@3.1.3:
  561. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  562. engines: {node: '>= 8'}
  563. async-validator@4.2.5:
  564. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  565. balanced-match@1.0.2:
  566. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  567. binary-extensions@2.3.0:
  568. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  569. engines: {node: '>=8'}
  570. birpc@0.2.19:
  571. resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
  572. brace-expansion@2.0.1:
  573. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  574. braces@3.0.3:
  575. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  576. engines: {node: '>=8'}
  577. browserslist@4.24.2:
  578. resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
  579. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  580. hasBin: true
  581. bundle-name@4.1.0:
  582. resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
  583. engines: {node: '>=18'}
  584. caniuse-lite@1.0.30001686:
  585. resolution: {integrity: sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==}
  586. chokidar@3.6.0:
  587. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  588. engines: {node: '>= 8.10.0'}
  589. chokidar@4.0.1:
  590. resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
  591. engines: {node: '>= 14.16.0'}
  592. confbox@0.1.8:
  593. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  594. convert-source-map@2.0.0:
  595. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  596. copy-anything@3.0.5:
  597. resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
  598. engines: {node: '>=12.13'}
  599. cross-spawn@7.0.6:
  600. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  601. engines: {node: '>= 8'}
  602. csstype@3.1.3:
  603. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  604. dayjs@1.11.13:
  605. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  606. debug@4.3.7:
  607. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  608. engines: {node: '>=6.0'}
  609. peerDependencies:
  610. supports-color: '*'
  611. peerDependenciesMeta:
  612. supports-color:
  613. optional: true
  614. default-browser-id@5.0.0:
  615. resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
  616. engines: {node: '>=18'}
  617. default-browser@5.2.1:
  618. resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
  619. engines: {node: '>=18'}
  620. define-lazy-prop@3.0.0:
  621. resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
  622. engines: {node: '>=12'}
  623. detect-libc@1.0.3:
  624. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  625. engines: {node: '>=0.10'}
  626. hasBin: true
  627. electron-to-chromium@1.5.70:
  628. resolution: {integrity: sha512-P6FPqAWIZrC3sHDAwBitJBs7N7IF58m39XVny7DFseQXK2eiMn7nNQizFf63mWDDUnFvaqsM8FI0+ZZfLkdUGA==}
  629. element-plus@2.9.0:
  630. resolution: {integrity: sha512-ccOFXKsauo2dtokAr4OX7gZsb7TuAoVxA2zGRZo5o2yyDDBLBaZxOoFQPoxITSLcHbBfQuNDGK5Iag5hnyKkZA==}
  631. peerDependencies:
  632. vue: ^3.2.0
  633. entities@4.5.0:
  634. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  635. engines: {node: '>=0.12'}
  636. error-stack-parser-es@0.1.5:
  637. resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
  638. esbuild@0.24.0:
  639. resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
  640. engines: {node: '>=18'}
  641. hasBin: true
  642. escalade@3.2.0:
  643. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  644. engines: {node: '>=6'}
  645. escape-html@1.0.3:
  646. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  647. escape-string-regexp@5.0.0:
  648. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  649. engines: {node: '>=12'}
  650. estree-walker@2.0.2:
  651. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  652. estree-walker@3.0.3:
  653. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  654. execa@9.5.1:
  655. resolution: {integrity: sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==}
  656. engines: {node: ^18.19.0 || >=20.5.0}
  657. fast-glob@3.3.2:
  658. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  659. engines: {node: '>=8.6.0'}
  660. fastq@1.17.1:
  661. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  662. figures@6.1.0:
  663. resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
  664. engines: {node: '>=18'}
  665. fill-range@7.1.1:
  666. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  667. engines: {node: '>=8'}
  668. fs-extra@11.2.0:
  669. resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
  670. engines: {node: '>=14.14'}
  671. fsevents@2.3.3:
  672. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  673. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  674. os: [darwin]
  675. gensync@1.0.0-beta.2:
  676. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  677. engines: {node: '>=6.9.0'}
  678. get-stream@9.0.1:
  679. resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
  680. engines: {node: '>=18'}
  681. glob-parent@5.1.2:
  682. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  683. engines: {node: '>= 6'}
  684. globals@11.12.0:
  685. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  686. engines: {node: '>=4'}
  687. graceful-fs@4.2.11:
  688. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  689. hookable@5.5.3:
  690. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  691. html-tags@3.3.1:
  692. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  693. engines: {node: '>=8'}
  694. human-signals@8.0.0:
  695. resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
  696. engines: {node: '>=18.18.0'}
  697. immutable@5.0.3:
  698. resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
  699. is-binary-path@2.1.0:
  700. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  701. engines: {node: '>=8'}
  702. is-docker@3.0.0:
  703. resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
  704. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  705. hasBin: true
  706. is-extglob@2.1.1:
  707. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  708. engines: {node: '>=0.10.0'}
  709. is-glob@4.0.3:
  710. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  711. engines: {node: '>=0.10.0'}
  712. is-inside-container@1.0.0:
  713. resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
  714. engines: {node: '>=14.16'}
  715. hasBin: true
  716. is-number@7.0.0:
  717. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  718. engines: {node: '>=0.12.0'}
  719. is-plain-obj@4.1.0:
  720. resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
  721. engines: {node: '>=12'}
  722. is-stream@4.0.1:
  723. resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
  724. engines: {node: '>=18'}
  725. is-unicode-supported@2.1.0:
  726. resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
  727. engines: {node: '>=18'}
  728. is-what@4.1.16:
  729. resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
  730. engines: {node: '>=12.13'}
  731. is-wsl@3.1.0:
  732. resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
  733. engines: {node: '>=16'}
  734. isexe@2.0.0:
  735. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  736. js-tokens@4.0.0:
  737. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  738. js-tokens@9.0.1:
  739. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  740. jsesc@3.0.2:
  741. resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
  742. engines: {node: '>=6'}
  743. hasBin: true
  744. json5@2.2.3:
  745. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  746. engines: {node: '>=6'}
  747. hasBin: true
  748. jsonfile@6.1.0:
  749. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  750. kolorist@1.8.0:
  751. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  752. local-pkg@0.5.1:
  753. resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
  754. engines: {node: '>=14'}
  755. lodash-es@4.17.21:
  756. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  757. lodash-unified@1.0.3:
  758. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  759. peerDependencies:
  760. '@types/lodash-es': '*'
  761. lodash: '*'
  762. lodash-es: '*'
  763. lodash@4.17.21:
  764. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  765. lru-cache@5.1.1:
  766. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  767. magic-string@0.30.14:
  768. resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
  769. memoize-one@6.0.0:
  770. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  771. merge2@1.4.1:
  772. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  773. engines: {node: '>= 8'}
  774. micromatch@4.0.8:
  775. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  776. engines: {node: '>=8.6'}
  777. minimatch@9.0.5:
  778. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  779. engines: {node: '>=16 || 14 >=14.17'}
  780. mitt@3.0.1:
  781. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  782. mlly@1.7.3:
  783. resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
  784. mrmime@2.0.0:
  785. resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
  786. engines: {node: '>=10'}
  787. ms@2.1.3:
  788. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  789. nanoid@3.3.8:
  790. resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
  791. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  792. hasBin: true
  793. nanoid@5.0.9:
  794. resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
  795. engines: {node: ^18 || >=20}
  796. hasBin: true
  797. node-addon-api@7.1.1:
  798. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  799. node-releases@2.0.18:
  800. resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
  801. normalize-path@3.0.0:
  802. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  803. engines: {node: '>=0.10.0'}
  804. normalize-wheel-es@1.2.0:
  805. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  806. npm-run-path@6.0.0:
  807. resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
  808. engines: {node: '>=18'}
  809. open@10.1.0:
  810. resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
  811. engines: {node: '>=18'}
  812. parse-ms@4.0.0:
  813. resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
  814. engines: {node: '>=18'}
  815. path-key@3.1.1:
  816. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  817. engines: {node: '>=8'}
  818. path-key@4.0.0:
  819. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  820. engines: {node: '>=12'}
  821. pathe@1.1.2:
  822. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  823. perfect-debounce@1.0.0:
  824. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  825. picocolors@1.1.1:
  826. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  827. picomatch@2.3.1:
  828. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  829. engines: {node: '>=8.6'}
  830. picomatch@4.0.2:
  831. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  832. engines: {node: '>=12'}
  833. pinia@2.3.0:
  834. resolution: {integrity: sha512-ohZj3jla0LL0OH5PlLTDMzqKiVw2XARmC1XYLdLWIPBMdhDW/123ZWr4zVAhtJm+aoSkFa13pYXskAvAscIkhQ==}
  835. peerDependencies:
  836. typescript: '>=4.4.4'
  837. vue: ^2.7.0 || ^3.5.11
  838. peerDependenciesMeta:
  839. typescript:
  840. optional: true
  841. pkg-types@1.2.1:
  842. resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
  843. postcss-pxtorem@6.1.0:
  844. resolution: {integrity: sha512-ROODSNci9ADal3zUcPHOF/K83TiCgNSPXQFSbwyPHNV8ioHIE4SaC+FPOufd8jsr5jV2uIz29v1Uqy1c4ov42g==}
  845. peerDependencies:
  846. postcss: ^8.0.0
  847. postcss@8.4.49:
  848. resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
  849. engines: {node: ^10 || ^12 || >=14}
  850. pretty-ms@9.2.0:
  851. resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
  852. engines: {node: '>=18'}
  853. queue-microtask@1.2.3:
  854. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  855. readdirp@3.6.0:
  856. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  857. engines: {node: '>=8.10.0'}
  858. readdirp@4.0.2:
  859. resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
  860. engines: {node: '>= 14.16.0'}
  861. reusify@1.0.4:
  862. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  863. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  864. rfdc@1.4.1:
  865. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  866. rollup@4.28.0:
  867. resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==}
  868. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  869. hasBin: true
  870. run-applescript@7.0.0:
  871. resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
  872. engines: {node: '>=18'}
  873. run-parallel@1.2.0:
  874. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  875. sass@1.82.0:
  876. resolution: {integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==}
  877. engines: {node: '>=14.0.0'}
  878. hasBin: true
  879. scule@1.3.0:
  880. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  881. semver@6.3.1:
  882. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  883. hasBin: true
  884. shebang-command@2.0.0:
  885. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  886. engines: {node: '>=8'}
  887. shebang-regex@3.0.0:
  888. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  889. engines: {node: '>=8'}
  890. signal-exit@4.1.0:
  891. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  892. engines: {node: '>=14'}
  893. sirv@3.0.0:
  894. resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
  895. engines: {node: '>=18'}
  896. source-map-js@1.2.1:
  897. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  898. engines: {node: '>=0.10.0'}
  899. speakingurl@14.0.1:
  900. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  901. engines: {node: '>=0.10.0'}
  902. strip-final-newline@4.0.0:
  903. resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
  904. engines: {node: '>=18'}
  905. strip-literal@2.1.1:
  906. resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
  907. superjson@2.2.1:
  908. resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
  909. engines: {node: '>=16'}
  910. svg-tags@1.0.0:
  911. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  912. swiper@11.1.15:
  913. resolution: {integrity: sha512-IzWeU34WwC7gbhjKsjkImTuCRf+lRbO6cnxMGs88iVNKDwV+xQpBCJxZ4bNH6gSrIbbyVJ1kuGzo3JTtz//CBw==}
  914. engines: {node: '>= 4.7.0'}
  915. to-regex-range@5.0.1:
  916. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  917. engines: {node: '>=8.0'}
  918. totalist@3.0.1:
  919. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  920. engines: {node: '>=6'}
  921. ufo@1.5.4:
  922. resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
  923. unicorn-magic@0.3.0:
  924. resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
  925. engines: {node: '>=18'}
  926. unimport@3.14.5:
  927. resolution: {integrity: sha512-tn890SwFFZxqaJSKQPPd+yygfKSATbM8BZWW1aCR2TJBTs1SDrmLamBueaFtYsGjHtQaRgqEbQflOjN2iW12gA==}
  928. universalify@2.0.1:
  929. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  930. engines: {node: '>= 10.0.0'}
  931. unplugin-auto-import@0.18.6:
  932. resolution: {integrity: sha512-LMFzX5DtkTj/3wZuyG5bgKBoJ7WSgzqSGJ8ppDRdlvPh45mx6t6w3OcbExQi53n3xF5MYkNGPNR/HYOL95KL2A==}
  933. engines: {node: '>=14'}
  934. peerDependencies:
  935. '@nuxt/kit': ^3.2.2
  936. '@vueuse/core': '*'
  937. peerDependenciesMeta:
  938. '@nuxt/kit':
  939. optional: true
  940. '@vueuse/core':
  941. optional: true
  942. unplugin-vue-components@0.27.5:
  943. resolution: {integrity: sha512-m9j4goBeNwXyNN8oZHHxvIIYiG8FQ9UfmKWeNllpDvhU7btKNNELGPt+o3mckQKuPwrE7e0PvCsx+IWuDSD9Vg==}
  944. engines: {node: '>=14'}
  945. peerDependencies:
  946. '@babel/parser': ^7.15.8
  947. '@nuxt/kit': ^3.2.2
  948. vue: 2 || 3
  949. peerDependenciesMeta:
  950. '@babel/parser':
  951. optional: true
  952. '@nuxt/kit':
  953. optional: true
  954. unplugin@1.16.0:
  955. resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
  956. engines: {node: '>=14.0.0'}
  957. update-browserslist-db@1.1.1:
  958. resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
  959. hasBin: true
  960. peerDependencies:
  961. browserslist: '>= 4.21.0'
  962. vite-hot-client@0.2.4:
  963. resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
  964. peerDependencies:
  965. vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
  966. vite-plugin-inspect@0.8.8:
  967. resolution: {integrity: sha512-aZlBuXsWUPJFmMK92GIv6lH7LrwG2POu4KJ+aEdcqnu92OAf+rhBnfMDQvxIJPEB7hE2t5EyY/PMgf5aDLT8EA==}
  968. engines: {node: '>=14'}
  969. peerDependencies:
  970. '@nuxt/kit': '*'
  971. vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
  972. peerDependenciesMeta:
  973. '@nuxt/kit':
  974. optional: true
  975. vite-plugin-vue-devtools@7.6.7:
  976. resolution: {integrity: sha512-H1ZyjtpWjP5mHA5R15sQeYgAARuh2Myg3TDFXWZK6QOQRy8s3XjTIt319DogVjU/x3rC3L/jJQjIasRU04mWXA==}
  977. engines: {node: '>=v14.21.3'}
  978. peerDependencies:
  979. vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
  980. vite-plugin-vue-inspector@5.3.1:
  981. resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
  982. peerDependencies:
  983. vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
  984. vite@6.0.2:
  985. resolution: {integrity: sha512-XdQ+VsY2tJpBsKGs0wf3U/+azx8BBpYRHFAyKm5VeEZNOJZRB63q7Sc8Iup3k0TrN3KO6QgyzFf+opSbfY1y0g==}
  986. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  987. hasBin: true
  988. peerDependencies:
  989. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  990. jiti: '>=1.21.0'
  991. less: '*'
  992. lightningcss: ^1.21.0
  993. sass: '*'
  994. sass-embedded: '*'
  995. stylus: '*'
  996. sugarss: '*'
  997. terser: ^5.16.0
  998. tsx: ^4.8.1
  999. yaml: ^2.4.2
  1000. peerDependenciesMeta:
  1001. '@types/node':
  1002. optional: true
  1003. jiti:
  1004. optional: true
  1005. less:
  1006. optional: true
  1007. lightningcss:
  1008. optional: true
  1009. sass:
  1010. optional: true
  1011. sass-embedded:
  1012. optional: true
  1013. stylus:
  1014. optional: true
  1015. sugarss:
  1016. optional: true
  1017. terser:
  1018. optional: true
  1019. tsx:
  1020. optional: true
  1021. yaml:
  1022. optional: true
  1023. vue-demi@0.14.10:
  1024. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1025. engines: {node: '>=12'}
  1026. hasBin: true
  1027. peerDependencies:
  1028. '@vue/composition-api': ^1.0.0-rc.1
  1029. vue: ^3.0.0-0 || ^2.6.0
  1030. peerDependenciesMeta:
  1031. '@vue/composition-api':
  1032. optional: true
  1033. vue-router@4.5.0:
  1034. resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
  1035. peerDependencies:
  1036. vue: ^3.2.0
  1037. vue3-lazy@1.0.0-alpha.1:
  1038. resolution: {integrity: sha512-dpjpKK4DC5q+wZVtS/VY3X6pYBJHxRmYanr20s39RB6o6fvbneQ/DNuz37bipYfEdrEvbSZ95Y2SCexuznQNrQ==}
  1039. engines: {node: '>=6.0.0'}
  1040. peerDependencies:
  1041. vue: ^3.0.0-alpha.9
  1042. vue@3.5.13:
  1043. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1044. peerDependencies:
  1045. typescript: '*'
  1046. peerDependenciesMeta:
  1047. typescript:
  1048. optional: true
  1049. webpack-virtual-modules@0.6.2:
  1050. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1051. which@2.0.2:
  1052. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1053. engines: {node: '>= 8'}
  1054. hasBin: true
  1055. yallist@3.1.1:
  1056. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1057. yoctocolors@2.1.1:
  1058. resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
  1059. engines: {node: '>=18'}
  1060. snapshots:
  1061. '@ampproject/remapping@2.3.0':
  1062. dependencies:
  1063. '@jridgewell/gen-mapping': 0.3.5
  1064. '@jridgewell/trace-mapping': 0.3.25
  1065. '@antfu/utils@0.7.10': {}
  1066. '@babel/code-frame@7.26.2':
  1067. dependencies:
  1068. '@babel/helper-validator-identifier': 7.25.9
  1069. js-tokens: 4.0.0
  1070. picocolors: 1.1.1
  1071. '@babel/compat-data@7.26.3': {}
  1072. '@babel/core@7.26.0':
  1073. dependencies:
  1074. '@ampproject/remapping': 2.3.0
  1075. '@babel/code-frame': 7.26.2
  1076. '@babel/generator': 7.26.3
  1077. '@babel/helper-compilation-targets': 7.25.9
  1078. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
  1079. '@babel/helpers': 7.26.0
  1080. '@babel/parser': 7.26.3
  1081. '@babel/template': 7.25.9
  1082. '@babel/traverse': 7.26.3
  1083. '@babel/types': 7.26.3
  1084. convert-source-map: 2.0.0
  1085. debug: 4.3.7
  1086. gensync: 1.0.0-beta.2
  1087. json5: 2.2.3
  1088. semver: 6.3.1
  1089. transitivePeerDependencies:
  1090. - supports-color
  1091. '@babel/generator@7.26.3':
  1092. dependencies:
  1093. '@babel/parser': 7.26.3
  1094. '@babel/types': 7.26.3
  1095. '@jridgewell/gen-mapping': 0.3.5
  1096. '@jridgewell/trace-mapping': 0.3.25
  1097. jsesc: 3.0.2
  1098. '@babel/helper-annotate-as-pure@7.25.9':
  1099. dependencies:
  1100. '@babel/types': 7.26.3
  1101. '@babel/helper-compilation-targets@7.25.9':
  1102. dependencies:
  1103. '@babel/compat-data': 7.26.3
  1104. '@babel/helper-validator-option': 7.25.9
  1105. browserslist: 4.24.2
  1106. lru-cache: 5.1.1
  1107. semver: 6.3.1
  1108. '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
  1109. dependencies:
  1110. '@babel/core': 7.26.0
  1111. '@babel/helper-annotate-as-pure': 7.25.9
  1112. '@babel/helper-member-expression-to-functions': 7.25.9
  1113. '@babel/helper-optimise-call-expression': 7.25.9
  1114. '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
  1115. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1116. '@babel/traverse': 7.26.3
  1117. semver: 6.3.1
  1118. transitivePeerDependencies:
  1119. - supports-color
  1120. '@babel/helper-member-expression-to-functions@7.25.9':
  1121. dependencies:
  1122. '@babel/traverse': 7.26.3
  1123. '@babel/types': 7.26.3
  1124. transitivePeerDependencies:
  1125. - supports-color
  1126. '@babel/helper-module-imports@7.25.9':
  1127. dependencies:
  1128. '@babel/traverse': 7.26.3
  1129. '@babel/types': 7.26.3
  1130. transitivePeerDependencies:
  1131. - supports-color
  1132. '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
  1133. dependencies:
  1134. '@babel/core': 7.26.0
  1135. '@babel/helper-module-imports': 7.25.9
  1136. '@babel/helper-validator-identifier': 7.25.9
  1137. '@babel/traverse': 7.26.3
  1138. transitivePeerDependencies:
  1139. - supports-color
  1140. '@babel/helper-optimise-call-expression@7.25.9':
  1141. dependencies:
  1142. '@babel/types': 7.26.3
  1143. '@babel/helper-plugin-utils@7.25.9': {}
  1144. '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
  1145. dependencies:
  1146. '@babel/core': 7.26.0
  1147. '@babel/helper-member-expression-to-functions': 7.25.9
  1148. '@babel/helper-optimise-call-expression': 7.25.9
  1149. '@babel/traverse': 7.26.3
  1150. transitivePeerDependencies:
  1151. - supports-color
  1152. '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
  1153. dependencies:
  1154. '@babel/traverse': 7.26.3
  1155. '@babel/types': 7.26.3
  1156. transitivePeerDependencies:
  1157. - supports-color
  1158. '@babel/helper-string-parser@7.25.9': {}
  1159. '@babel/helper-validator-identifier@7.25.9': {}
  1160. '@babel/helper-validator-option@7.25.9': {}
  1161. '@babel/helpers@7.26.0':
  1162. dependencies:
  1163. '@babel/template': 7.25.9
  1164. '@babel/types': 7.26.3
  1165. '@babel/parser@7.26.3':
  1166. dependencies:
  1167. '@babel/types': 7.26.3
  1168. '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
  1169. dependencies:
  1170. '@babel/core': 7.26.0
  1171. '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
  1172. '@babel/helper-plugin-utils': 7.25.9
  1173. '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
  1174. transitivePeerDependencies:
  1175. - supports-color
  1176. '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
  1177. dependencies:
  1178. '@babel/core': 7.26.0
  1179. '@babel/helper-plugin-utils': 7.25.9
  1180. '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
  1181. dependencies:
  1182. '@babel/core': 7.26.0
  1183. '@babel/helper-plugin-utils': 7.25.9
  1184. '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
  1185. dependencies:
  1186. '@babel/core': 7.26.0
  1187. '@babel/helper-plugin-utils': 7.25.9
  1188. '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
  1189. dependencies:
  1190. '@babel/core': 7.26.0
  1191. '@babel/helper-plugin-utils': 7.25.9
  1192. '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
  1193. dependencies:
  1194. '@babel/core': 7.26.0
  1195. '@babel/helper-plugin-utils': 7.25.9
  1196. '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
  1197. dependencies:
  1198. '@babel/core': 7.26.0
  1199. '@babel/helper-annotate-as-pure': 7.25.9
  1200. '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
  1201. '@babel/helper-plugin-utils': 7.25.9
  1202. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  1203. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
  1204. transitivePeerDependencies:
  1205. - supports-color
  1206. '@babel/template@7.25.9':
  1207. dependencies:
  1208. '@babel/code-frame': 7.26.2
  1209. '@babel/parser': 7.26.3
  1210. '@babel/types': 7.26.3
  1211. '@babel/traverse@7.26.3':
  1212. dependencies:
  1213. '@babel/code-frame': 7.26.2
  1214. '@babel/generator': 7.26.3
  1215. '@babel/parser': 7.26.3
  1216. '@babel/template': 7.25.9
  1217. '@babel/types': 7.26.3
  1218. debug: 4.3.7
  1219. globals: 11.12.0
  1220. transitivePeerDependencies:
  1221. - supports-color
  1222. '@babel/types@7.26.3':
  1223. dependencies:
  1224. '@babel/helper-string-parser': 7.25.9
  1225. '@babel/helper-validator-identifier': 7.25.9
  1226. '@ctrl/tinycolor@3.6.1': {}
  1227. '@element-plus/icons-vue@2.3.1(vue@3.5.13)':
  1228. dependencies:
  1229. vue: 3.5.13
  1230. '@esbuild/aix-ppc64@0.24.0':
  1231. optional: true
  1232. '@esbuild/android-arm64@0.24.0':
  1233. optional: true
  1234. '@esbuild/android-arm@0.24.0':
  1235. optional: true
  1236. '@esbuild/android-x64@0.24.0':
  1237. optional: true
  1238. '@esbuild/darwin-arm64@0.24.0':
  1239. optional: true
  1240. '@esbuild/darwin-x64@0.24.0':
  1241. optional: true
  1242. '@esbuild/freebsd-arm64@0.24.0':
  1243. optional: true
  1244. '@esbuild/freebsd-x64@0.24.0':
  1245. optional: true
  1246. '@esbuild/linux-arm64@0.24.0':
  1247. optional: true
  1248. '@esbuild/linux-arm@0.24.0':
  1249. optional: true
  1250. '@esbuild/linux-ia32@0.24.0':
  1251. optional: true
  1252. '@esbuild/linux-loong64@0.24.0':
  1253. optional: true
  1254. '@esbuild/linux-mips64el@0.24.0':
  1255. optional: true
  1256. '@esbuild/linux-ppc64@0.24.0':
  1257. optional: true
  1258. '@esbuild/linux-riscv64@0.24.0':
  1259. optional: true
  1260. '@esbuild/linux-s390x@0.24.0':
  1261. optional: true
  1262. '@esbuild/linux-x64@0.24.0':
  1263. optional: true
  1264. '@esbuild/netbsd-x64@0.24.0':
  1265. optional: true
  1266. '@esbuild/openbsd-arm64@0.24.0':
  1267. optional: true
  1268. '@esbuild/openbsd-x64@0.24.0':
  1269. optional: true
  1270. '@esbuild/sunos-x64@0.24.0':
  1271. optional: true
  1272. '@esbuild/win32-arm64@0.24.0':
  1273. optional: true
  1274. '@esbuild/win32-ia32@0.24.0':
  1275. optional: true
  1276. '@esbuild/win32-x64@0.24.0':
  1277. optional: true
  1278. '@floating-ui/core@1.6.8':
  1279. dependencies:
  1280. '@floating-ui/utils': 0.2.8
  1281. '@floating-ui/dom@1.6.12':
  1282. dependencies:
  1283. '@floating-ui/core': 1.6.8
  1284. '@floating-ui/utils': 0.2.8
  1285. '@floating-ui/utils@0.2.8': {}
  1286. '@jridgewell/gen-mapping@0.3.5':
  1287. dependencies:
  1288. '@jridgewell/set-array': 1.2.1
  1289. '@jridgewell/sourcemap-codec': 1.5.0
  1290. '@jridgewell/trace-mapping': 0.3.25
  1291. '@jridgewell/resolve-uri@3.1.2': {}
  1292. '@jridgewell/set-array@1.2.1': {}
  1293. '@jridgewell/sourcemap-codec@1.5.0': {}
  1294. '@jridgewell/trace-mapping@0.3.25':
  1295. dependencies:
  1296. '@jridgewell/resolve-uri': 3.1.2
  1297. '@jridgewell/sourcemap-codec': 1.5.0
  1298. '@nodelib/fs.scandir@2.1.5':
  1299. dependencies:
  1300. '@nodelib/fs.stat': 2.0.5
  1301. run-parallel: 1.2.0
  1302. '@nodelib/fs.stat@2.0.5': {}
  1303. '@nodelib/fs.walk@1.2.8':
  1304. dependencies:
  1305. '@nodelib/fs.scandir': 2.1.5
  1306. fastq: 1.17.1
  1307. '@parcel/watcher-android-arm64@2.5.0':
  1308. optional: true
  1309. '@parcel/watcher-darwin-arm64@2.5.0':
  1310. optional: true
  1311. '@parcel/watcher-darwin-x64@2.5.0':
  1312. optional: true
  1313. '@parcel/watcher-freebsd-x64@2.5.0':
  1314. optional: true
  1315. '@parcel/watcher-linux-arm-glibc@2.5.0':
  1316. optional: true
  1317. '@parcel/watcher-linux-arm-musl@2.5.0':
  1318. optional: true
  1319. '@parcel/watcher-linux-arm64-glibc@2.5.0':
  1320. optional: true
  1321. '@parcel/watcher-linux-arm64-musl@2.5.0':
  1322. optional: true
  1323. '@parcel/watcher-linux-x64-glibc@2.5.0':
  1324. optional: true
  1325. '@parcel/watcher-linux-x64-musl@2.5.0':
  1326. optional: true
  1327. '@parcel/watcher-win32-arm64@2.5.0':
  1328. optional: true
  1329. '@parcel/watcher-win32-ia32@2.5.0':
  1330. optional: true
  1331. '@parcel/watcher-win32-x64@2.5.0':
  1332. optional: true
  1333. '@parcel/watcher@2.5.0':
  1334. dependencies:
  1335. detect-libc: 1.0.3
  1336. is-glob: 4.0.3
  1337. micromatch: 4.0.8
  1338. node-addon-api: 7.1.1
  1339. optionalDependencies:
  1340. '@parcel/watcher-android-arm64': 2.5.0
  1341. '@parcel/watcher-darwin-arm64': 2.5.0
  1342. '@parcel/watcher-darwin-x64': 2.5.0
  1343. '@parcel/watcher-freebsd-x64': 2.5.0
  1344. '@parcel/watcher-linux-arm-glibc': 2.5.0
  1345. '@parcel/watcher-linux-arm-musl': 2.5.0
  1346. '@parcel/watcher-linux-arm64-glibc': 2.5.0
  1347. '@parcel/watcher-linux-arm64-musl': 2.5.0
  1348. '@parcel/watcher-linux-x64-glibc': 2.5.0
  1349. '@parcel/watcher-linux-x64-musl': 2.5.0
  1350. '@parcel/watcher-win32-arm64': 2.5.0
  1351. '@parcel/watcher-win32-ia32': 2.5.0
  1352. '@parcel/watcher-win32-x64': 2.5.0
  1353. optional: true
  1354. '@polka/url@1.0.0-next.28': {}
  1355. '@rollup/pluginutils@5.1.3(rollup@4.28.0)':
  1356. dependencies:
  1357. '@types/estree': 1.0.6
  1358. estree-walker: 2.0.2
  1359. picomatch: 4.0.2
  1360. optionalDependencies:
  1361. rollup: 4.28.0
  1362. '@rollup/rollup-android-arm-eabi@4.28.0':
  1363. optional: true
  1364. '@rollup/rollup-android-arm64@4.28.0':
  1365. optional: true
  1366. '@rollup/rollup-darwin-arm64@4.28.0':
  1367. optional: true
  1368. '@rollup/rollup-darwin-x64@4.28.0':
  1369. optional: true
  1370. '@rollup/rollup-freebsd-arm64@4.28.0':
  1371. optional: true
  1372. '@rollup/rollup-freebsd-x64@4.28.0':
  1373. optional: true
  1374. '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
  1375. optional: true
  1376. '@rollup/rollup-linux-arm-musleabihf@4.28.0':
  1377. optional: true
  1378. '@rollup/rollup-linux-arm64-gnu@4.28.0':
  1379. optional: true
  1380. '@rollup/rollup-linux-arm64-musl@4.28.0':
  1381. optional: true
  1382. '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
  1383. optional: true
  1384. '@rollup/rollup-linux-riscv64-gnu@4.28.0':
  1385. optional: true
  1386. '@rollup/rollup-linux-s390x-gnu@4.28.0':
  1387. optional: true
  1388. '@rollup/rollup-linux-x64-gnu@4.28.0':
  1389. optional: true
  1390. '@rollup/rollup-linux-x64-musl@4.28.0':
  1391. optional: true
  1392. '@rollup/rollup-win32-arm64-msvc@4.28.0':
  1393. optional: true
  1394. '@rollup/rollup-win32-ia32-msvc@4.28.0':
  1395. optional: true
  1396. '@rollup/rollup-win32-x64-msvc@4.28.0':
  1397. optional: true
  1398. '@sec-ant/readable-stream@0.4.1': {}
  1399. '@sindresorhus/merge-streams@4.0.0': {}
  1400. '@sxzz/popperjs-es@2.11.7': {}
  1401. '@types/estree@1.0.6': {}
  1402. '@types/lodash-es@4.17.12':
  1403. dependencies:
  1404. '@types/lodash': 4.17.13
  1405. '@types/lodash@4.17.13': {}
  1406. '@types/web-bluetooth@0.0.16': {}
  1407. '@vitejs/plugin-vue@5.2.1(vite@6.0.2(sass@1.82.0))(vue@3.5.13)':
  1408. dependencies:
  1409. vite: 6.0.2(sass@1.82.0)
  1410. vue: 3.5.13
  1411. '@vue/babel-helper-vue-transform-on@1.2.5': {}
  1412. '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.0)':
  1413. dependencies:
  1414. '@babel/helper-module-imports': 7.25.9
  1415. '@babel/helper-plugin-utils': 7.25.9
  1416. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
  1417. '@babel/template': 7.25.9
  1418. '@babel/traverse': 7.26.3
  1419. '@babel/types': 7.26.3
  1420. '@vue/babel-helper-vue-transform-on': 1.2.5
  1421. '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
  1422. html-tags: 3.3.1
  1423. svg-tags: 1.0.0
  1424. optionalDependencies:
  1425. '@babel/core': 7.26.0
  1426. transitivePeerDependencies:
  1427. - supports-color
  1428. '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
  1429. dependencies:
  1430. '@babel/code-frame': 7.26.2
  1431. '@babel/core': 7.26.0
  1432. '@babel/helper-module-imports': 7.25.9
  1433. '@babel/helper-plugin-utils': 7.25.9
  1434. '@babel/parser': 7.26.3
  1435. '@vue/compiler-sfc': 3.5.13
  1436. transitivePeerDependencies:
  1437. - supports-color
  1438. '@vue/compiler-core@3.5.13':
  1439. dependencies:
  1440. '@babel/parser': 7.26.3
  1441. '@vue/shared': 3.5.13
  1442. entities: 4.5.0
  1443. estree-walker: 2.0.2
  1444. source-map-js: 1.2.1
  1445. '@vue/compiler-dom@3.5.13':
  1446. dependencies:
  1447. '@vue/compiler-core': 3.5.13
  1448. '@vue/shared': 3.5.13
  1449. '@vue/compiler-sfc@3.5.13':
  1450. dependencies:
  1451. '@babel/parser': 7.26.3
  1452. '@vue/compiler-core': 3.5.13
  1453. '@vue/compiler-dom': 3.5.13
  1454. '@vue/compiler-ssr': 3.5.13
  1455. '@vue/shared': 3.5.13
  1456. estree-walker: 2.0.2
  1457. magic-string: 0.30.14
  1458. postcss: 8.4.49
  1459. source-map-js: 1.2.1
  1460. '@vue/compiler-ssr@3.5.13':
  1461. dependencies:
  1462. '@vue/compiler-dom': 3.5.13
  1463. '@vue/shared': 3.5.13
  1464. '@vue/devtools-api@6.6.4': {}
  1465. '@vue/devtools-core@7.6.7(vite@6.0.2(sass@1.82.0))(vue@3.5.13)':
  1466. dependencies:
  1467. '@vue/devtools-kit': 7.6.7
  1468. '@vue/devtools-shared': 7.6.7
  1469. mitt: 3.0.1
  1470. nanoid: 5.0.9
  1471. pathe: 1.1.2
  1472. vite-hot-client: 0.2.4(vite@6.0.2(sass@1.82.0))
  1473. vue: 3.5.13
  1474. transitivePeerDependencies:
  1475. - vite
  1476. '@vue/devtools-kit@7.6.7':
  1477. dependencies:
  1478. '@vue/devtools-shared': 7.6.7
  1479. birpc: 0.2.19
  1480. hookable: 5.5.3
  1481. mitt: 3.0.1
  1482. perfect-debounce: 1.0.0
  1483. speakingurl: 14.0.1
  1484. superjson: 2.2.1
  1485. '@vue/devtools-shared@7.6.7':
  1486. dependencies:
  1487. rfdc: 1.4.1
  1488. '@vue/reactivity@3.5.13':
  1489. dependencies:
  1490. '@vue/shared': 3.5.13
  1491. '@vue/runtime-core@3.5.13':
  1492. dependencies:
  1493. '@vue/reactivity': 3.5.13
  1494. '@vue/shared': 3.5.13
  1495. '@vue/runtime-dom@3.5.13':
  1496. dependencies:
  1497. '@vue/reactivity': 3.5.13
  1498. '@vue/runtime-core': 3.5.13
  1499. '@vue/shared': 3.5.13
  1500. csstype: 3.1.3
  1501. '@vue/server-renderer@3.5.13(vue@3.5.13)':
  1502. dependencies:
  1503. '@vue/compiler-ssr': 3.5.13
  1504. '@vue/shared': 3.5.13
  1505. vue: 3.5.13
  1506. '@vue/shared@3.5.13': {}
  1507. '@vueuse/core@9.13.0(vue@3.5.13)':
  1508. dependencies:
  1509. '@types/web-bluetooth': 0.0.16
  1510. '@vueuse/metadata': 9.13.0
  1511. '@vueuse/shared': 9.13.0(vue@3.5.13)
  1512. vue-demi: 0.14.10(vue@3.5.13)
  1513. transitivePeerDependencies:
  1514. - '@vue/composition-api'
  1515. - vue
  1516. '@vueuse/metadata@9.13.0': {}
  1517. '@vueuse/shared@9.13.0(vue@3.5.13)':
  1518. dependencies:
  1519. vue-demi: 0.14.10(vue@3.5.13)
  1520. transitivePeerDependencies:
  1521. - '@vue/composition-api'
  1522. - vue
  1523. acorn@8.14.0: {}
  1524. amfe-flexible@2.2.1: {}
  1525. anymatch@3.1.3:
  1526. dependencies:
  1527. normalize-path: 3.0.0
  1528. picomatch: 2.3.1
  1529. async-validator@4.2.5: {}
  1530. balanced-match@1.0.2: {}
  1531. binary-extensions@2.3.0: {}
  1532. birpc@0.2.19: {}
  1533. brace-expansion@2.0.1:
  1534. dependencies:
  1535. balanced-match: 1.0.2
  1536. braces@3.0.3:
  1537. dependencies:
  1538. fill-range: 7.1.1
  1539. browserslist@4.24.2:
  1540. dependencies:
  1541. caniuse-lite: 1.0.30001686
  1542. electron-to-chromium: 1.5.70
  1543. node-releases: 2.0.18
  1544. update-browserslist-db: 1.1.1(browserslist@4.24.2)
  1545. bundle-name@4.1.0:
  1546. dependencies:
  1547. run-applescript: 7.0.0
  1548. caniuse-lite@1.0.30001686: {}
  1549. chokidar@3.6.0:
  1550. dependencies:
  1551. anymatch: 3.1.3
  1552. braces: 3.0.3
  1553. glob-parent: 5.1.2
  1554. is-binary-path: 2.1.0
  1555. is-glob: 4.0.3
  1556. normalize-path: 3.0.0
  1557. readdirp: 3.6.0
  1558. optionalDependencies:
  1559. fsevents: 2.3.3
  1560. chokidar@4.0.1:
  1561. dependencies:
  1562. readdirp: 4.0.2
  1563. confbox@0.1.8: {}
  1564. convert-source-map@2.0.0: {}
  1565. copy-anything@3.0.5:
  1566. dependencies:
  1567. is-what: 4.1.16
  1568. cross-spawn@7.0.6:
  1569. dependencies:
  1570. path-key: 3.1.1
  1571. shebang-command: 2.0.0
  1572. which: 2.0.2
  1573. csstype@3.1.3: {}
  1574. dayjs@1.11.13: {}
  1575. debug@4.3.7:
  1576. dependencies:
  1577. ms: 2.1.3
  1578. default-browser-id@5.0.0: {}
  1579. default-browser@5.2.1:
  1580. dependencies:
  1581. bundle-name: 4.1.0
  1582. default-browser-id: 5.0.0
  1583. define-lazy-prop@3.0.0: {}
  1584. detect-libc@1.0.3:
  1585. optional: true
  1586. electron-to-chromium@1.5.70: {}
  1587. element-plus@2.9.0(vue@3.5.13):
  1588. dependencies:
  1589. '@ctrl/tinycolor': 3.6.1
  1590. '@element-plus/icons-vue': 2.3.1(vue@3.5.13)
  1591. '@floating-ui/dom': 1.6.12
  1592. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1593. '@types/lodash': 4.17.13
  1594. '@types/lodash-es': 4.17.12
  1595. '@vueuse/core': 9.13.0(vue@3.5.13)
  1596. async-validator: 4.2.5
  1597. dayjs: 1.11.13
  1598. escape-html: 1.0.3
  1599. lodash: 4.17.21
  1600. lodash-es: 4.17.21
  1601. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1602. memoize-one: 6.0.0
  1603. normalize-wheel-es: 1.2.0
  1604. vue: 3.5.13
  1605. transitivePeerDependencies:
  1606. - '@vue/composition-api'
  1607. entities@4.5.0: {}
  1608. error-stack-parser-es@0.1.5: {}
  1609. esbuild@0.24.0:
  1610. optionalDependencies:
  1611. '@esbuild/aix-ppc64': 0.24.0
  1612. '@esbuild/android-arm': 0.24.0
  1613. '@esbuild/android-arm64': 0.24.0
  1614. '@esbuild/android-x64': 0.24.0
  1615. '@esbuild/darwin-arm64': 0.24.0
  1616. '@esbuild/darwin-x64': 0.24.0
  1617. '@esbuild/freebsd-arm64': 0.24.0
  1618. '@esbuild/freebsd-x64': 0.24.0
  1619. '@esbuild/linux-arm': 0.24.0
  1620. '@esbuild/linux-arm64': 0.24.0
  1621. '@esbuild/linux-ia32': 0.24.0
  1622. '@esbuild/linux-loong64': 0.24.0
  1623. '@esbuild/linux-mips64el': 0.24.0
  1624. '@esbuild/linux-ppc64': 0.24.0
  1625. '@esbuild/linux-riscv64': 0.24.0
  1626. '@esbuild/linux-s390x': 0.24.0
  1627. '@esbuild/linux-x64': 0.24.0
  1628. '@esbuild/netbsd-x64': 0.24.0
  1629. '@esbuild/openbsd-arm64': 0.24.0
  1630. '@esbuild/openbsd-x64': 0.24.0
  1631. '@esbuild/sunos-x64': 0.24.0
  1632. '@esbuild/win32-arm64': 0.24.0
  1633. '@esbuild/win32-ia32': 0.24.0
  1634. '@esbuild/win32-x64': 0.24.0
  1635. escalade@3.2.0: {}
  1636. escape-html@1.0.3: {}
  1637. escape-string-regexp@5.0.0: {}
  1638. estree-walker@2.0.2: {}
  1639. estree-walker@3.0.3:
  1640. dependencies:
  1641. '@types/estree': 1.0.6
  1642. execa@9.5.1:
  1643. dependencies:
  1644. '@sindresorhus/merge-streams': 4.0.0
  1645. cross-spawn: 7.0.6
  1646. figures: 6.1.0
  1647. get-stream: 9.0.1
  1648. human-signals: 8.0.0
  1649. is-plain-obj: 4.1.0
  1650. is-stream: 4.0.1
  1651. npm-run-path: 6.0.0
  1652. pretty-ms: 9.2.0
  1653. signal-exit: 4.1.0
  1654. strip-final-newline: 4.0.0
  1655. yoctocolors: 2.1.1
  1656. fast-glob@3.3.2:
  1657. dependencies:
  1658. '@nodelib/fs.stat': 2.0.5
  1659. '@nodelib/fs.walk': 1.2.8
  1660. glob-parent: 5.1.2
  1661. merge2: 1.4.1
  1662. micromatch: 4.0.8
  1663. fastq@1.17.1:
  1664. dependencies:
  1665. reusify: 1.0.4
  1666. figures@6.1.0:
  1667. dependencies:
  1668. is-unicode-supported: 2.1.0
  1669. fill-range@7.1.1:
  1670. dependencies:
  1671. to-regex-range: 5.0.1
  1672. fs-extra@11.2.0:
  1673. dependencies:
  1674. graceful-fs: 4.2.11
  1675. jsonfile: 6.1.0
  1676. universalify: 2.0.1
  1677. fsevents@2.3.3:
  1678. optional: true
  1679. gensync@1.0.0-beta.2: {}
  1680. get-stream@9.0.1:
  1681. dependencies:
  1682. '@sec-ant/readable-stream': 0.4.1
  1683. is-stream: 4.0.1
  1684. glob-parent@5.1.2:
  1685. dependencies:
  1686. is-glob: 4.0.3
  1687. globals@11.12.0: {}
  1688. graceful-fs@4.2.11: {}
  1689. hookable@5.5.3: {}
  1690. html-tags@3.3.1: {}
  1691. human-signals@8.0.0: {}
  1692. immutable@5.0.3: {}
  1693. is-binary-path@2.1.0:
  1694. dependencies:
  1695. binary-extensions: 2.3.0
  1696. is-docker@3.0.0: {}
  1697. is-extglob@2.1.1: {}
  1698. is-glob@4.0.3:
  1699. dependencies:
  1700. is-extglob: 2.1.1
  1701. is-inside-container@1.0.0:
  1702. dependencies:
  1703. is-docker: 3.0.0
  1704. is-number@7.0.0: {}
  1705. is-plain-obj@4.1.0: {}
  1706. is-stream@4.0.1: {}
  1707. is-unicode-supported@2.1.0: {}
  1708. is-what@4.1.16: {}
  1709. is-wsl@3.1.0:
  1710. dependencies:
  1711. is-inside-container: 1.0.0
  1712. isexe@2.0.0: {}
  1713. js-tokens@4.0.0: {}
  1714. js-tokens@9.0.1: {}
  1715. jsesc@3.0.2: {}
  1716. json5@2.2.3: {}
  1717. jsonfile@6.1.0:
  1718. dependencies:
  1719. universalify: 2.0.1
  1720. optionalDependencies:
  1721. graceful-fs: 4.2.11
  1722. kolorist@1.8.0: {}
  1723. local-pkg@0.5.1:
  1724. dependencies:
  1725. mlly: 1.7.3
  1726. pkg-types: 1.2.1
  1727. lodash-es@4.17.21: {}
  1728. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1729. dependencies:
  1730. '@types/lodash-es': 4.17.12
  1731. lodash: 4.17.21
  1732. lodash-es: 4.17.21
  1733. lodash@4.17.21: {}
  1734. lru-cache@5.1.1:
  1735. dependencies:
  1736. yallist: 3.1.1
  1737. magic-string@0.30.14:
  1738. dependencies:
  1739. '@jridgewell/sourcemap-codec': 1.5.0
  1740. memoize-one@6.0.0: {}
  1741. merge2@1.4.1: {}
  1742. micromatch@4.0.8:
  1743. dependencies:
  1744. braces: 3.0.3
  1745. picomatch: 2.3.1
  1746. minimatch@9.0.5:
  1747. dependencies:
  1748. brace-expansion: 2.0.1
  1749. mitt@3.0.1: {}
  1750. mlly@1.7.3:
  1751. dependencies:
  1752. acorn: 8.14.0
  1753. pathe: 1.1.2
  1754. pkg-types: 1.2.1
  1755. ufo: 1.5.4
  1756. mrmime@2.0.0: {}
  1757. ms@2.1.3: {}
  1758. nanoid@3.3.8: {}
  1759. nanoid@5.0.9: {}
  1760. node-addon-api@7.1.1:
  1761. optional: true
  1762. node-releases@2.0.18: {}
  1763. normalize-path@3.0.0: {}
  1764. normalize-wheel-es@1.2.0: {}
  1765. npm-run-path@6.0.0:
  1766. dependencies:
  1767. path-key: 4.0.0
  1768. unicorn-magic: 0.3.0
  1769. open@10.1.0:
  1770. dependencies:
  1771. default-browser: 5.2.1
  1772. define-lazy-prop: 3.0.0
  1773. is-inside-container: 1.0.0
  1774. is-wsl: 3.1.0
  1775. parse-ms@4.0.0: {}
  1776. path-key@3.1.1: {}
  1777. path-key@4.0.0: {}
  1778. pathe@1.1.2: {}
  1779. perfect-debounce@1.0.0: {}
  1780. picocolors@1.1.1: {}
  1781. picomatch@2.3.1: {}
  1782. picomatch@4.0.2: {}
  1783. pinia@2.3.0(vue@3.5.13):
  1784. dependencies:
  1785. '@vue/devtools-api': 6.6.4
  1786. vue: 3.5.13
  1787. vue-demi: 0.14.10(vue@3.5.13)
  1788. transitivePeerDependencies:
  1789. - '@vue/composition-api'
  1790. pkg-types@1.2.1:
  1791. dependencies:
  1792. confbox: 0.1.8
  1793. mlly: 1.7.3
  1794. pathe: 1.1.2
  1795. postcss-pxtorem@6.1.0(postcss@8.4.49):
  1796. dependencies:
  1797. postcss: 8.4.49
  1798. postcss@8.4.49:
  1799. dependencies:
  1800. nanoid: 3.3.8
  1801. picocolors: 1.1.1
  1802. source-map-js: 1.2.1
  1803. pretty-ms@9.2.0:
  1804. dependencies:
  1805. parse-ms: 4.0.0
  1806. queue-microtask@1.2.3: {}
  1807. readdirp@3.6.0:
  1808. dependencies:
  1809. picomatch: 2.3.1
  1810. readdirp@4.0.2: {}
  1811. reusify@1.0.4: {}
  1812. rfdc@1.4.1: {}
  1813. rollup@4.28.0:
  1814. dependencies:
  1815. '@types/estree': 1.0.6
  1816. optionalDependencies:
  1817. '@rollup/rollup-android-arm-eabi': 4.28.0
  1818. '@rollup/rollup-android-arm64': 4.28.0
  1819. '@rollup/rollup-darwin-arm64': 4.28.0
  1820. '@rollup/rollup-darwin-x64': 4.28.0
  1821. '@rollup/rollup-freebsd-arm64': 4.28.0
  1822. '@rollup/rollup-freebsd-x64': 4.28.0
  1823. '@rollup/rollup-linux-arm-gnueabihf': 4.28.0
  1824. '@rollup/rollup-linux-arm-musleabihf': 4.28.0
  1825. '@rollup/rollup-linux-arm64-gnu': 4.28.0
  1826. '@rollup/rollup-linux-arm64-musl': 4.28.0
  1827. '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0
  1828. '@rollup/rollup-linux-riscv64-gnu': 4.28.0
  1829. '@rollup/rollup-linux-s390x-gnu': 4.28.0
  1830. '@rollup/rollup-linux-x64-gnu': 4.28.0
  1831. '@rollup/rollup-linux-x64-musl': 4.28.0
  1832. '@rollup/rollup-win32-arm64-msvc': 4.28.0
  1833. '@rollup/rollup-win32-ia32-msvc': 4.28.0
  1834. '@rollup/rollup-win32-x64-msvc': 4.28.0
  1835. fsevents: 2.3.3
  1836. run-applescript@7.0.0: {}
  1837. run-parallel@1.2.0:
  1838. dependencies:
  1839. queue-microtask: 1.2.3
  1840. sass@1.82.0:
  1841. dependencies:
  1842. chokidar: 4.0.1
  1843. immutable: 5.0.3
  1844. source-map-js: 1.2.1
  1845. optionalDependencies:
  1846. '@parcel/watcher': 2.5.0
  1847. scule@1.3.0: {}
  1848. semver@6.3.1: {}
  1849. shebang-command@2.0.0:
  1850. dependencies:
  1851. shebang-regex: 3.0.0
  1852. shebang-regex@3.0.0: {}
  1853. signal-exit@4.1.0: {}
  1854. sirv@3.0.0:
  1855. dependencies:
  1856. '@polka/url': 1.0.0-next.28
  1857. mrmime: 2.0.0
  1858. totalist: 3.0.1
  1859. source-map-js@1.2.1: {}
  1860. speakingurl@14.0.1: {}
  1861. strip-final-newline@4.0.0: {}
  1862. strip-literal@2.1.1:
  1863. dependencies:
  1864. js-tokens: 9.0.1
  1865. superjson@2.2.1:
  1866. dependencies:
  1867. copy-anything: 3.0.5
  1868. svg-tags@1.0.0: {}
  1869. swiper@11.1.15: {}
  1870. to-regex-range@5.0.1:
  1871. dependencies:
  1872. is-number: 7.0.0
  1873. totalist@3.0.1: {}
  1874. ufo@1.5.4: {}
  1875. unicorn-magic@0.3.0: {}
  1876. unimport@3.14.5(rollup@4.28.0):
  1877. dependencies:
  1878. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  1879. acorn: 8.14.0
  1880. escape-string-regexp: 5.0.0
  1881. estree-walker: 3.0.3
  1882. fast-glob: 3.3.2
  1883. local-pkg: 0.5.1
  1884. magic-string: 0.30.14
  1885. mlly: 1.7.3
  1886. pathe: 1.1.2
  1887. picomatch: 4.0.2
  1888. pkg-types: 1.2.1
  1889. scule: 1.3.0
  1890. strip-literal: 2.1.1
  1891. unplugin: 1.16.0
  1892. transitivePeerDependencies:
  1893. - rollup
  1894. universalify@2.0.1: {}
  1895. unplugin-auto-import@0.18.6(@vueuse/core@9.13.0(vue@3.5.13))(rollup@4.28.0):
  1896. dependencies:
  1897. '@antfu/utils': 0.7.10
  1898. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  1899. fast-glob: 3.3.2
  1900. local-pkg: 0.5.1
  1901. magic-string: 0.30.14
  1902. minimatch: 9.0.5
  1903. unimport: 3.14.5(rollup@4.28.0)
  1904. unplugin: 1.16.0
  1905. optionalDependencies:
  1906. '@vueuse/core': 9.13.0(vue@3.5.13)
  1907. transitivePeerDependencies:
  1908. - rollup
  1909. unplugin-vue-components@0.27.5(@babel/parser@7.26.3)(rollup@4.28.0)(vue@3.5.13):
  1910. dependencies:
  1911. '@antfu/utils': 0.7.10
  1912. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  1913. chokidar: 3.6.0
  1914. debug: 4.3.7
  1915. fast-glob: 3.3.2
  1916. local-pkg: 0.5.1
  1917. magic-string: 0.30.14
  1918. minimatch: 9.0.5
  1919. mlly: 1.7.3
  1920. unplugin: 1.16.0
  1921. vue: 3.5.13
  1922. optionalDependencies:
  1923. '@babel/parser': 7.26.3
  1924. transitivePeerDependencies:
  1925. - rollup
  1926. - supports-color
  1927. unplugin@1.16.0:
  1928. dependencies:
  1929. acorn: 8.14.0
  1930. webpack-virtual-modules: 0.6.2
  1931. update-browserslist-db@1.1.1(browserslist@4.24.2):
  1932. dependencies:
  1933. browserslist: 4.24.2
  1934. escalade: 3.2.0
  1935. picocolors: 1.1.1
  1936. vite-hot-client@0.2.4(vite@6.0.2(sass@1.82.0)):
  1937. dependencies:
  1938. vite: 6.0.2(sass@1.82.0)
  1939. vite-plugin-inspect@0.8.8(rollup@4.28.0)(vite@6.0.2(sass@1.82.0)):
  1940. dependencies:
  1941. '@antfu/utils': 0.7.10
  1942. '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
  1943. debug: 4.3.7
  1944. error-stack-parser-es: 0.1.5
  1945. fs-extra: 11.2.0
  1946. open: 10.1.0
  1947. perfect-debounce: 1.0.0
  1948. picocolors: 1.1.1
  1949. sirv: 3.0.0
  1950. vite: 6.0.2(sass@1.82.0)
  1951. transitivePeerDependencies:
  1952. - rollup
  1953. - supports-color
  1954. vite-plugin-vue-devtools@7.6.7(rollup@4.28.0)(vite@6.0.2(sass@1.82.0))(vue@3.5.13):
  1955. dependencies:
  1956. '@vue/devtools-core': 7.6.7(vite@6.0.2(sass@1.82.0))(vue@3.5.13)
  1957. '@vue/devtools-kit': 7.6.7
  1958. '@vue/devtools-shared': 7.6.7
  1959. execa: 9.5.1
  1960. sirv: 3.0.0
  1961. vite: 6.0.2(sass@1.82.0)
  1962. vite-plugin-inspect: 0.8.8(rollup@4.28.0)(vite@6.0.2(sass@1.82.0))
  1963. vite-plugin-vue-inspector: 5.3.1(vite@6.0.2(sass@1.82.0))
  1964. transitivePeerDependencies:
  1965. - '@nuxt/kit'
  1966. - rollup
  1967. - supports-color
  1968. - vue
  1969. vite-plugin-vue-inspector@5.3.1(vite@6.0.2(sass@1.82.0)):
  1970. dependencies:
  1971. '@babel/core': 7.26.0
  1972. '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
  1973. '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
  1974. '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
  1975. '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
  1976. '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
  1977. '@vue/compiler-dom': 3.5.13
  1978. kolorist: 1.8.0
  1979. magic-string: 0.30.14
  1980. vite: 6.0.2(sass@1.82.0)
  1981. transitivePeerDependencies:
  1982. - supports-color
  1983. vite@6.0.2(sass@1.82.0):
  1984. dependencies:
  1985. esbuild: 0.24.0
  1986. postcss: 8.4.49
  1987. rollup: 4.28.0
  1988. optionalDependencies:
  1989. fsevents: 2.3.3
  1990. sass: 1.82.0
  1991. vue-demi@0.14.10(vue@3.5.13):
  1992. dependencies:
  1993. vue: 3.5.13
  1994. vue-router@4.5.0(vue@3.5.13):
  1995. dependencies:
  1996. '@vue/devtools-api': 6.6.4
  1997. vue: 3.5.13
  1998. vue3-lazy@1.0.0-alpha.1(vue@3.5.13):
  1999. dependencies:
  2000. vue: 3.5.13
  2001. vue@3.5.13:
  2002. dependencies:
  2003. '@vue/compiler-dom': 3.5.13
  2004. '@vue/compiler-sfc': 3.5.13
  2005. '@vue/runtime-dom': 3.5.13
  2006. '@vue/server-renderer': 3.5.13(vue@3.5.13)
  2007. '@vue/shared': 3.5.13
  2008. webpack-virtual-modules@0.6.2: {}
  2009. which@2.0.2:
  2010. dependencies:
  2011. isexe: 2.0.0
  2012. yallist@3.1.1: {}
  2013. yoctocolors@2.1.1: {}