chore(docs): update deps

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-04-20 21:17:23 +02:00
committed by Braks
parent 5e4225d0b6
commit a639777cb7
5 changed files with 239 additions and 190 deletions

View File

@@ -1,13 +1,14 @@
<script lang="ts">
import { isClient } from '@vueuse/core'
import { inBrowser } from 'vitepress'
import { Suspense } from 'vue'
import DocsRepl from './DocsRepl.vue'
const DocsRepl = defineAsyncComponent(() => import('./DocsRepl.vue'))
export default defineComponent({
props: ['example'],
setup(props) {
return () => {
if (!isClient) {
if (!inBrowser) {
return null
}

View File

@@ -11,40 +11,40 @@
"typedocs": "typedoc --options ./typedoc.json"
},
"dependencies": {
"@algolia/client-search": "^4.14.3",
"@algolia/client-search": "^4.17.0",
"@animxyz/core": "^0.6.6",
"@animxyz/vue3": "^0.6.7",
"@stackblitz/sdk": "^1.8.2",
"@vercel/analytics": "^0.1.10",
"@stackblitz/sdk": "^1.9.0",
"@vercel/analytics": "^1.0.0",
"@vue-flow/background": "workspace:*",
"@vue-flow/controls": "workspace:*",
"@vue-flow/core": "workspace:*",
"@vue-flow/minimap": "workspace:*",
"@vue-flow/node-resizer": "workspace:*",
"@vue-flow/node-toolbar": "workspace:*",
"@vue/repl": "1.3.2",
"@vue/repl": "1.4.0",
"blobity": "^0.2.3",
"canvas-confetti": "^1.6.0",
"vue": "^3.2.37",
"web-vitals": "^3.1.1"
"vue": "3.2.47",
"web-vitals": "^3.3.1"
},
"devDependencies": {
"@iconify/json": "^2.1.95",
"@types/canvas-confetti": "^1.6.0",
"@iconify/json": "^2.2.52",
"@tooling/eslint-config": "workspace:*",
"@tooling/tsconfig": "workspace:*",
"@types/canvas-confetti": "^1.6.0",
"@vitejs/plugin-vue": "^4.1.0",
"@windicss/plugin-scrollbar": "^1.2.3",
"dotenv": "^16.0.3",
"ohmyfetch": "^0.4.21",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1",
"typedoc-plugin-merge-modules": "^4.0.1",
"unplugin-auto-import": "^0.14.4",
"unplugin-icons": "^0.14.13",
"unplugin-vue-components": "^0.22.9",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.24.1",
"vite-plugin-windicss": "^1.8.10",
"vite": "^2.9.15",
"vitepress": "1.0.0-alpha.4",
"vitepress": "1.0.0-alpha.73",
"windicss": "^3.5.6"
}
}

View File

@@ -17,7 +17,7 @@ function capitalize(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
function typedocSidebarEntries(): DefaultTheme.SidebarGroup[] {
function typedocSidebarEntries() {
const filePath = resolve(__dirname, '../typedocs')
const docsModules = readdirSync(filePath).filter((name) => statSync(`${filePath}/${name}`).isDirectory())
@@ -34,15 +34,15 @@ function typedocSidebarEntries(): DefaultTheme.SidebarGroup[] {
})
}
return { text: capitalize(module), collapsible: true, items: children } as DefaultTheme.SidebarGroup
return { text: capitalize(module), collapsed: true, items: children } as DefaultTheme.SidebarItem
})
}
function changelogSidebarEntries(): DefaultTheme.SidebarGroup[] {
function changelogSidebarEntries(): DefaultTheme.SidebarItem[] {
return [
{
text: 'CHANGELOG',
collapsible: true,
collapsed: true,
items: files.map((file) => {
const name = file.pkgName.replace('.md', '')
const isCore = name === 'core'
@@ -67,6 +67,9 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
outDir: resolve(__dirname, '../../dist'),
vite: {
ssr: {
noExternal: ['@vue/repl'],
},
optimizeDeps: {
exclude: ['@animxyz/vue3'],
},
@@ -137,7 +140,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
'/guide/': [
{
text: 'Guide',
collapsible: true,
collapsed: true,
items: [
{ text: 'Introduction', link: '/guide/' },
{ text: 'Getting Started', link: '/guide/getting-started' },
@@ -149,7 +152,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
},
{
text: 'Vue Flow',
collapsible: true,
collapsed: true,
items: [
{ text: 'Configuration', link: '/guide/vue-flow/config' },
{ text: 'State', link: '/guide/vue-flow/state' },
@@ -170,7 +173,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
},
{
text: 'Utilities',
collapsible: true,
collapsed: true,
items: [
{ text: 'Graph', link: '/guide/utils/graph' },
{ text: 'Viewport', link: '/guide/utils/instance' },
@@ -179,7 +182,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
},
{
text: 'Components',
collapsible: true,
collapsed: true,
items: [
{ text: 'Background', link: '/guide/components/background' },
{ text: 'MiniMap', link: '/guide/components/minimap' },
@@ -194,7 +197,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
'/examples/': [
{
text: 'General Examples',
collapsible: true,
collapsed: true,
items: [
{ text: 'Basic', link: '/examples/' },
{ text: 'Save & Restore', link: '/examples/save' },
@@ -213,7 +216,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
},
{
text: 'Nodes',
collapsible: true,
collapsed: true,
items: [
{ text: 'Custom Node', link: '/examples/nodes/' },
{ text: 'Update Node', link: '/examples/nodes/update-node' },
@@ -224,7 +227,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
},
{
text: 'Edges',
collapsible: true,
collapsed: true,
items: [
{ text: 'Edges', link: '/examples/edges/' },
{ text: 'Updatable Edge', link: '/examples/edges/updatable-edge' },

View File

@@ -1,5 +1,7 @@
// generated by unplugin-vue-components
// We suggest you to commit this file into source control
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
import '@vue/runtime-core'

363
pnpm-lock.yaml generated
View File

@@ -20,8 +20,8 @@ importers:
docs:
dependencies:
'@algolia/client-search':
specifier: ^4.14.3
version: 4.14.3
specifier: ^4.17.0
version: 4.17.0
'@animxyz/core':
specifier: ^0.6.6
version: 0.6.6
@@ -29,11 +29,11 @@ importers:
specifier: ^0.6.7
version: 0.6.7(vue@3.2.47)
'@stackblitz/sdk':
specifier: ^1.8.2
version: 1.8.2
specifier: ^1.9.0
version: 1.9.0
'@vercel/analytics':
specifier: ^0.1.10
version: 0.1.10(react@18.2.0)
specifier: ^1.0.0
version: 1.0.0(react@18.2.0)
'@vue-flow/background':
specifier: workspace:*
version: link:../packages/background
@@ -53,8 +53,8 @@ importers:
specifier: workspace:*
version: link:../packages/node-toolbar
'@vue/repl':
specifier: 1.3.2
version: 1.3.2(vue@3.2.47)
specifier: 1.4.0
version: 1.4.0(vue@3.2.47)
blobity:
specifier: ^0.2.3
version: 0.2.3(react@18.2.0)(vue@3.2.47)
@@ -62,15 +62,15 @@ importers:
specifier: ^1.6.0
version: 1.6.0
vue:
specifier: ^3.2.37
specifier: 3.2.47
version: 3.2.47
web-vitals:
specifier: ^3.1.1
version: 3.1.1
specifier: ^3.3.1
version: 3.3.1
devDependencies:
'@iconify/json':
specifier: ^2.1.95
version: 2.2.26
specifier: ^2.2.52
version: 2.2.52
'@tooling/eslint-config':
specifier: workspace:*
version: link:../tooling/eslint-config
@@ -80,6 +80,9 @@ importers:
'@types/canvas-confetti':
specifier: ^1.6.0
version: 1.6.0
'@vitejs/plugin-vue':
specifier: ^4.1.0
version: 4.1.0(vite@4.3.0)(vue@3.2.47)
'@windicss/plugin-scrollbar':
specifier: ^1.2.3
version: 1.2.3
@@ -90,32 +93,29 @@ importers:
specifier: ^0.4.21
version: 0.4.21
typedoc:
specifier: ^0.23.25
version: 0.23.25(typescript@4.9.5)
specifier: ^0.24.4
version: 0.24.4(typescript@4.9.5)
typedoc-plugin-markdown:
specifier: ^3.14.0
version: 3.14.0(typedoc@0.23.25)
specifier: ^3.15.1
version: 3.15.1(typedoc@0.24.4)
typedoc-plugin-merge-modules:
specifier: ^4.0.1
version: 4.0.1(typedoc@0.23.25)
version: 4.0.1(typedoc@0.24.4)
unplugin-auto-import:
specifier: ^0.14.4
version: 0.14.4
unplugin-icons:
specifier: ^0.14.13
version: 0.14.15
specifier: ^0.16.1
version: 0.16.1
unplugin-vue-components:
specifier: ^0.22.9
version: 0.22.12(vue@3.2.47)
vite:
specifier: ^2.9.15
version: 2.9.15(sass@1.32.12)
specifier: ^0.24.1
version: 0.24.1(vue@3.2.47)
vite-plugin-windicss:
specifier: ^1.8.10
version: 1.8.10(vite@2.9.15)
version: 1.8.10(vite@4.3.0)
vitepress:
specifier: 1.0.0-alpha.4
version: 1.0.0-alpha.4(@algolia/client-search@4.14.3)(react@18.2.0)
specifier: 1.0.0-alpha.73
version: 1.0.0-alpha.73(@algolia/client-search@4.17.0)(react@18.2.0)
windicss:
specifier: ^3.5.6
version: 3.5.6
@@ -638,14 +638,14 @@ packages:
'@algolia/autocomplete-shared': 1.7.4
dev: true
/@algolia/autocomplete-preset-algolia@1.7.4(@algolia/client-search@4.14.3)(algoliasearch@4.14.3):
/@algolia/autocomplete-preset-algolia@1.7.4(@algolia/client-search@4.17.0)(algoliasearch@4.14.3):
resolution: {integrity: sha512-s37hrvLEIfcmKY8VU9LsAXgm2yfmkdHT3DnA3SgHaY93yjZ2qL57wzb5QweVkYuEBZkT2PIREvRoLXC2sxTbpQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
'@algolia/autocomplete-shared': 1.7.4
'@algolia/client-search': 4.14.3
'@algolia/client-search': 4.17.0
algoliasearch: 4.14.3
dev: true
@@ -661,6 +661,10 @@ packages:
/@algolia/cache-common@4.14.3:
resolution: {integrity: sha512-oZJofOoD9FQOwiGTzyRnmzvh3ZP8WVTNPBLH5xU5JNF7drDbRT0ocVT0h/xB2rPHYzOeXRrLaQQBwRT/CKom0Q==}
dev: true
/@algolia/cache-common@4.17.0:
resolution: {integrity: sha512-g8mXzkrcUBIPZaulAuqE7xyHhLAYAcF2xSch7d9dABheybaU3U91LjBX6eJTEB7XVhEsgK4Smi27vWtAJRhIKQ==}
/@algolia/cache-in-memory@4.14.3:
resolution: {integrity: sha512-ES0hHQnzWjeioLQf5Nq+x1AWdZJ50znNPSH3puB/Y4Xsg4Av1bvLmTJe7SY2uqONaeMTvL0OaVcoVtQgJVw0vg==}
@@ -690,6 +694,13 @@ packages:
dependencies:
'@algolia/requester-common': 4.14.3
'@algolia/transporter': 4.14.3
dev: true
/@algolia/client-common@4.17.0:
resolution: {integrity: sha512-jHMks0ZFicf8nRDn6ma8DNNsdwGgP/NKiAAL9z6rS7CymJ7L0+QqTJl3rYxRW7TmBhsUH40wqzmrG6aMIN/DrQ==}
dependencies:
'@algolia/requester-common': 4.17.0
'@algolia/transporter': 4.17.0
/@algolia/client-personalization@4.14.3:
resolution: {integrity: sha512-UCX1MtkVNgaOL9f0e22x6tC9e2H3unZQlSUdnVaSKpZ+hdSChXGaRjp2UIT7pxmPqNCyv51F597KEX5WT60jNg==}
@@ -705,9 +716,21 @@ packages:
'@algolia/client-common': 4.14.3
'@algolia/requester-common': 4.14.3
'@algolia/transporter': 4.14.3
dev: true
/@algolia/client-search@4.17.0:
resolution: {integrity: sha512-x4P2wKrrRIXszT8gb7eWsMHNNHAJs0wE7/uqbufm4tZenAp+hwU/hq5KVsY50v+PfwM0LcDwwn/1DroujsTFoA==}
dependencies:
'@algolia/client-common': 4.17.0
'@algolia/requester-common': 4.17.0
'@algolia/transporter': 4.17.0
/@algolia/logger-common@4.14.3:
resolution: {integrity: sha512-kUEAZaBt/J3RjYi8MEBT2QEexJR2kAE2mtLmezsmqMQZTV502TkHCxYzTwY2dE7OKcUTxi4OFlMuS4GId9CWPw==}
dev: true
/@algolia/logger-common@4.17.0:
resolution: {integrity: sha512-DGuoZqpTmIKJFDeyAJ7M8E/LOenIjWiOsg1XJ1OqAU/eofp49JfqXxbfgctlVZVmDABIyOz8LqEoJ6ZP4DTyvw==}
/@algolia/logger-console@4.14.3:
resolution: {integrity: sha512-ZWqAlUITktiMN2EiFpQIFCJS10N96A++yrexqC2Z+3hgF/JcKrOxOdT4nSCQoEPvU4Ki9QKbpzbebRDemZt/hw==}
@@ -723,6 +746,10 @@ packages:
/@algolia/requester-common@4.14.3:
resolution: {integrity: sha512-RrRzqNyKFDP7IkTuV3XvYGF9cDPn9h6qEDl595lXva3YUk9YSS8+MGZnnkOMHvjkrSCKfoLeLbm/T4tmoIeclw==}
dev: true
/@algolia/requester-common@4.17.0:
resolution: {integrity: sha512-XJjmWFEUlHu0ijvcHBoixuXfEoiRUdyzQM6YwTuB8usJNIgShua8ouFlRWF8iCeag0vZZiUm4S2WCVBPkdxFgg==}
/@algolia/requester-node-http@4.14.3:
resolution: {integrity: sha512-O5wnPxtDRPuW2U0EaOz9rMMWdlhwP0J0eSL1Z7TtXF8xnUeeUyNJrdhV5uy2CAp6RbhM1VuC3sOJcIR6Av+vbA==}
@@ -736,6 +763,14 @@ packages:
'@algolia/cache-common': 4.14.3
'@algolia/logger-common': 4.14.3
'@algolia/requester-common': 4.14.3
dev: true
/@algolia/transporter@4.17.0:
resolution: {integrity: sha512-6xL6H6fe+Fi0AEP3ziSgC+G04RK37iRb4uUUqVAH9WPYFI8g+LYFq6iv5HS8Cbuc5TTut+Bwj6G+dh/asdb9uA==}
dependencies:
'@algolia/cache-common': 4.17.0
'@algolia/logger-common': 4.17.0
'@algolia/requester-common': 4.17.0
/@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
@@ -900,10 +935,10 @@ packages:
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-module-transforms': 7.21.0
'@babel/helpers': 7.21.0
'@babel/parser': 7.21.1
'@babel/parser': 7.21.4
'@babel/template': 7.20.7
'@babel/traverse': 7.21.0
'@babel/types': 7.21.0
'@babel/types': 7.21.4
convert-source-map: 1.9.0
debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -940,7 +975,7 @@ packages:
resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
@@ -1020,14 +1055,14 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
'@babel/types': 7.21.0
'@babel/types': 7.21.4
dev: true
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
dev: true
/@babel/helper-member-expression-to-functions@7.21.0:
@@ -1041,7 +1076,7 @@ packages:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
dev: true
/@babel/helper-module-transforms@7.21.0:
@@ -1055,7 +1090,7 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
'@babel/traverse': 7.21.0
'@babel/types': 7.21.0
'@babel/types': 7.21.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -1106,7 +1141,7 @@ packages:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
dev: true
/@babel/helper-skip-transparent-expression-wrappers@7.20.0:
@@ -1120,7 +1155,7 @@ packages:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
dev: true
/@babel/helper-string-parser@7.19.4:
@@ -1142,7 +1177,7 @@ packages:
dependencies:
'@babel/template': 7.20.7
'@babel/traverse': 7.21.0
'@babel/types': 7.21.0
'@babel/types': 7.21.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -1156,20 +1191,12 @@ packages:
js-tokens: 4.0.0
dev: true
/@babel/parser@7.21.1:
resolution: {integrity: sha512-JzhBFpkuhBNYUY7qs+wTzNmyCWUHEaAFpQQD2YfU1rPL38/L43Wvid0fFkiOCnHvsGncRZgEPyGnltABLcVDTg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.21.0
/@babel/parser@7.21.4:
resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.21.4
dev: true
/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.4):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
@@ -1227,8 +1254,8 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
'@babel/parser': 7.21.1
'@babel/types': 7.21.0
'@babel/parser': 7.21.4
'@babel/types': 7.21.4
dev: true
/@babel/traverse@7.21.0:
@@ -1241,8 +1268,8 @@ packages:
'@babel/helper-function-name': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.1
'@babel/types': 7.21.0
'@babel/parser': 7.21.4
'@babel/types': 7.21.4
debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
@@ -1274,6 +1301,7 @@ packages:
'@babel/helper-string-parser': 7.19.4
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
dev: true
/@babel/types@7.21.4:
resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==}
@@ -1282,7 +1310,6 @@ packages:
'@babel/helper-string-parser': 7.19.4
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
dev: true
/@changesets/apply-release-plan@6.1.3:
resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==}
@@ -1537,10 +1564,10 @@ packages:
resolution: {integrity: sha512-6SCwI7P8ao+se1TUsdZ7B4XzL+gqeQZnBc+2EONZlcVa0dVrk0NjETxozFKgMv0eEGH8QzP1fkN+A1rH61l4eg==}
dev: true
/@docsearch/js@3.3.3(@algolia/client-search@4.14.3)(react@18.2.0):
/@docsearch/js@3.3.3(@algolia/client-search@4.17.0)(react@18.2.0):
resolution: {integrity: sha512-2xAv2GFuHzzmG0SSZgf8wHX0qZX8n9Y1ZirKUk5Wrdc+vH9CL837x2hZIUdwcPZI9caBA+/CzxsS68O4waYjUQ==}
dependencies:
'@docsearch/react': 3.3.3(@algolia/client-search@4.14.3)(react@18.2.0)
'@docsearch/react': 3.3.3(@algolia/client-search@4.17.0)(react@18.2.0)
preact: 10.12.1
transitivePeerDependencies:
- '@algolia/client-search'
@@ -1549,7 +1576,7 @@ packages:
- react-dom
dev: true
/@docsearch/react@3.3.3(@algolia/client-search@4.14.3)(react@18.2.0):
/@docsearch/react@3.3.3(@algolia/client-search@4.17.0)(react@18.2.0):
resolution: {integrity: sha512-pLa0cxnl+G0FuIDuYlW+EBK6Rw2jwLw9B1RHIeS4N4s2VhsfJ/wzeCi3CWcs5yVfxLd5ZK50t//TMA5e79YT7Q==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -1564,7 +1591,7 @@ packages:
optional: true
dependencies:
'@algolia/autocomplete-core': 1.7.4
'@algolia/autocomplete-preset-algolia': 1.7.4(@algolia/client-search@4.14.3)(algoliasearch@4.14.3)
'@algolia/autocomplete-preset-algolia': 1.7.4(@algolia/client-search@4.17.0)(algoliasearch@4.14.3)
'@docsearch/css': 3.3.3
algoliasearch: 4.14.3
react: 18.2.0
@@ -2025,8 +2052,8 @@ packages:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
/@iconify/json@2.2.26:
resolution: {integrity: sha512-ATRMh64npEpb/ZGDHwNugZfXxy8m7MdH3MZHJPOBO39oEnNZg93jhglqGZnbDjPNffTFET+JUlImF3CXF2QE3w==}
/@iconify/json@2.2.52:
resolution: {integrity: sha512-jUM6R1Uwm8DlkAuMPT1cNS43dWyVRF8dL9eVlK5wZ3StbcTucrqGwJ+vk5M6ZHE1HWhc0yoML975cbGLHhmCfw==}
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.0
@@ -2036,8 +2063,8 @@ packages:
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
dev: true
/@iconify/utils@2.1.4:
resolution: {integrity: sha512-7vzsYIvxv5Hng0MNEtSSnyMBD/+zqnORqmKiYsSgpMBGSz1r93URgBZHPYCZ1/gpoaVstYW4/SVLGCMJBNMCLQ==}
/@iconify/utils@2.1.5:
resolution: {integrity: sha512-6MvDI+I6QMvXn5rK9KQGdpEE4mmLTcuQdLZEiX5N+uZB+vc4Yw9K1OtnOgkl8mp4d9X0UrILREyZgF1NUwUt+Q==}
dependencies:
'@antfu/install-pkg': 0.1.1
'@antfu/utils': 0.7.2
@@ -2600,8 +2627,8 @@ packages:
rollup: 3.20.6
dev: true
/@stackblitz/sdk@1.8.2:
resolution: {integrity: sha512-3aTg0Tb9dNs1huPkpdYxPEX/yc8A28eZneUMOEJzOLi7EJwl5onr9gCAVjIOkN4WLYu1iBSiJiGBYT629bZIJQ==}
/@stackblitz/sdk@1.9.0:
resolution: {integrity: sha512-3m6C7f8pnR5KXys/Hqx2x6ylnpqOak6HtnZI6T5keEO0yT+E4Spkw37VEbdwuC+2oxmjdgq6YZEgiKX7hM1GmQ==}
dev: false
/@trysound/sax@0.2.0:
@@ -2956,10 +2983,6 @@ packages:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: true
/@types/web-bluetooth@0.0.14:
resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==}
dev: true
/@types/web-bluetooth@0.0.16:
resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
@@ -3140,8 +3163,8 @@ packages:
vue: 3.2.47
dev: true
/@vercel/analytics@0.1.10(react@18.2.0):
resolution: {integrity: sha512-jjJ8GzcPnQp0cMxpfYoUycMRBtDiaIeyVjZPiEPe99Dj1PdjMzAFYEASiV/hpNsXHkpcNYCveDFh6jnmh0YSDQ==}
/@vercel/analytics@1.0.0(react@18.2.0):
resolution: {integrity: sha512-RQmj7pv82JwGDHrnKeRc6TtSw2U7rWNubc2IH0ernTzWTj02yr9zvIYiYJeztsBzrJtWv7m8Nz6vxxb+cdEtJw==}
peerDependencies:
react: ^16.8||^17||^18
dependencies:
@@ -3261,7 +3284,7 @@ packages:
resolution: {integrity: sha512-qXngAM8bvy0tXY58lLkBoCV0r1Z+ZaJN2WgVMm/0Lgqf5pszcVTgsNEsb8uGgPfenBiRad4o7vvpxHXXO9QNyQ==}
engines: {node: '>=14.19.0'}
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
'@vue-macros/common': 1.1.0(vue@3.2.47)
transitivePeerDependencies:
- vue
@@ -3305,7 +3328,7 @@ packages:
vue:
optional: true
dependencies:
'@babel/types': 7.21.0
'@babel/types': 7.21.4
'@vue/compiler-sfc': 3.2.47
local-pkg: 0.4.3
magic-string: 0.29.0
@@ -3446,7 +3469,7 @@ packages:
peerDependencies:
vue: ^2.7.0 || ^3.2.25
dependencies:
'@babel/parser': 7.21.1
'@babel/parser': 7.21.4
'@rollup/pluginutils': 5.0.2(rollup@3.20.6)
'@vue-macros/common': 1.0.1(vue@3.2.47)
'@vue/compiler-core': 3.2.47
@@ -3531,7 +3554,7 @@ packages:
/@vue/compiler-core@3.2.47:
resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==}
dependencies:
'@babel/parser': 7.21.1
'@babel/parser': 7.21.4
'@vue/shared': 3.2.47
estree-walker: 2.0.2
source-map: 0.6.1
@@ -3545,7 +3568,7 @@ packages:
/@vue/compiler-sfc@3.2.47:
resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==}
dependencies:
'@babel/parser': 7.21.1
'@babel/parser': 7.21.4
'@vue/compiler-core': 3.2.47
'@vue/compiler-dom': 3.2.47
'@vue/compiler-ssr': 3.2.47
@@ -3553,7 +3576,7 @@ packages:
'@vue/shared': 3.2.47
estree-walker: 2.0.2
magic-string: 0.25.9
postcss: 8.4.21
postcss: 8.4.23
source-map: 0.6.1
/@vue/compiler-ssr@3.2.47:
@@ -3568,7 +3591,7 @@ packages:
/@vue/reactivity-transform@3.2.47:
resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==}
dependencies:
'@babel/parser': 7.21.1
'@babel/parser': 7.21.4
'@vue/compiler-core': 3.2.47
'@vue/shared': 3.2.47
estree-walker: 2.0.2
@@ -3579,8 +3602,8 @@ packages:
dependencies:
'@vue/shared': 3.2.47
/@vue/repl@1.3.2(vue@3.2.47):
resolution: {integrity: sha512-5joGOuTFmjaugG3E1h/oP1EXSMcVXRUwLIoo8xvYQnqDrCT6g1SfsH1pfei5PpC5DUxMX1584CekZu6REgGYkQ==}
/@vue/repl@1.4.0(vue@3.2.47):
resolution: {integrity: sha512-W/OdABvbP5WCVJ6OoGG+/ULicKTpMFhhvpN2EjCsdV8bvEBHqLSCvJmDRiMkuLOm8lYw+MSOgyTKrxnhe5TH5g==}
peerDependencies:
vue: ^3.2.13
dependencies:
@@ -3612,22 +3635,16 @@ packages:
/@vue/shared@3.2.47:
resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==}
/@vueuse/core@8.9.4(vue@3.2.47):
resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==}
peerDependencies:
'@vue/composition-api': ^1.1.0
vue: ^2.6.0 || ^3.2.0
peerDependenciesMeta:
'@vue/composition-api':
optional: true
vue:
optional: true
/@vueuse/core@10.0.2(vue@3.2.47):
resolution: {integrity: sha512-/UGc2cXbxbeIFLDSJyHUjI9QZ4CJJkhiJe9TbKNPSofcWmYhhUgJ+7iw9njXTKu/Xc3Z6UeXVR9fosW1+cyrnQ==}
dependencies:
'@types/web-bluetooth': 0.0.14
'@vueuse/metadata': 8.9.4
'@vueuse/shared': 8.9.4(vue@3.2.47)
vue: 3.2.47
vue-demi: 0.13.11(vue@3.2.47)
'@types/web-bluetooth': 0.0.16
'@vueuse/metadata': 10.0.2
'@vueuse/shared': 10.0.2(vue@3.2.47)
vue-demi: 0.14.0(vue@3.2.47)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
/@vueuse/core@9.13.0(vue@3.2.47):
@@ -3641,26 +3658,20 @@ packages:
- '@vue/composition-api'
- vue
/@vueuse/metadata@8.9.4:
resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==}
/@vueuse/metadata@10.0.2:
resolution: {integrity: sha512-APSjlABrV+Q74c+FR0kFETvcN9W2pAaT3XF3WwqWUuk4srmVxv7DY4WshZxK2KYk1+MVY0Fus6J1Hk/JXVm6Aw==}
dev: true
/@vueuse/metadata@9.13.0:
resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
/@vueuse/shared@8.9.4(vue@3.2.47):
resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==}
peerDependencies:
'@vue/composition-api': ^1.1.0
vue: ^2.6.0 || ^3.2.0
peerDependenciesMeta:
'@vue/composition-api':
optional: true
vue:
optional: true
/@vueuse/shared@10.0.2(vue@3.2.47):
resolution: {integrity: sha512-7W2l6qZaFvla3zAeEVo8hNHkNRKCezJa3JjZAKv3K4KsevXobHhVNr+RHaOVNK/6ETpFmtqiK+0pMIADbHjjag==}
dependencies:
vue: 3.2.47
vue-demi: 0.13.11(vue@3.2.47)
vue-demi: 0.14.0(vue@3.2.47)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
/@vueuse/shared@9.13.0(vue@3.2.47):
@@ -3954,8 +3965,8 @@ packages:
resolution: {integrity: sha512-THVisYmmqkcopZXJDniGgVW6BRKtjutRLytqAgw0XDabYZmxC0GfFggTFZouMhvNT7jPBkx0vOy/2Y+udCDwgg==}
engines: {node: '>=14.19.0'}
dependencies:
'@babel/parser': 7.21.1
'@babel/types': 7.21.0
'@babel/parser': 7.21.4
'@babel/types': 7.21.4
dev: true
/astral-regex@2.0.0:
@@ -7923,8 +7934,12 @@ packages:
engines: {node: '>=8'}
dev: true
/marked@4.2.12:
resolution: {integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==}
/mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
dev: true
/marked@4.3.0:
resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
engines: {node: '>= 12'}
hasBin: true
dev: true
@@ -8100,6 +8115,20 @@ packages:
brace-expansion: 2.0.1
dev: true
/minimatch@7.4.6:
resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: true
/minimatch@9.0.0:
resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
brace-expansion: 2.0.1
dev: true
/minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -8125,6 +8154,10 @@ packages:
engines: {node: '>=8'}
dev: true
/minisearch@6.0.1:
resolution: {integrity: sha512-Ly1w0nHKnlhAAh6/BF/+9NgzXfoJxaJ8nhopFhQ3NcvFJrFIL+iCg9gw9e9UMBD+XIsp/RyznJ/o5UIe5Kw+kg==}
dev: true
/minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
@@ -8201,12 +8234,12 @@ packages:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
/nanoid@3.3.6:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
/nanoid@4.0.2:
resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
@@ -9283,6 +9316,7 @@ packages:
nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
dev: true
/postcss@8.4.23:
resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
@@ -9291,7 +9325,6 @@ packages:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
dev: true
/preact@10.12.1:
resolution: {integrity: sha512-l8386ixSsBdbreOAkqtrwqHwdvR35ID8c3rKPa8lCWuO86dBi32QWHV4vfsZK1utLLFMvw+Z5Ad4XLkZzchscg==}
@@ -9896,14 +9929,6 @@ packages:
rechoir: 0.6.2
dev: true
/shiki@0.10.1:
resolution: {integrity: sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==}
dependencies:
jsonc-parser: 3.2.0
vscode-oniguruma: 1.7.0
vscode-textmate: 5.2.0
dev: true
/shiki@0.14.1:
resolution: {integrity: sha512-+Jz4nBkCBe0mEDqo1eKRcCdjRtrCjozmcbTUjbPTX7OOJfEbTZzlUWlZtGe3Gb5oV1/jnojhG//YZc3rs9zSEw==}
dependencies:
@@ -10578,33 +10603,33 @@ packages:
is-typed-array: 1.1.10
dev: true
/typedoc-plugin-markdown@3.14.0(typedoc@0.23.25):
resolution: {integrity: sha512-UyQLkLRkfTFhLdhSf3RRpA3nNInGn+k6sll2vRXjflaMNwQAAiB61SYbisNZTg16t4K1dt1bPQMMGLrxS0GZ0Q==}
/typedoc-plugin-markdown@3.15.1(typedoc@0.24.4):
resolution: {integrity: sha512-TaXE8gc8s5YepU1Ogyqfkh+khPE1/n4rV5vaoZCNyXvSLv62jWmHf443lHiQh7r07qAimUOKAndaaufAeIUSiQ==}
peerDependencies:
typedoc: '>=0.23.0'
typedoc: '>=0.24.0'
dependencies:
handlebars: 4.7.7
typedoc: 0.23.25(typescript@4.9.5)
typedoc: 0.24.4(typescript@4.9.5)
dev: true
/typedoc-plugin-merge-modules@4.0.1(typedoc@0.23.25):
/typedoc-plugin-merge-modules@4.0.1(typedoc@0.24.4):
resolution: {integrity: sha512-peuoWT/xcpEO71kNuaTBAS2IVwc8qm5tiIXnJc0vW/Cy9HHoVGkYecarkwtLBl5VmrhZjZN6LQNriqYfgHA1+A==}
peerDependencies:
typedoc: 0.23.x
dependencies:
typedoc: 0.23.25(typescript@4.9.5)
typedoc: 0.24.4(typescript@4.9.5)
dev: true
/typedoc@0.23.25(typescript@4.9.5):
resolution: {integrity: sha512-O1he153qVyoCgJYSvIyY3bPP1wAJTegZfa6tL3APinSZhJOf8CSd8F/21M6ex8pUY/fuY6n0jAsT4fIuMGA6sA==}
/typedoc@0.24.4(typescript@4.9.5):
resolution: {integrity: sha512-vQuliyGhJEGeKzzCFHbkS3m0gHoIL6cfr0fHf6eX658iGELtq2J9mWe0b+X5McEYgFoMuHFt5Py3Zug6Sxjn/Q==}
engines: {node: '>= 14.14'}
hasBin: true
peerDependencies:
typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x
typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x
dependencies:
lunr: 2.3.9
marked: 4.2.12
minimatch: 6.2.0
marked: 4.3.0
minimatch: 9.0.0
shiki: 0.14.1
typescript: 4.9.5
dev: true
@@ -10820,11 +10845,11 @@ packages:
vite: 4.1.4
dev: true
/unplugin-icons@0.14.15:
resolution: {integrity: sha512-J6YBA+fUzVM2IZPXCK3Pnk36jYVwQ6lkjRgOnZaXNIxpMDsmwDqrE1AGJ0zUbfuEoOa90OBGc0OPfN1r+qlSIQ==}
/unplugin-icons@0.16.1:
resolution: {integrity: sha512-qTunFUkpAyDnwzwV7YV1ZgCWRYfLuURcCurhhXOWMy2ipY88qx1pADvral2hJu4Xymh0X0t3Zcll3BIru2AVLQ==}
peerDependencies:
'@svgr/core': '>=5.5.0'
'@vue/compiler-sfc': ^3.0.2
'@svgr/core': '>=7.0.0'
'@vue/compiler-sfc': ^3.0.2 || ^2.7.0
vue-template-compiler: ^2.6.12
vue-template-es2015-compiler: ^1.9.0
peerDependenciesMeta:
@@ -10839,24 +10864,27 @@ packages:
dependencies:
'@antfu/install-pkg': 0.1.1
'@antfu/utils': 0.7.2
'@iconify/utils': 2.1.4
'@iconify/utils': 2.1.5
debug: 4.3.4(supports-color@8.1.1)
kolorist: 1.7.0
local-pkg: 0.4.3
unplugin: 1.1.0
unplugin: 1.3.1
transitivePeerDependencies:
- supports-color
dev: true
/unplugin-vue-components@0.22.12(vue@3.2.47):
resolution: {integrity: sha512-FxyzsuBvMCYPIk+8cgscGBQ345tvwVu+qY5IhE++eorkyvA4Z1TiD/HCiim+Kbqozl10i4K+z+NCa2WO2jexRA==}
/unplugin-vue-components@0.24.1(vue@3.2.47):
resolution: {integrity: sha512-T3A8HkZoIE1Cja95xNqolwza0yD5IVlgZZ1PVAGvVCx8xthmjsv38xWRCtHtwl+rvZyL9uif42SRkDGw9aCfMA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/parser': ^7.15.8
'@nuxt/kit': ^3.2.2
vue: 2 || 3
peerDependenciesMeta:
'@babel/parser':
optional: true
'@nuxt/kit':
optional: true
dependencies:
'@antfu/utils': 0.7.2
'@rollup/pluginutils': 5.0.2(rollup@3.20.6)
@@ -10864,10 +10892,10 @@ packages:
debug: 4.3.4(supports-color@8.1.1)
fast-glob: 3.2.12
local-pkg: 0.4.3
magic-string: 0.27.0
minimatch: 5.1.6
magic-string: 0.30.0
minimatch: 7.4.6
resolve: 1.22.1
unplugin: 1.1.0
unplugin: 1.3.1
vue: 3.2.47
transitivePeerDependencies:
- rollup
@@ -11158,7 +11186,7 @@ packages:
- supports-color
dev: true
/vite-plugin-windicss@1.8.10(vite@2.9.15):
/vite-plugin-windicss@1.8.10(vite@4.3.0):
resolution: {integrity: sha512-scywsuzo46lcTBohspmF0WiwhWEte6p+OUVrX4yr7VMRvLHMHVfLtJReyD5pppjijG7YOwVsZn7XBWWZtF658Q==}
peerDependencies:
vite: ^2.0.1 || ^3.0.0 || ^4.0.0
@@ -11166,7 +11194,7 @@ packages:
'@windicss/plugin-utils': 1.8.10
debug: 4.3.4(supports-color@8.1.1)
kolorist: 1.7.0
vite: 2.9.15(sass@1.32.12)
vite: 4.3.0(@types/node@18.15.12)
windicss: 3.5.6
transitivePeerDependencies:
- supports-color
@@ -11203,7 +11231,7 @@ packages:
optional: true
dependencies:
esbuild: 0.14.51
postcss: 8.4.21
postcss: 8.4.23
resolve: 1.22.1
rollup: 2.77.3
sass: 1.32.12
@@ -11277,22 +11305,24 @@ packages:
fsevents: 2.3.2
dev: true
/vitepress@1.0.0-alpha.4(@algolia/client-search@4.14.3)(react@18.2.0):
resolution: {integrity: sha512-bOAA4KW6vYGlkbcrPLZLTKWTgXVroObU+o9xj9EENyEl6yg26WWvfN7DGA4BftjdM5O8nR93Z5khPQ3W/tFE7Q==}
engines: {node: '>=14.6.0'}
/vitepress@1.0.0-alpha.73(@algolia/client-search@4.17.0)(react@18.2.0):
resolution: {integrity: sha512-BWK7b5yYxdA3SeBnUV+ly8vJU2MFcQhjooycLDc2AsSd07uGp+WO6J6gBmjwHuOz5hgcNa+/VxGWKKwBycdbnA==}
hasBin: true
dependencies:
'@docsearch/css': 3.3.3
'@docsearch/js': 3.3.3(@algolia/client-search@4.14.3)(react@18.2.0)
'@vitejs/plugin-vue': 2.3.4(vite@2.9.15)(vue@3.2.47)
'@docsearch/js': 3.3.3(@algolia/client-search@4.17.0)(react@18.2.0)
'@vitejs/plugin-vue': 4.1.0(vite@4.3.0)(vue@3.2.47)
'@vue/devtools-api': 6.5.0
'@vueuse/core': 8.9.4(vue@3.2.47)
'@vueuse/core': 10.0.2(vue@3.2.47)
body-scroll-lock: 4.0.0-beta.0
shiki: 0.10.1
vite: 2.9.15(sass@1.32.12)
mark.js: 8.11.1
minisearch: 6.0.1
shiki: 0.14.1
vite: 4.3.0(@types/node@18.15.12)
vue: 3.2.47
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
- '@types/react'
- '@vue/composition-api'
- less
@@ -11300,6 +11330,8 @@ packages:
- react-dom
- sass
- stylus
- sugarss
- terser
dev: true
/vscode-jsonrpc@6.0.0:
@@ -11342,10 +11374,6 @@ packages:
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
dev: true
/vscode-textmate@5.2.0:
resolution: {integrity: sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==}
dev: true
/vscode-textmate@8.0.0:
resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
dev: true
@@ -11374,6 +11402,21 @@ packages:
dependencies:
vue: 3.2.47
/vue-demi@0.14.0(vue@3.2.47):
resolution: {integrity: sha512-gt58r2ogsNQeVoQ3EhoUAvUsH9xviydl0dWJj7dabBC/2L4uBId7ujtCwDRD0JhkGsV1i0CtfLAeyYKBht9oWg==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
vue: ^3.0.0-0 || ^2.6.0
peerDependenciesMeta:
'@vue/composition-api':
optional: true
dependencies:
vue: 3.2.47
dev: true
/vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
dev: true
@@ -11442,8 +11485,8 @@ packages:
engines: {node: '>= 8'}
dev: true
/web-vitals@3.1.1:
resolution: {integrity: sha512-qvllU+ZeQChqzBhZ1oyXmWsjJ8a2jHYpH8AMaVuf29yscOPZfTQTjQFRX6+eADTdsDE8IanOZ0cetweHMs8/2A==}
/web-vitals@3.3.1:
resolution: {integrity: sha512-LTfY5GjcY3ngFzNsYFSYL+AmVmlWrzPTUxSMDis2rZbf+SzT7HH3NH4Y/l45XOlrAIunOBeURN9qtBHkRskAiA==}
dev: false
/webidl-conversions@3.0.1: