package-lock.json 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. {
  2. "name": "temp-qx",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "temp-qx",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "element-plus": "^2.14.1",
  12. "three": "^0.184.0",
  13. "utif": "^3.1.0",
  14. "vue": "^3.5.34"
  15. },
  16. "devDependencies": {
  17. "@vitejs/plugin-vue": "^6.0.6",
  18. "sharp": "^0.34.5",
  19. "vite": "^8.0.12"
  20. }
  21. },
  22. "node_modules/@babel/helper-string-parser": {
  23. "version": "7.29.7",
  24. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
  25. "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
  26. "license": "MIT",
  27. "engines": {
  28. "node": ">=6.9.0"
  29. }
  30. },
  31. "node_modules/@babel/helper-validator-identifier": {
  32. "version": "7.29.7",
  33. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
  34. "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
  35. "license": "MIT",
  36. "engines": {
  37. "node": ">=6.9.0"
  38. }
  39. },
  40. "node_modules/@babel/parser": {
  41. "version": "7.29.7",
  42. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.7.tgz",
  43. "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
  44. "license": "MIT",
  45. "dependencies": {
  46. "@babel/types": "^7.29.7"
  47. },
  48. "bin": {
  49. "parser": "bin/babel-parser.js"
  50. },
  51. "engines": {
  52. "node": ">=6.0.0"
  53. }
  54. },
  55. "node_modules/@babel/types": {
  56. "version": "7.29.7",
  57. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.7.tgz",
  58. "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
  59. "license": "MIT",
  60. "dependencies": {
  61. "@babel/helper-string-parser": "^7.29.7",
  62. "@babel/helper-validator-identifier": "^7.29.7"
  63. },
  64. "engines": {
  65. "node": ">=6.9.0"
  66. }
  67. },
  68. "node_modules/@ctrl/tinycolor": {
  69. "version": "4.2.0",
  70. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz",
  71. "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==",
  72. "license": "MIT",
  73. "engines": {
  74. "node": ">=14"
  75. }
  76. },
  77. "node_modules/@element-plus/icons-vue": {
  78. "version": "2.3.2",
  79. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  80. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  81. "license": "MIT",
  82. "peerDependencies": {
  83. "vue": "^3.2.0"
  84. }
  85. },
  86. "node_modules/@emnapi/core": {
  87. "version": "1.10.0",
  88. "resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.10.0.tgz",
  89. "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
  90. "dev": true,
  91. "license": "MIT",
  92. "optional": true,
  93. "dependencies": {
  94. "@emnapi/wasi-threads": "1.2.1",
  95. "tslib": "^2.4.0"
  96. }
  97. },
  98. "node_modules/@emnapi/runtime": {
  99. "version": "1.10.0",
  100. "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.10.0.tgz",
  101. "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
  102. "dev": true,
  103. "license": "MIT",
  104. "optional": true,
  105. "dependencies": {
  106. "tslib": "^2.4.0"
  107. }
  108. },
  109. "node_modules/@emnapi/wasi-threads": {
  110. "version": "1.2.1",
  111. "resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
  112. "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
  113. "dev": true,
  114. "license": "MIT",
  115. "optional": true,
  116. "dependencies": {
  117. "tslib": "^2.4.0"
  118. }
  119. },
  120. "node_modules/@floating-ui/core": {
  121. "version": "1.7.5",
  122. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.5.tgz",
  123. "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
  124. "license": "MIT",
  125. "dependencies": {
  126. "@floating-ui/utils": "^0.2.11"
  127. }
  128. },
  129. "node_modules/@floating-ui/dom": {
  130. "version": "1.7.6",
  131. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.6.tgz",
  132. "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
  133. "license": "MIT",
  134. "dependencies": {
  135. "@floating-ui/core": "^1.7.5",
  136. "@floating-ui/utils": "^0.2.11"
  137. }
  138. },
  139. "node_modules/@floating-ui/utils": {
  140. "version": "0.2.11",
  141. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.11.tgz",
  142. "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
  143. "license": "MIT"
  144. },
  145. "node_modules/@img/colour": {
  146. "version": "1.1.0",
  147. "resolved": "https://registry.npmmirror.com/@img/colour/-/colour-1.1.0.tgz",
  148. "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
  149. "dev": true,
  150. "license": "MIT",
  151. "engines": {
  152. "node": ">=18"
  153. }
  154. },
  155. "node_modules/@img/sharp-darwin-arm64": {
  156. "version": "0.34.5",
  157. "resolved": "https://registry.npmmirror.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
  158. "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
  159. "cpu": [
  160. "arm64"
  161. ],
  162. "dev": true,
  163. "license": "Apache-2.0",
  164. "optional": true,
  165. "os": [
  166. "darwin"
  167. ],
  168. "engines": {
  169. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  170. },
  171. "funding": {
  172. "url": "https://opencollective.com/libvips"
  173. },
  174. "optionalDependencies": {
  175. "@img/sharp-libvips-darwin-arm64": "1.2.4"
  176. }
  177. },
  178. "node_modules/@img/sharp-darwin-x64": {
  179. "version": "0.34.5",
  180. "resolved": "https://registry.npmmirror.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
  181. "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
  182. "cpu": [
  183. "x64"
  184. ],
  185. "dev": true,
  186. "license": "Apache-2.0",
  187. "optional": true,
  188. "os": [
  189. "darwin"
  190. ],
  191. "engines": {
  192. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  193. },
  194. "funding": {
  195. "url": "https://opencollective.com/libvips"
  196. },
  197. "optionalDependencies": {
  198. "@img/sharp-libvips-darwin-x64": "1.2.4"
  199. }
  200. },
  201. "node_modules/@img/sharp-libvips-darwin-arm64": {
  202. "version": "1.2.4",
  203. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
  204. "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
  205. "cpu": [
  206. "arm64"
  207. ],
  208. "dev": true,
  209. "license": "LGPL-3.0-or-later",
  210. "optional": true,
  211. "os": [
  212. "darwin"
  213. ],
  214. "funding": {
  215. "url": "https://opencollective.com/libvips"
  216. }
  217. },
  218. "node_modules/@img/sharp-libvips-darwin-x64": {
  219. "version": "1.2.4",
  220. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
  221. "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
  222. "cpu": [
  223. "x64"
  224. ],
  225. "dev": true,
  226. "license": "LGPL-3.0-or-later",
  227. "optional": true,
  228. "os": [
  229. "darwin"
  230. ],
  231. "funding": {
  232. "url": "https://opencollective.com/libvips"
  233. }
  234. },
  235. "node_modules/@img/sharp-libvips-linux-arm": {
  236. "version": "1.2.4",
  237. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
  238. "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
  239. "cpu": [
  240. "arm"
  241. ],
  242. "dev": true,
  243. "license": "LGPL-3.0-or-later",
  244. "optional": true,
  245. "os": [
  246. "linux"
  247. ],
  248. "funding": {
  249. "url": "https://opencollective.com/libvips"
  250. }
  251. },
  252. "node_modules/@img/sharp-libvips-linux-arm64": {
  253. "version": "1.2.4",
  254. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
  255. "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
  256. "cpu": [
  257. "arm64"
  258. ],
  259. "dev": true,
  260. "license": "LGPL-3.0-or-later",
  261. "optional": true,
  262. "os": [
  263. "linux"
  264. ],
  265. "funding": {
  266. "url": "https://opencollective.com/libvips"
  267. }
  268. },
  269. "node_modules/@img/sharp-libvips-linux-ppc64": {
  270. "version": "1.2.4",
  271. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
  272. "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
  273. "cpu": [
  274. "ppc64"
  275. ],
  276. "dev": true,
  277. "license": "LGPL-3.0-or-later",
  278. "optional": true,
  279. "os": [
  280. "linux"
  281. ],
  282. "funding": {
  283. "url": "https://opencollective.com/libvips"
  284. }
  285. },
  286. "node_modules/@img/sharp-libvips-linux-riscv64": {
  287. "version": "1.2.4",
  288. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
  289. "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
  290. "cpu": [
  291. "riscv64"
  292. ],
  293. "dev": true,
  294. "license": "LGPL-3.0-or-later",
  295. "optional": true,
  296. "os": [
  297. "linux"
  298. ],
  299. "funding": {
  300. "url": "https://opencollective.com/libvips"
  301. }
  302. },
  303. "node_modules/@img/sharp-libvips-linux-s390x": {
  304. "version": "1.2.4",
  305. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
  306. "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
  307. "cpu": [
  308. "s390x"
  309. ],
  310. "dev": true,
  311. "license": "LGPL-3.0-or-later",
  312. "optional": true,
  313. "os": [
  314. "linux"
  315. ],
  316. "funding": {
  317. "url": "https://opencollective.com/libvips"
  318. }
  319. },
  320. "node_modules/@img/sharp-libvips-linux-x64": {
  321. "version": "1.2.4",
  322. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
  323. "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
  324. "cpu": [
  325. "x64"
  326. ],
  327. "dev": true,
  328. "license": "LGPL-3.0-or-later",
  329. "optional": true,
  330. "os": [
  331. "linux"
  332. ],
  333. "funding": {
  334. "url": "https://opencollective.com/libvips"
  335. }
  336. },
  337. "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
  338. "version": "1.2.4",
  339. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
  340. "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
  341. "cpu": [
  342. "arm64"
  343. ],
  344. "dev": true,
  345. "license": "LGPL-3.0-or-later",
  346. "optional": true,
  347. "os": [
  348. "linux"
  349. ],
  350. "funding": {
  351. "url": "https://opencollective.com/libvips"
  352. }
  353. },
  354. "node_modules/@img/sharp-libvips-linuxmusl-x64": {
  355. "version": "1.2.4",
  356. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
  357. "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
  358. "cpu": [
  359. "x64"
  360. ],
  361. "dev": true,
  362. "license": "LGPL-3.0-or-later",
  363. "optional": true,
  364. "os": [
  365. "linux"
  366. ],
  367. "funding": {
  368. "url": "https://opencollective.com/libvips"
  369. }
  370. },
  371. "node_modules/@img/sharp-linux-arm": {
  372. "version": "0.34.5",
  373. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
  374. "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
  375. "cpu": [
  376. "arm"
  377. ],
  378. "dev": true,
  379. "license": "Apache-2.0",
  380. "optional": true,
  381. "os": [
  382. "linux"
  383. ],
  384. "engines": {
  385. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  386. },
  387. "funding": {
  388. "url": "https://opencollective.com/libvips"
  389. },
  390. "optionalDependencies": {
  391. "@img/sharp-libvips-linux-arm": "1.2.4"
  392. }
  393. },
  394. "node_modules/@img/sharp-linux-arm64": {
  395. "version": "0.34.5",
  396. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
  397. "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
  398. "cpu": [
  399. "arm64"
  400. ],
  401. "dev": true,
  402. "license": "Apache-2.0",
  403. "optional": true,
  404. "os": [
  405. "linux"
  406. ],
  407. "engines": {
  408. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  409. },
  410. "funding": {
  411. "url": "https://opencollective.com/libvips"
  412. },
  413. "optionalDependencies": {
  414. "@img/sharp-libvips-linux-arm64": "1.2.4"
  415. }
  416. },
  417. "node_modules/@img/sharp-linux-ppc64": {
  418. "version": "0.34.5",
  419. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
  420. "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
  421. "cpu": [
  422. "ppc64"
  423. ],
  424. "dev": true,
  425. "license": "Apache-2.0",
  426. "optional": true,
  427. "os": [
  428. "linux"
  429. ],
  430. "engines": {
  431. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  432. },
  433. "funding": {
  434. "url": "https://opencollective.com/libvips"
  435. },
  436. "optionalDependencies": {
  437. "@img/sharp-libvips-linux-ppc64": "1.2.4"
  438. }
  439. },
  440. "node_modules/@img/sharp-linux-riscv64": {
  441. "version": "0.34.5",
  442. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
  443. "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
  444. "cpu": [
  445. "riscv64"
  446. ],
  447. "dev": true,
  448. "license": "Apache-2.0",
  449. "optional": true,
  450. "os": [
  451. "linux"
  452. ],
  453. "engines": {
  454. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  455. },
  456. "funding": {
  457. "url": "https://opencollective.com/libvips"
  458. },
  459. "optionalDependencies": {
  460. "@img/sharp-libvips-linux-riscv64": "1.2.4"
  461. }
  462. },
  463. "node_modules/@img/sharp-linux-s390x": {
  464. "version": "0.34.5",
  465. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
  466. "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
  467. "cpu": [
  468. "s390x"
  469. ],
  470. "dev": true,
  471. "license": "Apache-2.0",
  472. "optional": true,
  473. "os": [
  474. "linux"
  475. ],
  476. "engines": {
  477. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  478. },
  479. "funding": {
  480. "url": "https://opencollective.com/libvips"
  481. },
  482. "optionalDependencies": {
  483. "@img/sharp-libvips-linux-s390x": "1.2.4"
  484. }
  485. },
  486. "node_modules/@img/sharp-linux-x64": {
  487. "version": "0.34.5",
  488. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
  489. "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
  490. "cpu": [
  491. "x64"
  492. ],
  493. "dev": true,
  494. "license": "Apache-2.0",
  495. "optional": true,
  496. "os": [
  497. "linux"
  498. ],
  499. "engines": {
  500. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  501. },
  502. "funding": {
  503. "url": "https://opencollective.com/libvips"
  504. },
  505. "optionalDependencies": {
  506. "@img/sharp-libvips-linux-x64": "1.2.4"
  507. }
  508. },
  509. "node_modules/@img/sharp-linuxmusl-arm64": {
  510. "version": "0.34.5",
  511. "resolved": "https://registry.npmmirror.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
  512. "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
  513. "cpu": [
  514. "arm64"
  515. ],
  516. "dev": true,
  517. "license": "Apache-2.0",
  518. "optional": true,
  519. "os": [
  520. "linux"
  521. ],
  522. "engines": {
  523. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  524. },
  525. "funding": {
  526. "url": "https://opencollective.com/libvips"
  527. },
  528. "optionalDependencies": {
  529. "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
  530. }
  531. },
  532. "node_modules/@img/sharp-linuxmusl-x64": {
  533. "version": "0.34.5",
  534. "resolved": "https://registry.npmmirror.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
  535. "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
  536. "cpu": [
  537. "x64"
  538. ],
  539. "dev": true,
  540. "license": "Apache-2.0",
  541. "optional": true,
  542. "os": [
  543. "linux"
  544. ],
  545. "engines": {
  546. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  547. },
  548. "funding": {
  549. "url": "https://opencollective.com/libvips"
  550. },
  551. "optionalDependencies": {
  552. "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
  553. }
  554. },
  555. "node_modules/@img/sharp-wasm32": {
  556. "version": "0.34.5",
  557. "resolved": "https://registry.npmmirror.com/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
  558. "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
  559. "cpu": [
  560. "wasm32"
  561. ],
  562. "dev": true,
  563. "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
  564. "optional": true,
  565. "dependencies": {
  566. "@emnapi/runtime": "^1.7.0"
  567. },
  568. "engines": {
  569. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  570. },
  571. "funding": {
  572. "url": "https://opencollective.com/libvips"
  573. }
  574. },
  575. "node_modules/@img/sharp-win32-arm64": {
  576. "version": "0.34.5",
  577. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
  578. "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
  579. "cpu": [
  580. "arm64"
  581. ],
  582. "dev": true,
  583. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  584. "optional": true,
  585. "os": [
  586. "win32"
  587. ],
  588. "engines": {
  589. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  590. },
  591. "funding": {
  592. "url": "https://opencollective.com/libvips"
  593. }
  594. },
  595. "node_modules/@img/sharp-win32-ia32": {
  596. "version": "0.34.5",
  597. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
  598. "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
  599. "cpu": [
  600. "ia32"
  601. ],
  602. "dev": true,
  603. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  604. "optional": true,
  605. "os": [
  606. "win32"
  607. ],
  608. "engines": {
  609. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  610. },
  611. "funding": {
  612. "url": "https://opencollective.com/libvips"
  613. }
  614. },
  615. "node_modules/@img/sharp-win32-x64": {
  616. "version": "0.34.5",
  617. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
  618. "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
  619. "cpu": [
  620. "x64"
  621. ],
  622. "dev": true,
  623. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  624. "optional": true,
  625. "os": [
  626. "win32"
  627. ],
  628. "engines": {
  629. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  630. },
  631. "funding": {
  632. "url": "https://opencollective.com/libvips"
  633. }
  634. },
  635. "node_modules/@jridgewell/sourcemap-codec": {
  636. "version": "1.5.5",
  637. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  638. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  639. "license": "MIT"
  640. },
  641. "node_modules/@napi-rs/wasm-runtime": {
  642. "version": "1.1.4",
  643. "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
  644. "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
  645. "dev": true,
  646. "license": "MIT",
  647. "optional": true,
  648. "dependencies": {
  649. "@tybys/wasm-util": "^0.10.1"
  650. },
  651. "funding": {
  652. "type": "github",
  653. "url": "https://github.com/sponsors/Brooooooklyn"
  654. },
  655. "peerDependencies": {
  656. "@emnapi/core": "^1.7.1",
  657. "@emnapi/runtime": "^1.7.1"
  658. }
  659. },
  660. "node_modules/@oxc-project/types": {
  661. "version": "0.133.0",
  662. "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.133.0.tgz",
  663. "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
  664. "dev": true,
  665. "license": "MIT",
  666. "funding": {
  667. "url": "https://github.com/sponsors/Boshen"
  668. }
  669. },
  670. "node_modules/@popperjs/core": {
  671. "name": "@sxzz/popperjs-es",
  672. "version": "2.11.8",
  673. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  674. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  675. "license": "MIT",
  676. "funding": {
  677. "type": "opencollective",
  678. "url": "https://opencollective.com/popperjs"
  679. }
  680. },
  681. "node_modules/@rolldown/binding-android-arm64": {
  682. "version": "1.0.3",
  683. "resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
  684. "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
  685. "cpu": [
  686. "arm64"
  687. ],
  688. "dev": true,
  689. "license": "MIT",
  690. "optional": true,
  691. "os": [
  692. "android"
  693. ],
  694. "engines": {
  695. "node": "^20.19.0 || >=22.12.0"
  696. }
  697. },
  698. "node_modules/@rolldown/binding-darwin-arm64": {
  699. "version": "1.0.3",
  700. "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
  701. "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
  702. "cpu": [
  703. "arm64"
  704. ],
  705. "dev": true,
  706. "license": "MIT",
  707. "optional": true,
  708. "os": [
  709. "darwin"
  710. ],
  711. "engines": {
  712. "node": "^20.19.0 || >=22.12.0"
  713. }
  714. },
  715. "node_modules/@rolldown/binding-darwin-x64": {
  716. "version": "1.0.3",
  717. "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
  718. "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
  719. "cpu": [
  720. "x64"
  721. ],
  722. "dev": true,
  723. "license": "MIT",
  724. "optional": true,
  725. "os": [
  726. "darwin"
  727. ],
  728. "engines": {
  729. "node": "^20.19.0 || >=22.12.0"
  730. }
  731. },
  732. "node_modules/@rolldown/binding-freebsd-x64": {
  733. "version": "1.0.3",
  734. "resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
  735. "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
  736. "cpu": [
  737. "x64"
  738. ],
  739. "dev": true,
  740. "license": "MIT",
  741. "optional": true,
  742. "os": [
  743. "freebsd"
  744. ],
  745. "engines": {
  746. "node": "^20.19.0 || >=22.12.0"
  747. }
  748. },
  749. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  750. "version": "1.0.3",
  751. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
  752. "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
  753. "cpu": [
  754. "arm"
  755. ],
  756. "dev": true,
  757. "license": "MIT",
  758. "optional": true,
  759. "os": [
  760. "linux"
  761. ],
  762. "engines": {
  763. "node": "^20.19.0 || >=22.12.0"
  764. }
  765. },
  766. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  767. "version": "1.0.3",
  768. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
  769. "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
  770. "cpu": [
  771. "arm64"
  772. ],
  773. "dev": true,
  774. "license": "MIT",
  775. "optional": true,
  776. "os": [
  777. "linux"
  778. ],
  779. "engines": {
  780. "node": "^20.19.0 || >=22.12.0"
  781. }
  782. },
  783. "node_modules/@rolldown/binding-linux-arm64-musl": {
  784. "version": "1.0.3",
  785. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
  786. "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
  787. "cpu": [
  788. "arm64"
  789. ],
  790. "dev": true,
  791. "license": "MIT",
  792. "optional": true,
  793. "os": [
  794. "linux"
  795. ],
  796. "engines": {
  797. "node": "^20.19.0 || >=22.12.0"
  798. }
  799. },
  800. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  801. "version": "1.0.3",
  802. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
  803. "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
  804. "cpu": [
  805. "ppc64"
  806. ],
  807. "dev": true,
  808. "license": "MIT",
  809. "optional": true,
  810. "os": [
  811. "linux"
  812. ],
  813. "engines": {
  814. "node": "^20.19.0 || >=22.12.0"
  815. }
  816. },
  817. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  818. "version": "1.0.3",
  819. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
  820. "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
  821. "cpu": [
  822. "s390x"
  823. ],
  824. "dev": true,
  825. "license": "MIT",
  826. "optional": true,
  827. "os": [
  828. "linux"
  829. ],
  830. "engines": {
  831. "node": "^20.19.0 || >=22.12.0"
  832. }
  833. },
  834. "node_modules/@rolldown/binding-linux-x64-gnu": {
  835. "version": "1.0.3",
  836. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
  837. "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
  838. "cpu": [
  839. "x64"
  840. ],
  841. "dev": true,
  842. "license": "MIT",
  843. "optional": true,
  844. "os": [
  845. "linux"
  846. ],
  847. "engines": {
  848. "node": "^20.19.0 || >=22.12.0"
  849. }
  850. },
  851. "node_modules/@rolldown/binding-linux-x64-musl": {
  852. "version": "1.0.3",
  853. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
  854. "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
  855. "cpu": [
  856. "x64"
  857. ],
  858. "dev": true,
  859. "license": "MIT",
  860. "optional": true,
  861. "os": [
  862. "linux"
  863. ],
  864. "engines": {
  865. "node": "^20.19.0 || >=22.12.0"
  866. }
  867. },
  868. "node_modules/@rolldown/binding-openharmony-arm64": {
  869. "version": "1.0.3",
  870. "resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
  871. "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
  872. "cpu": [
  873. "arm64"
  874. ],
  875. "dev": true,
  876. "license": "MIT",
  877. "optional": true,
  878. "os": [
  879. "openharmony"
  880. ],
  881. "engines": {
  882. "node": "^20.19.0 || >=22.12.0"
  883. }
  884. },
  885. "node_modules/@rolldown/binding-wasm32-wasi": {
  886. "version": "1.0.3",
  887. "resolved": "https://registry.npmmirror.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
  888. "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
  889. "cpu": [
  890. "wasm32"
  891. ],
  892. "dev": true,
  893. "license": "MIT",
  894. "optional": true,
  895. "dependencies": {
  896. "@emnapi/core": "1.10.0",
  897. "@emnapi/runtime": "1.10.0",
  898. "@napi-rs/wasm-runtime": "^1.1.4"
  899. },
  900. "engines": {
  901. "node": "^20.19.0 || >=22.12.0"
  902. }
  903. },
  904. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  905. "version": "1.0.3",
  906. "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
  907. "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
  908. "cpu": [
  909. "arm64"
  910. ],
  911. "dev": true,
  912. "license": "MIT",
  913. "optional": true,
  914. "os": [
  915. "win32"
  916. ],
  917. "engines": {
  918. "node": "^20.19.0 || >=22.12.0"
  919. }
  920. },
  921. "node_modules/@rolldown/binding-win32-x64-msvc": {
  922. "version": "1.0.3",
  923. "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
  924. "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
  925. "cpu": [
  926. "x64"
  927. ],
  928. "dev": true,
  929. "license": "MIT",
  930. "optional": true,
  931. "os": [
  932. "win32"
  933. ],
  934. "engines": {
  935. "node": "^20.19.0 || >=22.12.0"
  936. }
  937. },
  938. "node_modules/@rolldown/pluginutils": {
  939. "version": "1.0.1",
  940. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
  941. "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
  942. "dev": true,
  943. "license": "MIT"
  944. },
  945. "node_modules/@tybys/wasm-util": {
  946. "version": "0.10.2",
  947. "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
  948. "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
  949. "dev": true,
  950. "license": "MIT",
  951. "optional": true,
  952. "dependencies": {
  953. "tslib": "^2.4.0"
  954. }
  955. },
  956. "node_modules/@types/lodash": {
  957. "version": "4.17.24",
  958. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
  959. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  960. "license": "MIT"
  961. },
  962. "node_modules/@types/lodash-es": {
  963. "version": "4.17.12",
  964. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  965. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  966. "license": "MIT",
  967. "dependencies": {
  968. "@types/lodash": "*"
  969. }
  970. },
  971. "node_modules/@types/web-bluetooth": {
  972. "version": "0.0.21",
  973. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz",
  974. "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==",
  975. "license": "MIT"
  976. },
  977. "node_modules/@vitejs/plugin-vue": {
  978. "version": "6.0.7",
  979. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.7.tgz",
  980. "integrity": "sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==",
  981. "dev": true,
  982. "license": "MIT",
  983. "dependencies": {
  984. "@rolldown/pluginutils": "^1.0.1"
  985. },
  986. "engines": {
  987. "node": "^20.19.0 || >=22.12.0"
  988. },
  989. "peerDependencies": {
  990. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  991. "vue": "^3.2.25"
  992. }
  993. },
  994. "node_modules/@vue/compiler-core": {
  995. "version": "3.5.35",
  996. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.35.tgz",
  997. "integrity": "sha512-BUmHaR1J+O+CKZ9uJucdVTEr1LHsdyvv7vG3eNRhK3CczEHeMd/LtsHAuD7PbrxvI2envCY2v7HI1vC1aBRzKw==",
  998. "license": "MIT",
  999. "dependencies": {
  1000. "@babel/parser": "^7.29.3",
  1001. "@vue/shared": "3.5.35",
  1002. "entities": "^7.0.1",
  1003. "estree-walker": "^2.0.2",
  1004. "source-map-js": "^1.2.1"
  1005. }
  1006. },
  1007. "node_modules/@vue/compiler-dom": {
  1008. "version": "3.5.35",
  1009. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.35.tgz",
  1010. "integrity": "sha512-k+bprkXxuqhVajgTx5mUHuir7TwQzUKOWR40ng1ncAqQRPnrLngGGgqVEEhOnTMlc8btHYVKmrP8s5Qyg0hvYA==",
  1011. "license": "MIT",
  1012. "dependencies": {
  1013. "@vue/compiler-core": "3.5.35",
  1014. "@vue/shared": "3.5.35"
  1015. }
  1016. },
  1017. "node_modules/@vue/compiler-sfc": {
  1018. "version": "3.5.35",
  1019. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.35.tgz",
  1020. "integrity": "sha512-G5VPMcXTSywXBgtFOZOnHKBxKSrwXUcvY1iaF5/hRcy7t0J6CH/d8ha9F4nzi00Fax1eLV0QHM7v4mQu68jydw==",
  1021. "license": "MIT",
  1022. "dependencies": {
  1023. "@babel/parser": "^7.29.3",
  1024. "@vue/compiler-core": "3.5.35",
  1025. "@vue/compiler-dom": "3.5.35",
  1026. "@vue/compiler-ssr": "3.5.35",
  1027. "@vue/shared": "3.5.35",
  1028. "estree-walker": "^2.0.2",
  1029. "magic-string": "^0.30.21",
  1030. "postcss": "^8.5.15",
  1031. "source-map-js": "^1.2.1"
  1032. }
  1033. },
  1034. "node_modules/@vue/compiler-sfc/node_modules/magic-string": {
  1035. "version": "0.30.21",
  1036. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
  1037. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1038. "license": "MIT",
  1039. "dependencies": {
  1040. "@jridgewell/sourcemap-codec": "^1.5.5"
  1041. }
  1042. },
  1043. "node_modules/@vue/compiler-ssr": {
  1044. "version": "3.5.35",
  1045. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.35.tgz",
  1046. "integrity": "sha512-rGhAeXgdM7/ffTJGXT69rCCdTmjDewnFuUZfBQQHTdcEBeWdT5HCGY60y2ytLJr9/Dsu7IntUi5z/w0h6Rjnzw==",
  1047. "license": "MIT",
  1048. "dependencies": {
  1049. "@vue/compiler-dom": "3.5.35",
  1050. "@vue/shared": "3.5.35"
  1051. }
  1052. },
  1053. "node_modules/@vue/reactivity": {
  1054. "version": "3.5.35",
  1055. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.35.tgz",
  1056. "integrity": "sha512-tVc+SsHConvh/Lz64qq1pP3rYArBmK42xonovEcxY74SQtvctZodG/zhq54P5dr38cVuw25d27cPNRdlMidpGQ==",
  1057. "license": "MIT",
  1058. "dependencies": {
  1059. "@vue/shared": "3.5.35"
  1060. }
  1061. },
  1062. "node_modules/@vue/runtime-core": {
  1063. "version": "3.5.35",
  1064. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.35.tgz",
  1065. "integrity": "sha512-A/xFNX9loIcWDygeQuNCfKuh0CoYBzxhqEMNah5TSFg9Z53DrFYEN2qi5CU9necjM1OWYegYREUTHmXTmhfXtg==",
  1066. "license": "MIT",
  1067. "dependencies": {
  1068. "@vue/reactivity": "3.5.35",
  1069. "@vue/shared": "3.5.35"
  1070. }
  1071. },
  1072. "node_modules/@vue/runtime-dom": {
  1073. "version": "3.5.35",
  1074. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.35.tgz",
  1075. "integrity": "sha512-odrJ1C391dbGnyDRh8U+rnP7J2amIEzfmRk5vXy7xi3aZhEXofTvpi0T4HJb6jlNqQZTNPR5MPHSB3RHNkIORA==",
  1076. "license": "MIT",
  1077. "dependencies": {
  1078. "@vue/reactivity": "3.5.35",
  1079. "@vue/runtime-core": "3.5.35",
  1080. "@vue/shared": "3.5.35",
  1081. "csstype": "^3.2.3"
  1082. }
  1083. },
  1084. "node_modules/@vue/server-renderer": {
  1085. "version": "3.5.35",
  1086. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.35.tgz",
  1087. "integrity": "sha512-NkebSOYdB97wi8OQcO3HqzZSlymJi/aWsN/7h74OSVhRTm6qGs3Jp3e0rCXynmWwSlKeRrnlIug+ilYoHBmQDA==",
  1088. "license": "MIT",
  1089. "dependencies": {
  1090. "@vue/compiler-ssr": "3.5.35",
  1091. "@vue/shared": "3.5.35"
  1092. },
  1093. "peerDependencies": {
  1094. "vue": "3.5.35"
  1095. }
  1096. },
  1097. "node_modules/@vue/shared": {
  1098. "version": "3.5.35",
  1099. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.35.tgz",
  1100. "integrity": "sha512-zSbjL7gRXwks2ZQLRGCajBtBXEOXW9Ddhn/HvSdrGkE2dqGnumzW8XtusRrxrE9LvqtiqDXQ+A60Hp6mvdYxfA==",
  1101. "license": "MIT"
  1102. },
  1103. "node_modules/@vueuse/core": {
  1104. "version": "14.3.0",
  1105. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-14.3.0.tgz",
  1106. "integrity": "sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==",
  1107. "license": "MIT",
  1108. "dependencies": {
  1109. "@types/web-bluetooth": "^0.0.21",
  1110. "@vueuse/metadata": "14.3.0",
  1111. "@vueuse/shared": "14.3.0"
  1112. },
  1113. "funding": {
  1114. "url": "https://github.com/sponsors/antfu"
  1115. },
  1116. "peerDependencies": {
  1117. "vue": "^3.5.0"
  1118. }
  1119. },
  1120. "node_modules/@vueuse/metadata": {
  1121. "version": "14.3.0",
  1122. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-14.3.0.tgz",
  1123. "integrity": "sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==",
  1124. "license": "MIT",
  1125. "funding": {
  1126. "url": "https://github.com/sponsors/antfu"
  1127. }
  1128. },
  1129. "node_modules/@vueuse/shared": {
  1130. "version": "14.3.0",
  1131. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-14.3.0.tgz",
  1132. "integrity": "sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==",
  1133. "license": "MIT",
  1134. "funding": {
  1135. "url": "https://github.com/sponsors/antfu"
  1136. },
  1137. "peerDependencies": {
  1138. "vue": "^3.5.0"
  1139. }
  1140. },
  1141. "node_modules/async-validator": {
  1142. "version": "4.2.5",
  1143. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1144. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1145. "license": "MIT"
  1146. },
  1147. "node_modules/csstype": {
  1148. "version": "3.2.3",
  1149. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
  1150. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1151. "license": "MIT"
  1152. },
  1153. "node_modules/dayjs": {
  1154. "version": "1.11.21",
  1155. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.21.tgz",
  1156. "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
  1157. "license": "MIT"
  1158. },
  1159. "node_modules/detect-libc": {
  1160. "version": "2.1.2",
  1161. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  1162. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1163. "dev": true,
  1164. "license": "Apache-2.0",
  1165. "engines": {
  1166. "node": ">=8"
  1167. }
  1168. },
  1169. "node_modules/element-plus": {
  1170. "version": "2.14.1",
  1171. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.14.1.tgz",
  1172. "integrity": "sha512-UFnm1+BckNi+azkKJ7L32q1uXs9ekr99Z9pWTQPeDR05jqEWUwQq51ro4kZMVrANbjknX3Z7ukCZwTi2T6Tr9A==",
  1173. "license": "MIT",
  1174. "dependencies": {
  1175. "@ctrl/tinycolor": "^4.2.0",
  1176. "@element-plus/icons-vue": "^2.3.2",
  1177. "@floating-ui/dom": "^1.7.6",
  1178. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.8",
  1179. "@types/lodash": "^4.17.24",
  1180. "@types/lodash-es": "^4.17.12",
  1181. "@vueuse/core": "14.3.0",
  1182. "async-validator": "^4.2.5",
  1183. "dayjs": "^1.11.20",
  1184. "lodash": "^4.18.1",
  1185. "lodash-es": "^4.18.1",
  1186. "lodash-unified": "^1.0.3",
  1187. "memoize-one": "^6.0.0",
  1188. "normalize-wheel-es": "^1.2.0",
  1189. "vue-component-type-helpers": "^3.3.1"
  1190. },
  1191. "peerDependencies": {
  1192. "vue": "^3.3.7"
  1193. }
  1194. },
  1195. "node_modules/entities": {
  1196. "version": "7.0.1",
  1197. "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
  1198. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1199. "license": "BSD-2-Clause",
  1200. "engines": {
  1201. "node": ">=0.12"
  1202. },
  1203. "funding": {
  1204. "url": "https://github.com/fb55/entities?sponsor=1"
  1205. }
  1206. },
  1207. "node_modules/estree-walker": {
  1208. "version": "2.0.2",
  1209. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1210. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1211. "license": "MIT"
  1212. },
  1213. "node_modules/fdir": {
  1214. "version": "6.5.0",
  1215. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
  1216. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1217. "dev": true,
  1218. "license": "MIT",
  1219. "engines": {
  1220. "node": ">=12.0.0"
  1221. },
  1222. "peerDependencies": {
  1223. "picomatch": "^3 || ^4"
  1224. },
  1225. "peerDependenciesMeta": {
  1226. "picomatch": {
  1227. "optional": true
  1228. }
  1229. }
  1230. },
  1231. "node_modules/fsevents": {
  1232. "version": "2.3.3",
  1233. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1234. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1235. "dev": true,
  1236. "hasInstallScript": true,
  1237. "license": "MIT",
  1238. "optional": true,
  1239. "os": [
  1240. "darwin"
  1241. ],
  1242. "engines": {
  1243. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1244. }
  1245. },
  1246. "node_modules/lightningcss": {
  1247. "version": "1.32.0",
  1248. "resolved": "https://registry.npmmirror.com/lightningcss/-/lightningcss-1.32.0.tgz",
  1249. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  1250. "dev": true,
  1251. "license": "MPL-2.0",
  1252. "dependencies": {
  1253. "detect-libc": "^2.0.3"
  1254. },
  1255. "engines": {
  1256. "node": ">= 12.0.0"
  1257. },
  1258. "funding": {
  1259. "type": "opencollective",
  1260. "url": "https://opencollective.com/parcel"
  1261. },
  1262. "optionalDependencies": {
  1263. "lightningcss-android-arm64": "1.32.0",
  1264. "lightningcss-darwin-arm64": "1.32.0",
  1265. "lightningcss-darwin-x64": "1.32.0",
  1266. "lightningcss-freebsd-x64": "1.32.0",
  1267. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1268. "lightningcss-linux-arm64-gnu": "1.32.0",
  1269. "lightningcss-linux-arm64-musl": "1.32.0",
  1270. "lightningcss-linux-x64-gnu": "1.32.0",
  1271. "lightningcss-linux-x64-musl": "1.32.0",
  1272. "lightningcss-win32-arm64-msvc": "1.32.0",
  1273. "lightningcss-win32-x64-msvc": "1.32.0"
  1274. }
  1275. },
  1276. "node_modules/lightningcss-android-arm64": {
  1277. "version": "1.32.0",
  1278. "resolved": "https://registry.npmmirror.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  1279. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  1280. "cpu": [
  1281. "arm64"
  1282. ],
  1283. "dev": true,
  1284. "license": "MPL-2.0",
  1285. "optional": true,
  1286. "os": [
  1287. "android"
  1288. ],
  1289. "engines": {
  1290. "node": ">= 12.0.0"
  1291. },
  1292. "funding": {
  1293. "type": "opencollective",
  1294. "url": "https://opencollective.com/parcel"
  1295. }
  1296. },
  1297. "node_modules/lightningcss-darwin-arm64": {
  1298. "version": "1.32.0",
  1299. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  1300. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  1301. "cpu": [
  1302. "arm64"
  1303. ],
  1304. "dev": true,
  1305. "license": "MPL-2.0",
  1306. "optional": true,
  1307. "os": [
  1308. "darwin"
  1309. ],
  1310. "engines": {
  1311. "node": ">= 12.0.0"
  1312. },
  1313. "funding": {
  1314. "type": "opencollective",
  1315. "url": "https://opencollective.com/parcel"
  1316. }
  1317. },
  1318. "node_modules/lightningcss-darwin-x64": {
  1319. "version": "1.32.0",
  1320. "resolved": "https://registry.npmmirror.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  1321. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  1322. "cpu": [
  1323. "x64"
  1324. ],
  1325. "dev": true,
  1326. "license": "MPL-2.0",
  1327. "optional": true,
  1328. "os": [
  1329. "darwin"
  1330. ],
  1331. "engines": {
  1332. "node": ">= 12.0.0"
  1333. },
  1334. "funding": {
  1335. "type": "opencollective",
  1336. "url": "https://opencollective.com/parcel"
  1337. }
  1338. },
  1339. "node_modules/lightningcss-freebsd-x64": {
  1340. "version": "1.32.0",
  1341. "resolved": "https://registry.npmmirror.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  1342. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  1343. "cpu": [
  1344. "x64"
  1345. ],
  1346. "dev": true,
  1347. "license": "MPL-2.0",
  1348. "optional": true,
  1349. "os": [
  1350. "freebsd"
  1351. ],
  1352. "engines": {
  1353. "node": ">= 12.0.0"
  1354. },
  1355. "funding": {
  1356. "type": "opencollective",
  1357. "url": "https://opencollective.com/parcel"
  1358. }
  1359. },
  1360. "node_modules/lightningcss-linux-arm-gnueabihf": {
  1361. "version": "1.32.0",
  1362. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  1363. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  1364. "cpu": [
  1365. "arm"
  1366. ],
  1367. "dev": true,
  1368. "license": "MPL-2.0",
  1369. "optional": true,
  1370. "os": [
  1371. "linux"
  1372. ],
  1373. "engines": {
  1374. "node": ">= 12.0.0"
  1375. },
  1376. "funding": {
  1377. "type": "opencollective",
  1378. "url": "https://opencollective.com/parcel"
  1379. }
  1380. },
  1381. "node_modules/lightningcss-linux-arm64-gnu": {
  1382. "version": "1.32.0",
  1383. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  1384. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  1385. "cpu": [
  1386. "arm64"
  1387. ],
  1388. "dev": true,
  1389. "license": "MPL-2.0",
  1390. "optional": true,
  1391. "os": [
  1392. "linux"
  1393. ],
  1394. "engines": {
  1395. "node": ">= 12.0.0"
  1396. },
  1397. "funding": {
  1398. "type": "opencollective",
  1399. "url": "https://opencollective.com/parcel"
  1400. }
  1401. },
  1402. "node_modules/lightningcss-linux-arm64-musl": {
  1403. "version": "1.32.0",
  1404. "resolved": "https://registry.npmmirror.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  1405. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  1406. "cpu": [
  1407. "arm64"
  1408. ],
  1409. "dev": true,
  1410. "license": "MPL-2.0",
  1411. "optional": true,
  1412. "os": [
  1413. "linux"
  1414. ],
  1415. "engines": {
  1416. "node": ">= 12.0.0"
  1417. },
  1418. "funding": {
  1419. "type": "opencollective",
  1420. "url": "https://opencollective.com/parcel"
  1421. }
  1422. },
  1423. "node_modules/lightningcss-linux-x64-gnu": {
  1424. "version": "1.32.0",
  1425. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  1426. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  1427. "cpu": [
  1428. "x64"
  1429. ],
  1430. "dev": true,
  1431. "license": "MPL-2.0",
  1432. "optional": true,
  1433. "os": [
  1434. "linux"
  1435. ],
  1436. "engines": {
  1437. "node": ">= 12.0.0"
  1438. },
  1439. "funding": {
  1440. "type": "opencollective",
  1441. "url": "https://opencollective.com/parcel"
  1442. }
  1443. },
  1444. "node_modules/lightningcss-linux-x64-musl": {
  1445. "version": "1.32.0",
  1446. "resolved": "https://registry.npmmirror.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  1447. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  1448. "cpu": [
  1449. "x64"
  1450. ],
  1451. "dev": true,
  1452. "license": "MPL-2.0",
  1453. "optional": true,
  1454. "os": [
  1455. "linux"
  1456. ],
  1457. "engines": {
  1458. "node": ">= 12.0.0"
  1459. },
  1460. "funding": {
  1461. "type": "opencollective",
  1462. "url": "https://opencollective.com/parcel"
  1463. }
  1464. },
  1465. "node_modules/lightningcss-win32-arm64-msvc": {
  1466. "version": "1.32.0",
  1467. "resolved": "https://registry.npmmirror.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  1468. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  1469. "cpu": [
  1470. "arm64"
  1471. ],
  1472. "dev": true,
  1473. "license": "MPL-2.0",
  1474. "optional": true,
  1475. "os": [
  1476. "win32"
  1477. ],
  1478. "engines": {
  1479. "node": ">= 12.0.0"
  1480. },
  1481. "funding": {
  1482. "type": "opencollective",
  1483. "url": "https://opencollective.com/parcel"
  1484. }
  1485. },
  1486. "node_modules/lightningcss-win32-x64-msvc": {
  1487. "version": "1.32.0",
  1488. "resolved": "https://registry.npmmirror.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  1489. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  1490. "cpu": [
  1491. "x64"
  1492. ],
  1493. "dev": true,
  1494. "license": "MPL-2.0",
  1495. "optional": true,
  1496. "os": [
  1497. "win32"
  1498. ],
  1499. "engines": {
  1500. "node": ">= 12.0.0"
  1501. },
  1502. "funding": {
  1503. "type": "opencollective",
  1504. "url": "https://opencollective.com/parcel"
  1505. }
  1506. },
  1507. "node_modules/lodash": {
  1508. "version": "4.18.1",
  1509. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
  1510. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  1511. "license": "MIT"
  1512. },
  1513. "node_modules/lodash-es": {
  1514. "version": "4.18.1",
  1515. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.18.1.tgz",
  1516. "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
  1517. "license": "MIT"
  1518. },
  1519. "node_modules/lodash-unified": {
  1520. "version": "1.0.3",
  1521. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  1522. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  1523. "license": "MIT",
  1524. "peerDependencies": {
  1525. "@types/lodash-es": "*",
  1526. "lodash": "*",
  1527. "lodash-es": "*"
  1528. }
  1529. },
  1530. "node_modules/memoize-one": {
  1531. "version": "6.0.0",
  1532. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  1533. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  1534. "license": "MIT"
  1535. },
  1536. "node_modules/nanoid": {
  1537. "version": "3.3.12",
  1538. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.12.tgz",
  1539. "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
  1540. "funding": [
  1541. {
  1542. "type": "github",
  1543. "url": "https://github.com/sponsors/ai"
  1544. }
  1545. ],
  1546. "license": "MIT",
  1547. "bin": {
  1548. "nanoid": "bin/nanoid.cjs"
  1549. },
  1550. "engines": {
  1551. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1552. }
  1553. },
  1554. "node_modules/normalize-wheel-es": {
  1555. "version": "1.2.0",
  1556. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  1557. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  1558. "license": "BSD-3-Clause"
  1559. },
  1560. "node_modules/pako": {
  1561. "version": "1.0.11",
  1562. "resolved": "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz",
  1563. "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
  1564. "license": "(MIT AND Zlib)"
  1565. },
  1566. "node_modules/picocolors": {
  1567. "version": "1.1.1",
  1568. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  1569. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1570. "license": "ISC"
  1571. },
  1572. "node_modules/picomatch": {
  1573. "version": "4.0.4",
  1574. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz",
  1575. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  1576. "dev": true,
  1577. "license": "MIT",
  1578. "engines": {
  1579. "node": ">=12"
  1580. },
  1581. "funding": {
  1582. "url": "https://github.com/sponsors/jonschlinkert"
  1583. }
  1584. },
  1585. "node_modules/postcss": {
  1586. "version": "8.5.15",
  1587. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.15.tgz",
  1588. "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
  1589. "funding": [
  1590. {
  1591. "type": "opencollective",
  1592. "url": "https://opencollective.com/postcss/"
  1593. },
  1594. {
  1595. "type": "tidelift",
  1596. "url": "https://tidelift.com/funding/github/npm/postcss"
  1597. },
  1598. {
  1599. "type": "github",
  1600. "url": "https://github.com/sponsors/ai"
  1601. }
  1602. ],
  1603. "license": "MIT",
  1604. "dependencies": {
  1605. "nanoid": "^3.3.12",
  1606. "picocolors": "^1.1.1",
  1607. "source-map-js": "^1.2.1"
  1608. },
  1609. "engines": {
  1610. "node": "^10 || ^12 || >=14"
  1611. }
  1612. },
  1613. "node_modules/rolldown": {
  1614. "version": "1.0.3",
  1615. "resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.0.3.tgz",
  1616. "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
  1617. "dev": true,
  1618. "license": "MIT",
  1619. "dependencies": {
  1620. "@oxc-project/types": "=0.133.0",
  1621. "@rolldown/pluginutils": "^1.0.0"
  1622. },
  1623. "bin": {
  1624. "rolldown": "bin/cli.mjs"
  1625. },
  1626. "engines": {
  1627. "node": "^20.19.0 || >=22.12.0"
  1628. },
  1629. "optionalDependencies": {
  1630. "@rolldown/binding-android-arm64": "1.0.3",
  1631. "@rolldown/binding-darwin-arm64": "1.0.3",
  1632. "@rolldown/binding-darwin-x64": "1.0.3",
  1633. "@rolldown/binding-freebsd-x64": "1.0.3",
  1634. "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
  1635. "@rolldown/binding-linux-arm64-gnu": "1.0.3",
  1636. "@rolldown/binding-linux-arm64-musl": "1.0.3",
  1637. "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
  1638. "@rolldown/binding-linux-s390x-gnu": "1.0.3",
  1639. "@rolldown/binding-linux-x64-gnu": "1.0.3",
  1640. "@rolldown/binding-linux-x64-musl": "1.0.3",
  1641. "@rolldown/binding-openharmony-arm64": "1.0.3",
  1642. "@rolldown/binding-wasm32-wasi": "1.0.3",
  1643. "@rolldown/binding-win32-arm64-msvc": "1.0.3",
  1644. "@rolldown/binding-win32-x64-msvc": "1.0.3"
  1645. }
  1646. },
  1647. "node_modules/semver": {
  1648. "version": "7.8.2",
  1649. "resolved": "https://registry.npmmirror.com/semver/-/semver-7.8.2.tgz",
  1650. "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
  1651. "dev": true,
  1652. "license": "ISC",
  1653. "bin": {
  1654. "semver": "bin/semver.js"
  1655. },
  1656. "engines": {
  1657. "node": ">=10"
  1658. }
  1659. },
  1660. "node_modules/sharp": {
  1661. "version": "0.34.5",
  1662. "resolved": "https://registry.npmmirror.com/sharp/-/sharp-0.34.5.tgz",
  1663. "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
  1664. "dev": true,
  1665. "hasInstallScript": true,
  1666. "license": "Apache-2.0",
  1667. "dependencies": {
  1668. "@img/colour": "^1.0.0",
  1669. "detect-libc": "^2.1.2",
  1670. "semver": "^7.7.3"
  1671. },
  1672. "engines": {
  1673. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  1674. },
  1675. "funding": {
  1676. "url": "https://opencollective.com/libvips"
  1677. },
  1678. "optionalDependencies": {
  1679. "@img/sharp-darwin-arm64": "0.34.5",
  1680. "@img/sharp-darwin-x64": "0.34.5",
  1681. "@img/sharp-libvips-darwin-arm64": "1.2.4",
  1682. "@img/sharp-libvips-darwin-x64": "1.2.4",
  1683. "@img/sharp-libvips-linux-arm": "1.2.4",
  1684. "@img/sharp-libvips-linux-arm64": "1.2.4",
  1685. "@img/sharp-libvips-linux-ppc64": "1.2.4",
  1686. "@img/sharp-libvips-linux-riscv64": "1.2.4",
  1687. "@img/sharp-libvips-linux-s390x": "1.2.4",
  1688. "@img/sharp-libvips-linux-x64": "1.2.4",
  1689. "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
  1690. "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
  1691. "@img/sharp-linux-arm": "0.34.5",
  1692. "@img/sharp-linux-arm64": "0.34.5",
  1693. "@img/sharp-linux-ppc64": "0.34.5",
  1694. "@img/sharp-linux-riscv64": "0.34.5",
  1695. "@img/sharp-linux-s390x": "0.34.5",
  1696. "@img/sharp-linux-x64": "0.34.5",
  1697. "@img/sharp-linuxmusl-arm64": "0.34.5",
  1698. "@img/sharp-linuxmusl-x64": "0.34.5",
  1699. "@img/sharp-wasm32": "0.34.5",
  1700. "@img/sharp-win32-arm64": "0.34.5",
  1701. "@img/sharp-win32-ia32": "0.34.5",
  1702. "@img/sharp-win32-x64": "0.34.5"
  1703. }
  1704. },
  1705. "node_modules/source-map-js": {
  1706. "version": "1.2.1",
  1707. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  1708. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  1709. "license": "BSD-3-Clause",
  1710. "engines": {
  1711. "node": ">=0.10.0"
  1712. }
  1713. },
  1714. "node_modules/three": {
  1715. "version": "0.184.0",
  1716. "resolved": "https://registry.npmmirror.com/three/-/three-0.184.0.tgz",
  1717. "integrity": "sha512-wtTRjG92pM5eUg/KuUnHsqSAlPM296brTOcLgMRqEeylYTh/CdtvKUvCyyCQTzFuStieWxvZb8mVTMvdPyUpxg==",
  1718. "license": "MIT"
  1719. },
  1720. "node_modules/tinyglobby": {
  1721. "version": "0.2.17",
  1722. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.17.tgz",
  1723. "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
  1724. "dev": true,
  1725. "license": "MIT",
  1726. "dependencies": {
  1727. "fdir": "^6.5.0",
  1728. "picomatch": "^4.0.4"
  1729. },
  1730. "engines": {
  1731. "node": ">=12.0.0"
  1732. },
  1733. "funding": {
  1734. "url": "https://github.com/sponsors/SuperchupuDev"
  1735. }
  1736. },
  1737. "node_modules/tslib": {
  1738. "version": "2.8.1",
  1739. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  1740. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  1741. "dev": true,
  1742. "license": "0BSD",
  1743. "optional": true
  1744. },
  1745. "node_modules/utif": {
  1746. "version": "3.1.0",
  1747. "resolved": "https://registry.npmmirror.com/utif/-/utif-3.1.0.tgz",
  1748. "integrity": "sha512-WEo4D/xOvFW53K5f5QTaTbbiORcm2/pCL9P6qmJnup+17eYfKaEhDeX9PeQkuyEoIxlbGklDuGl8xwuXYMrrXQ==",
  1749. "license": "MIT",
  1750. "dependencies": {
  1751. "pako": "^1.0.5"
  1752. }
  1753. },
  1754. "node_modules/vite": {
  1755. "version": "8.0.16",
  1756. "resolved": "https://registry.npmmirror.com/vite/-/vite-8.0.16.tgz",
  1757. "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
  1758. "dev": true,
  1759. "license": "MIT",
  1760. "dependencies": {
  1761. "lightningcss": "^1.32.0",
  1762. "picomatch": "^4.0.4",
  1763. "postcss": "^8.5.15",
  1764. "rolldown": "1.0.3",
  1765. "tinyglobby": "^0.2.17"
  1766. },
  1767. "bin": {
  1768. "vite": "bin/vite.js"
  1769. },
  1770. "engines": {
  1771. "node": "^20.19.0 || >=22.12.0"
  1772. },
  1773. "funding": {
  1774. "url": "https://github.com/vitejs/vite?sponsor=1"
  1775. },
  1776. "optionalDependencies": {
  1777. "fsevents": "~2.3.3"
  1778. },
  1779. "peerDependencies": {
  1780. "@types/node": "^20.19.0 || >=22.12.0",
  1781. "@vitejs/devtools": "^0.1.18",
  1782. "esbuild": "^0.27.0 || ^0.28.0",
  1783. "jiti": ">=1.21.0",
  1784. "less": "^4.0.0",
  1785. "sass": "^1.70.0",
  1786. "sass-embedded": "^1.70.0",
  1787. "stylus": ">=0.54.8",
  1788. "sugarss": "^5.0.0",
  1789. "terser": "^5.16.0",
  1790. "tsx": "^4.8.1",
  1791. "yaml": "^2.4.2"
  1792. },
  1793. "peerDependenciesMeta": {
  1794. "@types/node": {
  1795. "optional": true
  1796. },
  1797. "@vitejs/devtools": {
  1798. "optional": true
  1799. },
  1800. "esbuild": {
  1801. "optional": true
  1802. },
  1803. "jiti": {
  1804. "optional": true
  1805. },
  1806. "less": {
  1807. "optional": true
  1808. },
  1809. "sass": {
  1810. "optional": true
  1811. },
  1812. "sass-embedded": {
  1813. "optional": true
  1814. },
  1815. "stylus": {
  1816. "optional": true
  1817. },
  1818. "sugarss": {
  1819. "optional": true
  1820. },
  1821. "terser": {
  1822. "optional": true
  1823. },
  1824. "tsx": {
  1825. "optional": true
  1826. },
  1827. "yaml": {
  1828. "optional": true
  1829. }
  1830. }
  1831. },
  1832. "node_modules/vue": {
  1833. "version": "3.5.35",
  1834. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.35.tgz",
  1835. "integrity": "sha512-cx89fnr+0kVGHiNFG6y6s0bdjypJRFNZn6x3WPstNdQR1bi1mbB7h4v5IBGTsPJU3nK1+0Iqj3Zf+hZWMieR4Q==",
  1836. "license": "MIT",
  1837. "dependencies": {
  1838. "@vue/compiler-dom": "3.5.35",
  1839. "@vue/compiler-sfc": "3.5.35",
  1840. "@vue/runtime-dom": "3.5.35",
  1841. "@vue/server-renderer": "3.5.35",
  1842. "@vue/shared": "3.5.35"
  1843. },
  1844. "peerDependencies": {
  1845. "typescript": "*"
  1846. },
  1847. "peerDependenciesMeta": {
  1848. "typescript": {
  1849. "optional": true
  1850. }
  1851. }
  1852. },
  1853. "node_modules/vue-component-type-helpers": {
  1854. "version": "3.3.3",
  1855. "resolved": "https://registry.npmmirror.com/vue-component-type-helpers/-/vue-component-type-helpers-3.3.3.tgz",
  1856. "integrity": "sha512-x4nsFpy5Pe8fqPzp/5vkTPeTTDBpAx4WVtV47Ejt0+2FQrq4pRRsJs7JmYRqMFzTu/LW+pCWEjQ3YVCkPV7f9g==",
  1857. "license": "MIT"
  1858. }
  1859. }
  1860. }