package-lock.json 94 KB

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