package-lock.json 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. {
  2. "name": "zyuas-neo",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "zyuas-neo",
  9. "version": "1.0.0",
  10. "dependencies": {
  11. "@element-plus/icons-vue": "^2.3.2",
  12. "element-plus": "^2.13.2",
  13. "pinia": "^3.0.4",
  14. "swiper": "^12.1.2",
  15. "vue": "^3.5.25",
  16. "vue-router": "^4.6.4"
  17. },
  18. "devDependencies": {
  19. "@types/node": "^25.3.1",
  20. "@vitejs/plugin-vue": "^6.0.2",
  21. "sass": "^1.97.3",
  22. "typescript": "^5.9.3",
  23. "vite": "^7.3.1",
  24. "vue-tsc": "^3.2.5"
  25. }
  26. },
  27. "node_modules/@babel/helper-string-parser": {
  28. "version": "7.27.1",
  29. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  30. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  31. "license": "MIT",
  32. "engines": {
  33. "node": ">=6.9.0"
  34. }
  35. },
  36. "node_modules/@babel/helper-validator-identifier": {
  37. "version": "7.28.5",
  38. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  39. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  40. "license": "MIT",
  41. "engines": {
  42. "node": ">=6.9.0"
  43. }
  44. },
  45. "node_modules/@babel/parser": {
  46. "version": "7.29.0",
  47. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.0.tgz",
  48. "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
  49. "license": "MIT",
  50. "dependencies": {
  51. "@babel/types": "^7.29.0"
  52. },
  53. "bin": {
  54. "parser": "bin/babel-parser.js"
  55. },
  56. "engines": {
  57. "node": ">=6.0.0"
  58. }
  59. },
  60. "node_modules/@babel/types": {
  61. "version": "7.29.0",
  62. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
  63. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  64. "license": "MIT",
  65. "dependencies": {
  66. "@babel/helper-string-parser": "^7.27.1",
  67. "@babel/helper-validator-identifier": "^7.28.5"
  68. },
  69. "engines": {
  70. "node": ">=6.9.0"
  71. }
  72. },
  73. "node_modules/@ctrl/tinycolor": {
  74. "version": "3.6.1",
  75. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  76. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  77. "license": "MIT",
  78. "engines": {
  79. "node": ">=10"
  80. }
  81. },
  82. "node_modules/@element-plus/icons-vue": {
  83. "version": "2.3.2",
  84. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  85. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  86. "license": "MIT",
  87. "peerDependencies": {
  88. "vue": "^3.2.0"
  89. }
  90. },
  91. "node_modules/@esbuild/aix-ppc64": {
  92. "version": "0.27.3",
  93. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
  94. "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
  95. "cpu": [
  96. "ppc64"
  97. ],
  98. "dev": true,
  99. "license": "MIT",
  100. "optional": true,
  101. "os": [
  102. "aix"
  103. ],
  104. "engines": {
  105. "node": ">=18"
  106. }
  107. },
  108. "node_modules/@esbuild/android-arm": {
  109. "version": "0.27.3",
  110. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
  111. "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
  112. "cpu": [
  113. "arm"
  114. ],
  115. "dev": true,
  116. "license": "MIT",
  117. "optional": true,
  118. "os": [
  119. "android"
  120. ],
  121. "engines": {
  122. "node": ">=18"
  123. }
  124. },
  125. "node_modules/@esbuild/android-arm64": {
  126. "version": "0.27.3",
  127. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
  128. "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
  129. "cpu": [
  130. "arm64"
  131. ],
  132. "dev": true,
  133. "license": "MIT",
  134. "optional": true,
  135. "os": [
  136. "android"
  137. ],
  138. "engines": {
  139. "node": ">=18"
  140. }
  141. },
  142. "node_modules/@esbuild/android-x64": {
  143. "version": "0.27.3",
  144. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
  145. "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
  146. "cpu": [
  147. "x64"
  148. ],
  149. "dev": true,
  150. "license": "MIT",
  151. "optional": true,
  152. "os": [
  153. "android"
  154. ],
  155. "engines": {
  156. "node": ">=18"
  157. }
  158. },
  159. "node_modules/@esbuild/darwin-arm64": {
  160. "version": "0.27.3",
  161. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
  162. "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
  163. "cpu": [
  164. "arm64"
  165. ],
  166. "dev": true,
  167. "license": "MIT",
  168. "optional": true,
  169. "os": [
  170. "darwin"
  171. ],
  172. "engines": {
  173. "node": ">=18"
  174. }
  175. },
  176. "node_modules/@esbuild/darwin-x64": {
  177. "version": "0.27.3",
  178. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
  179. "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
  180. "cpu": [
  181. "x64"
  182. ],
  183. "dev": true,
  184. "license": "MIT",
  185. "optional": true,
  186. "os": [
  187. "darwin"
  188. ],
  189. "engines": {
  190. "node": ">=18"
  191. }
  192. },
  193. "node_modules/@esbuild/freebsd-arm64": {
  194. "version": "0.27.3",
  195. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
  196. "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
  197. "cpu": [
  198. "arm64"
  199. ],
  200. "dev": true,
  201. "license": "MIT",
  202. "optional": true,
  203. "os": [
  204. "freebsd"
  205. ],
  206. "engines": {
  207. "node": ">=18"
  208. }
  209. },
  210. "node_modules/@esbuild/freebsd-x64": {
  211. "version": "0.27.3",
  212. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
  213. "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
  214. "cpu": [
  215. "x64"
  216. ],
  217. "dev": true,
  218. "license": "MIT",
  219. "optional": true,
  220. "os": [
  221. "freebsd"
  222. ],
  223. "engines": {
  224. "node": ">=18"
  225. }
  226. },
  227. "node_modules/@esbuild/linux-arm": {
  228. "version": "0.27.3",
  229. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
  230. "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
  231. "cpu": [
  232. "arm"
  233. ],
  234. "dev": true,
  235. "license": "MIT",
  236. "optional": true,
  237. "os": [
  238. "linux"
  239. ],
  240. "engines": {
  241. "node": ">=18"
  242. }
  243. },
  244. "node_modules/@esbuild/linux-arm64": {
  245. "version": "0.27.3",
  246. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
  247. "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
  248. "cpu": [
  249. "arm64"
  250. ],
  251. "dev": true,
  252. "license": "MIT",
  253. "optional": true,
  254. "os": [
  255. "linux"
  256. ],
  257. "engines": {
  258. "node": ">=18"
  259. }
  260. },
  261. "node_modules/@esbuild/linux-ia32": {
  262. "version": "0.27.3",
  263. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
  264. "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
  265. "cpu": [
  266. "ia32"
  267. ],
  268. "dev": true,
  269. "license": "MIT",
  270. "optional": true,
  271. "os": [
  272. "linux"
  273. ],
  274. "engines": {
  275. "node": ">=18"
  276. }
  277. },
  278. "node_modules/@esbuild/linux-loong64": {
  279. "version": "0.27.3",
  280. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
  281. "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
  282. "cpu": [
  283. "loong64"
  284. ],
  285. "dev": true,
  286. "license": "MIT",
  287. "optional": true,
  288. "os": [
  289. "linux"
  290. ],
  291. "engines": {
  292. "node": ">=18"
  293. }
  294. },
  295. "node_modules/@esbuild/linux-mips64el": {
  296. "version": "0.27.3",
  297. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
  298. "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
  299. "cpu": [
  300. "mips64el"
  301. ],
  302. "dev": true,
  303. "license": "MIT",
  304. "optional": true,
  305. "os": [
  306. "linux"
  307. ],
  308. "engines": {
  309. "node": ">=18"
  310. }
  311. },
  312. "node_modules/@esbuild/linux-ppc64": {
  313. "version": "0.27.3",
  314. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
  315. "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
  316. "cpu": [
  317. "ppc64"
  318. ],
  319. "dev": true,
  320. "license": "MIT",
  321. "optional": true,
  322. "os": [
  323. "linux"
  324. ],
  325. "engines": {
  326. "node": ">=18"
  327. }
  328. },
  329. "node_modules/@esbuild/linux-riscv64": {
  330. "version": "0.27.3",
  331. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
  332. "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
  333. "cpu": [
  334. "riscv64"
  335. ],
  336. "dev": true,
  337. "license": "MIT",
  338. "optional": true,
  339. "os": [
  340. "linux"
  341. ],
  342. "engines": {
  343. "node": ">=18"
  344. }
  345. },
  346. "node_modules/@esbuild/linux-s390x": {
  347. "version": "0.27.3",
  348. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
  349. "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
  350. "cpu": [
  351. "s390x"
  352. ],
  353. "dev": true,
  354. "license": "MIT",
  355. "optional": true,
  356. "os": [
  357. "linux"
  358. ],
  359. "engines": {
  360. "node": ">=18"
  361. }
  362. },
  363. "node_modules/@esbuild/linux-x64": {
  364. "version": "0.27.3",
  365. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
  366. "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
  367. "cpu": [
  368. "x64"
  369. ],
  370. "dev": true,
  371. "license": "MIT",
  372. "optional": true,
  373. "os": [
  374. "linux"
  375. ],
  376. "engines": {
  377. "node": ">=18"
  378. }
  379. },
  380. "node_modules/@esbuild/netbsd-arm64": {
  381. "version": "0.27.3",
  382. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
  383. "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
  384. "cpu": [
  385. "arm64"
  386. ],
  387. "dev": true,
  388. "license": "MIT",
  389. "optional": true,
  390. "os": [
  391. "netbsd"
  392. ],
  393. "engines": {
  394. "node": ">=18"
  395. }
  396. },
  397. "node_modules/@esbuild/netbsd-x64": {
  398. "version": "0.27.3",
  399. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
  400. "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
  401. "cpu": [
  402. "x64"
  403. ],
  404. "dev": true,
  405. "license": "MIT",
  406. "optional": true,
  407. "os": [
  408. "netbsd"
  409. ],
  410. "engines": {
  411. "node": ">=18"
  412. }
  413. },
  414. "node_modules/@esbuild/openbsd-arm64": {
  415. "version": "0.27.3",
  416. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
  417. "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
  418. "cpu": [
  419. "arm64"
  420. ],
  421. "dev": true,
  422. "license": "MIT",
  423. "optional": true,
  424. "os": [
  425. "openbsd"
  426. ],
  427. "engines": {
  428. "node": ">=18"
  429. }
  430. },
  431. "node_modules/@esbuild/openbsd-x64": {
  432. "version": "0.27.3",
  433. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
  434. "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
  435. "cpu": [
  436. "x64"
  437. ],
  438. "dev": true,
  439. "license": "MIT",
  440. "optional": true,
  441. "os": [
  442. "openbsd"
  443. ],
  444. "engines": {
  445. "node": ">=18"
  446. }
  447. },
  448. "node_modules/@esbuild/openharmony-arm64": {
  449. "version": "0.27.3",
  450. "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
  451. "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
  452. "cpu": [
  453. "arm64"
  454. ],
  455. "dev": true,
  456. "license": "MIT",
  457. "optional": true,
  458. "os": [
  459. "openharmony"
  460. ],
  461. "engines": {
  462. "node": ">=18"
  463. }
  464. },
  465. "node_modules/@esbuild/sunos-x64": {
  466. "version": "0.27.3",
  467. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
  468. "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
  469. "cpu": [
  470. "x64"
  471. ],
  472. "dev": true,
  473. "license": "MIT",
  474. "optional": true,
  475. "os": [
  476. "sunos"
  477. ],
  478. "engines": {
  479. "node": ">=18"
  480. }
  481. },
  482. "node_modules/@esbuild/win32-arm64": {
  483. "version": "0.27.3",
  484. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
  485. "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
  486. "cpu": [
  487. "arm64"
  488. ],
  489. "dev": true,
  490. "license": "MIT",
  491. "optional": true,
  492. "os": [
  493. "win32"
  494. ],
  495. "engines": {
  496. "node": ">=18"
  497. }
  498. },
  499. "node_modules/@esbuild/win32-ia32": {
  500. "version": "0.27.3",
  501. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
  502. "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
  503. "cpu": [
  504. "ia32"
  505. ],
  506. "dev": true,
  507. "license": "MIT",
  508. "optional": true,
  509. "os": [
  510. "win32"
  511. ],
  512. "engines": {
  513. "node": ">=18"
  514. }
  515. },
  516. "node_modules/@esbuild/win32-x64": {
  517. "version": "0.27.3",
  518. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
  519. "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
  520. "cpu": [
  521. "x64"
  522. ],
  523. "dev": true,
  524. "license": "MIT",
  525. "optional": true,
  526. "os": [
  527. "win32"
  528. ],
  529. "engines": {
  530. "node": ">=18"
  531. }
  532. },
  533. "node_modules/@floating-ui/core": {
  534. "version": "1.7.4",
  535. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.4.tgz",
  536. "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
  537. "license": "MIT",
  538. "dependencies": {
  539. "@floating-ui/utils": "^0.2.10"
  540. }
  541. },
  542. "node_modules/@floating-ui/dom": {
  543. "version": "1.7.5",
  544. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.5.tgz",
  545. "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
  546. "license": "MIT",
  547. "dependencies": {
  548. "@floating-ui/core": "^1.7.4",
  549. "@floating-ui/utils": "^0.2.10"
  550. }
  551. },
  552. "node_modules/@floating-ui/utils": {
  553. "version": "0.2.10",
  554. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.10.tgz",
  555. "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
  556. "license": "MIT"
  557. },
  558. "node_modules/@jridgewell/sourcemap-codec": {
  559. "version": "1.5.5",
  560. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  561. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  562. "license": "MIT"
  563. },
  564. "node_modules/@parcel/watcher": {
  565. "version": "2.5.6",
  566. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.6.tgz",
  567. "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
  568. "dev": true,
  569. "hasInstallScript": true,
  570. "license": "MIT",
  571. "optional": true,
  572. "dependencies": {
  573. "detect-libc": "^2.0.3",
  574. "is-glob": "^4.0.3",
  575. "node-addon-api": "^7.0.0",
  576. "picomatch": "^4.0.3"
  577. },
  578. "engines": {
  579. "node": ">= 10.0.0"
  580. },
  581. "funding": {
  582. "type": "opencollective",
  583. "url": "https://opencollective.com/parcel"
  584. },
  585. "optionalDependencies": {
  586. "@parcel/watcher-android-arm64": "2.5.6",
  587. "@parcel/watcher-darwin-arm64": "2.5.6",
  588. "@parcel/watcher-darwin-x64": "2.5.6",
  589. "@parcel/watcher-freebsd-x64": "2.5.6",
  590. "@parcel/watcher-linux-arm-glibc": "2.5.6",
  591. "@parcel/watcher-linux-arm-musl": "2.5.6",
  592. "@parcel/watcher-linux-arm64-glibc": "2.5.6",
  593. "@parcel/watcher-linux-arm64-musl": "2.5.6",
  594. "@parcel/watcher-linux-x64-glibc": "2.5.6",
  595. "@parcel/watcher-linux-x64-musl": "2.5.6",
  596. "@parcel/watcher-win32-arm64": "2.5.6",
  597. "@parcel/watcher-win32-ia32": "2.5.6",
  598. "@parcel/watcher-win32-x64": "2.5.6"
  599. }
  600. },
  601. "node_modules/@parcel/watcher-android-arm64": {
  602. "version": "2.5.6",
  603. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
  604. "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
  605. "cpu": [
  606. "arm64"
  607. ],
  608. "dev": true,
  609. "license": "MIT",
  610. "optional": true,
  611. "os": [
  612. "android"
  613. ],
  614. "engines": {
  615. "node": ">= 10.0.0"
  616. },
  617. "funding": {
  618. "type": "opencollective",
  619. "url": "https://opencollective.com/parcel"
  620. }
  621. },
  622. "node_modules/@parcel/watcher-darwin-arm64": {
  623. "version": "2.5.6",
  624. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
  625. "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
  626. "cpu": [
  627. "arm64"
  628. ],
  629. "dev": true,
  630. "license": "MIT",
  631. "optional": true,
  632. "os": [
  633. "darwin"
  634. ],
  635. "engines": {
  636. "node": ">= 10.0.0"
  637. },
  638. "funding": {
  639. "type": "opencollective",
  640. "url": "https://opencollective.com/parcel"
  641. }
  642. },
  643. "node_modules/@parcel/watcher-darwin-x64": {
  644. "version": "2.5.6",
  645. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
  646. "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
  647. "cpu": [
  648. "x64"
  649. ],
  650. "dev": true,
  651. "license": "MIT",
  652. "optional": true,
  653. "os": [
  654. "darwin"
  655. ],
  656. "engines": {
  657. "node": ">= 10.0.0"
  658. },
  659. "funding": {
  660. "type": "opencollective",
  661. "url": "https://opencollective.com/parcel"
  662. }
  663. },
  664. "node_modules/@parcel/watcher-freebsd-x64": {
  665. "version": "2.5.6",
  666. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
  667. "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
  668. "cpu": [
  669. "x64"
  670. ],
  671. "dev": true,
  672. "license": "MIT",
  673. "optional": true,
  674. "os": [
  675. "freebsd"
  676. ],
  677. "engines": {
  678. "node": ">= 10.0.0"
  679. },
  680. "funding": {
  681. "type": "opencollective",
  682. "url": "https://opencollective.com/parcel"
  683. }
  684. },
  685. "node_modules/@parcel/watcher-linux-arm-glibc": {
  686. "version": "2.5.6",
  687. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
  688. "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
  689. "cpu": [
  690. "arm"
  691. ],
  692. "dev": true,
  693. "license": "MIT",
  694. "optional": true,
  695. "os": [
  696. "linux"
  697. ],
  698. "engines": {
  699. "node": ">= 10.0.0"
  700. },
  701. "funding": {
  702. "type": "opencollective",
  703. "url": "https://opencollective.com/parcel"
  704. }
  705. },
  706. "node_modules/@parcel/watcher-linux-arm-musl": {
  707. "version": "2.5.6",
  708. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
  709. "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
  710. "cpu": [
  711. "arm"
  712. ],
  713. "dev": true,
  714. "license": "MIT",
  715. "optional": true,
  716. "os": [
  717. "linux"
  718. ],
  719. "engines": {
  720. "node": ">= 10.0.0"
  721. },
  722. "funding": {
  723. "type": "opencollective",
  724. "url": "https://opencollective.com/parcel"
  725. }
  726. },
  727. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  728. "version": "2.5.6",
  729. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
  730. "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
  731. "cpu": [
  732. "arm64"
  733. ],
  734. "dev": true,
  735. "license": "MIT",
  736. "optional": true,
  737. "os": [
  738. "linux"
  739. ],
  740. "engines": {
  741. "node": ">= 10.0.0"
  742. },
  743. "funding": {
  744. "type": "opencollective",
  745. "url": "https://opencollective.com/parcel"
  746. }
  747. },
  748. "node_modules/@parcel/watcher-linux-arm64-musl": {
  749. "version": "2.5.6",
  750. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
  751. "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
  752. "cpu": [
  753. "arm64"
  754. ],
  755. "dev": true,
  756. "license": "MIT",
  757. "optional": true,
  758. "os": [
  759. "linux"
  760. ],
  761. "engines": {
  762. "node": ">= 10.0.0"
  763. },
  764. "funding": {
  765. "type": "opencollective",
  766. "url": "https://opencollective.com/parcel"
  767. }
  768. },
  769. "node_modules/@parcel/watcher-linux-x64-glibc": {
  770. "version": "2.5.6",
  771. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
  772. "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
  773. "cpu": [
  774. "x64"
  775. ],
  776. "dev": true,
  777. "license": "MIT",
  778. "optional": true,
  779. "os": [
  780. "linux"
  781. ],
  782. "engines": {
  783. "node": ">= 10.0.0"
  784. },
  785. "funding": {
  786. "type": "opencollective",
  787. "url": "https://opencollective.com/parcel"
  788. }
  789. },
  790. "node_modules/@parcel/watcher-linux-x64-musl": {
  791. "version": "2.5.6",
  792. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
  793. "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
  794. "cpu": [
  795. "x64"
  796. ],
  797. "dev": true,
  798. "license": "MIT",
  799. "optional": true,
  800. "os": [
  801. "linux"
  802. ],
  803. "engines": {
  804. "node": ">= 10.0.0"
  805. },
  806. "funding": {
  807. "type": "opencollective",
  808. "url": "https://opencollective.com/parcel"
  809. }
  810. },
  811. "node_modules/@parcel/watcher-win32-arm64": {
  812. "version": "2.5.6",
  813. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
  814. "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
  815. "cpu": [
  816. "arm64"
  817. ],
  818. "dev": true,
  819. "license": "MIT",
  820. "optional": true,
  821. "os": [
  822. "win32"
  823. ],
  824. "engines": {
  825. "node": ">= 10.0.0"
  826. },
  827. "funding": {
  828. "type": "opencollective",
  829. "url": "https://opencollective.com/parcel"
  830. }
  831. },
  832. "node_modules/@parcel/watcher-win32-ia32": {
  833. "version": "2.5.6",
  834. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
  835. "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
  836. "cpu": [
  837. "ia32"
  838. ],
  839. "dev": true,
  840. "license": "MIT",
  841. "optional": true,
  842. "os": [
  843. "win32"
  844. ],
  845. "engines": {
  846. "node": ">= 10.0.0"
  847. },
  848. "funding": {
  849. "type": "opencollective",
  850. "url": "https://opencollective.com/parcel"
  851. }
  852. },
  853. "node_modules/@parcel/watcher-win32-x64": {
  854. "version": "2.5.6",
  855. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
  856. "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
  857. "cpu": [
  858. "x64"
  859. ],
  860. "dev": true,
  861. "license": "MIT",
  862. "optional": true,
  863. "os": [
  864. "win32"
  865. ],
  866. "engines": {
  867. "node": ">= 10.0.0"
  868. },
  869. "funding": {
  870. "type": "opencollective",
  871. "url": "https://opencollective.com/parcel"
  872. }
  873. },
  874. "node_modules/@popperjs/core": {
  875. "name": "@sxzz/popperjs-es",
  876. "version": "2.11.8",
  877. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  878. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  879. "license": "MIT",
  880. "funding": {
  881. "type": "opencollective",
  882. "url": "https://opencollective.com/popperjs"
  883. }
  884. },
  885. "node_modules/@rolldown/pluginutils": {
  886. "version": "1.0.0-rc.2",
  887. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
  888. "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
  889. "dev": true,
  890. "license": "MIT"
  891. },
  892. "node_modules/@rollup/rollup-android-arm-eabi": {
  893. "version": "4.59.0",
  894. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
  895. "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
  896. "cpu": [
  897. "arm"
  898. ],
  899. "dev": true,
  900. "license": "MIT",
  901. "optional": true,
  902. "os": [
  903. "android"
  904. ]
  905. },
  906. "node_modules/@rollup/rollup-android-arm64": {
  907. "version": "4.59.0",
  908. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
  909. "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
  910. "cpu": [
  911. "arm64"
  912. ],
  913. "dev": true,
  914. "license": "MIT",
  915. "optional": true,
  916. "os": [
  917. "android"
  918. ]
  919. },
  920. "node_modules/@rollup/rollup-darwin-arm64": {
  921. "version": "4.59.0",
  922. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
  923. "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
  924. "cpu": [
  925. "arm64"
  926. ],
  927. "dev": true,
  928. "license": "MIT",
  929. "optional": true,
  930. "os": [
  931. "darwin"
  932. ]
  933. },
  934. "node_modules/@rollup/rollup-darwin-x64": {
  935. "version": "4.59.0",
  936. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
  937. "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
  938. "cpu": [
  939. "x64"
  940. ],
  941. "dev": true,
  942. "license": "MIT",
  943. "optional": true,
  944. "os": [
  945. "darwin"
  946. ]
  947. },
  948. "node_modules/@rollup/rollup-freebsd-arm64": {
  949. "version": "4.59.0",
  950. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
  951. "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
  952. "cpu": [
  953. "arm64"
  954. ],
  955. "dev": true,
  956. "license": "MIT",
  957. "optional": true,
  958. "os": [
  959. "freebsd"
  960. ]
  961. },
  962. "node_modules/@rollup/rollup-freebsd-x64": {
  963. "version": "4.59.0",
  964. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
  965. "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
  966. "cpu": [
  967. "x64"
  968. ],
  969. "dev": true,
  970. "license": "MIT",
  971. "optional": true,
  972. "os": [
  973. "freebsd"
  974. ]
  975. },
  976. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  977. "version": "4.59.0",
  978. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
  979. "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
  980. "cpu": [
  981. "arm"
  982. ],
  983. "dev": true,
  984. "license": "MIT",
  985. "optional": true,
  986. "os": [
  987. "linux"
  988. ]
  989. },
  990. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  991. "version": "4.59.0",
  992. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
  993. "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
  994. "cpu": [
  995. "arm"
  996. ],
  997. "dev": true,
  998. "license": "MIT",
  999. "optional": true,
  1000. "os": [
  1001. "linux"
  1002. ]
  1003. },
  1004. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1005. "version": "4.59.0",
  1006. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
  1007. "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
  1008. "cpu": [
  1009. "arm64"
  1010. ],
  1011. "dev": true,
  1012. "license": "MIT",
  1013. "optional": true,
  1014. "os": [
  1015. "linux"
  1016. ]
  1017. },
  1018. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1019. "version": "4.59.0",
  1020. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
  1021. "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
  1022. "cpu": [
  1023. "arm64"
  1024. ],
  1025. "dev": true,
  1026. "license": "MIT",
  1027. "optional": true,
  1028. "os": [
  1029. "linux"
  1030. ]
  1031. },
  1032. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  1033. "version": "4.59.0",
  1034. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
  1035. "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
  1036. "cpu": [
  1037. "loong64"
  1038. ],
  1039. "dev": true,
  1040. "license": "MIT",
  1041. "optional": true,
  1042. "os": [
  1043. "linux"
  1044. ]
  1045. },
  1046. "node_modules/@rollup/rollup-linux-loong64-musl": {
  1047. "version": "4.59.0",
  1048. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
  1049. "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
  1050. "cpu": [
  1051. "loong64"
  1052. ],
  1053. "dev": true,
  1054. "license": "MIT",
  1055. "optional": true,
  1056. "os": [
  1057. "linux"
  1058. ]
  1059. },
  1060. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  1061. "version": "4.59.0",
  1062. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
  1063. "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
  1064. "cpu": [
  1065. "ppc64"
  1066. ],
  1067. "dev": true,
  1068. "license": "MIT",
  1069. "optional": true,
  1070. "os": [
  1071. "linux"
  1072. ]
  1073. },
  1074. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  1075. "version": "4.59.0",
  1076. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
  1077. "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
  1078. "cpu": [
  1079. "ppc64"
  1080. ],
  1081. "dev": true,
  1082. "license": "MIT",
  1083. "optional": true,
  1084. "os": [
  1085. "linux"
  1086. ]
  1087. },
  1088. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1089. "version": "4.59.0",
  1090. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
  1091. "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
  1092. "cpu": [
  1093. "riscv64"
  1094. ],
  1095. "dev": true,
  1096. "license": "MIT",
  1097. "optional": true,
  1098. "os": [
  1099. "linux"
  1100. ]
  1101. },
  1102. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1103. "version": "4.59.0",
  1104. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
  1105. "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
  1106. "cpu": [
  1107. "riscv64"
  1108. ],
  1109. "dev": true,
  1110. "license": "MIT",
  1111. "optional": true,
  1112. "os": [
  1113. "linux"
  1114. ]
  1115. },
  1116. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1117. "version": "4.59.0",
  1118. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
  1119. "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
  1120. "cpu": [
  1121. "s390x"
  1122. ],
  1123. "dev": true,
  1124. "license": "MIT",
  1125. "optional": true,
  1126. "os": [
  1127. "linux"
  1128. ]
  1129. },
  1130. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1131. "version": "4.59.0",
  1132. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
  1133. "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
  1134. "cpu": [
  1135. "x64"
  1136. ],
  1137. "dev": true,
  1138. "license": "MIT",
  1139. "optional": true,
  1140. "os": [
  1141. "linux"
  1142. ]
  1143. },
  1144. "node_modules/@rollup/rollup-linux-x64-musl": {
  1145. "version": "4.59.0",
  1146. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
  1147. "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
  1148. "cpu": [
  1149. "x64"
  1150. ],
  1151. "dev": true,
  1152. "license": "MIT",
  1153. "optional": true,
  1154. "os": [
  1155. "linux"
  1156. ]
  1157. },
  1158. "node_modules/@rollup/rollup-openbsd-x64": {
  1159. "version": "4.59.0",
  1160. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
  1161. "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
  1162. "cpu": [
  1163. "x64"
  1164. ],
  1165. "dev": true,
  1166. "license": "MIT",
  1167. "optional": true,
  1168. "os": [
  1169. "openbsd"
  1170. ]
  1171. },
  1172. "node_modules/@rollup/rollup-openharmony-arm64": {
  1173. "version": "4.59.0",
  1174. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
  1175. "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
  1176. "cpu": [
  1177. "arm64"
  1178. ],
  1179. "dev": true,
  1180. "license": "MIT",
  1181. "optional": true,
  1182. "os": [
  1183. "openharmony"
  1184. ]
  1185. },
  1186. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1187. "version": "4.59.0",
  1188. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
  1189. "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
  1190. "cpu": [
  1191. "arm64"
  1192. ],
  1193. "dev": true,
  1194. "license": "MIT",
  1195. "optional": true,
  1196. "os": [
  1197. "win32"
  1198. ]
  1199. },
  1200. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1201. "version": "4.59.0",
  1202. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
  1203. "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
  1204. "cpu": [
  1205. "ia32"
  1206. ],
  1207. "dev": true,
  1208. "license": "MIT",
  1209. "optional": true,
  1210. "os": [
  1211. "win32"
  1212. ]
  1213. },
  1214. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1215. "version": "4.59.0",
  1216. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
  1217. "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
  1218. "cpu": [
  1219. "x64"
  1220. ],
  1221. "dev": true,
  1222. "license": "MIT",
  1223. "optional": true,
  1224. "os": [
  1225. "win32"
  1226. ]
  1227. },
  1228. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1229. "version": "4.59.0",
  1230. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
  1231. "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
  1232. "cpu": [
  1233. "x64"
  1234. ],
  1235. "dev": true,
  1236. "license": "MIT",
  1237. "optional": true,
  1238. "os": [
  1239. "win32"
  1240. ]
  1241. },
  1242. "node_modules/@types/estree": {
  1243. "version": "1.0.8",
  1244. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
  1245. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1246. "dev": true,
  1247. "license": "MIT"
  1248. },
  1249. "node_modules/@types/lodash": {
  1250. "version": "4.17.24",
  1251. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
  1252. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  1253. "license": "MIT"
  1254. },
  1255. "node_modules/@types/lodash-es": {
  1256. "version": "4.17.12",
  1257. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1258. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1259. "license": "MIT",
  1260. "dependencies": {
  1261. "@types/lodash": "*"
  1262. }
  1263. },
  1264. "node_modules/@types/node": {
  1265. "version": "25.3.1",
  1266. "resolved": "https://registry.npmmirror.com/@types/node/-/node-25.3.1.tgz",
  1267. "integrity": "sha512-hj9YIJimBCipHVfHKRMnvmHg+wfhKc0o4mTtXh9pKBjC8TLJzz0nzGmLi5UJsYAUgSvXFHgb0V2oY10DUFtImw==",
  1268. "dev": true,
  1269. "license": "MIT",
  1270. "dependencies": {
  1271. "undici-types": "~7.18.0"
  1272. }
  1273. },
  1274. "node_modules/@types/web-bluetooth": {
  1275. "version": "0.0.20",
  1276. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz",
  1277. "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==",
  1278. "license": "MIT"
  1279. },
  1280. "node_modules/@vitejs/plugin-vue": {
  1281. "version": "6.0.4",
  1282. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.4.tgz",
  1283. "integrity": "sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==",
  1284. "dev": true,
  1285. "license": "MIT",
  1286. "dependencies": {
  1287. "@rolldown/pluginutils": "1.0.0-rc.2"
  1288. },
  1289. "engines": {
  1290. "node": "^20.19.0 || >=22.12.0"
  1291. },
  1292. "peerDependencies": {
  1293. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0",
  1294. "vue": "^3.2.25"
  1295. }
  1296. },
  1297. "node_modules/@volar/language-core": {
  1298. "version": "2.4.28",
  1299. "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.28.tgz",
  1300. "integrity": "sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==",
  1301. "dev": true,
  1302. "license": "MIT",
  1303. "dependencies": {
  1304. "@volar/source-map": "2.4.28"
  1305. }
  1306. },
  1307. "node_modules/@volar/source-map": {
  1308. "version": "2.4.28",
  1309. "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.28.tgz",
  1310. "integrity": "sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==",
  1311. "dev": true,
  1312. "license": "MIT"
  1313. },
  1314. "node_modules/@volar/typescript": {
  1315. "version": "2.4.28",
  1316. "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.28.tgz",
  1317. "integrity": "sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==",
  1318. "dev": true,
  1319. "license": "MIT",
  1320. "dependencies": {
  1321. "@volar/language-core": "2.4.28",
  1322. "path-browserify": "^1.0.1",
  1323. "vscode-uri": "^3.0.8"
  1324. }
  1325. },
  1326. "node_modules/@vue/compiler-core": {
  1327. "version": "3.5.29",
  1328. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.29.tgz",
  1329. "integrity": "sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==",
  1330. "license": "MIT",
  1331. "dependencies": {
  1332. "@babel/parser": "^7.29.0",
  1333. "@vue/shared": "3.5.29",
  1334. "entities": "^7.0.1",
  1335. "estree-walker": "^2.0.2",
  1336. "source-map-js": "^1.2.1"
  1337. }
  1338. },
  1339. "node_modules/@vue/compiler-dom": {
  1340. "version": "3.5.29",
  1341. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.29.tgz",
  1342. "integrity": "sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==",
  1343. "license": "MIT",
  1344. "dependencies": {
  1345. "@vue/compiler-core": "3.5.29",
  1346. "@vue/shared": "3.5.29"
  1347. }
  1348. },
  1349. "node_modules/@vue/compiler-sfc": {
  1350. "version": "3.5.29",
  1351. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.29.tgz",
  1352. "integrity": "sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==",
  1353. "license": "MIT",
  1354. "dependencies": {
  1355. "@babel/parser": "^7.29.0",
  1356. "@vue/compiler-core": "3.5.29",
  1357. "@vue/compiler-dom": "3.5.29",
  1358. "@vue/compiler-ssr": "3.5.29",
  1359. "@vue/shared": "3.5.29",
  1360. "estree-walker": "^2.0.2",
  1361. "magic-string": "^0.30.21",
  1362. "postcss": "^8.5.6",
  1363. "source-map-js": "^1.2.1"
  1364. }
  1365. },
  1366. "node_modules/@vue/compiler-ssr": {
  1367. "version": "3.5.29",
  1368. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.29.tgz",
  1369. "integrity": "sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==",
  1370. "license": "MIT",
  1371. "dependencies": {
  1372. "@vue/compiler-dom": "3.5.29",
  1373. "@vue/shared": "3.5.29"
  1374. }
  1375. },
  1376. "node_modules/@vue/devtools-api": {
  1377. "version": "7.7.9",
  1378. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
  1379. "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
  1380. "license": "MIT",
  1381. "dependencies": {
  1382. "@vue/devtools-kit": "^7.7.9"
  1383. }
  1384. },
  1385. "node_modules/@vue/devtools-kit": {
  1386. "version": "7.7.9",
  1387. "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
  1388. "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
  1389. "license": "MIT",
  1390. "dependencies": {
  1391. "@vue/devtools-shared": "^7.7.9",
  1392. "birpc": "^2.3.0",
  1393. "hookable": "^5.5.3",
  1394. "mitt": "^3.0.1",
  1395. "perfect-debounce": "^1.0.0",
  1396. "speakingurl": "^14.0.1",
  1397. "superjson": "^2.2.2"
  1398. }
  1399. },
  1400. "node_modules/@vue/devtools-shared": {
  1401. "version": "7.7.9",
  1402. "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
  1403. "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
  1404. "license": "MIT",
  1405. "dependencies": {
  1406. "rfdc": "^1.4.1"
  1407. }
  1408. },
  1409. "node_modules/@vue/language-core": {
  1410. "version": "3.2.5",
  1411. "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-3.2.5.tgz",
  1412. "integrity": "sha512-d3OIxN/+KRedeM5wQ6H6NIpwS3P5gC9nmyaHgBk+rO6dIsjY+tOh4UlPpiZbAh3YtLdCGEX4M16RmsBqPmJV+g==",
  1413. "dev": true,
  1414. "license": "MIT",
  1415. "dependencies": {
  1416. "@volar/language-core": "2.4.28",
  1417. "@vue/compiler-dom": "^3.5.0",
  1418. "@vue/shared": "^3.5.0",
  1419. "alien-signals": "^3.0.0",
  1420. "muggle-string": "^0.4.1",
  1421. "path-browserify": "^1.0.1",
  1422. "picomatch": "^4.0.2"
  1423. }
  1424. },
  1425. "node_modules/@vue/reactivity": {
  1426. "version": "3.5.29",
  1427. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.29.tgz",
  1428. "integrity": "sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA==",
  1429. "license": "MIT",
  1430. "dependencies": {
  1431. "@vue/shared": "3.5.29"
  1432. }
  1433. },
  1434. "node_modules/@vue/runtime-core": {
  1435. "version": "3.5.29",
  1436. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.29.tgz",
  1437. "integrity": "sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg==",
  1438. "license": "MIT",
  1439. "dependencies": {
  1440. "@vue/reactivity": "3.5.29",
  1441. "@vue/shared": "3.5.29"
  1442. }
  1443. },
  1444. "node_modules/@vue/runtime-dom": {
  1445. "version": "3.5.29",
  1446. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.29.tgz",
  1447. "integrity": "sha512-AHvvJEtcY9tw/uk+s/YRLSlxxQnqnAkjqvK25ZiM4CllCZWzElRAoQnCM42m9AHRLNJ6oe2kC5DCgD4AUdlvXg==",
  1448. "license": "MIT",
  1449. "dependencies": {
  1450. "@vue/reactivity": "3.5.29",
  1451. "@vue/runtime-core": "3.5.29",
  1452. "@vue/shared": "3.5.29",
  1453. "csstype": "^3.2.3"
  1454. }
  1455. },
  1456. "node_modules/@vue/server-renderer": {
  1457. "version": "3.5.29",
  1458. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.29.tgz",
  1459. "integrity": "sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g==",
  1460. "license": "MIT",
  1461. "dependencies": {
  1462. "@vue/compiler-ssr": "3.5.29",
  1463. "@vue/shared": "3.5.29"
  1464. },
  1465. "peerDependencies": {
  1466. "vue": "3.5.29"
  1467. }
  1468. },
  1469. "node_modules/@vue/shared": {
  1470. "version": "3.5.29",
  1471. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.29.tgz",
  1472. "integrity": "sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==",
  1473. "license": "MIT"
  1474. },
  1475. "node_modules/@vueuse/core": {
  1476. "version": "10.11.1",
  1477. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-10.11.1.tgz",
  1478. "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==",
  1479. "license": "MIT",
  1480. "dependencies": {
  1481. "@types/web-bluetooth": "^0.0.20",
  1482. "@vueuse/metadata": "10.11.1",
  1483. "@vueuse/shared": "10.11.1",
  1484. "vue-demi": ">=0.14.8"
  1485. },
  1486. "funding": {
  1487. "url": "https://github.com/sponsors/antfu"
  1488. }
  1489. },
  1490. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1491. "version": "0.14.10",
  1492. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1493. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1494. "hasInstallScript": true,
  1495. "license": "MIT",
  1496. "bin": {
  1497. "vue-demi-fix": "bin/vue-demi-fix.js",
  1498. "vue-demi-switch": "bin/vue-demi-switch.js"
  1499. },
  1500. "engines": {
  1501. "node": ">=12"
  1502. },
  1503. "funding": {
  1504. "url": "https://github.com/sponsors/antfu"
  1505. },
  1506. "peerDependencies": {
  1507. "@vue/composition-api": "^1.0.0-rc.1",
  1508. "vue": "^3.0.0-0 || ^2.6.0"
  1509. },
  1510. "peerDependenciesMeta": {
  1511. "@vue/composition-api": {
  1512. "optional": true
  1513. }
  1514. }
  1515. },
  1516. "node_modules/@vueuse/metadata": {
  1517. "version": "10.11.1",
  1518. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.11.1.tgz",
  1519. "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==",
  1520. "license": "MIT",
  1521. "funding": {
  1522. "url": "https://github.com/sponsors/antfu"
  1523. }
  1524. },
  1525. "node_modules/@vueuse/shared": {
  1526. "version": "10.11.1",
  1527. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-10.11.1.tgz",
  1528. "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==",
  1529. "license": "MIT",
  1530. "dependencies": {
  1531. "vue-demi": ">=0.14.8"
  1532. },
  1533. "funding": {
  1534. "url": "https://github.com/sponsors/antfu"
  1535. }
  1536. },
  1537. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1538. "version": "0.14.10",
  1539. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1540. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1541. "hasInstallScript": true,
  1542. "license": "MIT",
  1543. "bin": {
  1544. "vue-demi-fix": "bin/vue-demi-fix.js",
  1545. "vue-demi-switch": "bin/vue-demi-switch.js"
  1546. },
  1547. "engines": {
  1548. "node": ">=12"
  1549. },
  1550. "funding": {
  1551. "url": "https://github.com/sponsors/antfu"
  1552. },
  1553. "peerDependencies": {
  1554. "@vue/composition-api": "^1.0.0-rc.1",
  1555. "vue": "^3.0.0-0 || ^2.6.0"
  1556. },
  1557. "peerDependenciesMeta": {
  1558. "@vue/composition-api": {
  1559. "optional": true
  1560. }
  1561. }
  1562. },
  1563. "node_modules/alien-signals": {
  1564. "version": "3.1.2",
  1565. "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-3.1.2.tgz",
  1566. "integrity": "sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==",
  1567. "dev": true,
  1568. "license": "MIT"
  1569. },
  1570. "node_modules/async-validator": {
  1571. "version": "4.2.5",
  1572. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1573. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1574. "license": "MIT"
  1575. },
  1576. "node_modules/birpc": {
  1577. "version": "2.9.0",
  1578. "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
  1579. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1580. "license": "MIT",
  1581. "funding": {
  1582. "url": "https://github.com/sponsors/antfu"
  1583. }
  1584. },
  1585. "node_modules/chokidar": {
  1586. "version": "4.0.3",
  1587. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
  1588. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  1589. "dev": true,
  1590. "license": "MIT",
  1591. "dependencies": {
  1592. "readdirp": "^4.0.1"
  1593. },
  1594. "engines": {
  1595. "node": ">= 14.16.0"
  1596. },
  1597. "funding": {
  1598. "url": "https://paulmillr.com/funding/"
  1599. }
  1600. },
  1601. "node_modules/copy-anything": {
  1602. "version": "4.0.5",
  1603. "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
  1604. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  1605. "license": "MIT",
  1606. "dependencies": {
  1607. "is-what": "^5.2.0"
  1608. },
  1609. "engines": {
  1610. "node": ">=18"
  1611. },
  1612. "funding": {
  1613. "url": "https://github.com/sponsors/mesqueeb"
  1614. }
  1615. },
  1616. "node_modules/csstype": {
  1617. "version": "3.2.3",
  1618. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
  1619. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1620. "license": "MIT"
  1621. },
  1622. "node_modules/dayjs": {
  1623. "version": "1.11.19",
  1624. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.19.tgz",
  1625. "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
  1626. "license": "MIT"
  1627. },
  1628. "node_modules/detect-libc": {
  1629. "version": "2.1.2",
  1630. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  1631. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1632. "dev": true,
  1633. "license": "Apache-2.0",
  1634. "optional": true,
  1635. "engines": {
  1636. "node": ">=8"
  1637. }
  1638. },
  1639. "node_modules/element-plus": {
  1640. "version": "2.13.2",
  1641. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.13.2.tgz",
  1642. "integrity": "sha512-Zjzm1NnFXGhV4LYZ6Ze9skPlYi2B4KAmN18FL63A3PZcjhDfroHwhtM6RE8BonlOPHXUnPQynH0BgaoEfvhrGw==",
  1643. "license": "MIT",
  1644. "dependencies": {
  1645. "@ctrl/tinycolor": "^3.4.1",
  1646. "@element-plus/icons-vue": "^2.3.2",
  1647. "@floating-ui/dom": "^1.0.1",
  1648. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1649. "@types/lodash": "^4.17.20",
  1650. "@types/lodash-es": "^4.17.12",
  1651. "@vueuse/core": "^10.11.0",
  1652. "async-validator": "^4.2.5",
  1653. "dayjs": "^1.11.19",
  1654. "lodash": "^4.17.23",
  1655. "lodash-es": "^4.17.23",
  1656. "lodash-unified": "^1.0.3",
  1657. "memoize-one": "^6.0.0",
  1658. "normalize-wheel-es": "^1.2.0"
  1659. },
  1660. "peerDependencies": {
  1661. "vue": "^3.3.0"
  1662. }
  1663. },
  1664. "node_modules/entities": {
  1665. "version": "7.0.1",
  1666. "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
  1667. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1668. "license": "BSD-2-Clause",
  1669. "engines": {
  1670. "node": ">=0.12"
  1671. },
  1672. "funding": {
  1673. "url": "https://github.com/fb55/entities?sponsor=1"
  1674. }
  1675. },
  1676. "node_modules/esbuild": {
  1677. "version": "0.27.3",
  1678. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.27.3.tgz",
  1679. "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
  1680. "dev": true,
  1681. "hasInstallScript": true,
  1682. "license": "MIT",
  1683. "bin": {
  1684. "esbuild": "bin/esbuild"
  1685. },
  1686. "engines": {
  1687. "node": ">=18"
  1688. },
  1689. "optionalDependencies": {
  1690. "@esbuild/aix-ppc64": "0.27.3",
  1691. "@esbuild/android-arm": "0.27.3",
  1692. "@esbuild/android-arm64": "0.27.3",
  1693. "@esbuild/android-x64": "0.27.3",
  1694. "@esbuild/darwin-arm64": "0.27.3",
  1695. "@esbuild/darwin-x64": "0.27.3",
  1696. "@esbuild/freebsd-arm64": "0.27.3",
  1697. "@esbuild/freebsd-x64": "0.27.3",
  1698. "@esbuild/linux-arm": "0.27.3",
  1699. "@esbuild/linux-arm64": "0.27.3",
  1700. "@esbuild/linux-ia32": "0.27.3",
  1701. "@esbuild/linux-loong64": "0.27.3",
  1702. "@esbuild/linux-mips64el": "0.27.3",
  1703. "@esbuild/linux-ppc64": "0.27.3",
  1704. "@esbuild/linux-riscv64": "0.27.3",
  1705. "@esbuild/linux-s390x": "0.27.3",
  1706. "@esbuild/linux-x64": "0.27.3",
  1707. "@esbuild/netbsd-arm64": "0.27.3",
  1708. "@esbuild/netbsd-x64": "0.27.3",
  1709. "@esbuild/openbsd-arm64": "0.27.3",
  1710. "@esbuild/openbsd-x64": "0.27.3",
  1711. "@esbuild/openharmony-arm64": "0.27.3",
  1712. "@esbuild/sunos-x64": "0.27.3",
  1713. "@esbuild/win32-arm64": "0.27.3",
  1714. "@esbuild/win32-ia32": "0.27.3",
  1715. "@esbuild/win32-x64": "0.27.3"
  1716. }
  1717. },
  1718. "node_modules/estree-walker": {
  1719. "version": "2.0.2",
  1720. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1721. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1722. "license": "MIT"
  1723. },
  1724. "node_modules/fdir": {
  1725. "version": "6.5.0",
  1726. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
  1727. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1728. "dev": true,
  1729. "license": "MIT",
  1730. "engines": {
  1731. "node": ">=12.0.0"
  1732. },
  1733. "peerDependencies": {
  1734. "picomatch": "^3 || ^4"
  1735. },
  1736. "peerDependenciesMeta": {
  1737. "picomatch": {
  1738. "optional": true
  1739. }
  1740. }
  1741. },
  1742. "node_modules/fsevents": {
  1743. "version": "2.3.3",
  1744. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1745. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1746. "dev": true,
  1747. "hasInstallScript": true,
  1748. "license": "MIT",
  1749. "optional": true,
  1750. "os": [
  1751. "darwin"
  1752. ],
  1753. "engines": {
  1754. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1755. }
  1756. },
  1757. "node_modules/hookable": {
  1758. "version": "5.5.3",
  1759. "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
  1760. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1761. "license": "MIT"
  1762. },
  1763. "node_modules/immutable": {
  1764. "version": "5.1.4",
  1765. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.4.tgz",
  1766. "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==",
  1767. "dev": true,
  1768. "license": "MIT"
  1769. },
  1770. "node_modules/is-extglob": {
  1771. "version": "2.1.1",
  1772. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  1773. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1774. "dev": true,
  1775. "license": "MIT",
  1776. "optional": true,
  1777. "engines": {
  1778. "node": ">=0.10.0"
  1779. }
  1780. },
  1781. "node_modules/is-glob": {
  1782. "version": "4.0.3",
  1783. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  1784. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1785. "dev": true,
  1786. "license": "MIT",
  1787. "optional": true,
  1788. "dependencies": {
  1789. "is-extglob": "^2.1.1"
  1790. },
  1791. "engines": {
  1792. "node": ">=0.10.0"
  1793. }
  1794. },
  1795. "node_modules/is-what": {
  1796. "version": "5.5.0",
  1797. "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
  1798. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  1799. "license": "MIT",
  1800. "engines": {
  1801. "node": ">=18"
  1802. },
  1803. "funding": {
  1804. "url": "https://github.com/sponsors/mesqueeb"
  1805. }
  1806. },
  1807. "node_modules/lodash": {
  1808. "version": "4.17.23",
  1809. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.23.tgz",
  1810. "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
  1811. "license": "MIT"
  1812. },
  1813. "node_modules/lodash-es": {
  1814. "version": "4.17.23",
  1815. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.23.tgz",
  1816. "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
  1817. "license": "MIT"
  1818. },
  1819. "node_modules/lodash-unified": {
  1820. "version": "1.0.3",
  1821. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  1822. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  1823. "license": "MIT",
  1824. "peerDependencies": {
  1825. "@types/lodash-es": "*",
  1826. "lodash": "*",
  1827. "lodash-es": "*"
  1828. }
  1829. },
  1830. "node_modules/magic-string": {
  1831. "version": "0.30.21",
  1832. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
  1833. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1834. "license": "MIT",
  1835. "dependencies": {
  1836. "@jridgewell/sourcemap-codec": "^1.5.5"
  1837. }
  1838. },
  1839. "node_modules/memoize-one": {
  1840. "version": "6.0.0",
  1841. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  1842. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  1843. "license": "MIT"
  1844. },
  1845. "node_modules/mitt": {
  1846. "version": "3.0.1",
  1847. "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
  1848. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  1849. "license": "MIT"
  1850. },
  1851. "node_modules/muggle-string": {
  1852. "version": "0.4.1",
  1853. "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
  1854. "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
  1855. "dev": true,
  1856. "license": "MIT"
  1857. },
  1858. "node_modules/nanoid": {
  1859. "version": "3.3.11",
  1860. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
  1861. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  1862. "funding": [
  1863. {
  1864. "type": "github",
  1865. "url": "https://github.com/sponsors/ai"
  1866. }
  1867. ],
  1868. "license": "MIT",
  1869. "bin": {
  1870. "nanoid": "bin/nanoid.cjs"
  1871. },
  1872. "engines": {
  1873. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1874. }
  1875. },
  1876. "node_modules/node-addon-api": {
  1877. "version": "7.1.1",
  1878. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  1879. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  1880. "dev": true,
  1881. "license": "MIT",
  1882. "optional": true
  1883. },
  1884. "node_modules/normalize-wheel-es": {
  1885. "version": "1.2.0",
  1886. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  1887. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  1888. "license": "BSD-3-Clause"
  1889. },
  1890. "node_modules/path-browserify": {
  1891. "version": "1.0.1",
  1892. "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz",
  1893. "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
  1894. "dev": true,
  1895. "license": "MIT"
  1896. },
  1897. "node_modules/perfect-debounce": {
  1898. "version": "1.0.0",
  1899. "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  1900. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
  1901. "license": "MIT"
  1902. },
  1903. "node_modules/picocolors": {
  1904. "version": "1.1.1",
  1905. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  1906. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1907. "license": "ISC"
  1908. },
  1909. "node_modules/picomatch": {
  1910. "version": "4.0.3",
  1911. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz",
  1912. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  1913. "dev": true,
  1914. "license": "MIT",
  1915. "engines": {
  1916. "node": ">=12"
  1917. },
  1918. "funding": {
  1919. "url": "https://github.com/sponsors/jonschlinkert"
  1920. }
  1921. },
  1922. "node_modules/pinia": {
  1923. "version": "3.0.4",
  1924. "resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
  1925. "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
  1926. "license": "MIT",
  1927. "dependencies": {
  1928. "@vue/devtools-api": "^7.7.7"
  1929. },
  1930. "funding": {
  1931. "url": "https://github.com/sponsors/posva"
  1932. },
  1933. "peerDependencies": {
  1934. "typescript": ">=4.5.0",
  1935. "vue": "^3.5.11"
  1936. },
  1937. "peerDependenciesMeta": {
  1938. "typescript": {
  1939. "optional": true
  1940. }
  1941. }
  1942. },
  1943. "node_modules/postcss": {
  1944. "version": "8.5.6",
  1945. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz",
  1946. "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
  1947. "funding": [
  1948. {
  1949. "type": "opencollective",
  1950. "url": "https://opencollective.com/postcss/"
  1951. },
  1952. {
  1953. "type": "tidelift",
  1954. "url": "https://tidelift.com/funding/github/npm/postcss"
  1955. },
  1956. {
  1957. "type": "github",
  1958. "url": "https://github.com/sponsors/ai"
  1959. }
  1960. ],
  1961. "license": "MIT",
  1962. "dependencies": {
  1963. "nanoid": "^3.3.11",
  1964. "picocolors": "^1.1.1",
  1965. "source-map-js": "^1.2.1"
  1966. },
  1967. "engines": {
  1968. "node": "^10 || ^12 || >=14"
  1969. }
  1970. },
  1971. "node_modules/readdirp": {
  1972. "version": "4.1.2",
  1973. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz",
  1974. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  1975. "dev": true,
  1976. "license": "MIT",
  1977. "engines": {
  1978. "node": ">= 14.18.0"
  1979. },
  1980. "funding": {
  1981. "type": "individual",
  1982. "url": "https://paulmillr.com/funding/"
  1983. }
  1984. },
  1985. "node_modules/rfdc": {
  1986. "version": "1.4.1",
  1987. "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
  1988. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  1989. "license": "MIT"
  1990. },
  1991. "node_modules/rollup": {
  1992. "version": "4.59.0",
  1993. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.59.0.tgz",
  1994. "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
  1995. "dev": true,
  1996. "license": "MIT",
  1997. "dependencies": {
  1998. "@types/estree": "1.0.8"
  1999. },
  2000. "bin": {
  2001. "rollup": "dist/bin/rollup"
  2002. },
  2003. "engines": {
  2004. "node": ">=18.0.0",
  2005. "npm": ">=8.0.0"
  2006. },
  2007. "optionalDependencies": {
  2008. "@rollup/rollup-android-arm-eabi": "4.59.0",
  2009. "@rollup/rollup-android-arm64": "4.59.0",
  2010. "@rollup/rollup-darwin-arm64": "4.59.0",
  2011. "@rollup/rollup-darwin-x64": "4.59.0",
  2012. "@rollup/rollup-freebsd-arm64": "4.59.0",
  2013. "@rollup/rollup-freebsd-x64": "4.59.0",
  2014. "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
  2015. "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
  2016. "@rollup/rollup-linux-arm64-gnu": "4.59.0",
  2017. "@rollup/rollup-linux-arm64-musl": "4.59.0",
  2018. "@rollup/rollup-linux-loong64-gnu": "4.59.0",
  2019. "@rollup/rollup-linux-loong64-musl": "4.59.0",
  2020. "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
  2021. "@rollup/rollup-linux-ppc64-musl": "4.59.0",
  2022. "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
  2023. "@rollup/rollup-linux-riscv64-musl": "4.59.0",
  2024. "@rollup/rollup-linux-s390x-gnu": "4.59.0",
  2025. "@rollup/rollup-linux-x64-gnu": "4.59.0",
  2026. "@rollup/rollup-linux-x64-musl": "4.59.0",
  2027. "@rollup/rollup-openbsd-x64": "4.59.0",
  2028. "@rollup/rollup-openharmony-arm64": "4.59.0",
  2029. "@rollup/rollup-win32-arm64-msvc": "4.59.0",
  2030. "@rollup/rollup-win32-ia32-msvc": "4.59.0",
  2031. "@rollup/rollup-win32-x64-gnu": "4.59.0",
  2032. "@rollup/rollup-win32-x64-msvc": "4.59.0",
  2033. "fsevents": "~2.3.2"
  2034. }
  2035. },
  2036. "node_modules/sass": {
  2037. "version": "1.97.3",
  2038. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.97.3.tgz",
  2039. "integrity": "sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==",
  2040. "dev": true,
  2041. "license": "MIT",
  2042. "dependencies": {
  2043. "chokidar": "^4.0.0",
  2044. "immutable": "^5.0.2",
  2045. "source-map-js": ">=0.6.2 <2.0.0"
  2046. },
  2047. "bin": {
  2048. "sass": "sass.js"
  2049. },
  2050. "engines": {
  2051. "node": ">=14.0.0"
  2052. },
  2053. "optionalDependencies": {
  2054. "@parcel/watcher": "^2.4.1"
  2055. }
  2056. },
  2057. "node_modules/source-map-js": {
  2058. "version": "1.2.1",
  2059. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  2060. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2061. "license": "BSD-3-Clause",
  2062. "engines": {
  2063. "node": ">=0.10.0"
  2064. }
  2065. },
  2066. "node_modules/speakingurl": {
  2067. "version": "14.0.1",
  2068. "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
  2069. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  2070. "license": "BSD-3-Clause",
  2071. "engines": {
  2072. "node": ">=0.10.0"
  2073. }
  2074. },
  2075. "node_modules/superjson": {
  2076. "version": "2.2.6",
  2077. "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
  2078. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  2079. "license": "MIT",
  2080. "dependencies": {
  2081. "copy-anything": "^4"
  2082. },
  2083. "engines": {
  2084. "node": ">=16"
  2085. }
  2086. },
  2087. "node_modules/swiper": {
  2088. "version": "12.1.2",
  2089. "resolved": "https://registry.npmmirror.com/swiper/-/swiper-12.1.2.tgz",
  2090. "integrity": "sha512-4gILrI3vXZqoZh71I1PALqukCFgk+gpOwe1tOvz5uE9kHtl2gTDzmYflYCwWvR4LOvCrJi6UEEU+gnuW5BtkgQ==",
  2091. "funding": [
  2092. {
  2093. "type": "patreon",
  2094. "url": "https://www.patreon.com/swiperjs"
  2095. },
  2096. {
  2097. "type": "open_collective",
  2098. "url": "http://opencollective.com/swiper"
  2099. }
  2100. ],
  2101. "license": "MIT",
  2102. "engines": {
  2103. "node": ">= 4.7.0"
  2104. }
  2105. },
  2106. "node_modules/tinyglobby": {
  2107. "version": "0.2.15",
  2108. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz",
  2109. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  2110. "dev": true,
  2111. "license": "MIT",
  2112. "dependencies": {
  2113. "fdir": "^6.5.0",
  2114. "picomatch": "^4.0.3"
  2115. },
  2116. "engines": {
  2117. "node": ">=12.0.0"
  2118. },
  2119. "funding": {
  2120. "url": "https://github.com/sponsors/SuperchupuDev"
  2121. }
  2122. },
  2123. "node_modules/typescript": {
  2124. "version": "5.9.3",
  2125. "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz",
  2126. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  2127. "devOptional": true,
  2128. "license": "Apache-2.0",
  2129. "bin": {
  2130. "tsc": "bin/tsc",
  2131. "tsserver": "bin/tsserver"
  2132. },
  2133. "engines": {
  2134. "node": ">=14.17"
  2135. }
  2136. },
  2137. "node_modules/undici-types": {
  2138. "version": "7.18.2",
  2139. "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.18.2.tgz",
  2140. "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
  2141. "dev": true,
  2142. "license": "MIT"
  2143. },
  2144. "node_modules/vite": {
  2145. "version": "7.3.1",
  2146. "resolved": "https://registry.npmmirror.com/vite/-/vite-7.3.1.tgz",
  2147. "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
  2148. "dev": true,
  2149. "license": "MIT",
  2150. "dependencies": {
  2151. "esbuild": "^0.27.0",
  2152. "fdir": "^6.5.0",
  2153. "picomatch": "^4.0.3",
  2154. "postcss": "^8.5.6",
  2155. "rollup": "^4.43.0",
  2156. "tinyglobby": "^0.2.15"
  2157. },
  2158. "bin": {
  2159. "vite": "bin/vite.js"
  2160. },
  2161. "engines": {
  2162. "node": "^20.19.0 || >=22.12.0"
  2163. },
  2164. "funding": {
  2165. "url": "https://github.com/vitejs/vite?sponsor=1"
  2166. },
  2167. "optionalDependencies": {
  2168. "fsevents": "~2.3.3"
  2169. },
  2170. "peerDependencies": {
  2171. "@types/node": "^20.19.0 || >=22.12.0",
  2172. "jiti": ">=1.21.0",
  2173. "less": "^4.0.0",
  2174. "lightningcss": "^1.21.0",
  2175. "sass": "^1.70.0",
  2176. "sass-embedded": "^1.70.0",
  2177. "stylus": ">=0.54.8",
  2178. "sugarss": "^5.0.0",
  2179. "terser": "^5.16.0",
  2180. "tsx": "^4.8.1",
  2181. "yaml": "^2.4.2"
  2182. },
  2183. "peerDependenciesMeta": {
  2184. "@types/node": {
  2185. "optional": true
  2186. },
  2187. "jiti": {
  2188. "optional": true
  2189. },
  2190. "less": {
  2191. "optional": true
  2192. },
  2193. "lightningcss": {
  2194. "optional": true
  2195. },
  2196. "sass": {
  2197. "optional": true
  2198. },
  2199. "sass-embedded": {
  2200. "optional": true
  2201. },
  2202. "stylus": {
  2203. "optional": true
  2204. },
  2205. "sugarss": {
  2206. "optional": true
  2207. },
  2208. "terser": {
  2209. "optional": true
  2210. },
  2211. "tsx": {
  2212. "optional": true
  2213. },
  2214. "yaml": {
  2215. "optional": true
  2216. }
  2217. }
  2218. },
  2219. "node_modules/vscode-uri": {
  2220. "version": "3.1.0",
  2221. "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz",
  2222. "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
  2223. "dev": true,
  2224. "license": "MIT"
  2225. },
  2226. "node_modules/vue": {
  2227. "version": "3.5.29",
  2228. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.29.tgz",
  2229. "integrity": "sha512-BZqN4Ze6mDQVNAni0IHeMJ5mwr8VAJ3MQC9FmprRhcBYENw+wOAAjRj8jfmN6FLl0j96OXbR+CjWhmAmM+QGnA==",
  2230. "license": "MIT",
  2231. "dependencies": {
  2232. "@vue/compiler-dom": "3.5.29",
  2233. "@vue/compiler-sfc": "3.5.29",
  2234. "@vue/runtime-dom": "3.5.29",
  2235. "@vue/server-renderer": "3.5.29",
  2236. "@vue/shared": "3.5.29"
  2237. },
  2238. "peerDependencies": {
  2239. "typescript": "*"
  2240. },
  2241. "peerDependenciesMeta": {
  2242. "typescript": {
  2243. "optional": true
  2244. }
  2245. }
  2246. },
  2247. "node_modules/vue-router": {
  2248. "version": "4.6.4",
  2249. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz",
  2250. "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
  2251. "license": "MIT",
  2252. "dependencies": {
  2253. "@vue/devtools-api": "^6.6.4"
  2254. },
  2255. "funding": {
  2256. "url": "https://github.com/sponsors/posva"
  2257. },
  2258. "peerDependencies": {
  2259. "vue": "^3.5.0"
  2260. }
  2261. },
  2262. "node_modules/vue-router/node_modules/@vue/devtools-api": {
  2263. "version": "6.6.4",
  2264. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  2265. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  2266. "license": "MIT"
  2267. },
  2268. "node_modules/vue-tsc": {
  2269. "version": "3.2.5",
  2270. "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-3.2.5.tgz",
  2271. "integrity": "sha512-/htfTCMluQ+P2FISGAooul8kO4JMheOTCbCy4M6dYnYYjqLe3BExZudAua6MSIKSFYQtFOYAll7XobYwcpokGA==",
  2272. "dev": true,
  2273. "license": "MIT",
  2274. "dependencies": {
  2275. "@volar/typescript": "2.4.28",
  2276. "@vue/language-core": "3.2.5"
  2277. },
  2278. "bin": {
  2279. "vue-tsc": "bin/vue-tsc.js"
  2280. },
  2281. "peerDependencies": {
  2282. "typescript": ">=5.0.0"
  2283. }
  2284. }
  2285. }
  2286. }