pnpm-lock.yaml 68 KB

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