pnpm-lock.yaml 86 KB

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