pnpm-lock.yaml 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. lockfileVersion: '6.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. '@vueuse/motion':
  7. specifier: ^2.0.0
  8. version: 2.0.0(vue@3.4.14)
  9. mitt:
  10. specifier: ^3.0.1
  11. version: 3.0.1
  12. sass:
  13. specifier: ^1.70.0
  14. version: 1.70.0
  15. vue:
  16. specifier: ^3.4.14
  17. version: 3.4.14
  18. vue-fullpage.js:
  19. specifier: ^0.2.15
  20. version: 0.2.15(vue@3.4.14)
  21. devDependencies:
  22. '@vitejs/plugin-vue':
  23. specifier: ^4.6.2
  24. version: 4.6.2(vite@5.0.11)(vue@3.4.14)
  25. vite:
  26. specifier: ^5.0.11
  27. version: 5.0.11(sass@1.70.0)
  28. packages:
  29. /@ampproject/remapping@2.2.1:
  30. resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
  31. engines: {node: '>=6.0.0'}
  32. requiresBuild: true
  33. dependencies:
  34. '@jridgewell/gen-mapping': 0.3.3
  35. '@jridgewell/trace-mapping': 0.3.21
  36. dev: false
  37. optional: true
  38. /@babel/code-frame@7.23.5:
  39. resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
  40. engines: {node: '>=6.9.0'}
  41. requiresBuild: true
  42. dependencies:
  43. '@babel/highlight': 7.23.4
  44. chalk: 2.4.2
  45. dev: false
  46. optional: true
  47. /@babel/compat-data@7.23.5:
  48. resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
  49. engines: {node: '>=6.9.0'}
  50. requiresBuild: true
  51. dev: false
  52. optional: true
  53. /@babel/core@7.23.7:
  54. resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
  55. engines: {node: '>=6.9.0'}
  56. requiresBuild: true
  57. dependencies:
  58. '@ampproject/remapping': 2.2.1
  59. '@babel/code-frame': 7.23.5
  60. '@babel/generator': 7.23.6
  61. '@babel/helper-compilation-targets': 7.23.6
  62. '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
  63. '@babel/helpers': 7.23.8
  64. '@babel/parser': 7.23.6
  65. '@babel/template': 7.22.15
  66. '@babel/traverse': 7.23.7
  67. '@babel/types': 7.23.6
  68. convert-source-map: 2.0.0
  69. debug: 4.3.4
  70. gensync: 1.0.0-beta.2
  71. json5: 2.2.3
  72. semver: 6.3.1
  73. transitivePeerDependencies:
  74. - supports-color
  75. dev: false
  76. optional: true
  77. /@babel/generator@7.23.6:
  78. resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
  79. engines: {node: '>=6.9.0'}
  80. requiresBuild: true
  81. dependencies:
  82. '@babel/types': 7.23.6
  83. '@jridgewell/gen-mapping': 0.3.3
  84. '@jridgewell/trace-mapping': 0.3.21
  85. jsesc: 2.5.2
  86. dev: false
  87. optional: true
  88. /@babel/helper-compilation-targets@7.23.6:
  89. resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
  90. engines: {node: '>=6.9.0'}
  91. requiresBuild: true
  92. dependencies:
  93. '@babel/compat-data': 7.23.5
  94. '@babel/helper-validator-option': 7.23.5
  95. browserslist: 4.22.2
  96. lru-cache: 5.1.1
  97. semver: 6.3.1
  98. dev: false
  99. optional: true
  100. /@babel/helper-environment-visitor@7.22.20:
  101. resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
  102. engines: {node: '>=6.9.0'}
  103. requiresBuild: true
  104. dev: false
  105. optional: true
  106. /@babel/helper-function-name@7.23.0:
  107. resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
  108. engines: {node: '>=6.9.0'}
  109. requiresBuild: true
  110. dependencies:
  111. '@babel/template': 7.22.15
  112. '@babel/types': 7.23.6
  113. dev: false
  114. optional: true
  115. /@babel/helper-hoist-variables@7.22.5:
  116. resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
  117. engines: {node: '>=6.9.0'}
  118. requiresBuild: true
  119. dependencies:
  120. '@babel/types': 7.23.6
  121. dev: false
  122. optional: true
  123. /@babel/helper-module-imports@7.22.15:
  124. resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
  125. engines: {node: '>=6.9.0'}
  126. requiresBuild: true
  127. dependencies:
  128. '@babel/types': 7.23.6
  129. dev: false
  130. optional: true
  131. /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
  132. resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
  133. engines: {node: '>=6.9.0'}
  134. requiresBuild: true
  135. peerDependencies:
  136. '@babel/core': ^7.0.0
  137. dependencies:
  138. '@babel/core': 7.23.7
  139. '@babel/helper-environment-visitor': 7.22.20
  140. '@babel/helper-module-imports': 7.22.15
  141. '@babel/helper-simple-access': 7.22.5
  142. '@babel/helper-split-export-declaration': 7.22.6
  143. '@babel/helper-validator-identifier': 7.22.20
  144. dev: false
  145. optional: true
  146. /@babel/helper-simple-access@7.22.5:
  147. resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
  148. engines: {node: '>=6.9.0'}
  149. requiresBuild: true
  150. dependencies:
  151. '@babel/types': 7.23.6
  152. dev: false
  153. optional: true
  154. /@babel/helper-split-export-declaration@7.22.6:
  155. resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
  156. engines: {node: '>=6.9.0'}
  157. requiresBuild: true
  158. dependencies:
  159. '@babel/types': 7.23.6
  160. dev: false
  161. optional: true
  162. /@babel/helper-string-parser@7.23.4:
  163. resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
  164. engines: {node: '>=6.9.0'}
  165. /@babel/helper-validator-identifier@7.22.20:
  166. resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
  167. engines: {node: '>=6.9.0'}
  168. /@babel/helper-validator-option@7.23.5:
  169. resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
  170. engines: {node: '>=6.9.0'}
  171. requiresBuild: true
  172. dev: false
  173. optional: true
  174. /@babel/helpers@7.23.8:
  175. resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==}
  176. engines: {node: '>=6.9.0'}
  177. requiresBuild: true
  178. dependencies:
  179. '@babel/template': 7.22.15
  180. '@babel/traverse': 7.23.7
  181. '@babel/types': 7.23.6
  182. transitivePeerDependencies:
  183. - supports-color
  184. dev: false
  185. optional: true
  186. /@babel/highlight@7.23.4:
  187. resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
  188. engines: {node: '>=6.9.0'}
  189. requiresBuild: true
  190. dependencies:
  191. '@babel/helper-validator-identifier': 7.22.20
  192. chalk: 2.4.2
  193. js-tokens: 4.0.0
  194. dev: false
  195. optional: true
  196. /@babel/parser@7.23.6:
  197. resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
  198. engines: {node: '>=6.0.0'}
  199. hasBin: true
  200. dependencies:
  201. '@babel/types': 7.23.6
  202. /@babel/standalone@7.23.8:
  203. resolution: {integrity: sha512-i0tPn3dyKHbEZPDV66ry/7baC1pznRU02R8sU6eJSBfTOwMkukRdYuT3ks/j/cvTl4YkHMRmhTejET+iyPZVvQ==}
  204. engines: {node: '>=6.9.0'}
  205. requiresBuild: true
  206. dev: false
  207. optional: true
  208. /@babel/template@7.22.15:
  209. resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
  210. engines: {node: '>=6.9.0'}
  211. requiresBuild: true
  212. dependencies:
  213. '@babel/code-frame': 7.23.5
  214. '@babel/parser': 7.23.6
  215. '@babel/types': 7.23.6
  216. dev: false
  217. optional: true
  218. /@babel/traverse@7.23.7:
  219. resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
  220. engines: {node: '>=6.9.0'}
  221. requiresBuild: true
  222. dependencies:
  223. '@babel/code-frame': 7.23.5
  224. '@babel/generator': 7.23.6
  225. '@babel/helper-environment-visitor': 7.22.20
  226. '@babel/helper-function-name': 7.23.0
  227. '@babel/helper-hoist-variables': 7.22.5
  228. '@babel/helper-split-export-declaration': 7.22.6
  229. '@babel/parser': 7.23.6
  230. '@babel/types': 7.23.6
  231. debug: 4.3.4
  232. globals: 11.12.0
  233. transitivePeerDependencies:
  234. - supports-color
  235. dev: false
  236. optional: true
  237. /@babel/types@7.23.6:
  238. resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
  239. engines: {node: '>=6.9.0'}
  240. dependencies:
  241. '@babel/helper-string-parser': 7.23.4
  242. '@babel/helper-validator-identifier': 7.22.20
  243. to-fast-properties: 2.0.0
  244. /@esbuild/aix-ppc64@0.19.11:
  245. resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
  246. engines: {node: '>=12'}
  247. cpu: [ppc64]
  248. os: [aix]
  249. requiresBuild: true
  250. dev: true
  251. optional: true
  252. /@esbuild/android-arm64@0.19.11:
  253. resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==}
  254. engines: {node: '>=12'}
  255. cpu: [arm64]
  256. os: [android]
  257. requiresBuild: true
  258. dev: true
  259. optional: true
  260. /@esbuild/android-arm@0.19.11:
  261. resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==}
  262. engines: {node: '>=12'}
  263. cpu: [arm]
  264. os: [android]
  265. requiresBuild: true
  266. dev: true
  267. optional: true
  268. /@esbuild/android-x64@0.19.11:
  269. resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==}
  270. engines: {node: '>=12'}
  271. cpu: [x64]
  272. os: [android]
  273. requiresBuild: true
  274. dev: true
  275. optional: true
  276. /@esbuild/darwin-arm64@0.19.11:
  277. resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==}
  278. engines: {node: '>=12'}
  279. cpu: [arm64]
  280. os: [darwin]
  281. requiresBuild: true
  282. dev: true
  283. optional: true
  284. /@esbuild/darwin-x64@0.19.11:
  285. resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==}
  286. engines: {node: '>=12'}
  287. cpu: [x64]
  288. os: [darwin]
  289. requiresBuild: true
  290. dev: true
  291. optional: true
  292. /@esbuild/freebsd-arm64@0.19.11:
  293. resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==}
  294. engines: {node: '>=12'}
  295. cpu: [arm64]
  296. os: [freebsd]
  297. requiresBuild: true
  298. dev: true
  299. optional: true
  300. /@esbuild/freebsd-x64@0.19.11:
  301. resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==}
  302. engines: {node: '>=12'}
  303. cpu: [x64]
  304. os: [freebsd]
  305. requiresBuild: true
  306. dev: true
  307. optional: true
  308. /@esbuild/linux-arm64@0.19.11:
  309. resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==}
  310. engines: {node: '>=12'}
  311. cpu: [arm64]
  312. os: [linux]
  313. requiresBuild: true
  314. dev: true
  315. optional: true
  316. /@esbuild/linux-arm@0.19.11:
  317. resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==}
  318. engines: {node: '>=12'}
  319. cpu: [arm]
  320. os: [linux]
  321. requiresBuild: true
  322. dev: true
  323. optional: true
  324. /@esbuild/linux-ia32@0.19.11:
  325. resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==}
  326. engines: {node: '>=12'}
  327. cpu: [ia32]
  328. os: [linux]
  329. requiresBuild: true
  330. dev: true
  331. optional: true
  332. /@esbuild/linux-loong64@0.19.11:
  333. resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==}
  334. engines: {node: '>=12'}
  335. cpu: [loong64]
  336. os: [linux]
  337. requiresBuild: true
  338. dev: true
  339. optional: true
  340. /@esbuild/linux-mips64el@0.19.11:
  341. resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==}
  342. engines: {node: '>=12'}
  343. cpu: [mips64el]
  344. os: [linux]
  345. requiresBuild: true
  346. dev: true
  347. optional: true
  348. /@esbuild/linux-ppc64@0.19.11:
  349. resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
  350. engines: {node: '>=12'}
  351. cpu: [ppc64]
  352. os: [linux]
  353. requiresBuild: true
  354. dev: true
  355. optional: true
  356. /@esbuild/linux-riscv64@0.19.11:
  357. resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==}
  358. engines: {node: '>=12'}
  359. cpu: [riscv64]
  360. os: [linux]
  361. requiresBuild: true
  362. dev: true
  363. optional: true
  364. /@esbuild/linux-s390x@0.19.11:
  365. resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==}
  366. engines: {node: '>=12'}
  367. cpu: [s390x]
  368. os: [linux]
  369. requiresBuild: true
  370. dev: true
  371. optional: true
  372. /@esbuild/linux-x64@0.19.11:
  373. resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==}
  374. engines: {node: '>=12'}
  375. cpu: [x64]
  376. os: [linux]
  377. requiresBuild: true
  378. dev: true
  379. optional: true
  380. /@esbuild/netbsd-x64@0.19.11:
  381. resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==}
  382. engines: {node: '>=12'}
  383. cpu: [x64]
  384. os: [netbsd]
  385. requiresBuild: true
  386. dev: true
  387. optional: true
  388. /@esbuild/openbsd-x64@0.19.11:
  389. resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==}
  390. engines: {node: '>=12'}
  391. cpu: [x64]
  392. os: [openbsd]
  393. requiresBuild: true
  394. dev: true
  395. optional: true
  396. /@esbuild/sunos-x64@0.19.11:
  397. resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==}
  398. engines: {node: '>=12'}
  399. cpu: [x64]
  400. os: [sunos]
  401. requiresBuild: true
  402. dev: true
  403. optional: true
  404. /@esbuild/win32-arm64@0.19.11:
  405. resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==}
  406. engines: {node: '>=12'}
  407. cpu: [arm64]
  408. os: [win32]
  409. requiresBuild: true
  410. dev: true
  411. optional: true
  412. /@esbuild/win32-ia32@0.19.11:
  413. resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==}
  414. engines: {node: '>=12'}
  415. cpu: [ia32]
  416. os: [win32]
  417. requiresBuild: true
  418. dev: true
  419. optional: true
  420. /@esbuild/win32-x64@0.19.11:
  421. resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==}
  422. engines: {node: '>=12'}
  423. cpu: [x64]
  424. os: [win32]
  425. requiresBuild: true
  426. dev: true
  427. optional: true
  428. /@jridgewell/gen-mapping@0.3.3:
  429. resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
  430. engines: {node: '>=6.0.0'}
  431. requiresBuild: true
  432. dependencies:
  433. '@jridgewell/set-array': 1.1.2
  434. '@jridgewell/sourcemap-codec': 1.4.15
  435. '@jridgewell/trace-mapping': 0.3.21
  436. dev: false
  437. optional: true
  438. /@jridgewell/resolve-uri@3.1.1:
  439. resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
  440. engines: {node: '>=6.0.0'}
  441. requiresBuild: true
  442. dev: false
  443. optional: true
  444. /@jridgewell/set-array@1.1.2:
  445. resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
  446. engines: {node: '>=6.0.0'}
  447. requiresBuild: true
  448. dev: false
  449. optional: true
  450. /@jridgewell/sourcemap-codec@1.4.15:
  451. resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
  452. /@jridgewell/trace-mapping@0.3.21:
  453. resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==}
  454. requiresBuild: true
  455. dependencies:
  456. '@jridgewell/resolve-uri': 3.1.1
  457. '@jridgewell/sourcemap-codec': 1.4.15
  458. dev: false
  459. optional: true
  460. /@nodelib/fs.scandir@2.1.5:
  461. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  462. engines: {node: '>= 8'}
  463. requiresBuild: true
  464. dependencies:
  465. '@nodelib/fs.stat': 2.0.5
  466. run-parallel: 1.2.0
  467. dev: false
  468. optional: true
  469. /@nodelib/fs.stat@2.0.5:
  470. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  471. engines: {node: '>= 8'}
  472. requiresBuild: true
  473. dev: false
  474. optional: true
  475. /@nodelib/fs.walk@1.2.8:
  476. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  477. engines: {node: '>= 8'}
  478. requiresBuild: true
  479. dependencies:
  480. '@nodelib/fs.scandir': 2.1.5
  481. fastq: 1.16.0
  482. dev: false
  483. optional: true
  484. /@nuxt/kit@3.9.3:
  485. resolution: {integrity: sha512-bHGXpTB6E+YJCC1L9tTwrP7txgLZzyuFes/tgy1ZM4dlfrCsGqLK/K4mddROMdC3D81scnH84u7yQsN0JRgoTg==}
  486. engines: {node: ^14.18.0 || >=16.10.0}
  487. requiresBuild: true
  488. dependencies:
  489. '@nuxt/schema': 3.9.3
  490. c12: 1.6.1
  491. consola: 3.2.3
  492. defu: 6.1.4
  493. globby: 14.0.0
  494. hash-sum: 2.0.0
  495. ignore: 5.3.0
  496. jiti: 1.21.0
  497. knitwork: 1.0.0
  498. mlly: 1.5.0
  499. pathe: 1.1.2
  500. pkg-types: 1.0.3
  501. scule: 1.2.0
  502. semver: 7.5.4
  503. ufo: 1.3.2
  504. unctx: 2.3.1
  505. unimport: 3.7.1
  506. untyped: 1.4.0
  507. transitivePeerDependencies:
  508. - rollup
  509. - supports-color
  510. dev: false
  511. optional: true
  512. /@nuxt/schema@3.9.3:
  513. resolution: {integrity: sha512-pchkGBYdEJ9TAOoC5DKnLuAaFPjzgn2k0OUTr31QwbtHdTR3Q2Ua/oKsS1g9CPU7KRzSE5Vkf7ECE8zVydqF5A==}
  514. engines: {node: ^14.18.0 || >=16.10.0}
  515. requiresBuild: true
  516. dependencies:
  517. '@nuxt/ui-templates': 1.3.1
  518. consola: 3.2.3
  519. defu: 6.1.4
  520. hookable: 5.5.3
  521. pathe: 1.1.2
  522. pkg-types: 1.0.3
  523. scule: 1.2.0
  524. std-env: 3.7.0
  525. ufo: 1.3.2
  526. unimport: 3.7.1
  527. untyped: 1.4.0
  528. transitivePeerDependencies:
  529. - rollup
  530. - supports-color
  531. dev: false
  532. optional: true
  533. /@nuxt/ui-templates@1.3.1:
  534. resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
  535. requiresBuild: true
  536. dev: false
  537. optional: true
  538. /@rollup/pluginutils@5.1.0:
  539. resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
  540. engines: {node: '>=14.0.0'}
  541. requiresBuild: true
  542. peerDependencies:
  543. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  544. peerDependenciesMeta:
  545. rollup:
  546. optional: true
  547. dependencies:
  548. '@types/estree': 1.0.5
  549. estree-walker: 2.0.2
  550. picomatch: 2.3.1
  551. dev: false
  552. optional: true
  553. /@rollup/rollup-android-arm-eabi@4.9.5:
  554. resolution: {integrity: sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==}
  555. cpu: [arm]
  556. os: [android]
  557. requiresBuild: true
  558. dev: true
  559. optional: true
  560. /@rollup/rollup-android-arm64@4.9.5:
  561. resolution: {integrity: sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==}
  562. cpu: [arm64]
  563. os: [android]
  564. requiresBuild: true
  565. dev: true
  566. optional: true
  567. /@rollup/rollup-darwin-arm64@4.9.5:
  568. resolution: {integrity: sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==}
  569. cpu: [arm64]
  570. os: [darwin]
  571. requiresBuild: true
  572. dev: true
  573. optional: true
  574. /@rollup/rollup-darwin-x64@4.9.5:
  575. resolution: {integrity: sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==}
  576. cpu: [x64]
  577. os: [darwin]
  578. requiresBuild: true
  579. dev: true
  580. optional: true
  581. /@rollup/rollup-linux-arm-gnueabihf@4.9.5:
  582. resolution: {integrity: sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==}
  583. cpu: [arm]
  584. os: [linux]
  585. requiresBuild: true
  586. dev: true
  587. optional: true
  588. /@rollup/rollup-linux-arm64-gnu@4.9.5:
  589. resolution: {integrity: sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==}
  590. cpu: [arm64]
  591. os: [linux]
  592. requiresBuild: true
  593. dev: true
  594. optional: true
  595. /@rollup/rollup-linux-arm64-musl@4.9.5:
  596. resolution: {integrity: sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==}
  597. cpu: [arm64]
  598. os: [linux]
  599. requiresBuild: true
  600. dev: true
  601. optional: true
  602. /@rollup/rollup-linux-riscv64-gnu@4.9.5:
  603. resolution: {integrity: sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==}
  604. cpu: [riscv64]
  605. os: [linux]
  606. requiresBuild: true
  607. dev: true
  608. optional: true
  609. /@rollup/rollup-linux-x64-gnu@4.9.5:
  610. resolution: {integrity: sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==}
  611. cpu: [x64]
  612. os: [linux]
  613. requiresBuild: true
  614. dev: true
  615. optional: true
  616. /@rollup/rollup-linux-x64-musl@4.9.5:
  617. resolution: {integrity: sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==}
  618. cpu: [x64]
  619. os: [linux]
  620. requiresBuild: true
  621. dev: true
  622. optional: true
  623. /@rollup/rollup-win32-arm64-msvc@4.9.5:
  624. resolution: {integrity: sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==}
  625. cpu: [arm64]
  626. os: [win32]
  627. requiresBuild: true
  628. dev: true
  629. optional: true
  630. /@rollup/rollup-win32-ia32-msvc@4.9.5:
  631. resolution: {integrity: sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==}
  632. cpu: [ia32]
  633. os: [win32]
  634. requiresBuild: true
  635. dev: true
  636. optional: true
  637. /@rollup/rollup-win32-x64-msvc@4.9.5:
  638. resolution: {integrity: sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==}
  639. cpu: [x64]
  640. os: [win32]
  641. requiresBuild: true
  642. dev: true
  643. optional: true
  644. /@sindresorhus/merge-streams@1.0.0:
  645. resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==}
  646. engines: {node: '>=18'}
  647. requiresBuild: true
  648. dev: false
  649. optional: true
  650. /@types/estree@1.0.5:
  651. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  652. /@types/web-bluetooth@0.0.20:
  653. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  654. dev: false
  655. /@vitejs/plugin-vue@4.6.2(vite@5.0.11)(vue@3.4.14):
  656. resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
  657. engines: {node: ^14.18.0 || >=16.0.0}
  658. peerDependencies:
  659. vite: ^4.0.0 || ^5.0.0
  660. vue: ^3.2.25
  661. dependencies:
  662. vite: 5.0.11(sass@1.70.0)
  663. vue: 3.4.14
  664. dev: true
  665. /@vue/compiler-core@3.4.14:
  666. resolution: {integrity: sha512-ro4Zzl/MPdWs7XwxT7omHRxAjMbDFRZEEjD+2m3NBf8YzAe3HuoSEZosXQo+m1GQ1G3LQ1LdmNh1RKTYe+ssEg==}
  667. dependencies:
  668. '@babel/parser': 7.23.6
  669. '@vue/shared': 3.4.14
  670. entities: 4.5.0
  671. estree-walker: 2.0.2
  672. source-map-js: 1.0.2
  673. /@vue/compiler-dom@3.4.14:
  674. resolution: {integrity: sha512-nOZTY+veWNa0DKAceNWxorAbWm0INHdQq7cejFaWM1WYnoNSJbSEKYtE7Ir6lR/+mo9fttZpPVI9ZFGJ1juUEQ==}
  675. dependencies:
  676. '@vue/compiler-core': 3.4.14
  677. '@vue/shared': 3.4.14
  678. /@vue/compiler-sfc@3.4.14:
  679. resolution: {integrity: sha512-1vHc9Kv1jV+YBZC/RJxQJ9JCxildTI+qrhtDh6tPkR1O8S+olBUekimY0km0ZNn8nG1wjtFAe9XHij+YLR8cRQ==}
  680. dependencies:
  681. '@babel/parser': 7.23.6
  682. '@vue/compiler-core': 3.4.14
  683. '@vue/compiler-dom': 3.4.14
  684. '@vue/compiler-ssr': 3.4.14
  685. '@vue/shared': 3.4.14
  686. estree-walker: 2.0.2
  687. magic-string: 0.30.5
  688. postcss: 8.4.33
  689. source-map-js: 1.0.2
  690. /@vue/compiler-ssr@3.4.14:
  691. resolution: {integrity: sha512-bXT6+oAGlFjTYVOTtFJ4l4Jab1wjsC0cfSfOe2B4Z0N2vD2zOBSQ9w694RsCfhjk+bC2DY5Gubb1rHZVii107Q==}
  692. dependencies:
  693. '@vue/compiler-dom': 3.4.14
  694. '@vue/shared': 3.4.14
  695. /@vue/reactivity@3.4.14:
  696. resolution: {integrity: sha512-xRYwze5Q4tK7tT2J4uy4XLhK/AIXdU5EBUu9PLnIHcOKXO0uyXpNNMzlQKuq7B+zwtq6K2wuUL39pHA6ZQzObw==}
  697. dependencies:
  698. '@vue/shared': 3.4.14
  699. /@vue/runtime-core@3.4.14:
  700. resolution: {integrity: sha512-qu+NMkfujCoZL6cfqK5NOfxgXJROSlP2ZPs4CTcVR+mLrwl4TtycF5Tgo0QupkdBL+2kigc6EsJlTcuuZC1NaQ==}
  701. dependencies:
  702. '@vue/reactivity': 3.4.14
  703. '@vue/shared': 3.4.14
  704. /@vue/runtime-dom@3.4.14:
  705. resolution: {integrity: sha512-B85XmcR4E7XsirEHVqhmy4HPbRT9WLFWV9Uhie3OapV9m1MEN9+Er6hmUIE6d8/l2sUygpK9RstFM2bmHEUigA==}
  706. dependencies:
  707. '@vue/runtime-core': 3.4.14
  708. '@vue/shared': 3.4.14
  709. csstype: 3.1.3
  710. /@vue/server-renderer@3.4.14(vue@3.4.14):
  711. resolution: {integrity: sha512-pwSKXQfYdJBTpvWHGEYI+akDE18TXAiLcGn+Q/2Fj8wQSHWztoo7PSvfMNqu6NDhp309QXXbPFEGCU5p85HqkA==}
  712. peerDependencies:
  713. vue: 3.4.14
  714. dependencies:
  715. '@vue/compiler-ssr': 3.4.14
  716. '@vue/shared': 3.4.14
  717. vue: 3.4.14
  718. /@vue/shared@3.4.14:
  719. resolution: {integrity: sha512-nmi3BtLpvqXAWoRZ6HQ+pFJOHBU4UnH3vD3opgmwXac7vhaHKA9nj1VeGjMggdB9eLtW83eHyPCmOU1qzdsC7Q==}
  720. /@vueuse/core@10.7.2(vue@3.4.14):
  721. resolution: {integrity: sha512-AOyAL2rK0By62Hm+iqQn6Rbu8bfmbgaIMXcE3TSr7BdQ42wnSFlwIdPjInO62onYsEMK/yDMU8C6oGfDAtZ2qQ==}
  722. dependencies:
  723. '@types/web-bluetooth': 0.0.20
  724. '@vueuse/metadata': 10.7.2
  725. '@vueuse/shared': 10.7.2(vue@3.4.14)
  726. vue-demi: 0.14.6(vue@3.4.14)
  727. transitivePeerDependencies:
  728. - '@vue/composition-api'
  729. - vue
  730. dev: false
  731. /@vueuse/metadata@10.7.2:
  732. resolution: {integrity: sha512-kCWPb4J2KGrwLtn1eJwaJD742u1k5h6v/St5wFe8Quih90+k2a0JP8BS4Zp34XUuJqS2AxFYMb1wjUL8HfhWsQ==}
  733. dev: false
  734. /@vueuse/motion@2.0.0(vue@3.4.14):
  735. resolution: {integrity: sha512-V3TAlbt1OPmb9DZFoFCz9WC3Oue54t9VHlavSWm+VU1JNimYcd+pc6aGR/hgaHUAU9tOPRHoDTleSrv2zrdIsw==}
  736. peerDependencies:
  737. vue: '>=3.0.0'
  738. dependencies:
  739. '@vueuse/core': 10.7.2(vue@3.4.14)
  740. '@vueuse/shared': 10.7.2(vue@3.4.14)
  741. csstype: 3.1.3
  742. framesync: 6.1.2
  743. popmotion: 11.0.5
  744. style-value-types: 5.1.2
  745. vue: 3.4.14
  746. optionalDependencies:
  747. '@nuxt/kit': 3.9.3
  748. transitivePeerDependencies:
  749. - '@vue/composition-api'
  750. - rollup
  751. - supports-color
  752. dev: false
  753. /@vueuse/shared@10.7.2(vue@3.4.14):
  754. resolution: {integrity: sha512-qFbXoxS44pi2FkgFjPvF4h7c9oMDutpyBdcJdMYIMg9XyXli2meFMuaKn+UMgsClo//Th6+beeCgqweT/79BVA==}
  755. dependencies:
  756. vue-demi: 0.14.6(vue@3.4.14)
  757. transitivePeerDependencies:
  758. - '@vue/composition-api'
  759. - vue
  760. dev: false
  761. /acorn@8.11.3:
  762. resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
  763. engines: {node: '>=0.4.0'}
  764. hasBin: true
  765. requiresBuild: true
  766. dev: false
  767. optional: true
  768. /ansi-styles@3.2.1:
  769. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  770. engines: {node: '>=4'}
  771. requiresBuild: true
  772. dependencies:
  773. color-convert: 1.9.3
  774. dev: false
  775. optional: true
  776. /anymatch@3.1.3:
  777. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  778. engines: {node: '>= 8'}
  779. dependencies:
  780. normalize-path: 3.0.0
  781. picomatch: 2.3.1
  782. /binary-extensions@2.2.0:
  783. resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
  784. engines: {node: '>=8'}
  785. /braces@3.0.2:
  786. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
  787. engines: {node: '>=8'}
  788. dependencies:
  789. fill-range: 7.0.1
  790. /browserslist@4.22.2:
  791. resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
  792. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  793. hasBin: true
  794. requiresBuild: true
  795. dependencies:
  796. caniuse-lite: 1.0.30001579
  797. electron-to-chromium: 1.4.637
  798. node-releases: 2.0.14
  799. update-browserslist-db: 1.0.13(browserslist@4.22.2)
  800. dev: false
  801. optional: true
  802. /c12@1.6.1:
  803. resolution: {integrity: sha512-fAZOi3INDvIbmjuwAVVggusyRTxwNdTAnwLay8IsXwhFzDwPPGzFxzrx6L55CPFGPulUSZI0eyFUvRDXveoE3g==}
  804. requiresBuild: true
  805. dependencies:
  806. chokidar: 3.5.3
  807. defu: 6.1.4
  808. dotenv: 16.3.1
  809. giget: 1.2.1
  810. jiti: 1.21.0
  811. mlly: 1.5.0
  812. ohash: 1.1.3
  813. pathe: 1.1.2
  814. perfect-debounce: 1.0.0
  815. pkg-types: 1.0.3
  816. rc9: 2.1.1
  817. dev: false
  818. optional: true
  819. /caniuse-lite@1.0.30001579:
  820. resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==}
  821. requiresBuild: true
  822. dev: false
  823. optional: true
  824. /chalk@2.4.2:
  825. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  826. engines: {node: '>=4'}
  827. requiresBuild: true
  828. dependencies:
  829. ansi-styles: 3.2.1
  830. escape-string-regexp: 1.0.5
  831. supports-color: 5.5.0
  832. dev: false
  833. optional: true
  834. /chokidar@3.5.3:
  835. resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
  836. engines: {node: '>= 8.10.0'}
  837. dependencies:
  838. anymatch: 3.1.3
  839. braces: 3.0.2
  840. glob-parent: 5.1.2
  841. is-binary-path: 2.1.0
  842. is-glob: 4.0.3
  843. normalize-path: 3.0.0
  844. readdirp: 3.6.0
  845. optionalDependencies:
  846. fsevents: 2.3.3
  847. /chownr@2.0.0:
  848. resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
  849. engines: {node: '>=10'}
  850. requiresBuild: true
  851. dev: false
  852. optional: true
  853. /citty@0.1.5:
  854. resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==}
  855. requiresBuild: true
  856. dependencies:
  857. consola: 3.2.3
  858. dev: false
  859. optional: true
  860. /color-convert@1.9.3:
  861. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  862. requiresBuild: true
  863. dependencies:
  864. color-name: 1.1.3
  865. dev: false
  866. optional: true
  867. /color-name@1.1.3:
  868. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  869. requiresBuild: true
  870. dev: false
  871. optional: true
  872. /consola@3.2.3:
  873. resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
  874. engines: {node: ^14.18.0 || >=16.10.0}
  875. requiresBuild: true
  876. dev: false
  877. optional: true
  878. /convert-source-map@2.0.0:
  879. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  880. requiresBuild: true
  881. dev: false
  882. optional: true
  883. /cross-spawn@7.0.3:
  884. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  885. engines: {node: '>= 8'}
  886. requiresBuild: true
  887. dependencies:
  888. path-key: 3.1.1
  889. shebang-command: 2.0.0
  890. which: 2.0.2
  891. dev: false
  892. optional: true
  893. /csstype@3.1.3:
  894. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  895. /debug@4.3.4:
  896. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  897. engines: {node: '>=6.0'}
  898. requiresBuild: true
  899. peerDependencies:
  900. supports-color: '*'
  901. peerDependenciesMeta:
  902. supports-color:
  903. optional: true
  904. dependencies:
  905. ms: 2.1.2
  906. dev: false
  907. optional: true
  908. /defu@6.1.4:
  909. resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
  910. requiresBuild: true
  911. dev: false
  912. optional: true
  913. /destr@2.0.2:
  914. resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
  915. requiresBuild: true
  916. dev: false
  917. optional: true
  918. /dotenv@16.3.1:
  919. resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
  920. engines: {node: '>=12'}
  921. requiresBuild: true
  922. dev: false
  923. optional: true
  924. /electron-to-chromium@1.4.637:
  925. resolution: {integrity: sha512-G7j3UCOukFtxVO1vWrPQUoDk3kL70mtvjc/DC/k2o7lE0wAdq+Vwp1ipagOow+BH0uVztFysLWbkM/RTIrbK3w==}
  926. requiresBuild: true
  927. dev: false
  928. optional: true
  929. /entities@4.5.0:
  930. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  931. engines: {node: '>=0.12'}
  932. /esbuild@0.19.11:
  933. resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==}
  934. engines: {node: '>=12'}
  935. hasBin: true
  936. requiresBuild: true
  937. optionalDependencies:
  938. '@esbuild/aix-ppc64': 0.19.11
  939. '@esbuild/android-arm': 0.19.11
  940. '@esbuild/android-arm64': 0.19.11
  941. '@esbuild/android-x64': 0.19.11
  942. '@esbuild/darwin-arm64': 0.19.11
  943. '@esbuild/darwin-x64': 0.19.11
  944. '@esbuild/freebsd-arm64': 0.19.11
  945. '@esbuild/freebsd-x64': 0.19.11
  946. '@esbuild/linux-arm': 0.19.11
  947. '@esbuild/linux-arm64': 0.19.11
  948. '@esbuild/linux-ia32': 0.19.11
  949. '@esbuild/linux-loong64': 0.19.11
  950. '@esbuild/linux-mips64el': 0.19.11
  951. '@esbuild/linux-ppc64': 0.19.11
  952. '@esbuild/linux-riscv64': 0.19.11
  953. '@esbuild/linux-s390x': 0.19.11
  954. '@esbuild/linux-x64': 0.19.11
  955. '@esbuild/netbsd-x64': 0.19.11
  956. '@esbuild/openbsd-x64': 0.19.11
  957. '@esbuild/sunos-x64': 0.19.11
  958. '@esbuild/win32-arm64': 0.19.11
  959. '@esbuild/win32-ia32': 0.19.11
  960. '@esbuild/win32-x64': 0.19.11
  961. dev: true
  962. /escalade@3.1.1:
  963. resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
  964. engines: {node: '>=6'}
  965. requiresBuild: true
  966. dev: false
  967. optional: true
  968. /escape-string-regexp@1.0.5:
  969. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  970. engines: {node: '>=0.8.0'}
  971. requiresBuild: true
  972. dev: false
  973. optional: true
  974. /escape-string-regexp@5.0.0:
  975. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  976. engines: {node: '>=12'}
  977. requiresBuild: true
  978. dev: false
  979. optional: true
  980. /estree-walker@2.0.2:
  981. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  982. /estree-walker@3.0.3:
  983. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  984. requiresBuild: true
  985. dependencies:
  986. '@types/estree': 1.0.5
  987. dev: false
  988. optional: true
  989. /execa@8.0.1:
  990. resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
  991. engines: {node: '>=16.17'}
  992. requiresBuild: true
  993. dependencies:
  994. cross-spawn: 7.0.3
  995. get-stream: 8.0.1
  996. human-signals: 5.0.0
  997. is-stream: 3.0.0
  998. merge-stream: 2.0.0
  999. npm-run-path: 5.2.0
  1000. onetime: 6.0.0
  1001. signal-exit: 4.1.0
  1002. strip-final-newline: 3.0.0
  1003. dev: false
  1004. optional: true
  1005. /fast-glob@3.3.2:
  1006. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  1007. engines: {node: '>=8.6.0'}
  1008. requiresBuild: true
  1009. dependencies:
  1010. '@nodelib/fs.stat': 2.0.5
  1011. '@nodelib/fs.walk': 1.2.8
  1012. glob-parent: 5.1.2
  1013. merge2: 1.4.1
  1014. micromatch: 4.0.5
  1015. dev: false
  1016. optional: true
  1017. /fastq@1.16.0:
  1018. resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
  1019. requiresBuild: true
  1020. dependencies:
  1021. reusify: 1.0.4
  1022. dev: false
  1023. optional: true
  1024. /fill-range@7.0.1:
  1025. resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
  1026. engines: {node: '>=8'}
  1027. dependencies:
  1028. to-regex-range: 5.0.1
  1029. /flat@5.0.2:
  1030. resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
  1031. hasBin: true
  1032. requiresBuild: true
  1033. dev: false
  1034. optional: true
  1035. /framesync@6.1.2:
  1036. resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
  1037. dependencies:
  1038. tslib: 2.4.0
  1039. dev: false
  1040. /fs-minipass@2.1.0:
  1041. resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
  1042. engines: {node: '>= 8'}
  1043. requiresBuild: true
  1044. dependencies:
  1045. minipass: 3.3.6
  1046. dev: false
  1047. optional: true
  1048. /fsevents@2.3.3:
  1049. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1050. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1051. os: [darwin]
  1052. requiresBuild: true
  1053. optional: true
  1054. /fullpage.js@4.0.20:
  1055. resolution: {integrity: sha512-y72V3oV/pFccPYaxnUosEltQP9tXH340x479oQSS9Yab0L0YpIPNE0PFA68l6XEq5Lhw7IRqyCgVwL+WdjtQdA==}
  1056. dev: false
  1057. /gensync@1.0.0-beta.2:
  1058. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1059. engines: {node: '>=6.9.0'}
  1060. requiresBuild: true
  1061. dev: false
  1062. optional: true
  1063. /get-stream@8.0.1:
  1064. resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
  1065. engines: {node: '>=16'}
  1066. requiresBuild: true
  1067. dev: false
  1068. optional: true
  1069. /giget@1.2.1:
  1070. resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
  1071. hasBin: true
  1072. requiresBuild: true
  1073. dependencies:
  1074. citty: 0.1.5
  1075. consola: 3.2.3
  1076. defu: 6.1.4
  1077. node-fetch-native: 1.6.1
  1078. nypm: 0.3.4
  1079. ohash: 1.1.3
  1080. pathe: 1.1.2
  1081. tar: 6.2.0
  1082. dev: false
  1083. optional: true
  1084. /glob-parent@5.1.2:
  1085. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  1086. engines: {node: '>= 6'}
  1087. dependencies:
  1088. is-glob: 4.0.3
  1089. /globals@11.12.0:
  1090. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1091. engines: {node: '>=4'}
  1092. requiresBuild: true
  1093. dev: false
  1094. optional: true
  1095. /globby@14.0.0:
  1096. resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==}
  1097. engines: {node: '>=18'}
  1098. requiresBuild: true
  1099. dependencies:
  1100. '@sindresorhus/merge-streams': 1.0.0
  1101. fast-glob: 3.3.2
  1102. ignore: 5.3.0
  1103. path-type: 5.0.0
  1104. slash: 5.1.0
  1105. unicorn-magic: 0.1.0
  1106. dev: false
  1107. optional: true
  1108. /has-flag@3.0.0:
  1109. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  1110. engines: {node: '>=4'}
  1111. requiresBuild: true
  1112. dev: false
  1113. optional: true
  1114. /hash-sum@2.0.0:
  1115. resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
  1116. requiresBuild: true
  1117. dev: false
  1118. optional: true
  1119. /hey-listen@1.0.8:
  1120. resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
  1121. dev: false
  1122. /hookable@5.5.3:
  1123. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  1124. requiresBuild: true
  1125. dev: false
  1126. optional: true
  1127. /human-signals@5.0.0:
  1128. resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
  1129. engines: {node: '>=16.17.0'}
  1130. requiresBuild: true
  1131. dev: false
  1132. optional: true
  1133. /ignore@5.3.0:
  1134. resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
  1135. engines: {node: '>= 4'}
  1136. requiresBuild: true
  1137. dev: false
  1138. optional: true
  1139. /immutable@4.3.4:
  1140. resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
  1141. /is-binary-path@2.1.0:
  1142. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  1143. engines: {node: '>=8'}
  1144. dependencies:
  1145. binary-extensions: 2.2.0
  1146. /is-extglob@2.1.1:
  1147. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  1148. engines: {node: '>=0.10.0'}
  1149. /is-glob@4.0.3:
  1150. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  1151. engines: {node: '>=0.10.0'}
  1152. dependencies:
  1153. is-extglob: 2.1.1
  1154. /is-number@7.0.0:
  1155. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  1156. engines: {node: '>=0.12.0'}
  1157. /is-stream@3.0.0:
  1158. resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
  1159. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  1160. requiresBuild: true
  1161. dev: false
  1162. optional: true
  1163. /isexe@2.0.0:
  1164. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1165. requiresBuild: true
  1166. dev: false
  1167. optional: true
  1168. /jiti@1.21.0:
  1169. resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
  1170. hasBin: true
  1171. requiresBuild: true
  1172. dev: false
  1173. optional: true
  1174. /js-tokens@4.0.0:
  1175. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  1176. requiresBuild: true
  1177. dev: false
  1178. optional: true
  1179. /jsesc@2.5.2:
  1180. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  1181. engines: {node: '>=4'}
  1182. hasBin: true
  1183. requiresBuild: true
  1184. dev: false
  1185. optional: true
  1186. /json5@2.2.3:
  1187. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1188. engines: {node: '>=6'}
  1189. hasBin: true
  1190. requiresBuild: true
  1191. dev: false
  1192. optional: true
  1193. /jsonc-parser@3.2.0:
  1194. resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
  1195. requiresBuild: true
  1196. dev: false
  1197. optional: true
  1198. /knitwork@1.0.0:
  1199. resolution: {integrity: sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==}
  1200. requiresBuild: true
  1201. dev: false
  1202. optional: true
  1203. /local-pkg@0.5.0:
  1204. resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
  1205. engines: {node: '>=14'}
  1206. requiresBuild: true
  1207. dependencies:
  1208. mlly: 1.5.0
  1209. pkg-types: 1.0.3
  1210. dev: false
  1211. optional: true
  1212. /lru-cache@5.1.1:
  1213. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  1214. requiresBuild: true
  1215. dependencies:
  1216. yallist: 3.1.1
  1217. dev: false
  1218. optional: true
  1219. /lru-cache@6.0.0:
  1220. resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  1221. engines: {node: '>=10'}
  1222. requiresBuild: true
  1223. dependencies:
  1224. yallist: 4.0.0
  1225. dev: false
  1226. optional: true
  1227. /magic-string@0.30.5:
  1228. resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
  1229. engines: {node: '>=12'}
  1230. dependencies:
  1231. '@jridgewell/sourcemap-codec': 1.4.15
  1232. /merge-stream@2.0.0:
  1233. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1234. requiresBuild: true
  1235. dev: false
  1236. optional: true
  1237. /merge2@1.4.1:
  1238. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  1239. engines: {node: '>= 8'}
  1240. requiresBuild: true
  1241. dev: false
  1242. optional: true
  1243. /micromatch@4.0.5:
  1244. resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
  1245. engines: {node: '>=8.6'}
  1246. requiresBuild: true
  1247. dependencies:
  1248. braces: 3.0.2
  1249. picomatch: 2.3.1
  1250. dev: false
  1251. optional: true
  1252. /mimic-fn@4.0.0:
  1253. resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
  1254. engines: {node: '>=12'}
  1255. requiresBuild: true
  1256. dev: false
  1257. optional: true
  1258. /minipass@3.3.6:
  1259. resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
  1260. engines: {node: '>=8'}
  1261. requiresBuild: true
  1262. dependencies:
  1263. yallist: 4.0.0
  1264. dev: false
  1265. optional: true
  1266. /minipass@5.0.0:
  1267. resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
  1268. engines: {node: '>=8'}
  1269. requiresBuild: true
  1270. dev: false
  1271. optional: true
  1272. /minizlib@2.1.2:
  1273. resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
  1274. engines: {node: '>= 8'}
  1275. requiresBuild: true
  1276. dependencies:
  1277. minipass: 3.3.6
  1278. yallist: 4.0.0
  1279. dev: false
  1280. optional: true
  1281. /mitt@3.0.1:
  1282. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  1283. dev: false
  1284. /mkdirp@1.0.4:
  1285. resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
  1286. engines: {node: '>=10'}
  1287. hasBin: true
  1288. requiresBuild: true
  1289. dev: false
  1290. optional: true
  1291. /mlly@1.5.0:
  1292. resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==}
  1293. requiresBuild: true
  1294. dependencies:
  1295. acorn: 8.11.3
  1296. pathe: 1.1.2
  1297. pkg-types: 1.0.3
  1298. ufo: 1.3.2
  1299. dev: false
  1300. optional: true
  1301. /mri@1.2.0:
  1302. resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
  1303. engines: {node: '>=4'}
  1304. requiresBuild: true
  1305. dev: false
  1306. optional: true
  1307. /ms@2.1.2:
  1308. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  1309. requiresBuild: true
  1310. dev: false
  1311. optional: true
  1312. /nanoid@3.3.7:
  1313. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  1314. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1315. hasBin: true
  1316. /node-fetch-native@1.6.1:
  1317. resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
  1318. requiresBuild: true
  1319. dev: false
  1320. optional: true
  1321. /node-releases@2.0.14:
  1322. resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
  1323. requiresBuild: true
  1324. dev: false
  1325. optional: true
  1326. /normalize-path@3.0.0:
  1327. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1328. engines: {node: '>=0.10.0'}
  1329. /npm-run-path@5.2.0:
  1330. resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
  1331. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  1332. requiresBuild: true
  1333. dependencies:
  1334. path-key: 4.0.0
  1335. dev: false
  1336. optional: true
  1337. /nypm@0.3.4:
  1338. resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==}
  1339. engines: {node: ^14.16.0 || >=16.10.0}
  1340. hasBin: true
  1341. requiresBuild: true
  1342. dependencies:
  1343. citty: 0.1.5
  1344. execa: 8.0.1
  1345. pathe: 1.1.2
  1346. ufo: 1.3.2
  1347. dev: false
  1348. optional: true
  1349. /ohash@1.1.3:
  1350. resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
  1351. requiresBuild: true
  1352. dev: false
  1353. optional: true
  1354. /onetime@6.0.0:
  1355. resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
  1356. engines: {node: '>=12'}
  1357. requiresBuild: true
  1358. dependencies:
  1359. mimic-fn: 4.0.0
  1360. dev: false
  1361. optional: true
  1362. /path-key@3.1.1:
  1363. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1364. engines: {node: '>=8'}
  1365. requiresBuild: true
  1366. dev: false
  1367. optional: true
  1368. /path-key@4.0.0:
  1369. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  1370. engines: {node: '>=12'}
  1371. requiresBuild: true
  1372. dev: false
  1373. optional: true
  1374. /path-type@5.0.0:
  1375. resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
  1376. engines: {node: '>=12'}
  1377. requiresBuild: true
  1378. dev: false
  1379. optional: true
  1380. /pathe@1.1.2:
  1381. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  1382. requiresBuild: true
  1383. dev: false
  1384. optional: true
  1385. /perfect-debounce@1.0.0:
  1386. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1387. requiresBuild: true
  1388. dev: false
  1389. optional: true
  1390. /picocolors@1.0.0:
  1391. resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
  1392. /picomatch@2.3.1:
  1393. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  1394. engines: {node: '>=8.6'}
  1395. /pkg-types@1.0.3:
  1396. resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
  1397. requiresBuild: true
  1398. dependencies:
  1399. jsonc-parser: 3.2.0
  1400. mlly: 1.5.0
  1401. pathe: 1.1.2
  1402. dev: false
  1403. optional: true
  1404. /popmotion@11.0.5:
  1405. resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==}
  1406. dependencies:
  1407. framesync: 6.1.2
  1408. hey-listen: 1.0.8
  1409. style-value-types: 5.1.2
  1410. tslib: 2.4.0
  1411. dev: false
  1412. /postcss@8.4.33:
  1413. resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
  1414. engines: {node: ^10 || ^12 || >=14}
  1415. dependencies:
  1416. nanoid: 3.3.7
  1417. picocolors: 1.0.0
  1418. source-map-js: 1.0.2
  1419. /queue-microtask@1.2.3:
  1420. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1421. requiresBuild: true
  1422. dev: false
  1423. optional: true
  1424. /rc9@2.1.1:
  1425. resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
  1426. requiresBuild: true
  1427. dependencies:
  1428. defu: 6.1.4
  1429. destr: 2.0.2
  1430. flat: 5.0.2
  1431. dev: false
  1432. optional: true
  1433. /readdirp@3.6.0:
  1434. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1435. engines: {node: '>=8.10.0'}
  1436. dependencies:
  1437. picomatch: 2.3.1
  1438. /reusify@1.0.4:
  1439. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1440. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1441. requiresBuild: true
  1442. dev: false
  1443. optional: true
  1444. /rollup@4.9.5:
  1445. resolution: {integrity: sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==}
  1446. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1447. hasBin: true
  1448. dependencies:
  1449. '@types/estree': 1.0.5
  1450. optionalDependencies:
  1451. '@rollup/rollup-android-arm-eabi': 4.9.5
  1452. '@rollup/rollup-android-arm64': 4.9.5
  1453. '@rollup/rollup-darwin-arm64': 4.9.5
  1454. '@rollup/rollup-darwin-x64': 4.9.5
  1455. '@rollup/rollup-linux-arm-gnueabihf': 4.9.5
  1456. '@rollup/rollup-linux-arm64-gnu': 4.9.5
  1457. '@rollup/rollup-linux-arm64-musl': 4.9.5
  1458. '@rollup/rollup-linux-riscv64-gnu': 4.9.5
  1459. '@rollup/rollup-linux-x64-gnu': 4.9.5
  1460. '@rollup/rollup-linux-x64-musl': 4.9.5
  1461. '@rollup/rollup-win32-arm64-msvc': 4.9.5
  1462. '@rollup/rollup-win32-ia32-msvc': 4.9.5
  1463. '@rollup/rollup-win32-x64-msvc': 4.9.5
  1464. fsevents: 2.3.3
  1465. dev: true
  1466. /run-parallel@1.2.0:
  1467. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1468. requiresBuild: true
  1469. dependencies:
  1470. queue-microtask: 1.2.3
  1471. dev: false
  1472. optional: true
  1473. /sass@1.70.0:
  1474. resolution: {integrity: sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==}
  1475. engines: {node: '>=14.0.0'}
  1476. hasBin: true
  1477. dependencies:
  1478. chokidar: 3.5.3
  1479. immutable: 4.3.4
  1480. source-map-js: 1.0.2
  1481. /scule@1.2.0:
  1482. resolution: {integrity: sha512-CRCmi5zHQnSoeCik9565PONMg0kfkvYmcSqrbOJY4txFfy1wvVULV4FDaiXhUblUgahdqz3F2NwHZ8i4eBTwUw==}
  1483. requiresBuild: true
  1484. dev: false
  1485. optional: true
  1486. /semver@6.3.1:
  1487. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1488. hasBin: true
  1489. requiresBuild: true
  1490. dev: false
  1491. optional: true
  1492. /semver@7.5.4:
  1493. resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
  1494. engines: {node: '>=10'}
  1495. hasBin: true
  1496. requiresBuild: true
  1497. dependencies:
  1498. lru-cache: 6.0.0
  1499. dev: false
  1500. optional: true
  1501. /shebang-command@2.0.0:
  1502. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1503. engines: {node: '>=8'}
  1504. requiresBuild: true
  1505. dependencies:
  1506. shebang-regex: 3.0.0
  1507. dev: false
  1508. optional: true
  1509. /shebang-regex@3.0.0:
  1510. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1511. engines: {node: '>=8'}
  1512. requiresBuild: true
  1513. dev: false
  1514. optional: true
  1515. /signal-exit@4.1.0:
  1516. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1517. engines: {node: '>=14'}
  1518. requiresBuild: true
  1519. dev: false
  1520. optional: true
  1521. /slash@5.1.0:
  1522. resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
  1523. engines: {node: '>=14.16'}
  1524. requiresBuild: true
  1525. dev: false
  1526. optional: true
  1527. /source-map-js@1.0.2:
  1528. resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
  1529. engines: {node: '>=0.10.0'}
  1530. /std-env@3.7.0:
  1531. resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
  1532. requiresBuild: true
  1533. dev: false
  1534. optional: true
  1535. /strip-final-newline@3.0.0:
  1536. resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
  1537. engines: {node: '>=12'}
  1538. requiresBuild: true
  1539. dev: false
  1540. optional: true
  1541. /strip-literal@1.3.0:
  1542. resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
  1543. requiresBuild: true
  1544. dependencies:
  1545. acorn: 8.11.3
  1546. dev: false
  1547. optional: true
  1548. /style-value-types@5.1.2:
  1549. resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==}
  1550. dependencies:
  1551. hey-listen: 1.0.8
  1552. tslib: 2.4.0
  1553. dev: false
  1554. /supports-color@5.5.0:
  1555. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  1556. engines: {node: '>=4'}
  1557. requiresBuild: true
  1558. dependencies:
  1559. has-flag: 3.0.0
  1560. dev: false
  1561. optional: true
  1562. /tar@6.2.0:
  1563. resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
  1564. engines: {node: '>=10'}
  1565. requiresBuild: true
  1566. dependencies:
  1567. chownr: 2.0.0
  1568. fs-minipass: 2.1.0
  1569. minipass: 5.0.0
  1570. minizlib: 2.1.2
  1571. mkdirp: 1.0.4
  1572. yallist: 4.0.0
  1573. dev: false
  1574. optional: true
  1575. /to-fast-properties@2.0.0:
  1576. resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
  1577. engines: {node: '>=4'}
  1578. /to-regex-range@5.0.1:
  1579. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1580. engines: {node: '>=8.0'}
  1581. dependencies:
  1582. is-number: 7.0.0
  1583. /tslib@2.4.0:
  1584. resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
  1585. dev: false
  1586. /ufo@1.3.2:
  1587. resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
  1588. requiresBuild: true
  1589. dev: false
  1590. optional: true
  1591. /unctx@2.3.1:
  1592. resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==}
  1593. requiresBuild: true
  1594. dependencies:
  1595. acorn: 8.11.3
  1596. estree-walker: 3.0.3
  1597. magic-string: 0.30.5
  1598. unplugin: 1.6.0
  1599. dev: false
  1600. optional: true
  1601. /unicorn-magic@0.1.0:
  1602. resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
  1603. engines: {node: '>=18'}
  1604. requiresBuild: true
  1605. dev: false
  1606. optional: true
  1607. /unimport@3.7.1:
  1608. resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
  1609. requiresBuild: true
  1610. dependencies:
  1611. '@rollup/pluginutils': 5.1.0
  1612. acorn: 8.11.3
  1613. escape-string-regexp: 5.0.0
  1614. estree-walker: 3.0.3
  1615. fast-glob: 3.3.2
  1616. local-pkg: 0.5.0
  1617. magic-string: 0.30.5
  1618. mlly: 1.5.0
  1619. pathe: 1.1.2
  1620. pkg-types: 1.0.3
  1621. scule: 1.2.0
  1622. strip-literal: 1.3.0
  1623. unplugin: 1.6.0
  1624. transitivePeerDependencies:
  1625. - rollup
  1626. dev: false
  1627. optional: true
  1628. /unplugin@1.6.0:
  1629. resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==}
  1630. requiresBuild: true
  1631. dependencies:
  1632. acorn: 8.11.3
  1633. chokidar: 3.5.3
  1634. webpack-sources: 3.2.3
  1635. webpack-virtual-modules: 0.6.1
  1636. dev: false
  1637. optional: true
  1638. /untyped@1.4.0:
  1639. resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==}
  1640. hasBin: true
  1641. requiresBuild: true
  1642. dependencies:
  1643. '@babel/core': 7.23.7
  1644. '@babel/standalone': 7.23.8
  1645. '@babel/types': 7.23.6
  1646. defu: 6.1.4
  1647. jiti: 1.21.0
  1648. mri: 1.2.0
  1649. scule: 1.2.0
  1650. transitivePeerDependencies:
  1651. - supports-color
  1652. dev: false
  1653. optional: true
  1654. /update-browserslist-db@1.0.13(browserslist@4.22.2):
  1655. resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
  1656. hasBin: true
  1657. requiresBuild: true
  1658. peerDependencies:
  1659. browserslist: '>= 4.21.0'
  1660. dependencies:
  1661. browserslist: 4.22.2
  1662. escalade: 3.1.1
  1663. picocolors: 1.0.0
  1664. dev: false
  1665. optional: true
  1666. /vite@5.0.11(sass@1.70.0):
  1667. resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==}
  1668. engines: {node: ^18.0.0 || >=20.0.0}
  1669. hasBin: true
  1670. peerDependencies:
  1671. '@types/node': ^18.0.0 || >=20.0.0
  1672. less: '*'
  1673. lightningcss: ^1.21.0
  1674. sass: '*'
  1675. stylus: '*'
  1676. sugarss: '*'
  1677. terser: ^5.4.0
  1678. peerDependenciesMeta:
  1679. '@types/node':
  1680. optional: true
  1681. less:
  1682. optional: true
  1683. lightningcss:
  1684. optional: true
  1685. sass:
  1686. optional: true
  1687. stylus:
  1688. optional: true
  1689. sugarss:
  1690. optional: true
  1691. terser:
  1692. optional: true
  1693. dependencies:
  1694. esbuild: 0.19.11
  1695. postcss: 8.4.33
  1696. rollup: 4.9.5
  1697. sass: 1.70.0
  1698. optionalDependencies:
  1699. fsevents: 2.3.3
  1700. dev: true
  1701. /vue-demi@0.14.6(vue@3.4.14):
  1702. resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
  1703. engines: {node: '>=12'}
  1704. hasBin: true
  1705. requiresBuild: true
  1706. peerDependencies:
  1707. '@vue/composition-api': ^1.0.0-rc.1
  1708. vue: ^3.0.0-0 || ^2.6.0
  1709. peerDependenciesMeta:
  1710. '@vue/composition-api':
  1711. optional: true
  1712. dependencies:
  1713. vue: 3.4.14
  1714. dev: false
  1715. /vue-fullpage.js@0.2.15(vue@3.4.14):
  1716. resolution: {integrity: sha512-B5+knv8VmbB45dZxhCDkPIeJ2kRDMJpJgZ3IHKfuMkn0KoFW66xZhkaHjpOn0pPbW0zS2ZxcLIuFIMONL7dJaw==}
  1717. peerDependencies:
  1718. vue: ^3.2.26
  1719. dependencies:
  1720. fullpage.js: 4.0.20
  1721. vue: 3.4.14
  1722. dev: false
  1723. /vue@3.4.14:
  1724. resolution: {integrity: sha512-Rop5Al/ZcBbBz+KjPZaZDgHDX0kUP4duEzDbm+1o91uxYUNmJrZSBuegsNIJvUGy+epLevNRNhLjm08VKTgGyw==}
  1725. peerDependencies:
  1726. typescript: '*'
  1727. peerDependenciesMeta:
  1728. typescript:
  1729. optional: true
  1730. dependencies:
  1731. '@vue/compiler-dom': 3.4.14
  1732. '@vue/compiler-sfc': 3.4.14
  1733. '@vue/runtime-dom': 3.4.14
  1734. '@vue/server-renderer': 3.4.14(vue@3.4.14)
  1735. '@vue/shared': 3.4.14
  1736. /webpack-sources@3.2.3:
  1737. resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
  1738. engines: {node: '>=10.13.0'}
  1739. requiresBuild: true
  1740. dev: false
  1741. optional: true
  1742. /webpack-virtual-modules@0.6.1:
  1743. resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
  1744. requiresBuild: true
  1745. dev: false
  1746. optional: true
  1747. /which@2.0.2:
  1748. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1749. engines: {node: '>= 8'}
  1750. hasBin: true
  1751. requiresBuild: true
  1752. dependencies:
  1753. isexe: 2.0.0
  1754. dev: false
  1755. optional: true
  1756. /yallist@3.1.1:
  1757. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1758. requiresBuild: true
  1759. dev: false
  1760. optional: true
  1761. /yallist@4.0.0:
  1762. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  1763. requiresBuild: true
  1764. dev: false
  1765. optional: true