pnpm-lock.yaml 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. axios:
  9. specifier: ^1.6.7
  10. version: 1.13.6
  11. vue:
  12. specifier: ^3.4.21
  13. version: 3.5.29(typescript@5.9.3)
  14. devDependencies:
  15. '@typescript-eslint/eslint-plugin':
  16. specifier: ^8.56.1
  17. version: 8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)(typescript@5.9.3)
  18. '@typescript-eslint/parser':
  19. specifier: ^8.56.1
  20. version: 8.56.1(eslint@9.39.4)(typescript@5.9.3)
  21. '@vitejs/plugin-vue':
  22. specifier: ^5.0.4
  23. version: 5.2.4(vite@5.4.21)(vue@3.5.29(typescript@5.9.3))
  24. eslint:
  25. specifier: ^9.26.0
  26. version: 9.39.4
  27. eslint-plugin-vue:
  28. specifier: ^9.22.0
  29. version: 9.33.0(eslint@9.39.4)
  30. prettier:
  31. specifier: ^3.2.5
  32. version: 3.8.1
  33. typescript:
  34. specifier: ^5.2.2
  35. version: 5.9.3
  36. vite:
  37. specifier: ^5.1.6
  38. version: 5.4.21
  39. vue-eslint-parser:
  40. specifier: ^10.4.0
  41. version: 10.4.0(eslint@9.39.4)
  42. vue-tsc:
  43. specifier: ^2.0.6
  44. version: 2.2.12(typescript@5.9.3)
  45. packages:
  46. '@babel/helper-string-parser@7.27.1':
  47. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  48. engines: {node: '>=6.9.0'}
  49. '@babel/helper-validator-identifier@7.28.5':
  50. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  51. engines: {node: '>=6.9.0'}
  52. '@babel/parser@7.29.0':
  53. resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
  54. engines: {node: '>=6.0.0'}
  55. hasBin: true
  56. '@babel/types@7.29.0':
  57. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  58. engines: {node: '>=6.9.0'}
  59. '@esbuild/aix-ppc64@0.21.5':
  60. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  61. engines: {node: '>=12'}
  62. cpu: [ppc64]
  63. os: [aix]
  64. '@esbuild/android-arm64@0.21.5':
  65. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  66. engines: {node: '>=12'}
  67. cpu: [arm64]
  68. os: [android]
  69. '@esbuild/android-arm@0.21.5':
  70. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  71. engines: {node: '>=12'}
  72. cpu: [arm]
  73. os: [android]
  74. '@esbuild/android-x64@0.21.5':
  75. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  76. engines: {node: '>=12'}
  77. cpu: [x64]
  78. os: [android]
  79. '@esbuild/darwin-arm64@0.21.5':
  80. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  81. engines: {node: '>=12'}
  82. cpu: [arm64]
  83. os: [darwin]
  84. '@esbuild/darwin-x64@0.21.5':
  85. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  86. engines: {node: '>=12'}
  87. cpu: [x64]
  88. os: [darwin]
  89. '@esbuild/freebsd-arm64@0.21.5':
  90. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  91. engines: {node: '>=12'}
  92. cpu: [arm64]
  93. os: [freebsd]
  94. '@esbuild/freebsd-x64@0.21.5':
  95. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  96. engines: {node: '>=12'}
  97. cpu: [x64]
  98. os: [freebsd]
  99. '@esbuild/linux-arm64@0.21.5':
  100. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  101. engines: {node: '>=12'}
  102. cpu: [arm64]
  103. os: [linux]
  104. '@esbuild/linux-arm@0.21.5':
  105. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  106. engines: {node: '>=12'}
  107. cpu: [arm]
  108. os: [linux]
  109. '@esbuild/linux-ia32@0.21.5':
  110. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  111. engines: {node: '>=12'}
  112. cpu: [ia32]
  113. os: [linux]
  114. '@esbuild/linux-loong64@0.21.5':
  115. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  116. engines: {node: '>=12'}
  117. cpu: [loong64]
  118. os: [linux]
  119. '@esbuild/linux-mips64el@0.21.5':
  120. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  121. engines: {node: '>=12'}
  122. cpu: [mips64el]
  123. os: [linux]
  124. '@esbuild/linux-ppc64@0.21.5':
  125. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  126. engines: {node: '>=12'}
  127. cpu: [ppc64]
  128. os: [linux]
  129. '@esbuild/linux-riscv64@0.21.5':
  130. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  131. engines: {node: '>=12'}
  132. cpu: [riscv64]
  133. os: [linux]
  134. '@esbuild/linux-s390x@0.21.5':
  135. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  136. engines: {node: '>=12'}
  137. cpu: [s390x]
  138. os: [linux]
  139. '@esbuild/linux-x64@0.21.5':
  140. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  141. engines: {node: '>=12'}
  142. cpu: [x64]
  143. os: [linux]
  144. '@esbuild/netbsd-x64@0.21.5':
  145. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  146. engines: {node: '>=12'}
  147. cpu: [x64]
  148. os: [netbsd]
  149. '@esbuild/openbsd-x64@0.21.5':
  150. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  151. engines: {node: '>=12'}
  152. cpu: [x64]
  153. os: [openbsd]
  154. '@esbuild/sunos-x64@0.21.5':
  155. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  156. engines: {node: '>=12'}
  157. cpu: [x64]
  158. os: [sunos]
  159. '@esbuild/win32-arm64@0.21.5':
  160. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  161. engines: {node: '>=12'}
  162. cpu: [arm64]
  163. os: [win32]
  164. '@esbuild/win32-ia32@0.21.5':
  165. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  166. engines: {node: '>=12'}
  167. cpu: [ia32]
  168. os: [win32]
  169. '@esbuild/win32-x64@0.21.5':
  170. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  171. engines: {node: '>=12'}
  172. cpu: [x64]
  173. os: [win32]
  174. '@eslint-community/eslint-utils@4.9.1':
  175. resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
  176. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  177. peerDependencies:
  178. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  179. '@eslint-community/regexpp@4.12.2':
  180. resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
  181. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  182. '@eslint/config-array@0.21.2':
  183. resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
  184. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  185. '@eslint/config-helpers@0.4.2':
  186. resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
  187. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  188. '@eslint/core@0.17.0':
  189. resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
  190. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  191. '@eslint/eslintrc@3.3.5':
  192. resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
  193. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  194. '@eslint/js@9.39.4':
  195. resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==}
  196. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  197. '@eslint/object-schema@2.1.7':
  198. resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
  199. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  200. '@eslint/plugin-kit@0.4.1':
  201. resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
  202. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  203. '@humanfs/core@0.19.1':
  204. resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
  205. engines: {node: '>=18.18.0'}
  206. '@humanfs/node@0.16.7':
  207. resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
  208. engines: {node: '>=18.18.0'}
  209. '@humanwhocodes/module-importer@1.0.1':
  210. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  211. engines: {node: '>=12.22'}
  212. '@humanwhocodes/retry@0.4.3':
  213. resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
  214. engines: {node: '>=18.18'}
  215. '@jridgewell/sourcemap-codec@1.5.5':
  216. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  217. '@rollup/rollup-android-arm-eabi@4.59.0':
  218. resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
  219. cpu: [arm]
  220. os: [android]
  221. '@rollup/rollup-android-arm64@4.59.0':
  222. resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
  223. cpu: [arm64]
  224. os: [android]
  225. '@rollup/rollup-darwin-arm64@4.59.0':
  226. resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
  227. cpu: [arm64]
  228. os: [darwin]
  229. '@rollup/rollup-darwin-x64@4.59.0':
  230. resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
  231. cpu: [x64]
  232. os: [darwin]
  233. '@rollup/rollup-freebsd-arm64@4.59.0':
  234. resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
  235. cpu: [arm64]
  236. os: [freebsd]
  237. '@rollup/rollup-freebsd-x64@4.59.0':
  238. resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
  239. cpu: [x64]
  240. os: [freebsd]
  241. '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
  242. resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
  243. cpu: [arm]
  244. os: [linux]
  245. libc: [glibc]
  246. '@rollup/rollup-linux-arm-musleabihf@4.59.0':
  247. resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
  248. cpu: [arm]
  249. os: [linux]
  250. libc: [musl]
  251. '@rollup/rollup-linux-arm64-gnu@4.59.0':
  252. resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
  253. cpu: [arm64]
  254. os: [linux]
  255. libc: [glibc]
  256. '@rollup/rollup-linux-arm64-musl@4.59.0':
  257. resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
  258. cpu: [arm64]
  259. os: [linux]
  260. libc: [musl]
  261. '@rollup/rollup-linux-loong64-gnu@4.59.0':
  262. resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
  263. cpu: [loong64]
  264. os: [linux]
  265. libc: [glibc]
  266. '@rollup/rollup-linux-loong64-musl@4.59.0':
  267. resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
  268. cpu: [loong64]
  269. os: [linux]
  270. libc: [musl]
  271. '@rollup/rollup-linux-ppc64-gnu@4.59.0':
  272. resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
  273. cpu: [ppc64]
  274. os: [linux]
  275. libc: [glibc]
  276. '@rollup/rollup-linux-ppc64-musl@4.59.0':
  277. resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
  278. cpu: [ppc64]
  279. os: [linux]
  280. libc: [musl]
  281. '@rollup/rollup-linux-riscv64-gnu@4.59.0':
  282. resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
  283. cpu: [riscv64]
  284. os: [linux]
  285. libc: [glibc]
  286. '@rollup/rollup-linux-riscv64-musl@4.59.0':
  287. resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
  288. cpu: [riscv64]
  289. os: [linux]
  290. libc: [musl]
  291. '@rollup/rollup-linux-s390x-gnu@4.59.0':
  292. resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
  293. cpu: [s390x]
  294. os: [linux]
  295. libc: [glibc]
  296. '@rollup/rollup-linux-x64-gnu@4.59.0':
  297. resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
  298. cpu: [x64]
  299. os: [linux]
  300. libc: [glibc]
  301. '@rollup/rollup-linux-x64-musl@4.59.0':
  302. resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
  303. cpu: [x64]
  304. os: [linux]
  305. libc: [musl]
  306. '@rollup/rollup-openbsd-x64@4.59.0':
  307. resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
  308. cpu: [x64]
  309. os: [openbsd]
  310. '@rollup/rollup-openharmony-arm64@4.59.0':
  311. resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
  312. cpu: [arm64]
  313. os: [openharmony]
  314. '@rollup/rollup-win32-arm64-msvc@4.59.0':
  315. resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
  316. cpu: [arm64]
  317. os: [win32]
  318. '@rollup/rollup-win32-ia32-msvc@4.59.0':
  319. resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
  320. cpu: [ia32]
  321. os: [win32]
  322. '@rollup/rollup-win32-x64-gnu@4.59.0':
  323. resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
  324. cpu: [x64]
  325. os: [win32]
  326. '@rollup/rollup-win32-x64-msvc@4.59.0':
  327. resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
  328. cpu: [x64]
  329. os: [win32]
  330. '@types/esrecurse@4.3.1':
  331. resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
  332. '@types/estree@1.0.8':
  333. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  334. '@types/json-schema@7.0.15':
  335. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  336. '@typescript-eslint/eslint-plugin@8.56.1':
  337. resolution: {integrity: sha512-Jz9ZztpB37dNC+HU2HI28Bs9QXpzCz+y/twHOwhyrIRdbuVDxSytJNDl6z/aAKlaRIwC7y8wJdkBv7FxYGgi0A==}
  338. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  339. peerDependencies:
  340. '@typescript-eslint/parser': ^8.56.1
  341. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  342. typescript: '>=4.8.4 <6.0.0'
  343. '@typescript-eslint/parser@8.56.1':
  344. resolution: {integrity: sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==}
  345. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  346. peerDependencies:
  347. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  348. typescript: '>=4.8.4 <6.0.0'
  349. '@typescript-eslint/project-service@8.56.1':
  350. resolution: {integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==}
  351. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  352. peerDependencies:
  353. typescript: '>=4.8.4 <6.0.0'
  354. '@typescript-eslint/scope-manager@8.56.1':
  355. resolution: {integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==}
  356. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  357. '@typescript-eslint/tsconfig-utils@8.56.1':
  358. resolution: {integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==}
  359. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  360. peerDependencies:
  361. typescript: '>=4.8.4 <6.0.0'
  362. '@typescript-eslint/type-utils@8.56.1':
  363. resolution: {integrity: sha512-yB/7dxi7MgTtGhZdaHCemf7PuwrHMenHjmzgUW1aJpO+bBU43OycnM3Wn+DdvDO/8zzA9HlhaJ0AUGuvri4oGg==}
  364. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  365. peerDependencies:
  366. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  367. typescript: '>=4.8.4 <6.0.0'
  368. '@typescript-eslint/types@8.56.1':
  369. resolution: {integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==}
  370. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  371. '@typescript-eslint/typescript-estree@8.56.1':
  372. resolution: {integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==}
  373. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  374. peerDependencies:
  375. typescript: '>=4.8.4 <6.0.0'
  376. '@typescript-eslint/utils@8.56.1':
  377. resolution: {integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==}
  378. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  379. peerDependencies:
  380. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  381. typescript: '>=4.8.4 <6.0.0'
  382. '@typescript-eslint/visitor-keys@8.56.1':
  383. resolution: {integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==}
  384. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  385. '@vitejs/plugin-vue@5.2.4':
  386. resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
  387. engines: {node: ^18.0.0 || >=20.0.0}
  388. peerDependencies:
  389. vite: ^5.0.0 || ^6.0.0
  390. vue: ^3.2.25
  391. '@volar/language-core@2.4.15':
  392. resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
  393. '@volar/source-map@2.4.15':
  394. resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
  395. '@volar/typescript@2.4.15':
  396. resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
  397. '@vue/compiler-core@3.5.29':
  398. resolution: {integrity: sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==}
  399. '@vue/compiler-dom@3.5.29':
  400. resolution: {integrity: sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==}
  401. '@vue/compiler-sfc@3.5.29':
  402. resolution: {integrity: sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==}
  403. '@vue/compiler-ssr@3.5.29':
  404. resolution: {integrity: sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==}
  405. '@vue/compiler-vue2@2.7.16':
  406. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  407. '@vue/language-core@2.2.12':
  408. resolution: {integrity: sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==}
  409. peerDependencies:
  410. typescript: '*'
  411. peerDependenciesMeta:
  412. typescript:
  413. optional: true
  414. '@vue/reactivity@3.5.29':
  415. resolution: {integrity: sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA==}
  416. '@vue/runtime-core@3.5.29':
  417. resolution: {integrity: sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg==}
  418. '@vue/runtime-dom@3.5.29':
  419. resolution: {integrity: sha512-AHvvJEtcY9tw/uk+s/YRLSlxxQnqnAkjqvK25ZiM4CllCZWzElRAoQnCM42m9AHRLNJ6oe2kC5DCgD4AUdlvXg==}
  420. '@vue/server-renderer@3.5.29':
  421. resolution: {integrity: sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g==}
  422. peerDependencies:
  423. vue: 3.5.29
  424. '@vue/shared@3.5.29':
  425. resolution: {integrity: sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==}
  426. acorn-jsx@5.3.2:
  427. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  428. peerDependencies:
  429. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  430. acorn@8.16.0:
  431. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  432. engines: {node: '>=0.4.0'}
  433. hasBin: true
  434. ajv@6.14.0:
  435. resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
  436. alien-signals@1.0.13:
  437. resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
  438. ansi-styles@4.3.0:
  439. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  440. engines: {node: '>=8'}
  441. argparse@2.0.1:
  442. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  443. asynckit@0.4.0:
  444. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  445. axios@1.13.6:
  446. resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
  447. balanced-match@1.0.2:
  448. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  449. balanced-match@4.0.4:
  450. resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
  451. engines: {node: 18 || 20 || >=22}
  452. boolbase@1.0.0:
  453. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  454. brace-expansion@1.1.12:
  455. resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
  456. brace-expansion@2.0.2:
  457. resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
  458. brace-expansion@5.0.4:
  459. resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
  460. engines: {node: 18 || 20 || >=22}
  461. call-bind-apply-helpers@1.0.2:
  462. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  463. engines: {node: '>= 0.4'}
  464. callsites@3.1.0:
  465. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  466. engines: {node: '>=6'}
  467. chalk@4.1.2:
  468. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  469. engines: {node: '>=10'}
  470. color-convert@2.0.1:
  471. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  472. engines: {node: '>=7.0.0'}
  473. color-name@1.1.4:
  474. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  475. combined-stream@1.0.8:
  476. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  477. engines: {node: '>= 0.8'}
  478. concat-map@0.0.1:
  479. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  480. cross-spawn@7.0.6:
  481. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  482. engines: {node: '>= 8'}
  483. cssesc@3.0.0:
  484. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  485. engines: {node: '>=4'}
  486. hasBin: true
  487. csstype@3.2.3:
  488. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  489. de-indent@1.0.2:
  490. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  491. debug@4.4.3:
  492. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  493. engines: {node: '>=6.0'}
  494. peerDependencies:
  495. supports-color: '*'
  496. peerDependenciesMeta:
  497. supports-color:
  498. optional: true
  499. deep-is@0.1.4:
  500. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  501. delayed-stream@1.0.0:
  502. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  503. engines: {node: '>=0.4.0'}
  504. dunder-proto@1.0.1:
  505. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  506. engines: {node: '>= 0.4'}
  507. entities@7.0.1:
  508. resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
  509. engines: {node: '>=0.12'}
  510. es-define-property@1.0.1:
  511. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  512. engines: {node: '>= 0.4'}
  513. es-errors@1.3.0:
  514. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  515. engines: {node: '>= 0.4'}
  516. es-object-atoms@1.1.1:
  517. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  518. engines: {node: '>= 0.4'}
  519. es-set-tostringtag@2.1.0:
  520. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  521. engines: {node: '>= 0.4'}
  522. esbuild@0.21.5:
  523. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  524. engines: {node: '>=12'}
  525. hasBin: true
  526. escape-string-regexp@4.0.0:
  527. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  528. engines: {node: '>=10'}
  529. eslint-plugin-vue@9.33.0:
  530. resolution: {integrity: sha512-174lJKuNsuDIlLpjeXc5E2Tss8P44uIimAfGD0b90k0NoirJqpG7stLuU9Vp/9ioTOrQdWVREc4mRd1BD+CvGw==}
  531. engines: {node: ^14.17.0 || >=16.0.0}
  532. peerDependencies:
  533. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  534. eslint-scope@7.2.2:
  535. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  536. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  537. eslint-scope@8.4.0:
  538. resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
  539. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  540. eslint-scope@9.1.2:
  541. resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
  542. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  543. eslint-visitor-keys@3.4.3:
  544. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  545. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  546. eslint-visitor-keys@4.2.1:
  547. resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
  548. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  549. eslint-visitor-keys@5.0.1:
  550. resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
  551. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  552. eslint@9.39.4:
  553. resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==}
  554. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  555. hasBin: true
  556. peerDependencies:
  557. jiti: '*'
  558. peerDependenciesMeta:
  559. jiti:
  560. optional: true
  561. espree@10.4.0:
  562. resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
  563. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  564. espree@11.2.0:
  565. resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
  566. engines: {node: ^20.19.0 || ^22.13.0 || >=24}
  567. espree@9.6.1:
  568. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  569. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  570. esquery@1.7.0:
  571. resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
  572. engines: {node: '>=0.10'}
  573. esrecurse@4.3.0:
  574. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  575. engines: {node: '>=4.0'}
  576. estraverse@5.3.0:
  577. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  578. engines: {node: '>=4.0'}
  579. estree-walker@2.0.2:
  580. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  581. esutils@2.0.3:
  582. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  583. engines: {node: '>=0.10.0'}
  584. fast-deep-equal@3.1.3:
  585. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  586. fast-json-stable-stringify@2.1.0:
  587. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  588. fast-levenshtein@2.0.6:
  589. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  590. fdir@6.5.0:
  591. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  592. engines: {node: '>=12.0.0'}
  593. peerDependencies:
  594. picomatch: ^3 || ^4
  595. peerDependenciesMeta:
  596. picomatch:
  597. optional: true
  598. file-entry-cache@8.0.0:
  599. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  600. engines: {node: '>=16.0.0'}
  601. find-up@5.0.0:
  602. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  603. engines: {node: '>=10'}
  604. flat-cache@4.0.1:
  605. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  606. engines: {node: '>=16'}
  607. flatted@3.3.4:
  608. resolution: {integrity: sha512-3+mMldrTAPdta5kjX2G2J7iX4zxtnwpdA8Tr2ZSjkyPSanvbZAcy6flmtnXbEybHrDcU9641lxrMfFuUxVz9vA==}
  609. follow-redirects@1.15.11:
  610. resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
  611. engines: {node: '>=4.0'}
  612. peerDependencies:
  613. debug: '*'
  614. peerDependenciesMeta:
  615. debug:
  616. optional: true
  617. form-data@4.0.5:
  618. resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
  619. engines: {node: '>= 6'}
  620. fsevents@2.3.3:
  621. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  622. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  623. os: [darwin]
  624. function-bind@1.1.2:
  625. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  626. get-intrinsic@1.3.0:
  627. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  628. engines: {node: '>= 0.4'}
  629. get-proto@1.0.1:
  630. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  631. engines: {node: '>= 0.4'}
  632. glob-parent@6.0.2:
  633. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  634. engines: {node: '>=10.13.0'}
  635. globals@13.24.0:
  636. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  637. engines: {node: '>=8'}
  638. globals@14.0.0:
  639. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  640. engines: {node: '>=18'}
  641. gopd@1.2.0:
  642. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  643. engines: {node: '>= 0.4'}
  644. has-flag@4.0.0:
  645. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  646. engines: {node: '>=8'}
  647. has-symbols@1.1.0:
  648. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  649. engines: {node: '>= 0.4'}
  650. has-tostringtag@1.0.2:
  651. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  652. engines: {node: '>= 0.4'}
  653. hasown@2.0.2:
  654. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  655. engines: {node: '>= 0.4'}
  656. he@1.2.0:
  657. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  658. hasBin: true
  659. ignore@5.3.2:
  660. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  661. engines: {node: '>= 4'}
  662. ignore@7.0.5:
  663. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  664. engines: {node: '>= 4'}
  665. import-fresh@3.3.1:
  666. resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
  667. engines: {node: '>=6'}
  668. imurmurhash@0.1.4:
  669. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  670. engines: {node: '>=0.8.19'}
  671. is-extglob@2.1.1:
  672. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  673. engines: {node: '>=0.10.0'}
  674. is-glob@4.0.3:
  675. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  676. engines: {node: '>=0.10.0'}
  677. isexe@2.0.0:
  678. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  679. js-yaml@4.1.1:
  680. resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
  681. hasBin: true
  682. json-buffer@3.0.1:
  683. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  684. json-schema-traverse@0.4.1:
  685. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  686. json-stable-stringify-without-jsonify@1.0.1:
  687. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  688. keyv@4.5.4:
  689. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  690. levn@0.4.1:
  691. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  692. engines: {node: '>= 0.8.0'}
  693. locate-path@6.0.0:
  694. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  695. engines: {node: '>=10'}
  696. lodash.merge@4.6.2:
  697. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  698. lodash@4.17.23:
  699. resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
  700. magic-string@0.30.21:
  701. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  702. math-intrinsics@1.1.0:
  703. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  704. engines: {node: '>= 0.4'}
  705. mime-db@1.52.0:
  706. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  707. engines: {node: '>= 0.6'}
  708. mime-types@2.1.35:
  709. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  710. engines: {node: '>= 0.6'}
  711. minimatch@10.2.4:
  712. resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
  713. engines: {node: 18 || 20 || >=22}
  714. minimatch@3.1.5:
  715. resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
  716. minimatch@9.0.9:
  717. resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
  718. engines: {node: '>=16 || 14 >=14.17'}
  719. ms@2.1.3:
  720. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  721. muggle-string@0.4.1:
  722. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  723. nanoid@3.3.11:
  724. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  725. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  726. hasBin: true
  727. natural-compare@1.4.0:
  728. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  729. nth-check@2.1.1:
  730. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  731. optionator@0.9.4:
  732. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  733. engines: {node: '>= 0.8.0'}
  734. p-limit@3.1.0:
  735. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  736. engines: {node: '>=10'}
  737. p-locate@5.0.0:
  738. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  739. engines: {node: '>=10'}
  740. parent-module@1.0.1:
  741. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  742. engines: {node: '>=6'}
  743. path-browserify@1.0.1:
  744. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  745. path-exists@4.0.0:
  746. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  747. engines: {node: '>=8'}
  748. path-key@3.1.1:
  749. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  750. engines: {node: '>=8'}
  751. picocolors@1.1.1:
  752. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  753. picomatch@4.0.3:
  754. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  755. engines: {node: '>=12'}
  756. postcss-selector-parser@6.1.2:
  757. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  758. engines: {node: '>=4'}
  759. postcss@8.5.8:
  760. resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
  761. engines: {node: ^10 || ^12 || >=14}
  762. prelude-ls@1.2.1:
  763. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  764. engines: {node: '>= 0.8.0'}
  765. prettier@3.8.1:
  766. resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
  767. engines: {node: '>=14'}
  768. hasBin: true
  769. proxy-from-env@1.1.0:
  770. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  771. punycode@2.3.1:
  772. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  773. engines: {node: '>=6'}
  774. resolve-from@4.0.0:
  775. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  776. engines: {node: '>=4'}
  777. rollup@4.59.0:
  778. resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
  779. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  780. hasBin: true
  781. semver@7.7.4:
  782. resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
  783. engines: {node: '>=10'}
  784. hasBin: true
  785. shebang-command@2.0.0:
  786. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  787. engines: {node: '>=8'}
  788. shebang-regex@3.0.0:
  789. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  790. engines: {node: '>=8'}
  791. source-map-js@1.2.1:
  792. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  793. engines: {node: '>=0.10.0'}
  794. strip-json-comments@3.1.1:
  795. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  796. engines: {node: '>=8'}
  797. supports-color@7.2.0:
  798. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  799. engines: {node: '>=8'}
  800. tinyglobby@0.2.15:
  801. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  802. engines: {node: '>=12.0.0'}
  803. ts-api-utils@2.4.0:
  804. resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
  805. engines: {node: '>=18.12'}
  806. peerDependencies:
  807. typescript: '>=4.8.4'
  808. type-check@0.4.0:
  809. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  810. engines: {node: '>= 0.8.0'}
  811. type-fest@0.20.2:
  812. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  813. engines: {node: '>=10'}
  814. typescript@5.9.3:
  815. resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
  816. engines: {node: '>=14.17'}
  817. hasBin: true
  818. uri-js@4.4.1:
  819. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  820. util-deprecate@1.0.2:
  821. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  822. vite@5.4.21:
  823. resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
  824. engines: {node: ^18.0.0 || >=20.0.0}
  825. hasBin: true
  826. peerDependencies:
  827. '@types/node': ^18.0.0 || >=20.0.0
  828. less: '*'
  829. lightningcss: ^1.21.0
  830. sass: '*'
  831. sass-embedded: '*'
  832. stylus: '*'
  833. sugarss: '*'
  834. terser: ^5.4.0
  835. peerDependenciesMeta:
  836. '@types/node':
  837. optional: true
  838. less:
  839. optional: true
  840. lightningcss:
  841. optional: true
  842. sass:
  843. optional: true
  844. sass-embedded:
  845. optional: true
  846. stylus:
  847. optional: true
  848. sugarss:
  849. optional: true
  850. terser:
  851. optional: true
  852. vscode-uri@3.1.0:
  853. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  854. vue-eslint-parser@10.4.0:
  855. resolution: {integrity: sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==}
  856. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  857. peerDependencies:
  858. eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
  859. vue-eslint-parser@9.4.3:
  860. resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
  861. engines: {node: ^14.17.0 || >=16.0.0}
  862. peerDependencies:
  863. eslint: '>=6.0.0'
  864. vue-tsc@2.2.12:
  865. resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==}
  866. hasBin: true
  867. peerDependencies:
  868. typescript: '>=5.0.0'
  869. vue@3.5.29:
  870. resolution: {integrity: sha512-BZqN4Ze6mDQVNAni0IHeMJ5mwr8VAJ3MQC9FmprRhcBYENw+wOAAjRj8jfmN6FLl0j96OXbR+CjWhmAmM+QGnA==}
  871. peerDependencies:
  872. typescript: '*'
  873. peerDependenciesMeta:
  874. typescript:
  875. optional: true
  876. which@2.0.2:
  877. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  878. engines: {node: '>= 8'}
  879. hasBin: true
  880. word-wrap@1.2.5:
  881. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  882. engines: {node: '>=0.10.0'}
  883. xml-name-validator@4.0.0:
  884. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  885. engines: {node: '>=12'}
  886. yocto-queue@0.1.0:
  887. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  888. engines: {node: '>=10'}
  889. snapshots:
  890. '@babel/helper-string-parser@7.27.1': {}
  891. '@babel/helper-validator-identifier@7.28.5': {}
  892. '@babel/parser@7.29.0':
  893. dependencies:
  894. '@babel/types': 7.29.0
  895. '@babel/types@7.29.0':
  896. dependencies:
  897. '@babel/helper-string-parser': 7.27.1
  898. '@babel/helper-validator-identifier': 7.28.5
  899. '@esbuild/aix-ppc64@0.21.5':
  900. optional: true
  901. '@esbuild/android-arm64@0.21.5':
  902. optional: true
  903. '@esbuild/android-arm@0.21.5':
  904. optional: true
  905. '@esbuild/android-x64@0.21.5':
  906. optional: true
  907. '@esbuild/darwin-arm64@0.21.5':
  908. optional: true
  909. '@esbuild/darwin-x64@0.21.5':
  910. optional: true
  911. '@esbuild/freebsd-arm64@0.21.5':
  912. optional: true
  913. '@esbuild/freebsd-x64@0.21.5':
  914. optional: true
  915. '@esbuild/linux-arm64@0.21.5':
  916. optional: true
  917. '@esbuild/linux-arm@0.21.5':
  918. optional: true
  919. '@esbuild/linux-ia32@0.21.5':
  920. optional: true
  921. '@esbuild/linux-loong64@0.21.5':
  922. optional: true
  923. '@esbuild/linux-mips64el@0.21.5':
  924. optional: true
  925. '@esbuild/linux-ppc64@0.21.5':
  926. optional: true
  927. '@esbuild/linux-riscv64@0.21.5':
  928. optional: true
  929. '@esbuild/linux-s390x@0.21.5':
  930. optional: true
  931. '@esbuild/linux-x64@0.21.5':
  932. optional: true
  933. '@esbuild/netbsd-x64@0.21.5':
  934. optional: true
  935. '@esbuild/openbsd-x64@0.21.5':
  936. optional: true
  937. '@esbuild/sunos-x64@0.21.5':
  938. optional: true
  939. '@esbuild/win32-arm64@0.21.5':
  940. optional: true
  941. '@esbuild/win32-ia32@0.21.5':
  942. optional: true
  943. '@esbuild/win32-x64@0.21.5':
  944. optional: true
  945. '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4)':
  946. dependencies:
  947. eslint: 9.39.4
  948. eslint-visitor-keys: 3.4.3
  949. '@eslint-community/regexpp@4.12.2': {}
  950. '@eslint/config-array@0.21.2':
  951. dependencies:
  952. '@eslint/object-schema': 2.1.7
  953. debug: 4.4.3
  954. minimatch: 3.1.5
  955. transitivePeerDependencies:
  956. - supports-color
  957. '@eslint/config-helpers@0.4.2':
  958. dependencies:
  959. '@eslint/core': 0.17.0
  960. '@eslint/core@0.17.0':
  961. dependencies:
  962. '@types/json-schema': 7.0.15
  963. '@eslint/eslintrc@3.3.5':
  964. dependencies:
  965. ajv: 6.14.0
  966. debug: 4.4.3
  967. espree: 10.4.0
  968. globals: 14.0.0
  969. ignore: 5.3.2
  970. import-fresh: 3.3.1
  971. js-yaml: 4.1.1
  972. minimatch: 3.1.5
  973. strip-json-comments: 3.1.1
  974. transitivePeerDependencies:
  975. - supports-color
  976. '@eslint/js@9.39.4': {}
  977. '@eslint/object-schema@2.1.7': {}
  978. '@eslint/plugin-kit@0.4.1':
  979. dependencies:
  980. '@eslint/core': 0.17.0
  981. levn: 0.4.1
  982. '@humanfs/core@0.19.1': {}
  983. '@humanfs/node@0.16.7':
  984. dependencies:
  985. '@humanfs/core': 0.19.1
  986. '@humanwhocodes/retry': 0.4.3
  987. '@humanwhocodes/module-importer@1.0.1': {}
  988. '@humanwhocodes/retry@0.4.3': {}
  989. '@jridgewell/sourcemap-codec@1.5.5': {}
  990. '@rollup/rollup-android-arm-eabi@4.59.0':
  991. optional: true
  992. '@rollup/rollup-android-arm64@4.59.0':
  993. optional: true
  994. '@rollup/rollup-darwin-arm64@4.59.0':
  995. optional: true
  996. '@rollup/rollup-darwin-x64@4.59.0':
  997. optional: true
  998. '@rollup/rollup-freebsd-arm64@4.59.0':
  999. optional: true
  1000. '@rollup/rollup-freebsd-x64@4.59.0':
  1001. optional: true
  1002. '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
  1003. optional: true
  1004. '@rollup/rollup-linux-arm-musleabihf@4.59.0':
  1005. optional: true
  1006. '@rollup/rollup-linux-arm64-gnu@4.59.0':
  1007. optional: true
  1008. '@rollup/rollup-linux-arm64-musl@4.59.0':
  1009. optional: true
  1010. '@rollup/rollup-linux-loong64-gnu@4.59.0':
  1011. optional: true
  1012. '@rollup/rollup-linux-loong64-musl@4.59.0':
  1013. optional: true
  1014. '@rollup/rollup-linux-ppc64-gnu@4.59.0':
  1015. optional: true
  1016. '@rollup/rollup-linux-ppc64-musl@4.59.0':
  1017. optional: true
  1018. '@rollup/rollup-linux-riscv64-gnu@4.59.0':
  1019. optional: true
  1020. '@rollup/rollup-linux-riscv64-musl@4.59.0':
  1021. optional: true
  1022. '@rollup/rollup-linux-s390x-gnu@4.59.0':
  1023. optional: true
  1024. '@rollup/rollup-linux-x64-gnu@4.59.0':
  1025. optional: true
  1026. '@rollup/rollup-linux-x64-musl@4.59.0':
  1027. optional: true
  1028. '@rollup/rollup-openbsd-x64@4.59.0':
  1029. optional: true
  1030. '@rollup/rollup-openharmony-arm64@4.59.0':
  1031. optional: true
  1032. '@rollup/rollup-win32-arm64-msvc@4.59.0':
  1033. optional: true
  1034. '@rollup/rollup-win32-ia32-msvc@4.59.0':
  1035. optional: true
  1036. '@rollup/rollup-win32-x64-gnu@4.59.0':
  1037. optional: true
  1038. '@rollup/rollup-win32-x64-msvc@4.59.0':
  1039. optional: true
  1040. '@types/esrecurse@4.3.1': {}
  1041. '@types/estree@1.0.8': {}
  1042. '@types/json-schema@7.0.15': {}
  1043. '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)(typescript@5.9.3)':
  1044. dependencies:
  1045. '@eslint-community/regexpp': 4.12.2
  1046. '@typescript-eslint/parser': 8.56.1(eslint@9.39.4)(typescript@5.9.3)
  1047. '@typescript-eslint/scope-manager': 8.56.1
  1048. '@typescript-eslint/type-utils': 8.56.1(eslint@9.39.4)(typescript@5.9.3)
  1049. '@typescript-eslint/utils': 8.56.1(eslint@9.39.4)(typescript@5.9.3)
  1050. '@typescript-eslint/visitor-keys': 8.56.1
  1051. eslint: 9.39.4
  1052. ignore: 7.0.5
  1053. natural-compare: 1.4.0
  1054. ts-api-utils: 2.4.0(typescript@5.9.3)
  1055. typescript: 5.9.3
  1056. transitivePeerDependencies:
  1057. - supports-color
  1058. '@typescript-eslint/parser@8.56.1(eslint@9.39.4)(typescript@5.9.3)':
  1059. dependencies:
  1060. '@typescript-eslint/scope-manager': 8.56.1
  1061. '@typescript-eslint/types': 8.56.1
  1062. '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
  1063. '@typescript-eslint/visitor-keys': 8.56.1
  1064. debug: 4.4.3
  1065. eslint: 9.39.4
  1066. typescript: 5.9.3
  1067. transitivePeerDependencies:
  1068. - supports-color
  1069. '@typescript-eslint/project-service@8.56.1(typescript@5.9.3)':
  1070. dependencies:
  1071. '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3)
  1072. '@typescript-eslint/types': 8.56.1
  1073. debug: 4.4.3
  1074. typescript: 5.9.3
  1075. transitivePeerDependencies:
  1076. - supports-color
  1077. '@typescript-eslint/scope-manager@8.56.1':
  1078. dependencies:
  1079. '@typescript-eslint/types': 8.56.1
  1080. '@typescript-eslint/visitor-keys': 8.56.1
  1081. '@typescript-eslint/tsconfig-utils@8.56.1(typescript@5.9.3)':
  1082. dependencies:
  1083. typescript: 5.9.3
  1084. '@typescript-eslint/type-utils@8.56.1(eslint@9.39.4)(typescript@5.9.3)':
  1085. dependencies:
  1086. '@typescript-eslint/types': 8.56.1
  1087. '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
  1088. '@typescript-eslint/utils': 8.56.1(eslint@9.39.4)(typescript@5.9.3)
  1089. debug: 4.4.3
  1090. eslint: 9.39.4
  1091. ts-api-utils: 2.4.0(typescript@5.9.3)
  1092. typescript: 5.9.3
  1093. transitivePeerDependencies:
  1094. - supports-color
  1095. '@typescript-eslint/types@8.56.1': {}
  1096. '@typescript-eslint/typescript-estree@8.56.1(typescript@5.9.3)':
  1097. dependencies:
  1098. '@typescript-eslint/project-service': 8.56.1(typescript@5.9.3)
  1099. '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3)
  1100. '@typescript-eslint/types': 8.56.1
  1101. '@typescript-eslint/visitor-keys': 8.56.1
  1102. debug: 4.4.3
  1103. minimatch: 10.2.4
  1104. semver: 7.7.4
  1105. tinyglobby: 0.2.15
  1106. ts-api-utils: 2.4.0(typescript@5.9.3)
  1107. typescript: 5.9.3
  1108. transitivePeerDependencies:
  1109. - supports-color
  1110. '@typescript-eslint/utils@8.56.1(eslint@9.39.4)(typescript@5.9.3)':
  1111. dependencies:
  1112. '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
  1113. '@typescript-eslint/scope-manager': 8.56.1
  1114. '@typescript-eslint/types': 8.56.1
  1115. '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
  1116. eslint: 9.39.4
  1117. typescript: 5.9.3
  1118. transitivePeerDependencies:
  1119. - supports-color
  1120. '@typescript-eslint/visitor-keys@8.56.1':
  1121. dependencies:
  1122. '@typescript-eslint/types': 8.56.1
  1123. eslint-visitor-keys: 5.0.1
  1124. '@vitejs/plugin-vue@5.2.4(vite@5.4.21)(vue@3.5.29(typescript@5.9.3))':
  1125. dependencies:
  1126. vite: 5.4.21
  1127. vue: 3.5.29(typescript@5.9.3)
  1128. '@volar/language-core@2.4.15':
  1129. dependencies:
  1130. '@volar/source-map': 2.4.15
  1131. '@volar/source-map@2.4.15': {}
  1132. '@volar/typescript@2.4.15':
  1133. dependencies:
  1134. '@volar/language-core': 2.4.15
  1135. path-browserify: 1.0.1
  1136. vscode-uri: 3.1.0
  1137. '@vue/compiler-core@3.5.29':
  1138. dependencies:
  1139. '@babel/parser': 7.29.0
  1140. '@vue/shared': 3.5.29
  1141. entities: 7.0.1
  1142. estree-walker: 2.0.2
  1143. source-map-js: 1.2.1
  1144. '@vue/compiler-dom@3.5.29':
  1145. dependencies:
  1146. '@vue/compiler-core': 3.5.29
  1147. '@vue/shared': 3.5.29
  1148. '@vue/compiler-sfc@3.5.29':
  1149. dependencies:
  1150. '@babel/parser': 7.29.0
  1151. '@vue/compiler-core': 3.5.29
  1152. '@vue/compiler-dom': 3.5.29
  1153. '@vue/compiler-ssr': 3.5.29
  1154. '@vue/shared': 3.5.29
  1155. estree-walker: 2.0.2
  1156. magic-string: 0.30.21
  1157. postcss: 8.5.8
  1158. source-map-js: 1.2.1
  1159. '@vue/compiler-ssr@3.5.29':
  1160. dependencies:
  1161. '@vue/compiler-dom': 3.5.29
  1162. '@vue/shared': 3.5.29
  1163. '@vue/compiler-vue2@2.7.16':
  1164. dependencies:
  1165. de-indent: 1.0.2
  1166. he: 1.2.0
  1167. '@vue/language-core@2.2.12(typescript@5.9.3)':
  1168. dependencies:
  1169. '@volar/language-core': 2.4.15
  1170. '@vue/compiler-dom': 3.5.29
  1171. '@vue/compiler-vue2': 2.7.16
  1172. '@vue/shared': 3.5.29
  1173. alien-signals: 1.0.13
  1174. minimatch: 9.0.9
  1175. muggle-string: 0.4.1
  1176. path-browserify: 1.0.1
  1177. optionalDependencies:
  1178. typescript: 5.9.3
  1179. '@vue/reactivity@3.5.29':
  1180. dependencies:
  1181. '@vue/shared': 3.5.29
  1182. '@vue/runtime-core@3.5.29':
  1183. dependencies:
  1184. '@vue/reactivity': 3.5.29
  1185. '@vue/shared': 3.5.29
  1186. '@vue/runtime-dom@3.5.29':
  1187. dependencies:
  1188. '@vue/reactivity': 3.5.29
  1189. '@vue/runtime-core': 3.5.29
  1190. '@vue/shared': 3.5.29
  1191. csstype: 3.2.3
  1192. '@vue/server-renderer@3.5.29(vue@3.5.29(typescript@5.9.3))':
  1193. dependencies:
  1194. '@vue/compiler-ssr': 3.5.29
  1195. '@vue/shared': 3.5.29
  1196. vue: 3.5.29(typescript@5.9.3)
  1197. '@vue/shared@3.5.29': {}
  1198. acorn-jsx@5.3.2(acorn@8.16.0):
  1199. dependencies:
  1200. acorn: 8.16.0
  1201. acorn@8.16.0: {}
  1202. ajv@6.14.0:
  1203. dependencies:
  1204. fast-deep-equal: 3.1.3
  1205. fast-json-stable-stringify: 2.1.0
  1206. json-schema-traverse: 0.4.1
  1207. uri-js: 4.4.1
  1208. alien-signals@1.0.13: {}
  1209. ansi-styles@4.3.0:
  1210. dependencies:
  1211. color-convert: 2.0.1
  1212. argparse@2.0.1: {}
  1213. asynckit@0.4.0: {}
  1214. axios@1.13.6:
  1215. dependencies:
  1216. follow-redirects: 1.15.11
  1217. form-data: 4.0.5
  1218. proxy-from-env: 1.1.0
  1219. transitivePeerDependencies:
  1220. - debug
  1221. balanced-match@1.0.2: {}
  1222. balanced-match@4.0.4: {}
  1223. boolbase@1.0.0: {}
  1224. brace-expansion@1.1.12:
  1225. dependencies:
  1226. balanced-match: 1.0.2
  1227. concat-map: 0.0.1
  1228. brace-expansion@2.0.2:
  1229. dependencies:
  1230. balanced-match: 1.0.2
  1231. brace-expansion@5.0.4:
  1232. dependencies:
  1233. balanced-match: 4.0.4
  1234. call-bind-apply-helpers@1.0.2:
  1235. dependencies:
  1236. es-errors: 1.3.0
  1237. function-bind: 1.1.2
  1238. callsites@3.1.0: {}
  1239. chalk@4.1.2:
  1240. dependencies:
  1241. ansi-styles: 4.3.0
  1242. supports-color: 7.2.0
  1243. color-convert@2.0.1:
  1244. dependencies:
  1245. color-name: 1.1.4
  1246. color-name@1.1.4: {}
  1247. combined-stream@1.0.8:
  1248. dependencies:
  1249. delayed-stream: 1.0.0
  1250. concat-map@0.0.1: {}
  1251. cross-spawn@7.0.6:
  1252. dependencies:
  1253. path-key: 3.1.1
  1254. shebang-command: 2.0.0
  1255. which: 2.0.2
  1256. cssesc@3.0.0: {}
  1257. csstype@3.2.3: {}
  1258. de-indent@1.0.2: {}
  1259. debug@4.4.3:
  1260. dependencies:
  1261. ms: 2.1.3
  1262. deep-is@0.1.4: {}
  1263. delayed-stream@1.0.0: {}
  1264. dunder-proto@1.0.1:
  1265. dependencies:
  1266. call-bind-apply-helpers: 1.0.2
  1267. es-errors: 1.3.0
  1268. gopd: 1.2.0
  1269. entities@7.0.1: {}
  1270. es-define-property@1.0.1: {}
  1271. es-errors@1.3.0: {}
  1272. es-object-atoms@1.1.1:
  1273. dependencies:
  1274. es-errors: 1.3.0
  1275. es-set-tostringtag@2.1.0:
  1276. dependencies:
  1277. es-errors: 1.3.0
  1278. get-intrinsic: 1.3.0
  1279. has-tostringtag: 1.0.2
  1280. hasown: 2.0.2
  1281. esbuild@0.21.5:
  1282. optionalDependencies:
  1283. '@esbuild/aix-ppc64': 0.21.5
  1284. '@esbuild/android-arm': 0.21.5
  1285. '@esbuild/android-arm64': 0.21.5
  1286. '@esbuild/android-x64': 0.21.5
  1287. '@esbuild/darwin-arm64': 0.21.5
  1288. '@esbuild/darwin-x64': 0.21.5
  1289. '@esbuild/freebsd-arm64': 0.21.5
  1290. '@esbuild/freebsd-x64': 0.21.5
  1291. '@esbuild/linux-arm': 0.21.5
  1292. '@esbuild/linux-arm64': 0.21.5
  1293. '@esbuild/linux-ia32': 0.21.5
  1294. '@esbuild/linux-loong64': 0.21.5
  1295. '@esbuild/linux-mips64el': 0.21.5
  1296. '@esbuild/linux-ppc64': 0.21.5
  1297. '@esbuild/linux-riscv64': 0.21.5
  1298. '@esbuild/linux-s390x': 0.21.5
  1299. '@esbuild/linux-x64': 0.21.5
  1300. '@esbuild/netbsd-x64': 0.21.5
  1301. '@esbuild/openbsd-x64': 0.21.5
  1302. '@esbuild/sunos-x64': 0.21.5
  1303. '@esbuild/win32-arm64': 0.21.5
  1304. '@esbuild/win32-ia32': 0.21.5
  1305. '@esbuild/win32-x64': 0.21.5
  1306. escape-string-regexp@4.0.0: {}
  1307. eslint-plugin-vue@9.33.0(eslint@9.39.4):
  1308. dependencies:
  1309. '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
  1310. eslint: 9.39.4
  1311. globals: 13.24.0
  1312. natural-compare: 1.4.0
  1313. nth-check: 2.1.1
  1314. postcss-selector-parser: 6.1.2
  1315. semver: 7.7.4
  1316. vue-eslint-parser: 9.4.3(eslint@9.39.4)
  1317. xml-name-validator: 4.0.0
  1318. transitivePeerDependencies:
  1319. - supports-color
  1320. eslint-scope@7.2.2:
  1321. dependencies:
  1322. esrecurse: 4.3.0
  1323. estraverse: 5.3.0
  1324. eslint-scope@8.4.0:
  1325. dependencies:
  1326. esrecurse: 4.3.0
  1327. estraverse: 5.3.0
  1328. eslint-scope@9.1.2:
  1329. dependencies:
  1330. '@types/esrecurse': 4.3.1
  1331. '@types/estree': 1.0.8
  1332. esrecurse: 4.3.0
  1333. estraverse: 5.3.0
  1334. eslint-visitor-keys@3.4.3: {}
  1335. eslint-visitor-keys@4.2.1: {}
  1336. eslint-visitor-keys@5.0.1: {}
  1337. eslint@9.39.4:
  1338. dependencies:
  1339. '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
  1340. '@eslint-community/regexpp': 4.12.2
  1341. '@eslint/config-array': 0.21.2
  1342. '@eslint/config-helpers': 0.4.2
  1343. '@eslint/core': 0.17.0
  1344. '@eslint/eslintrc': 3.3.5
  1345. '@eslint/js': 9.39.4
  1346. '@eslint/plugin-kit': 0.4.1
  1347. '@humanfs/node': 0.16.7
  1348. '@humanwhocodes/module-importer': 1.0.1
  1349. '@humanwhocodes/retry': 0.4.3
  1350. '@types/estree': 1.0.8
  1351. ajv: 6.14.0
  1352. chalk: 4.1.2
  1353. cross-spawn: 7.0.6
  1354. debug: 4.4.3
  1355. escape-string-regexp: 4.0.0
  1356. eslint-scope: 8.4.0
  1357. eslint-visitor-keys: 4.2.1
  1358. espree: 10.4.0
  1359. esquery: 1.7.0
  1360. esutils: 2.0.3
  1361. fast-deep-equal: 3.1.3
  1362. file-entry-cache: 8.0.0
  1363. find-up: 5.0.0
  1364. glob-parent: 6.0.2
  1365. ignore: 5.3.2
  1366. imurmurhash: 0.1.4
  1367. is-glob: 4.0.3
  1368. json-stable-stringify-without-jsonify: 1.0.1
  1369. lodash.merge: 4.6.2
  1370. minimatch: 3.1.5
  1371. natural-compare: 1.4.0
  1372. optionator: 0.9.4
  1373. transitivePeerDependencies:
  1374. - supports-color
  1375. espree@10.4.0:
  1376. dependencies:
  1377. acorn: 8.16.0
  1378. acorn-jsx: 5.3.2(acorn@8.16.0)
  1379. eslint-visitor-keys: 4.2.1
  1380. espree@11.2.0:
  1381. dependencies:
  1382. acorn: 8.16.0
  1383. acorn-jsx: 5.3.2(acorn@8.16.0)
  1384. eslint-visitor-keys: 5.0.1
  1385. espree@9.6.1:
  1386. dependencies:
  1387. acorn: 8.16.0
  1388. acorn-jsx: 5.3.2(acorn@8.16.0)
  1389. eslint-visitor-keys: 3.4.3
  1390. esquery@1.7.0:
  1391. dependencies:
  1392. estraverse: 5.3.0
  1393. esrecurse@4.3.0:
  1394. dependencies:
  1395. estraverse: 5.3.0
  1396. estraverse@5.3.0: {}
  1397. estree-walker@2.0.2: {}
  1398. esutils@2.0.3: {}
  1399. fast-deep-equal@3.1.3: {}
  1400. fast-json-stable-stringify@2.1.0: {}
  1401. fast-levenshtein@2.0.6: {}
  1402. fdir@6.5.0(picomatch@4.0.3):
  1403. optionalDependencies:
  1404. picomatch: 4.0.3
  1405. file-entry-cache@8.0.0:
  1406. dependencies:
  1407. flat-cache: 4.0.1
  1408. find-up@5.0.0:
  1409. dependencies:
  1410. locate-path: 6.0.0
  1411. path-exists: 4.0.0
  1412. flat-cache@4.0.1:
  1413. dependencies:
  1414. flatted: 3.3.4
  1415. keyv: 4.5.4
  1416. flatted@3.3.4: {}
  1417. follow-redirects@1.15.11: {}
  1418. form-data@4.0.5:
  1419. dependencies:
  1420. asynckit: 0.4.0
  1421. combined-stream: 1.0.8
  1422. es-set-tostringtag: 2.1.0
  1423. hasown: 2.0.2
  1424. mime-types: 2.1.35
  1425. fsevents@2.3.3:
  1426. optional: true
  1427. function-bind@1.1.2: {}
  1428. get-intrinsic@1.3.0:
  1429. dependencies:
  1430. call-bind-apply-helpers: 1.0.2
  1431. es-define-property: 1.0.1
  1432. es-errors: 1.3.0
  1433. es-object-atoms: 1.1.1
  1434. function-bind: 1.1.2
  1435. get-proto: 1.0.1
  1436. gopd: 1.2.0
  1437. has-symbols: 1.1.0
  1438. hasown: 2.0.2
  1439. math-intrinsics: 1.1.0
  1440. get-proto@1.0.1:
  1441. dependencies:
  1442. dunder-proto: 1.0.1
  1443. es-object-atoms: 1.1.1
  1444. glob-parent@6.0.2:
  1445. dependencies:
  1446. is-glob: 4.0.3
  1447. globals@13.24.0:
  1448. dependencies:
  1449. type-fest: 0.20.2
  1450. globals@14.0.0: {}
  1451. gopd@1.2.0: {}
  1452. has-flag@4.0.0: {}
  1453. has-symbols@1.1.0: {}
  1454. has-tostringtag@1.0.2:
  1455. dependencies:
  1456. has-symbols: 1.1.0
  1457. hasown@2.0.2:
  1458. dependencies:
  1459. function-bind: 1.1.2
  1460. he@1.2.0: {}
  1461. ignore@5.3.2: {}
  1462. ignore@7.0.5: {}
  1463. import-fresh@3.3.1:
  1464. dependencies:
  1465. parent-module: 1.0.1
  1466. resolve-from: 4.0.0
  1467. imurmurhash@0.1.4: {}
  1468. is-extglob@2.1.1: {}
  1469. is-glob@4.0.3:
  1470. dependencies:
  1471. is-extglob: 2.1.1
  1472. isexe@2.0.0: {}
  1473. js-yaml@4.1.1:
  1474. dependencies:
  1475. argparse: 2.0.1
  1476. json-buffer@3.0.1: {}
  1477. json-schema-traverse@0.4.1: {}
  1478. json-stable-stringify-without-jsonify@1.0.1: {}
  1479. keyv@4.5.4:
  1480. dependencies:
  1481. json-buffer: 3.0.1
  1482. levn@0.4.1:
  1483. dependencies:
  1484. prelude-ls: 1.2.1
  1485. type-check: 0.4.0
  1486. locate-path@6.0.0:
  1487. dependencies:
  1488. p-locate: 5.0.0
  1489. lodash.merge@4.6.2: {}
  1490. lodash@4.17.23: {}
  1491. magic-string@0.30.21:
  1492. dependencies:
  1493. '@jridgewell/sourcemap-codec': 1.5.5
  1494. math-intrinsics@1.1.0: {}
  1495. mime-db@1.52.0: {}
  1496. mime-types@2.1.35:
  1497. dependencies:
  1498. mime-db: 1.52.0
  1499. minimatch@10.2.4:
  1500. dependencies:
  1501. brace-expansion: 5.0.4
  1502. minimatch@3.1.5:
  1503. dependencies:
  1504. brace-expansion: 1.1.12
  1505. minimatch@9.0.9:
  1506. dependencies:
  1507. brace-expansion: 2.0.2
  1508. ms@2.1.3: {}
  1509. muggle-string@0.4.1: {}
  1510. nanoid@3.3.11: {}
  1511. natural-compare@1.4.0: {}
  1512. nth-check@2.1.1:
  1513. dependencies:
  1514. boolbase: 1.0.0
  1515. optionator@0.9.4:
  1516. dependencies:
  1517. deep-is: 0.1.4
  1518. fast-levenshtein: 2.0.6
  1519. levn: 0.4.1
  1520. prelude-ls: 1.2.1
  1521. type-check: 0.4.0
  1522. word-wrap: 1.2.5
  1523. p-limit@3.1.0:
  1524. dependencies:
  1525. yocto-queue: 0.1.0
  1526. p-locate@5.0.0:
  1527. dependencies:
  1528. p-limit: 3.1.0
  1529. parent-module@1.0.1:
  1530. dependencies:
  1531. callsites: 3.1.0
  1532. path-browserify@1.0.1: {}
  1533. path-exists@4.0.0: {}
  1534. path-key@3.1.1: {}
  1535. picocolors@1.1.1: {}
  1536. picomatch@4.0.3: {}
  1537. postcss-selector-parser@6.1.2:
  1538. dependencies:
  1539. cssesc: 3.0.0
  1540. util-deprecate: 1.0.2
  1541. postcss@8.5.8:
  1542. dependencies:
  1543. nanoid: 3.3.11
  1544. picocolors: 1.1.1
  1545. source-map-js: 1.2.1
  1546. prelude-ls@1.2.1: {}
  1547. prettier@3.8.1: {}
  1548. proxy-from-env@1.1.0: {}
  1549. punycode@2.3.1: {}
  1550. resolve-from@4.0.0: {}
  1551. rollup@4.59.0:
  1552. dependencies:
  1553. '@types/estree': 1.0.8
  1554. optionalDependencies:
  1555. '@rollup/rollup-android-arm-eabi': 4.59.0
  1556. '@rollup/rollup-android-arm64': 4.59.0
  1557. '@rollup/rollup-darwin-arm64': 4.59.0
  1558. '@rollup/rollup-darwin-x64': 4.59.0
  1559. '@rollup/rollup-freebsd-arm64': 4.59.0
  1560. '@rollup/rollup-freebsd-x64': 4.59.0
  1561. '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
  1562. '@rollup/rollup-linux-arm-musleabihf': 4.59.0
  1563. '@rollup/rollup-linux-arm64-gnu': 4.59.0
  1564. '@rollup/rollup-linux-arm64-musl': 4.59.0
  1565. '@rollup/rollup-linux-loong64-gnu': 4.59.0
  1566. '@rollup/rollup-linux-loong64-musl': 4.59.0
  1567. '@rollup/rollup-linux-ppc64-gnu': 4.59.0
  1568. '@rollup/rollup-linux-ppc64-musl': 4.59.0
  1569. '@rollup/rollup-linux-riscv64-gnu': 4.59.0
  1570. '@rollup/rollup-linux-riscv64-musl': 4.59.0
  1571. '@rollup/rollup-linux-s390x-gnu': 4.59.0
  1572. '@rollup/rollup-linux-x64-gnu': 4.59.0
  1573. '@rollup/rollup-linux-x64-musl': 4.59.0
  1574. '@rollup/rollup-openbsd-x64': 4.59.0
  1575. '@rollup/rollup-openharmony-arm64': 4.59.0
  1576. '@rollup/rollup-win32-arm64-msvc': 4.59.0
  1577. '@rollup/rollup-win32-ia32-msvc': 4.59.0
  1578. '@rollup/rollup-win32-x64-gnu': 4.59.0
  1579. '@rollup/rollup-win32-x64-msvc': 4.59.0
  1580. fsevents: 2.3.3
  1581. semver@7.7.4: {}
  1582. shebang-command@2.0.0:
  1583. dependencies:
  1584. shebang-regex: 3.0.0
  1585. shebang-regex@3.0.0: {}
  1586. source-map-js@1.2.1: {}
  1587. strip-json-comments@3.1.1: {}
  1588. supports-color@7.2.0:
  1589. dependencies:
  1590. has-flag: 4.0.0
  1591. tinyglobby@0.2.15:
  1592. dependencies:
  1593. fdir: 6.5.0(picomatch@4.0.3)
  1594. picomatch: 4.0.3
  1595. ts-api-utils@2.4.0(typescript@5.9.3):
  1596. dependencies:
  1597. typescript: 5.9.3
  1598. type-check@0.4.0:
  1599. dependencies:
  1600. prelude-ls: 1.2.1
  1601. type-fest@0.20.2: {}
  1602. typescript@5.9.3: {}
  1603. uri-js@4.4.1:
  1604. dependencies:
  1605. punycode: 2.3.1
  1606. util-deprecate@1.0.2: {}
  1607. vite@5.4.21:
  1608. dependencies:
  1609. esbuild: 0.21.5
  1610. postcss: 8.5.8
  1611. rollup: 4.59.0
  1612. optionalDependencies:
  1613. fsevents: 2.3.3
  1614. vscode-uri@3.1.0: {}
  1615. vue-eslint-parser@10.4.0(eslint@9.39.4):
  1616. dependencies:
  1617. debug: 4.4.3
  1618. eslint: 9.39.4
  1619. eslint-scope: 9.1.2
  1620. eslint-visitor-keys: 5.0.1
  1621. espree: 11.2.0
  1622. esquery: 1.7.0
  1623. semver: 7.7.4
  1624. transitivePeerDependencies:
  1625. - supports-color
  1626. vue-eslint-parser@9.4.3(eslint@9.39.4):
  1627. dependencies:
  1628. debug: 4.4.3
  1629. eslint: 9.39.4
  1630. eslint-scope: 7.2.2
  1631. eslint-visitor-keys: 3.4.3
  1632. espree: 9.6.1
  1633. esquery: 1.7.0
  1634. lodash: 4.17.23
  1635. semver: 7.7.4
  1636. transitivePeerDependencies:
  1637. - supports-color
  1638. vue-tsc@2.2.12(typescript@5.9.3):
  1639. dependencies:
  1640. '@volar/typescript': 2.4.15
  1641. '@vue/language-core': 2.2.12(typescript@5.9.3)
  1642. typescript: 5.9.3
  1643. vue@3.5.29(typescript@5.9.3):
  1644. dependencies:
  1645. '@vue/compiler-dom': 3.5.29
  1646. '@vue/compiler-sfc': 3.5.29
  1647. '@vue/runtime-dom': 3.5.29
  1648. '@vue/server-renderer': 3.5.29(vue@3.5.29(typescript@5.9.3))
  1649. '@vue/shared': 3.5.29
  1650. optionalDependencies:
  1651. typescript: 5.9.3
  1652. which@2.0.2:
  1653. dependencies:
  1654. isexe: 2.0.0
  1655. word-wrap@1.2.5: {}
  1656. xml-name-validator@4.0.0: {}
  1657. yocto-queue@0.1.0: {}