diff --git a/cli/src/packageJson.ts b/cli/src/packageJson.ts
index 48f972dc..90160c52 100644
--- a/cli/src/packageJson.ts
+++ b/cli/src/packageJson.ts
@@ -66,6 +66,9 @@ export async function createPackageJson(
if (bundler === 'webpack' && !pkg.dependencies?.['sass-loader'] && !pkg.devDependencies['sass-loader'])
deps.push('sass-loader')
+ if (!pkg.dependencies?.['sass-embedded'] && !pkg.devDependencies['sass-embedded'])
+ deps.push('sass-embedded')
+
const dv = await getDependenciesVersion(deps)
for (const [d, v] of Object.entries(dv))
diff --git a/docs/2.preview/主题效果预览.md b/docs/2.preview/主题效果预览.md
index cde5a7c8..aa40bae4 100644
--- a/docs/2.preview/主题效果预览.md
+++ b/docs/2.preview/主题效果预览.md
@@ -252,6 +252,9 @@ function foo() {
}
```
+::: tip 仅标题
+:::
+
::: note 注释
注释内容 [link](https://github.com/pengzhanbo) `inline code`
@@ -318,6 +321,11 @@ const c = a + b
:::
+::: details 详细标题
+
+这里是内容。
+:::
+
**GFM alert:**
> [!note]
diff --git a/docs/package.json b/docs/package.json
index aa0e02d3..05c22ec1 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -12,7 +12,7 @@
"vuepress": "2.0.0-rc.15"
},
"dependencies": {
- "@iconify/json": "^2.2.251",
+ "@iconify/json": "^2.2.252",
"@simonwep/pickr": "^1.9.1",
"@vuepress/bundler-vite": "2.0.0-rc.15",
"chart.js": "^4.4.4",
@@ -20,8 +20,9 @@
"flowchart.ts": "^3.0.1",
"http-server": "^14.1.1",
"mermaid": "^11.2.1",
+ "sass-embedded": "^1.79.3",
"swiper": "^11.1.14",
- "vue": "^3.5.7",
+ "vue": "^3.5.8",
"vuepress-theme-plume": "workspace:*"
},
"devDependencies": {
diff --git a/plugins/plugin-content-update/package.json b/plugins/plugin-content-update/package.json
index d4403e51..64ea0a95 100644
--- a/plugins/plugin-content-update/package.json
+++ b/plugins/plugin-content-update/package.json
@@ -40,7 +40,7 @@
"vuepress": "2.0.0-rc.15"
},
"dependencies": {
- "vue": "^3.5.7"
+ "vue": "^3.5.8"
},
"publishConfig": {
"access": "public"
diff --git a/plugins/plugin-md-power/package.json b/plugins/plugin-md-power/package.json
index ed8e617a..58866e45 100644
--- a/plugins/plugin-md-power/package.json
+++ b/plugins/plugin-md-power/package.json
@@ -40,15 +40,22 @@
"vuepress": "2.0.0-rc.15"
},
"dependencies": {
- "@vuepress/helper": "2.0.0-rc.46",
+ "@mdit/plugin-attrs": "^0.13.1",
+ "@mdit/plugin-footnote": "^0.13.1",
+ "@mdit/plugin-mark": "^0.13.1",
+ "@mdit/plugin-sub": "^0.13.1",
+ "@mdit/plugin-sup": "^0.13.1",
+ "@mdit/plugin-tab": "^0.13.1",
+ "@mdit/plugin-tasklist": "^0.13.1",
+ "@vuepress/helper": "2.0.0-rc.47",
"@vueuse/core": "^11.1.0",
"image-size": "^1.1.1",
"markdown-it-container": "^4.0.0",
"nanoid": "^5.0.7",
"shiki": "^1.18.0",
"tm-grammars": "^1.17.24",
- "tm-themes": "^1.8.3",
- "vue": "^3.5.7"
+ "tm-themes": "^1.8.4",
+ "vue": "^3.5.8"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2"
diff --git a/plugins/plugin-md-power/src/client/components/CodeRepl.vue b/plugins/plugin-md-power/src/client/components/CodeRepl.vue
index b664b81a..06095f29 100644
--- a/plugins/plugin-md-power/src/client/components/CodeRepl.vue
+++ b/plugins/plugin-md-power/src/client/components/CodeRepl.vue
@@ -1,10 +1,10 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/plugins/plugin-md-power/src/client/components/Replit.vue b/plugins/plugin-md-power/src/client/components/Replit.vue
index f71d374f..49f82c03 100644
--- a/plugins/plugin-md-power/src/client/components/Replit.vue
+++ b/plugins/plugin-md-power/src/client/components/Replit.vue
@@ -1,7 +1,7 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/plugins/plugin-md-power/src/client/components/IconClose.vue b/plugins/plugin-md-power/src/client/components/icons/IconClose.vue
similarity index 100%
rename from plugins/plugin-md-power/src/client/components/IconClose.vue
rename to plugins/plugin-md-power/src/client/components/icons/IconClose.vue
diff --git a/plugins/plugin-md-power/src/client/components/IconConsole.vue b/plugins/plugin-md-power/src/client/components/icons/IconConsole.vue
similarity index 100%
rename from plugins/plugin-md-power/src/client/components/IconConsole.vue
rename to plugins/plugin-md-power/src/client/components/icons/IconConsole.vue
diff --git a/plugins/plugin-md-power/src/client/components/IconRun.vue b/plugins/plugin-md-power/src/client/components/icons/IconRun.vue
similarity index 100%
rename from plugins/plugin-md-power/src/client/components/IconRun.vue
rename to plugins/plugin-md-power/src/client/components/icons/IconRun.vue
diff --git a/plugins/plugin-md-power/src/client/components/Loading.vue b/plugins/plugin-md-power/src/client/components/icons/Loading.vue
similarity index 100%
rename from plugins/plugin-md-power/src/client/components/Loading.vue
rename to plugins/plugin-md-power/src/client/components/icons/Loading.vue
diff --git a/plugins/plugin-md-power/src/node/container/align.ts b/plugins/plugin-md-power/src/node/container/align.ts
new file mode 100644
index 00000000..ec70fd41
--- /dev/null
+++ b/plugins/plugin-md-power/src/node/container/align.ts
@@ -0,0 +1,21 @@
+import type Token from 'markdown-it/lib/token.mjs'
+import type { Markdown } from 'vuepress/markdown'
+import container from 'markdown-it-container'
+
+const alignList = ['left', 'center', 'right', 'justify']
+
+export function alignPlugin(md: Markdown): void {
+ for (const name of alignList) {
+ md.use(container, name, {
+ validate: (info: string) => info.trim() === name,
+ render: (tokens: Token[], idx: number): string => {
+ if (tokens[idx].nesting === 1) {
+ return `
`
+ }
+ else {
+ return '
'
+ }
+ },
+ })
+ }
+}
diff --git a/plugins/plugin-md-power/src/node/container/codeTabs.ts b/plugins/plugin-md-power/src/node/container/codeTabs.ts
new file mode 100644
index 00000000..10164a6f
--- /dev/null
+++ b/plugins/plugin-md-power/src/node/container/codeTabs.ts
@@ -0,0 +1,55 @@
+import type { PluginSimple } from 'markdown-it'
+import { tab } from '@mdit/plugin-tab'
+import { getFileIconName } from '../fileIcons/index.js'
+import { stringifyProp } from '../utils/stringifyProp.js'
+
+export const codeTabs: PluginSimple = (md) => {
+ tab(md, {
+ name: 'code-tabs',
+
+ tabsOpenRenderer: ({ active, data }, tokens, index) => {
+ const { meta } = tokens[index]
+ const titles = data.map(({ title }) => md.renderInline(title))
+ const tabsData = data.map((item, dataIndex) => {
+ const { id = titles[dataIndex] } = item
+
+ return { id }
+ })
+
+ const titlesContent = titles.map((title, index) => {
+ const icon = getFileIconName(title)
+ return `${icon ? `` : ''}${title}`
+ }).join('')
+
+ return `${titlesContent}`
+ },
+
+ tabsCloseRenderer: () => ``,
+
+ tabOpenRenderer: ({ index }, tokens, tokenIndex) => {
+ let foundFence = false
+
+ // Hide all elements excerpt the first fence
+ for (let i = tokenIndex; i < tokens.length; i++) {
+ const { block, type } = tokens[i]
+
+ if (block) {
+ if (type === 'code-tabs_tab_close')
+ break
+
+ if ((type === 'fence' || type === 'import_code') && !foundFence) {
+ foundFence = true
+ continue
+ }
+
+ tokens[i].type = 'code_tab_empty'
+ tokens[i].hidden = true
+ }
+ }
+
+ return ``
+ },
+
+ tabCloseRenderer: () => ``,
+ })
+}
diff --git a/plugins/plugin-md-power/src/node/container/fileTree/resolveTreeNodeInfo.ts b/plugins/plugin-md-power/src/node/container/fileTree.ts
similarity index 63%
rename from plugins/plugin-md-power/src/node/container/fileTree/resolveTreeNodeInfo.ts
rename to plugins/plugin-md-power/src/node/container/fileTree.ts
index 410d21b0..df1964ec 100644
--- a/plugins/plugin-md-power/src/node/container/fileTree/resolveTreeNodeInfo.ts
+++ b/plugins/plugin-md-power/src/node/container/fileTree.ts
@@ -1,5 +1,8 @@
+import type { Markdown } from 'vuepress/markdown'
import Token from 'markdown-it/lib/token.mjs'
+import container from 'markdown-it-container'
import { removeEndingSlash, removeLeadingSlash } from 'vuepress/shared'
+import { getFileIcon } from '../fileIcons/index.js'
interface FileTreeNode {
filename: string
@@ -9,6 +12,63 @@ interface FileTreeNode {
empty: boolean
}
+const type = 'file-tree'
+const closeType = `container_${type}_close`
+const componentName = 'FileTreeItem'
+const itemOpen = 'file_tree_item_open'
+const itemClose = 'file_tree_item_close'
+
+export function fileTreePlugin(md: Markdown) {
+ const validate = (info: string): boolean => info.trim().startsWith(type)
+ const render = (tokens: Token[], idx: number): string => {
+ if (tokens[idx].nesting === 1) {
+ const hasRes: number[] = [] // level stack
+ for (
+ let i = idx + 1;
+ !(tokens[i].nesting === -1
+ && tokens[i].type === closeType);
+ ++i
+ ) {
+ const token = tokens[i]
+ if (token.type === 'list_item_open') {
+ const result = resolveTreeNodeInfo(tokens, token, i)
+ if (result) {
+ hasRes.push(token.level)
+ const [info, inline] = result
+ const { filename, type, expanded, empty } = info
+ const icon = getFileIcon(filename, type)
+
+ token.type = itemOpen
+ token.tag = componentName
+ token.attrSet('type', type)
+ token.attrSet(':expanded', expanded ? 'true' : 'false')
+ token.attrSet(':empty', empty ? 'true' : 'false')
+ updateInlineToken(inline, info, icon)
+ }
+ else {
+ hasRes.push(-1)
+ }
+ }
+ else if (token.type === 'list_item_close') {
+ if (token.level === hasRes.pop()) {
+ token.type = itemClose
+ token.tag = componentName
+ }
+ }
+ }
+ const info = tokens[idx].info.trim()
+
+ const title = info.slice(type.length).trim()
+ return `${title ? `
${title}
` : ''}`
+ }
+ else {
+ return '
'
+ }
+ }
+
+ md.use(container, type, { validate, render })
+}
+
export function resolveTreeNodeInfo(
tokens: Token[],
current: Token,
diff --git a/plugins/plugin-md-power/src/node/container/fileTree/index.ts b/plugins/plugin-md-power/src/node/container/fileTree/index.ts
deleted file mode 100644
index e575307e..00000000
--- a/plugins/plugin-md-power/src/node/container/fileTree/index.ts
+++ /dev/null
@@ -1,62 +0,0 @@
-import type Token from 'markdown-it/lib/token.mjs'
-import type { Markdown } from 'vuepress/markdown'
-import container from 'markdown-it-container'
-import { getFileIcon } from './findIcon.js'
-import { resolveTreeNodeInfo, updateInlineToken } from './resolveTreeNodeInfo.js'
-
-const type = 'file-tree'
-const closeType = `container_${type}_close`
-const componentName = 'FileTreeItem'
-const itemOpen = 'file_tree_item_open'
-const itemClose = 'file_tree_item_close'
-
-export function fileTreePlugin(md: Markdown) {
- const validate = (info: string): boolean => info.trim().startsWith(type)
- const render = (tokens: Token[], idx: number): string => {
- if (tokens[idx].nesting === 1) {
- const hasRes: number[] = [] // level stack
- for (
- let i = idx + 1;
- !(tokens[i].nesting === -1
- && tokens[i].type === closeType);
- ++i
- ) {
- const token = tokens[i]
- if (token.type === 'list_item_open') {
- const result = resolveTreeNodeInfo(tokens, token, i)
- if (result) {
- hasRes.push(token.level)
- const [info, inline] = result
- const { filename, type, expanded, empty } = info
- const icon = getFileIcon(filename, type)
-
- token.type = itemOpen
- token.tag = componentName
- token.attrSet('type', type)
- token.attrSet(':expanded', expanded ? 'true' : 'false')
- token.attrSet(':empty', empty ? 'true' : 'false')
- updateInlineToken(inline, info, icon)
- }
- else {
- hasRes.push(-1)
- }
- }
- else if (token.type === 'list_item_close') {
- if (token.level === hasRes.pop()) {
- token.type = itemClose
- token.tag = componentName
- }
- }
- }
- const info = tokens[idx].info.trim()
-
- const title = info.slice(type.length).trim()
- return `${title ? `
${title}
` : ''}`
- }
- else {
- return '
'
- }
- }
-
- md.use(container, type, { validate, render })
-}
diff --git a/plugins/plugin-md-power/src/node/container/index.ts b/plugins/plugin-md-power/src/node/container/index.ts
index d8bc84ac..9b4ae23f 100644
--- a/plugins/plugin-md-power/src/node/container/index.ts
+++ b/plugins/plugin-md-power/src/node/container/index.ts
@@ -1,14 +1,24 @@
import type { App } from 'vuepress'
import type { Markdown } from 'vuepress/markdown'
import type { MarkdownPowerPluginOptions } from '../../shared/index.js'
-import { fileTreePlugin } from './fileTree/index.js'
+import { alignPlugin } from './align.js'
+import { codeTabs } from './codeTabs.js'
+import { fileTreePlugin } from './fileTree.js'
import { langReplPlugin } from './langRepl.js'
+import { tabs } from './tabs.js'
export async function containerPlugin(
app: App,
md: Markdown,
options: MarkdownPowerPluginOptions,
) {
+ // ::: left / right / center / justify
+ alignPlugin(md)
+ // ::: tabs
+ tabs(md)
+ // ::: code-tabs
+ codeTabs(md)
+
if (options.repl)
await langReplPlugin(app, md, options.repl)
diff --git a/plugins/plugin-md-power/src/node/container/tabs.ts b/plugins/plugin-md-power/src/node/container/tabs.ts
new file mode 100644
index 00000000..dc3803a3
--- /dev/null
+++ b/plugins/plugin-md-power/src/node/container/tabs.ts
@@ -0,0 +1,31 @@
+import type { PluginSimple } from 'markdown-it'
+import { tab } from '@mdit/plugin-tab'
+import { stringifyProp } from '../utils/stringifyProp.js'
+
+export const tabs: PluginSimple = (md) => {
+ tab(md, {
+ name: 'tabs',
+
+ tabsOpenRenderer: ({ active, data }, tokens, index) => {
+ const { meta } = tokens[index]
+ const titles = data.map(({ title }) => md.renderInline(title))
+ const tabsData = data.map((item, dataIndex) => {
+ const { id = titles[dataIndex] } = item
+
+ return { id }
+ })
+
+ return `
+${titles.map((title, titleIndex) =>
+ `${title}`,
+ ).join('')}`
+ },
+
+ tabsCloseRenderer: () => ``,
+
+ tabOpenRenderer: ({ index }) =>
+ ``,
+
+ tabCloseRenderer: () => ``,
+ })
+}
diff --git a/plugins/plugin-md-power/src/node/container/fileTree/definitions.ts b/plugins/plugin-md-power/src/node/fileIcons/definitions.ts
similarity index 84%
rename from plugins/plugin-md-power/src/node/container/fileTree/definitions.ts
rename to plugins/plugin-md-power/src/node/fileIcons/definitions.ts
index 8b2133ea..2e24c243 100644
--- a/plugins/plugin-md-power/src/node/container/fileTree/definitions.ts
+++ b/plugins/plugin-md-power/src/node/fileIcons/definitions.ts
@@ -12,111 +12,148 @@ export const defaultFile = 'vscode-icons:default-file'
export const definitions: Definitions = {
named: {
// package manager
- pnpm: 'vscode-icons:file-type-light-pnpm',
- PNPM: 'vscode-icons:file-type-light-pnpm',
- npm: 'vscode-icons:file-type-npm',
- NPM: 'vscode-icons:file-type-npm',
- yarn: 'vscode-icons:file-type-yarn',
- Yarn: 'vscode-icons:file-type-yarn',
- bun: 'vscode-icons:file-type-bun',
- Bun: 'vscode-icons:file-type-bun',
- deno: 'vscode-icons:file-type-light-deno',
- Deno: 'vscode-icons:file-type-light-deno',
+ 'pnpm': 'vscode-icons:file-type-light-pnpm',
+ 'PNPM': 'vscode-icons:file-type-light-pnpm',
+ 'npm': 'logos:npm-icon',
+ 'NPM': 'logos:npm-icon',
+ 'yarn': 'vscode-icons:file-type-yarn',
+ 'Yarn': 'vscode-icons:file-type-yarn',
+ 'bun': 'vscode-icons:file-type-bun',
+ 'Bun': 'vscode-icons:file-type-bun',
+ 'deno': 'vscode-icons:file-type-light-deno',
+ 'Deno': 'vscode-icons:file-type-light-deno',
// bundlers
- rollup: 'vscode-icons:file-type-rollup',
- Rollup: 'vscode-icons:file-type-rollup',
- webpack: 'vscode-icons:file-type-webpack',
- Webpack: 'vscode-icons:file-type-webpack',
- vite: 'vscode-icons:file-type-vite',
- Vite: 'vscode-icons:file-type-vite',
- esbuild: 'vscode-icons:file-type-esbuild',
- Esbuild: 'vscode-icons:file-type-esbuild',
+ 'rollup': 'vscode-icons:file-type-rollup',
+ 'Rollup': 'vscode-icons:file-type-rollup',
+ 'webpack': 'vscode-icons:file-type-webpack',
+ 'Webpack': 'vscode-icons:file-type-webpack',
+ 'vite': 'vscode-icons:file-type-vite',
+ 'Vite': 'vscode-icons:file-type-vite',
+ 'esbuild': 'vscode-icons:file-type-esbuild',
+ 'Esbuild': 'vscode-icons:file-type-esbuild',
// frameworks
- vue: 'vscode-icons:file-type-vue',
- Vue: 'vscode-icons:file-type-vue',
- svelte: 'vscode-icons:file-type-svelte',
- sveltekit: 'vscode-icons:file-type-svelte',
- angular: 'vscode-icons:file-type-angular',
- Angular: 'vscode-icons:file-type-angular',
- react: 'vscode-icons:file-type-reactjs',
- React: 'vscode-icons:file-type-reactjs',
- next: 'vscode-icons:file-type-light-next',
- Next: 'vscode-icons:file-type-light-next',
- Nextjs: 'vscode-icons:file-type-light-next',
- NextJS: 'vscode-icons:file-type-light-next',
- nuxt: 'vscode-icons:file-type-nuxt',
- Nuxt: 'vscode-icons:file-type-nuxt',
- Nuxtjs: 'vscode-icons:file-type-nuxt',
- NuxtJS: 'vscode-icons:file-type-nuxt',
- solid: 'logos:solidjs-icon',
- Solid: 'logos:solidjs-icon',
- solidjs: 'logos:solidjs-icon',
- astro: 'vscode-icons:file-type-light-astro',
- Astro: 'vscode-icons:file-type-light-astro',
+ 'vue': 'vscode-icons:file-type-vue',
+ 'Vue': 'vscode-icons:file-type-vue',
+ 'svelte': 'vscode-icons:file-type-svelte',
+ 'Svelte': 'vscode-icons:file-type-svelte',
+ 'sveltekit': 'vscode-icons:file-type-svelte',
+ 'SvelteKit': 'vscode-icons:file-type-svelte',
+ 'angular': 'vscode-icons:file-type-angular',
+ 'Angular': 'vscode-icons:file-type-angular',
+ 'react': 'vscode-icons:file-type-reactjs',
+ 'React': 'vscode-icons:file-type-reactjs',
+ 'next': 'vscode-icons:file-type-light-next',
+ 'Next': 'vscode-icons:file-type-light-next',
+ 'Nextjs': 'vscode-icons:file-type-light-next',
+ 'NextJS': 'vscode-icons:file-type-light-next',
+ 'nuxt': 'vscode-icons:file-type-nuxt',
+ 'Nuxt': 'vscode-icons:file-type-nuxt',
+ 'Nuxtjs': 'vscode-icons:file-type-nuxt',
+ 'NuxtJS': 'vscode-icons:file-type-nuxt',
+ 'solid': 'logos:solidjs-icon',
+ 'Solid': 'logos:solidjs-icon',
+ 'solidjs': 'logos:solidjs-icon',
+ 'astro': 'vscode-icons:file-type-light-astro',
+ 'Astro': 'vscode-icons:file-type-light-astro',
- vitest: 'vscode-icons:file-type-vitest',
- Vitest: 'vscode-icons:file-type-vitest',
- playwright: 'vscode-icons:file-type-playwright',
- Playwright: 'vscode-icons:file-type-playwright',
- jest: 'vscode-icons:file-type-jest',
- Jest: 'vscode-icons:file-type-jest',
- cypress: 'vscode-icons:file-type-cypress',
- Cypress: 'vscode-icons:file-type-cypress',
+ 'vitest': 'vscode-icons:file-type-vitest',
+ 'Vitest': 'vscode-icons:file-type-vitest',
+ 'playwright': 'vscode-icons:file-type-playwright',
+ 'Playwright': 'vscode-icons:file-type-playwright',
+ 'jest': 'vscode-icons:file-type-jest',
+ 'Jest': 'vscode-icons:file-type-jest',
+ 'cypress': 'vscode-icons:file-type-cypress',
+ 'Cypress': 'vscode-icons:file-type-cypress',
- docker: 'vscode-icons:file-type-docker',
- Docker: 'vscode-icons:file-type-docker',
+ 'docker': 'vscode-icons:file-type-docker',
+ 'Docker': 'vscode-icons:file-type-docker',
// TODO: code group title icons
// programming languages
- html: 'vscode-icons:file-type-html',
- Html: 'vscode-icons:file-type-html',
- HTML: 'vscode-icons:file-type-html',
- javascript: 'vscode-icons:file-type-js-official',
- Javascript: 'vscode-icons:file-type-js-official',
- JavaScript: 'vscode-icons:file-type-js-official',
- js: 'vscode-icons:file-type-js-official',
- JS: 'vscode-icons:file-type-js-official',
- typescript: 'vscode-icons:file-type-typescript-official',
- Typescript: 'vscode-icons:file-type-typescript-official',
- TypeScript: 'vscode-icons:file-type-typescript-official',
- ts: 'vscode-icons:file-type-typescript-official',
- TS: 'vscode-icons:file-type-typescript-official',
- css: 'vscode-icons:file-type-css',
- CSS: 'vscode-icons:file-type-css',
- less: 'vscode-icons:file-type-less',
- Less: 'vscode-icons:file-type-less',
- scss: 'vscode-icons:file-type-scss',
- Scss: 'vscode-icons:file-type-scss',
- SCSS: 'vscode-icons:file-type-scss',
- sass: 'vscode-icons:file-type-sass',
- Sass: 'vscode-icons:file-type-sass',
- SASS: 'vscode-icons:file-type-sass',
- stylus: 'vscode-icons:file-type-light-stylus',
- Stylus: 'vscode-icons:file-type-light-stylus',
- postcss: 'vscode-icons:file-type-postcss',
- Postcss: 'vscode-icons:file-type-postcss',
- PostCSS: 'vscode-icons:file-type-postcss',
- java: 'vscode-icons:file-type-java',
- Java: 'vscode-icons:file-type-java',
- JAVA: 'vscode-icons:file-type-java',
- php: 'vscode-icons:file-type-php3',
- PHP: 'vscode-icons:file-type-php3',
- c: 'vscode-icons:file-type-c',
- C: 'vscode-icons:file-type-c',
- python: 'vscode-icons:file-type-python',
- Python: 'vscode-icons:file-type-python',
- kotlin: 'vscode-icons:file-type-kotlin',
- Kotlin: 'vscode-icons:file-type-kotlin',
- go: 'vscode-icons:file-type-go-gopher',
- golang: 'vscode-icons:file-type-go-gopher',
- Go: 'vscode-icons:file-type-go-gopher',
- GoLang: 'vscode-icons:file-type-go-gopher',
- rust: 'vscode-icons:file-type-rust',
- Rust: 'vscode-icons:file-type-rust',
- zig: 'vscode-icons:file-type-zig',
- Zig: 'vscode-icons:file-type-zig',
- swift: 'vscode-icons:file-type-swift',
- Swift: 'vscode-icons:file-type-swift',
+ 'html': 'vscode-icons:file-type-html',
+ 'Html': 'vscode-icons:file-type-html',
+ 'HTML': 'vscode-icons:file-type-html',
+ 'javascript': 'vscode-icons:file-type-js-official',
+ 'Javascript': 'vscode-icons:file-type-js-official',
+ 'JavaScript': 'vscode-icons:file-type-js-official',
+ 'js': 'vscode-icons:file-type-js-official',
+ 'JS': 'vscode-icons:file-type-js-official',
+ 'typescript': 'vscode-icons:file-type-typescript-official',
+ 'Typescript': 'vscode-icons:file-type-typescript-official',
+ 'TypeScript': 'vscode-icons:file-type-typescript-official',
+ 'ts': 'vscode-icons:file-type-typescript-official',
+ 'TS': 'vscode-icons:file-type-typescript-official',
+ 'css': 'vscode-icons:file-type-css',
+ 'CSS': 'vscode-icons:file-type-css',
+ 'less': 'vscode-icons:file-type-less',
+ 'Less': 'vscode-icons:file-type-less',
+ 'scss': 'vscode-icons:file-type-scss',
+ 'Scss': 'vscode-icons:file-type-scss',
+ 'SCSS': 'vscode-icons:file-type-scss',
+ 'sass': 'vscode-icons:file-type-sass',
+ 'Sass': 'vscode-icons:file-type-sass',
+ 'SASS': 'vscode-icons:file-type-sass',
+ 'stylus': 'vscode-icons:file-type-light-stylus',
+ 'Stylus': 'vscode-icons:file-type-light-stylus',
+ 'postcss': 'vscode-icons:file-type-postcss',
+ 'Postcss': 'vscode-icons:file-type-postcss',
+ 'PostCSS': 'vscode-icons:file-type-postcss',
+ 'sh': 'vscode-icons:file-type-shell',
+ 'shell': 'vscode-icons:file-type-shell',
+ 'Shell': 'vscode-icons:file-type-shell',
+ 'bash': 'vscode-icons:file-type-shell',
+ 'Bash': 'vscode-icons:file-type-shell',
+ 'java': 'vscode-icons:file-type-java',
+ 'Java': 'vscode-icons:file-type-java',
+ 'JAVA': 'vscode-icons:file-type-java',
+ 'php': 'vscode-icons:file-type-php3',
+ 'PHP': 'vscode-icons:file-type-php3',
+ 'c': 'vscode-icons:file-type-c',
+ 'C': 'vscode-icons:file-type-c',
+ 'python': 'vscode-icons:file-type-python',
+ 'Python': 'vscode-icons:file-type-python',
+ 'kotlin': 'vscode-icons:file-type-kotlin',
+ 'Kotlin': 'vscode-icons:file-type-kotlin',
+ 'go': 'vscode-icons:file-type-go-gopher',
+ 'golang': 'vscode-icons:file-type-go-gopher',
+ 'Go': 'vscode-icons:file-type-go-gopher',
+ 'GoLang': 'vscode-icons:file-type-go-gopher',
+ 'rust': 'vscode-icons:file-type-rust',
+ 'Rust': 'vscode-icons:file-type-rust',
+ 'zig': 'vscode-icons:file-type-zig',
+ 'Zig': 'vscode-icons:file-type-zig',
+ 'swift': 'vscode-icons:file-type-swift',
+ 'Swift': 'vscode-icons:file-type-swift',
+ 'c#': 'vscode-icons:file-type-csharp',
+ 'CSharp': 'vscode-icons:file-type-csharp',
+ 'c++': 'vscode-icons:file-type-cpp',
+ 'C++': 'vscode-icons:file-type-cpp',
+ 'ruby': 'vscode-icons:file-type-ruby',
+ 'Ruby': 'vscode-icons:file-type-ruby',
+ 'makefile': 'vscode-icons:file-type-makefile',
+ 'Makefile': 'vscode-icons:file-type-makefile',
+ 'Object-C': 'vscode-icons:file-type-objectivec',
+ 'object-c': 'vscode-icons:file-type-objectivec',
+ 'SQL': 'vscode-icons:file-type-sql',
+ 'sql': 'vscode-icons:file-type-sql',
+ 'mysql': 'vscode-icons:file-type-mysql',
+ 'MySQL': 'vscode-icons:file-type-mysql',
+ 'MySql': 'vscode-icons:file-type-mysql',
+ 'pgsql': 'vscode-icons:file-type-pgsql',
+ 'PostgreSQL': 'vscode-icons:file-type-pgsql',
+ 'PGSQL': 'vscode-icons:file-type-pgsql',
+ 'xml': 'vscode-icons:file-type-xml',
+ 'XML': 'vscode-icons:file-type-xml',
+ 'wasm': 'vscode-icons:file-type-wasm',
+ 'webassembly': 'vscode-icons:file-type-wasm',
+ 'WebAssembly': 'vscode-icons:file-type-wasm',
+ 'WASM': 'vscode-icons:file-type-wasm',
+ 'toml': 'vscode-icons:file-type-light-toml',
+ 'Toml': 'vscode-icons:file-type-light-toml',
+ 'TOML': 'vscode-icons:file-type-light-toml',
+ 'yaml': 'vscode-icons:file-type-light-yaml',
+ 'Yaml': 'vscode-icons:file-type-light-yaml',
+ 'YAML': 'vscode-icons:file-type-light-yaml',
},
folders: {
'default': 'vscode-icons:default-folder',
diff --git a/plugins/plugin-md-power/src/node/container/fileTree/findIcon.ts b/plugins/plugin-md-power/src/node/fileIcons/findIcon.ts
similarity index 92%
rename from plugins/plugin-md-power/src/node/container/fileTree/findIcon.ts
rename to plugins/plugin-md-power/src/node/fileIcons/findIcon.ts
index 0ea390cb..8cc28aef 100644
--- a/plugins/plugin-md-power/src/node/container/fileTree/findIcon.ts
+++ b/plugins/plugin-md-power/src/node/fileIcons/findIcon.ts
@@ -8,7 +8,7 @@ export function getFileIcon(fileName: string, type: 'file' | 'folder' = 'file'):
return name
}
-function getFileIconName(fileName: string, type: 'file' | 'folder' = 'file'): string | undefined {
+export function getFileIconName(fileName: string, type: 'file' | 'folder' = 'file'): string | undefined {
if (type === 'folder') {
const icon = definitions.folders[fileName]
if (icon)
diff --git a/plugins/plugin-md-power/src/node/fileIcons/index.ts b/plugins/plugin-md-power/src/node/fileIcons/index.ts
new file mode 100644
index 00000000..10170d63
--- /dev/null
+++ b/plugins/plugin-md-power/src/node/fileIcons/index.ts
@@ -0,0 +1,2 @@
+export * from './definitions.js'
+export * from './findIcon.js'
diff --git a/plugins/plugin-md-power/src/node/inline/index.ts b/plugins/plugin-md-power/src/node/inline/index.ts
index 312d66c6..536960b1 100644
--- a/plugins/plugin-md-power/src/node/inline/index.ts
+++ b/plugins/plugin-md-power/src/node/inline/index.ts
@@ -1,5 +1,11 @@
import type { Markdown } from 'vuepress/markdown'
import type { MarkdownPowerPluginOptions } from '../../shared/index.js'
+import { attrs } from '@mdit/plugin-attrs'
+import { footnote } from '@mdit/plugin-footnote'
+import { mark } from '@mdit/plugin-mark'
+import { sub } from '@mdit/plugin-sub'
+import { sup } from '@mdit/plugin-sup'
+import { tasklist } from '@mdit/plugin-tasklist'
import { iconsPlugin } from './icons.js'
import { plotPlugin } from './plot.js'
@@ -7,6 +13,13 @@ export function inlineSyntaxPlugin(
md: Markdown,
options: MarkdownPowerPluginOptions,
): void {
+ md.use(attrs)
+ md.use(mark)
+ md.use(sub)
+ md.use(sup)
+ md.use(footnote)
+ md.use(tasklist)
+
if (options.icons) {
// :[collect:name]:
md.use(iconsPlugin)
diff --git a/plugins/plugin-md-power/src/node/prepareConfigFile.ts b/plugins/plugin-md-power/src/node/prepareConfigFile.ts
index af968a08..45bfbacf 100644
--- a/plugins/plugin-md-power/src/node/prepareConfigFile.ts
+++ b/plugins/plugin-md-power/src/node/prepareConfigFile.ts
@@ -14,6 +14,12 @@ export async function prepareConfigFile(app: App, options: MarkdownPowerPluginOp
const imports = new Set()
const enhances = new Set()
+ imports.add(`import Tabs from '${CLIENT_FOLDER}components/Tabs.vue'`)
+ enhances.add(`app.component('Tabs', Tabs)`)
+
+ imports.add(`import CodeTabs from '${CLIENT_FOLDER}components/CodeTabs.vue'`)
+ enhances.add(`app.component('CodeTabs', CodeTabs)`)
+
if (options.pdf) {
imports.add(`import PDFViewer from '${CLIENT_FOLDER}components/PDFViewer.vue'`)
enhances.add(`app.component('PDFViewer', PDFViewer)`)
diff --git a/plugins/plugin-md-power/src/node/utils/stringifyProp.ts b/plugins/plugin-md-power/src/node/utils/stringifyProp.ts
new file mode 100644
index 00000000..b5156410
--- /dev/null
+++ b/plugins/plugin-md-power/src/node/utils/stringifyProp.ts
@@ -0,0 +1,4 @@
+// Single quote will break @vue/compiler-sfc
+export function stringifyProp(data: unknown): string {
+ return JSON.stringify(data).replace(/'/g, ''')
+}
diff --git a/plugins/plugin-search/package.json b/plugins/plugin-search/package.json
index e67772ca..5ee0cf63 100644
--- a/plugins/plugin-search/package.json
+++ b/plugins/plugin-search/package.json
@@ -40,7 +40,7 @@
"vuepress": "2.0.0-rc.15"
},
"dependencies": {
- "@vuepress/helper": "2.0.0-rc.46",
+ "@vuepress/helper": "2.0.0-rc.47",
"@vueuse/core": "^11.1.0",
"@vueuse/integrations": "^11.1.0",
"chokidar": "3.6.0",
@@ -48,7 +48,7 @@
"mark.js": "^8.11.1",
"minisearch": "^7.1.0",
"p-map": "^7.0.2",
- "vue": "^3.5.7"
+ "vue": "^3.5.8"
},
"publishConfig": {
"access": "public"
diff --git a/plugins/plugin-shikiji/package.json b/plugins/plugin-shikiji/package.json
index 3551a40f..bb89de00 100644
--- a/plugins/plugin-shikiji/package.json
+++ b/plugins/plugin-shikiji/package.json
@@ -39,7 +39,7 @@
"@shikijs/transformers": "^1.18.0",
"@shikijs/twoslash": "^1.18.0",
"@types/hast": "^3.0.4",
- "@vuepress/helper": "2.0.0-rc.46",
+ "@vuepress/helper": "2.0.0-rc.47",
"@vueuse/core": "^11.1.0",
"floating-vue": "^5.2.2",
"mdast-util-from-markdown": "^2.0.1",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 19914d2a..900bbe65 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -16,7 +16,7 @@ importers:
version: 19.5.0
'@pengzhanbo/eslint-config-vue':
specifier: ^1.17.0
- version: 1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ version: 1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
'@pengzhanbo/stylelint-config':
specifier: ^1.17.0
version: 1.17.0(stylelint@16.9.0(typescript@5.6.2))
@@ -37,7 +37,7 @@ importers:
version: 4.3.0(@types/node@20.12.10)(typescript@5.6.2)
conventional-changelog-cli:
specifier: ^5.0.0
- version: 5.0.0
+ version: 5.0.0(conventional-commits-filter@5.0.0)
cpx2:
specifier: ^7.0.1
version: 7.0.1
@@ -64,7 +64,7 @@ importers:
version: 5.2.0
tsup:
specifier: ^8.3.0
- version: 8.3.0(jiti@1.21.6)(postcss@8.4.41)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0)
+ version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(typescript@5.6.2)(yaml@2.5.1)
typescript:
specifier: ^5.6.2
version: 5.6.2
@@ -96,14 +96,14 @@ importers:
docs:
dependencies:
'@iconify/json':
- specifier: ^2.2.251
- version: 2.2.251
+ specifier: ^2.2.252
+ version: 2.2.252
'@simonwep/pickr':
specifier: ^1.9.1
version: 1.9.1
'@vuepress/bundler-vite':
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0)
+ version: 2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1)
chart.js:
specifier: ^4.4.4
version: 4.4.4
@@ -119,15 +119,18 @@ importers:
mermaid:
specifier: ^11.2.1
version: 11.2.1
+ sass-embedded:
+ specifier: ^1.79.3
+ version: 1.79.3
swiper:
specifier: ^11.1.14
version: 11.1.14
vue:
- specifier: ^3.5.7
- version: 3.5.7(typescript@5.6.2)
+ specifier: ^3.5.8
+ version: 3.5.8(typescript@5.6.2)
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
vuepress-theme-plume:
specifier: workspace:*
version: link:../theme
@@ -139,26 +142,47 @@ importers:
plugins/plugin-content-update:
dependencies:
vue:
- specifier: ^3.5.7
- version: 3.5.7(typescript@5.6.2)
+ specifier: ^3.5.8
+ version: 3.5.8(typescript@5.6.2)
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
plugins/plugin-fonts:
dependencies:
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
plugins/plugin-md-power:
dependencies:
+ '@mdit/plugin-attrs':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-footnote':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-mark':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-sub':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-sup':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-tab':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-tasklist':
+ specifier: ^0.13.1
+ version: 0.13.1(markdown-it@14.1.0)
'@vuepress/helper':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vueuse/core':
specifier: ^11.1.0
- version: 11.1.0(vue@3.5.7(typescript@5.6.2))
+ version: 11.1.0(vue@3.5.8(typescript@5.6.2))
image-size:
specifier: ^1.1.1
version: 1.1.1
@@ -175,14 +199,14 @@ importers:
specifier: ^1.17.24
version: 1.17.24
tm-themes:
- specifier: ^1.8.3
- version: 1.8.3
+ specifier: ^1.8.4
+ version: 1.8.4
vue:
- specifier: ^3.5.7
- version: 3.5.7(typescript@5.6.2)
+ specifier: ^3.5.8
+ version: 3.5.8(typescript@5.6.2)
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
devDependencies:
'@types/markdown-it':
specifier: ^14.1.2
@@ -191,14 +215,14 @@ importers:
plugins/plugin-search:
dependencies:
'@vuepress/helper':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vueuse/core':
specifier: ^11.1.0
- version: 11.1.0(vue@3.5.7(typescript@5.6.2))
+ version: 11.1.0(vue@3.5.8(typescript@5.6.2))
'@vueuse/integrations':
specifier: ^11.1.0
- version: 11.1.0(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.7(typescript@5.6.2))
+ version: 11.1.0(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.8(typescript@5.6.2))
chokidar:
specifier: 3.6.0
version: 3.6.0
@@ -215,11 +239,11 @@ importers:
specifier: ^7.0.2
version: 7.0.2
vue:
- specifier: ^3.5.7
- version: 3.5.7(typescript@5.6.2)
+ specifier: ^3.5.8
+ version: 3.5.8(typescript@5.6.2)
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
plugins/plugin-shikiji:
dependencies:
@@ -233,14 +257,14 @@ importers:
specifier: ^3.0.4
version: 3.0.4
'@vuepress/helper':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vueuse/core':
specifier: ^11.1.0
- version: 11.1.0(vue@3.5.7(typescript@5.6.2))
+ version: 11.1.0(vue@3.5.8(typescript@5.6.2))
floating-vue:
specifier: ^5.2.2
- version: 5.2.2(vue@3.5.7(typescript@5.6.2))
+ version: 5.2.2(vue@3.5.8(typescript@5.6.2))
mdast-util-from-markdown:
specifier: ^2.0.1
version: 2.0.1
@@ -264,7 +288,7 @@ importers:
version: 0.2.11(typescript@5.6.2)
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
theme:
dependencies:
@@ -273,7 +297,7 @@ importers:
version: 2.1.33
'@iconify/vue':
specifier: ^4.1.2
- version: 4.1.2(vue@3.5.7(typescript@5.6.2))
+ version: 4.1.2(vue@3.5.8(typescript@5.6.2))
'@pengzhanbo/utils':
specifier: ^1.1.2
version: 1.1.2
@@ -290,47 +314,56 @@ importers:
specifier: workspace:*
version: link:../plugins/plugin-shikiji
'@vuepress/helper':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-active-header-links':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-cache':
specifier: 2.0.0-rc.42
- version: 2.0.0-rc.42(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ version: 2.0.0-rc.42(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-comment':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-docsearch':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(@algolia/client-search@4.20.0)(search-insights@2.7.0)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(@algolia/client-search@4.24.0)(search-insights@2.17.2)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-git':
specifier: 2.0.0-rc.44
- version: 2.0.0-rc.44(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ version: 2.0.0-rc.44(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-markdown-container':
specifier: 2.0.0-rc.43
- version: 2.0.0-rc.43(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ version: 2.0.0-rc.43(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vuepress/plugin-markdown-hint':
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vuepress/plugin-markdown-image':
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vuepress/plugin-markdown-math':
+ specifier: 2.0.0-rc.49
+ version: 2.0.0-rc.49(katex@0.16.11)(markdown-it@14.1.0)(mathjax-full@3.2.2)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-nprogress':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-photo-swipe':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-reading-time':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-seo':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-sitemap':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vuepress/plugin-watermark':
- specifier: 2.0.0-rc.46
- version: 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.47
+ version: 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
'@vueuse/core':
specifier: ^11.1.0
- version: 11.1.0(vue@3.5.7(typescript@5.6.2))
+ version: 11.1.0(vue@3.5.8(typescript@5.6.2))
bcrypt-ts:
specifier: ^5.0.2
version: 5.0.2
@@ -340,12 +373,12 @@ importers:
create-filter:
specifier: ^1.1.0
version: 1.1.0
- date-fns:
- specifier: ^4.1.0
- version: 4.1.0
+ dayjs:
+ specifier: ^1.11.13
+ version: 1.11.13
esbuild:
- specifier: ^0.23.1
- version: 0.23.1
+ specifier: ^0.24.0
+ version: 0.24.0
fast-glob:
specifier: ^3.3.2
version: 3.3.2
@@ -361,38 +394,46 @@ importers:
local-pkg:
specifier: ^0.5.0
version: 0.5.0
+ mathjax-full:
+ specifier: ^3.2.2
+ version: 3.2.2
nanoid:
specifier: ^5.0.7
version: 5.0.7
+ sass:
+ specifier: ^1.79.3
+ version: 1.79.3
+ sass-embedded:
+ specifier: ^1.79.3
+ version: 1.79.3
+ sass-loader:
+ specifier: ^16.0.2
+ version: 16.0.2(sass-embedded@1.79.3)(sass@1.79.3)
vue:
- specifier: ^3.5.7
- version: 3.5.7(typescript@5.6.2)
+ specifier: ^3.5.8
+ version: 3.5.8(typescript@5.6.2)
vuepress:
specifier: 2.0.0-rc.15
- version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ version: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
vuepress-plugin-md-enhance:
- specifier: 2.0.0-rc.52
- version: 2.0.0-rc.52(chart.js@4.4.4)(echarts@5.5.1)(flowchart.ts@3.0.1)(katex@0.16.11)(markdown-it@14.1.0)(mermaid@10.9.1)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ specifier: 2.0.0-rc.54
+ version: 2.0.0-rc.54(chart.js@4.4.4)(echarts@5.5.1)(flowchart.ts@3.0.1)(markdown-it@14.1.0)(mermaid@11.2.1)(sass-embedded@1.79.3)(sass-loader@16.0.2(sass-embedded@1.79.3)(sass@1.79.3))(sass@1.79.3)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
vuepress-plugin-md-power:
specifier: workspace:*
version: link:../plugins/plugin-md-power
devDependencies:
'@iconify/json':
- specifier: ^2.2.251
- version: 2.2.251
+ specifier: ^2.2.252
+ version: 2.2.252
swiper:
specifier: ^11.1.14
version: 11.1.14
vue-router:
specifier: ^4.4.5
- version: 4.4.5(vue@3.5.7(typescript@5.6.2))
+ version: 4.4.5(vue@3.5.8(typescript@5.6.2))
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@algolia/autocomplete-core@1.9.3':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
@@ -412,51 +453,51 @@ packages:
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- peerDependenciesMeta:
- '@algolia/client-search':
- optional: true
- '@algolia/cache-browser-local-storage@4.20.0':
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
+ '@algolia/cache-browser-local-storage@4.24.0':
+ resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==}
- '@algolia/cache-common@4.20.0':
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
+ '@algolia/cache-common@4.24.0':
+ resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
- '@algolia/cache-in-memory@4.20.0':
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
+ '@algolia/cache-in-memory@4.24.0':
+ resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==}
- '@algolia/client-account@4.20.0':
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
+ '@algolia/client-account@4.24.0':
+ resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
- '@algolia/client-analytics@4.20.0':
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
+ '@algolia/client-analytics@4.24.0':
+ resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
- '@algolia/client-common@4.20.0':
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
+ '@algolia/client-common@4.24.0':
+ resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- '@algolia/client-personalization@4.20.0':
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
+ '@algolia/client-personalization@4.24.0':
+ resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
- '@algolia/client-search@4.20.0':
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
+ '@algolia/client-search@4.24.0':
+ resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
- '@algolia/logger-common@4.20.0':
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
+ '@algolia/logger-common@4.24.0':
+ resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
- '@algolia/logger-console@4.20.0':
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
+ '@algolia/logger-console@4.24.0':
+ resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==}
- '@algolia/requester-browser-xhr@4.20.0':
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
+ '@algolia/recommend@4.24.0':
+ resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
- '@algolia/requester-common@4.20.0':
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
+ '@algolia/requester-browser-xhr@4.24.0':
+ resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
- '@algolia/requester-node-http@4.20.0':
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
+ '@algolia/requester-common@4.24.0':
+ resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
- '@algolia/transporter@4.20.0':
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
+ '@algolia/requester-node-http@4.24.0':
+ resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
+
+ '@algolia/transporter@4.24.0':
+ resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
'@antfu/install-pkg@0.4.1':
resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
@@ -464,24 +505,20 @@ packages:
'@antfu/utils@0.7.10':
resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
- '@babel/code-frame@7.22.13':
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
+ '@babel/code-frame@7.24.7':
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.24.7':
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.22.20':
- resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
+ '@babel/highlight@7.24.7':
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.25.6':
@@ -493,12 +530,12 @@ packages:
resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
engines: {node: '>=6.9.0'}
- '@braintree/sanitize-url@6.0.4':
- resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==}
-
'@braintree/sanitize-url@7.1.0':
resolution: {integrity: sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==}
+ '@bufbuild/protobuf@2.1.0':
+ resolution: {integrity: sha512-+2Mx67Y3skJ4NCD/qNSdBJNWtu6x6Qr53jeNg+QcwiL6mt0wK+3jwHH2x1p7xaYH6Ve2JKOVn0OxU35WsmqI9A==}
+
'@chevrotain/cst-dts-gen@11.0.3':
resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==}
@@ -531,10 +568,6 @@ packages:
resolution: {integrity: sha512-OBhdtJyHNPryZKg0fFpZNOBM1ZDbntMvqMuSmpfyP86XSfwzGw4CaoYRG4RutUPg0BTK07VMRIkNJT6wi2zthg==}
engines: {node: '>=v18'}
- '@commitlint/config-validator@19.0.3':
- resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==}
- engines: {node: '>=v18'}
-
'@commitlint/config-validator@19.5.0':
resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==}
engines: {node: '>=v18'}
@@ -543,10 +576,6 @@ packages:
resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==}
engines: {node: '>=v18'}
- '@commitlint/execute-rule@19.0.0':
- resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==}
- engines: {node: '>=v18'}
-
'@commitlint/execute-rule@19.5.0':
resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==}
engines: {node: '>=v18'}
@@ -563,10 +592,6 @@ packages:
resolution: {integrity: sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==}
engines: {node: '>=v18'}
- '@commitlint/load@19.2.0':
- resolution: {integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==}
- engines: {node: '>=v18'}
-
'@commitlint/load@19.5.0':
resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==}
engines: {node: '>=v18'}
@@ -583,10 +608,6 @@ packages:
resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==}
engines: {node: '>=v18'}
- '@commitlint/resolve-extends@19.1.0':
- resolution: {integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==}
- engines: {node: '>=v18'}
-
'@commitlint/resolve-extends@19.5.0':
resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
engines: {node: '>=v18'}
@@ -603,20 +624,16 @@ packages:
resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==}
engines: {node: '>=v18'}
- '@commitlint/types@19.0.3':
- resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==}
- engines: {node: '>=v18'}
-
'@commitlint/types@19.5.0':
resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==}
engines: {node: '>=v18'}
- '@conventional-changelog/git-client@1.0.0':
- resolution: {integrity: sha512-PkUIv8bcY8/mIJig+3CGneb1hfXvjUotuBcroBHyVO4obIz5WGJpBWTuo17XV4p1sTmbGa8TxAmdMzhlPU+tLA==}
+ '@conventional-changelog/git-client@1.0.1':
+ resolution: {integrity: sha512-PJEqBwAleffCMETaVm/fUgHldzBE35JFk3/9LL6NUA5EXa3qednu+UT6M7E5iBu3zIQZCULYIiZ90fBYHt6xUw==}
engines: {node: '>=18'}
peerDependencies:
- conventional-commits-filter: ^4.0.0
- conventional-commits-parser: ^5.0.0
+ conventional-commits-filter: ^5.0.0
+ conventional-commits-parser: ^6.0.0
peerDependenciesMeta:
conventional-commits-filter:
optional: true
@@ -688,6 +705,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.24.0':
+ resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
@@ -700,6 +723,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.24.0':
+ resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -712,6 +741,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.24.0':
+ resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -724,6 +759,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.24.0':
+ resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -736,6 +777,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.24.0':
+ resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -748,6 +795,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.24.0':
+ resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -760,6 +813,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.24.0':
+ resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
@@ -772,6 +831,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.24.0':
+ resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -784,6 +849,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.24.0':
+ resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -796,6 +867,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.24.0':
+ resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -808,6 +885,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.24.0':
+ resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -820,6 +903,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.24.0':
+ resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -832,6 +921,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.24.0':
+ resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
@@ -844,6 +939,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.24.0':
+ resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -856,6 +957,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.24.0':
+ resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -868,6 +975,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.24.0':
+ resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -880,6 +993,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.24.0':
+ resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -892,12 +1011,24 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.24.0':
+ resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.23.1':
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.24.0':
+ resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -910,6 +1041,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.24.0':
+ resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -922,6 +1059,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.24.0':
+ resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -934,6 +1077,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.24.0':
+ resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
@@ -946,6 +1095,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.24.0':
+ resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -958,6 +1113,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.24.0':
+ resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-plugin-eslint-comments@4.4.0':
resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -970,8 +1131,8 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.0':
- resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
+ '@eslint-community/regexpp@4.11.1':
+ resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/compat@1.1.1':
@@ -1004,14 +1165,14 @@ packages:
resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@floating-ui/core@1.6.0':
- resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
'@floating-ui/dom@1.1.1':
resolution: {integrity: sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==}
- '@floating-ui/utils@0.2.1':
- resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -1031,8 +1192,8 @@ packages:
resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==}
engines: {node: '>=10.13.0'}
- '@iconify/json@2.2.251':
- resolution: {integrity: sha512-QltbOmMpDbjHG7F7shvkmnLu7UTEmf96Vuz+Mt7iWnr8V6bUTv9KSv5fuaZaYWL7zUN5FM4AZlY68/8JgQlRWg==}
+ '@iconify/json@2.2.252':
+ resolution: {integrity: sha512-AtdDjLhN4aBEncnWghiw9JdBRxKAXFcaQmwDFDWPL1UF/cPuuC8BADZzfHIoVcVlEvEbv69tFrzmhj1z/+PGlA==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -1074,8 +1235,8 @@ packages:
'@kurkle/color@0.3.2':
resolution: {integrity: sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==}
- '@lit-labs/ssr-dom-shim@1.2.0':
- resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==}
+ '@lit-labs/ssr-dom-shim@1.2.1':
+ resolution: {integrity: sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==}
'@lit/reactive-element@2.0.4':
resolution: {integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==}
@@ -1104,16 +1265,16 @@ packages:
'@mdit-vue/types@2.1.0':
resolution: {integrity: sha512-TMBB/BQWVvwtpBdWD75rkZx4ZphQ6MN0O4QB2Bc0oI5PC2uE57QerhNxdRZ7cvBHE2iY2C+BUNUziCfJbjIRRA==}
- '@mdit/plugin-alert@0.12.0':
- resolution: {integrity: sha512-4OyGK1PZrJbmEF/kS6GKmmG1nlN5h/CyIPZV8lRgnlWLFB37JiEz3EHusPAXAoMtw7VGNFaIcl7OT/I5yyz1JQ==}
+ '@mdit/plugin-alert@0.13.1':
+ resolution: {integrity: sha512-3LMYQQ3QP6TUx6zmtmuoHJScST5SVoPZlNuuF4S6PUZvJIwtlITF+eFNjDrA7UQx0PUdCgVHmwu5kYliq+BNtg==}
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
- '@mdit/plugin-align@0.12.0':
- resolution: {integrity: sha512-rvA+xzaVrlsr44s7XD/xadO3lF0QYWCbeSrOS2dhOroNCIOy4RotVP/1tQPr84eqm4oXcxXF0cbjFuwUgE1jYw==}
+ '@mdit/plugin-align@0.13.1':
+ resolution: {integrity: sha512-g8je53oEpYNHEudhtB5ViSiAaiMcca+hvoGbInhLl979tWuvEosOs0oWH2X3GM4f6goTGx8gLwzA10Z5C4FxIQ==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1121,8 +1282,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-attrs@0.12.0':
- resolution: {integrity: sha512-J0MBwBq958lBtdIcEo02mUIO4ubl2YK+bY799T2SusrLTf3FZsq8+d/OiLTUtovfxaphD7F6yqo8M61AiOpq+w==}
+ '@mdit/plugin-attrs@0.13.1':
+ resolution: {integrity: sha512-3saBw5W2y3T0QNbui+uk7nfD36FOoBWNQImk+pbMGpKRqunjouiYP4ZtnttT/AiieGbZBVaOqhM4e01Uyua8VA==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1130,8 +1291,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-container@0.12.0':
- resolution: {integrity: sha512-61bWK1ek6Rn4o12/BIKTWgGU0miB9ENcXE19H5D4DRhwG5+4+0zp2U6hRLf/mE73+mRYin7iKVzcwwEsqs+u8w==}
+ '@mdit/plugin-container@0.13.1':
+ resolution: {integrity: sha512-mFfm7YViyLHo8uORVa9oLi9+acZZoSVdPf3WPqzC/yLZAJbF27rfJgWZ9Kylt+tyaAYng8L4DiSeVcSNUIHF1A==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1139,16 +1300,16 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-demo@0.12.0':
- resolution: {integrity: sha512-+KDUOgcvnMtBN/uYWlhIFuWkTJexuxstq8ERy9q7vOiu8Go85qCb27h0RSToKBTmmGy+XqfU2EdJclYPWBupJQ==}
+ '@mdit/plugin-demo@0.13.1':
+ resolution: {integrity: sha512-ne36FB7jstUblatow7ed1Z3Nm0zootM7A6b+77xEw7aJnXHkM5tJLbBfS6l8WN1Ze7fWVZbP7xQkI3wRvjqrqg==}
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
- '@mdit/plugin-figure@0.12.0':
- resolution: {integrity: sha512-3nfcGI+uM0f6AqHZrEr8kSMBI6T2+fKKQXtCbvWQqQ+P3iGgf34Ay2eAtuMDcDGqyfNuR6e8aLoOeY2QWuEynA==}
+ '@mdit/plugin-figure@0.13.1':
+ resolution: {integrity: sha512-bxeUVMPAuXHYRqPzU+1ux7R3LkpyHTdavCa05rQUhzDI07N+BZDE7oOABXnnFbx6ESamzu3/FBtq9VKjoifLmw==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1156,14 +1317,14 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-footnote@0.12.0':
- resolution: {integrity: sha512-9B+bJdMndCPoA9De9bxRm4/fyz02PHRcttOyuyPJ3G+wCAgIN1c/7CB8ViT1YJuECUjLogJQ/rrgqh7f0LTqLQ==}
+ '@mdit/plugin-footnote@0.13.1':
+ resolution: {integrity: sha512-46TzNvY9QXO5y6MbXlewCe+gfw3lgF2IFQCs0enaWVSgKNaGxOuecDR68SlbLPc7unJQCcs5Bb/XB4xsx0depQ==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
- '@mdit/plugin-img-lazyload@0.12.0':
- resolution: {integrity: sha512-6R42ieXzwkB5BKKZi+ZefqeP/fBG5qo7Sqtl72ewSVqEQ30bgxpk6nkrPI2orRob4tb6z0F/c+R8h6PW5MkTOw==}
+ '@mdit/plugin-img-lazyload@0.13.1':
+ resolution: {integrity: sha512-DPzR+yabbgqHWHb8oetOj56TtZzOcn5YZjSTssoh7lY5hp/Yy7jWvlLDrSw/LiXkYEhyocUee78enhTodBEpHQ==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1171,8 +1332,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-img-mark@0.12.0':
- resolution: {integrity: sha512-HkIUwlTg/xPsBi4PG+5dsMnsb7wdiJzELSCEUfdAJTg55nksonHfyV2pFpr87MML4nuZlZK9JHt+Bm2BBDSVSw==}
+ '@mdit/plugin-img-mark@0.13.1':
+ resolution: {integrity: sha512-HOALB1nILV5vkopSKPrclkwwc5WGbpuAWxuOLTz/teOifE8E4JsbiFivcM6URMP1lZXzRBXoniQCCOUhWRis8A==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1180,8 +1341,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-img-size@0.12.0':
- resolution: {integrity: sha512-fCcF5gc+ba6gQ5ebrKuI8bK/gFbj8mbeN45FHmBsFDFsfTHa0Xij2v8iok0nP8YEIVj71y8XYojsqCWs6avong==}
+ '@mdit/plugin-img-size@0.13.1':
+ resolution: {integrity: sha512-cgihl72BNzij7GXjrqcKhl2eOqAlqWHiImOgblJPghDFNFKnnynty/Bf9nwbj8hTnhVWznFeuwawzXBfKYNbkg==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1189,16 +1350,16 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-include@0.12.0':
- resolution: {integrity: sha512-8pnmp7s1TjbtoBIa/YhYpEivOpeVSyhkQoQrGq1UoaEcTbXqmFwShGkAW3zUYZVFYTl74PgL/UqJnrUojegJQg==}
+ '@mdit/plugin-include@0.13.1':
+ resolution: {integrity: sha512-rWGJ3/L2Ocv+8KDNoXPb6H1f+aLqx0FzJKcNqJl+0HOAEScuyKS1GC4OxeWefVMQ87QoG/mYqoCbpDsJeiDbLQ==}
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
- '@mdit/plugin-katex-slim@0.12.0':
- resolution: {integrity: sha512-s2MJGXFZT7u8IUTmy6K1rxxAdYRmGggu0m860siyUrThL112xLN9r3jmXZ83epgi4UA/gLkRDAU5vF6R2JtyjQ==}
+ '@mdit/plugin-katex-slim@0.13.1':
+ resolution: {integrity: sha512-OO4n51aLo0Igv0aICXOaTO5+ZW/jW8Lnl8u1kxs2zkFVNUqpqNHAo8l4QxtscQk5L4XhXGgaTj2ZgAv7rtH96Q==}
engines: {node: '>= 18'}
peerDependencies:
katex: ^0.16.9
@@ -1209,8 +1370,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-mark@0.12.0':
- resolution: {integrity: sha512-BDFwbV/tbgUGL8KF2ymYNLEXT2KNBLe8D0rshDrbB4Iko1U2DywACQkmaUbYBJ1VCn7/dff35at9fWrm3QjrwQ==}
+ '@mdit/plugin-mark@0.13.1':
+ resolution: {integrity: sha512-UV+7cSY8iQXlfnrIJ/gEpgwiL2SSVzVLtaWMOV0J4tRSsdtN8ZXnJn/gC547SxBaOLIkt+0ObSskXaCH/UzuIA==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1218,8 +1379,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-mathjax-slim@0.12.0':
- resolution: {integrity: sha512-bLM+JnCTN/3XiyKb64Yhpx014VYLfHBexua4n92cUyoKR9g3waB0loF1WMlg6GdyCTc7OvrUSceNjwWj3YRogg==}
+ '@mdit/plugin-mathjax-slim@0.13.1':
+ resolution: {integrity: sha512-ZFtKG2BtLAk1BarJZei9HP4aK0vNU7YvDb+R+nApK7MRmLQ53xHe7upu3qlfNBoOZWHXsdRmcz0G4xL3oxzlqA==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1230,16 +1391,16 @@ packages:
mathjax-full:
optional: true
- '@mdit/plugin-plantuml@0.12.0':
- resolution: {integrity: sha512-m1pk6PA9+kWUs8kylLqjnQ7Lex68x3c4Ato8zAh+omkhugfWzuQXfFiXRiJ9C7wkdqHoJx/E5XobP3HJnhCpoA==}
+ '@mdit/plugin-plantuml@0.13.1':
+ resolution: {integrity: sha512-qupMO/lG1mDYaGHSutB9AO1TsxHjmp4yFnvp3VBNNRdVh9lqWhXFv/htrnr0IGEWAmlik6zlkCvz/YrKRONV5A==}
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
- '@mdit/plugin-spoiler@0.12.0':
- resolution: {integrity: sha512-7yu+Gz000O0OxGnGYOoj77Am3WgH4GwzOvwCp7tPLexkJwTve8MyT9In/NEPFaRw8fmgXwthC0gKq4Ubh1+8DA==}
+ '@mdit/plugin-spoiler@0.13.1':
+ resolution: {integrity: sha512-6aOD+kjGavkn+Ta0Iq8AUfBG3UsKsL5e0pxi0Eng13lIEp8DrDw36W+E6fLOFtX8Te3ays6eTkTc1I5WzHO0Gw==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1247,8 +1408,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-stylize@0.12.0':
- resolution: {integrity: sha512-5bzZvmjEpGTdwBax9jaDbCBhD1snEx6uTHVUG9HD/L5koKrL86+ox9E5FGeiMiD1dtxeMgL+WqBzV44nRE9ZPg==}
+ '@mdit/plugin-stylize@0.13.1':
+ resolution: {integrity: sha512-1v+3H1nMMvXsbu6iyV1pQ7WccrRNkuHovkIAp04Vj0FtbjnKrBHlmzFZace5OaD2RcZ0fn6qRpyR+/AIMjUvtQ==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1256,8 +1417,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-sub@0.12.0':
- resolution: {integrity: sha512-27kKkSVkymc+2RNc5XOYkeXip5PgHZPUnHpxUvkpnairLwyHsXb8/gzr9zd5arVkip86rcdy9LIvnF7zO0dNVQ==}
+ '@mdit/plugin-sub@0.13.1':
+ resolution: {integrity: sha512-2rIvEl6pXUoXIm3JMO5ZOQ+vWIeFXmLkqxcmTZB2yOIfhYdLwIcSyquRwtI2AX8zCuvaTdiQ/aypvIE4tDoURw==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1265,8 +1426,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-sup@0.12.0':
- resolution: {integrity: sha512-3bEDW5/y1UDVU8LVbFsqUvNcMW6orp16uCdRGYCNZ3/IeK7Qj1/9a3wfhScIoI8xRUE6M3JLv41sGBFXLHwi1w==}
+ '@mdit/plugin-sup@0.13.1':
+ resolution: {integrity: sha512-vkNif2Rbj7/gtk4/HJt5hnb+Dcbnek/V4HtLdtqUUnq9bIbzFBpYw5jZ1ZKKZeetDtRvOUPH5oy5d7iXAHorUg==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1274,16 +1435,16 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-tab@0.12.0':
- resolution: {integrity: sha512-ZDTEDxHoekcFA5Al+NLizn8Nf0kj6ABkNBAc/VxbQoVQdjZNQtGY2dOPeWW0I96Rao+Aw+IpYRCLFIfb/KtExw==}
+ '@mdit/plugin-tab@0.13.1':
+ resolution: {integrity: sha512-485YgrkrSkY7t/kgCPnCMlk5gWkXiosdZs9aq4rRDytyvRVa8NQs+4cqMUtxAdYzwnZgsvju+/wmcXfUYAG/EA==}
peerDependencies:
markdown-it: ^14.1.0
peerDependenciesMeta:
markdown-it:
optional: true
- '@mdit/plugin-tasklist@0.12.0':
- resolution: {integrity: sha512-MPmuLJrqHYR2xI7ST9Xtw/xj+6Xoq7kUvcGuXWdMMNT11DcU1KppkR8QBHov437NFYh6aGyjrHUVeM4T5Ls8yg==}
+ '@mdit/plugin-tasklist@0.13.1':
+ resolution: {integrity: sha512-flEWnDJFEB7QZIHRwtkVjAEZe9ONiRQLRg7oazRDBM/3Z0rf28blxOx7qj2QZ/FVzQnRRZTgjFQkpiz61IckKQ==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1291,8 +1452,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-tex@0.12.0':
- resolution: {integrity: sha512-ejeSgSeZvcI5P4hFFQ4q5pHrZBGO2fQWVGm6dZ3BhX4ldoV8LjCIzkcMMXhrhSOVjwHnqmF6xOh9EvI0jzak1w==}
+ '@mdit/plugin-tex@0.13.1':
+ resolution: {integrity: sha512-lkRf6XrfVfS11FzT3hiooWdOUPJfAd/cnAv4NN/4WU7qOEz0e0HBVQO8PQb5CPwrE94Ld4+E6rQwJfVH1grkwQ==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1300,8 +1461,8 @@ packages:
markdown-it:
optional: true
- '@mdit/plugin-uml@0.12.0':
- resolution: {integrity: sha512-EfVMmq0CwLJcssxhkvGS2ESenNNEMeK04j702Z9v3am1M9DdEj6zHTrHQd9tA0jNVuFY8ZlmMgDfkkG5k6Rm3Q==}
+ '@mdit/plugin-uml@0.13.1':
+ resolution: {integrity: sha512-JdCOg25OyG+QJFAba6AWwdpkaOjuht5VmOqYt4/h/AzLsIHh/2j+TnCZBn0XQm3D8yJ9Y4w4oouS4wpPduRW0A==}
engines: {node: '>= 18'}
peerDependencies:
markdown-it: ^14.1.0
@@ -1415,83 +1576,83 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@rollup/rollup-android-arm-eabi@4.21.1':
- resolution: {integrity: sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==}
+ '@rollup/rollup-android-arm-eabi@4.22.4':
+ resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.21.1':
- resolution: {integrity: sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==}
+ '@rollup/rollup-android-arm64@4.22.4':
+ resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.21.1':
- resolution: {integrity: sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==}
+ '@rollup/rollup-darwin-arm64@4.22.4':
+ resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.21.1':
- resolution: {integrity: sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==}
+ '@rollup/rollup-darwin-x64@4.22.4':
+ resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.21.1':
- resolution: {integrity: sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
+ resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.21.1':
- resolution: {integrity: sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==}
+ '@rollup/rollup-linux-arm-musleabihf@4.22.4':
+ resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.21.1':
- resolution: {integrity: sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==}
+ '@rollup/rollup-linux-arm64-gnu@4.22.4':
+ resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.21.1':
- resolution: {integrity: sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==}
+ '@rollup/rollup-linux-arm64-musl@4.22.4':
+ resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.21.1':
- resolution: {integrity: sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
+ resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.21.1':
- resolution: {integrity: sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.22.4':
+ resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.21.1':
- resolution: {integrity: sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==}
+ '@rollup/rollup-linux-s390x-gnu@4.22.4':
+ resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.21.1':
- resolution: {integrity: sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==}
+ '@rollup/rollup-linux-x64-gnu@4.22.4':
+ resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.21.1':
- resolution: {integrity: sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==}
+ '@rollup/rollup-linux-x64-musl@4.22.4':
+ resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.21.1':
- resolution: {integrity: sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==}
+ '@rollup/rollup-win32-arm64-msvc@4.22.4':
+ resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.21.1':
- resolution: {integrity: sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==}
+ '@rollup/rollup-win32-ia32-msvc@4.22.4':
+ resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.21.1':
- resolution: {integrity: sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==}
+ '@rollup/rollup-win32-x64-msvc@4.22.4':
+ resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==}
cpu: [x64]
os: [win32]
@@ -1575,8 +1736,8 @@ packages:
peerDependencies:
eslint: '>=8.40.0'
- '@stylistic/stylelint-plugin@3.0.1':
- resolution: {integrity: sha512-j3mH8HSw2Rob/KJFWZ627w3CQ8gQqVHtzCdPeEffUg5vOgpz4rgrR+Xw2kU0OQCDcdW8Y1nKfdXKKjM5Rn8X0g==}
+ '@stylistic/stylelint-plugin@3.1.0':
+ resolution: {integrity: sha512-NU2XR6i1x163KdyDj3zqblA13890fBzHNZYqZ13aor/sB3Yq8kU/0NKCudv5pfl9Kb/UAteo/D7vKMHtaror/A==}
engines: {node: ^18.12 || >=20.9}
peerDependencies:
stylelint: ^16.8.0
@@ -1590,23 +1751,14 @@ packages:
'@types/conventional-commits-parser@5.0.0':
resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==}
- '@types/d3-scale-chromatic@3.0.3':
- resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==}
-
- '@types/d3-scale@4.0.8':
- resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
-
- '@types/d3-time@3.0.3':
- resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==}
-
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- '@types/express-serve-static-core@4.17.43':
- resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
+ '@types/express-serve-static-core@4.19.5':
+ resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -1623,8 +1775,8 @@ packages:
'@types/http-errors@2.0.4':
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
- '@types/jsonfile@6.1.1':
- resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==}
+ '@types/jsonfile@6.1.4':
+ resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
'@types/katex@0.16.7':
resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
@@ -1635,8 +1787,8 @@ packages:
'@types/lodash.merge@4.6.9':
resolution: {integrity: sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==}
- '@types/lodash@4.14.182':
- resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
+ '@types/lodash@4.17.7':
+ resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==}
'@types/markdown-it-emoji@3.0.1':
resolution: {integrity: sha512-cz1j8R35XivBqq9mwnsrP2fsz2yicLhB8+PDtuVkKOExwEdsVBNI+ROL3sbhtR5occRZ66vT0QnwFZCqdjf3pA==}
@@ -1644,11 +1796,8 @@ packages:
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
- '@types/mdast@3.0.15':
- resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
-
- '@types/mdast@4.0.3':
- resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
+ '@types/mdast@4.0.4':
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
'@types/mdurl@2.0.0':
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
@@ -1656,11 +1805,8 @@ packages:
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- '@types/mime@3.0.4':
- resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
-
- '@types/ms@0.7.31':
- resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
+ '@types/ms@0.7.34':
+ resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
@@ -1668,14 +1814,11 @@ packages:
'@types/node@20.12.10':
resolution: {integrity: sha512-Eem5pH9pmWBHoGAT8Dr5fdc5rYA+4NAovdM4EktRPVAAiJhmWWfQrA0cFhAbOsQdSfIHjAud6YdkbL69+zSKjw==}
- '@types/node@20.14.8':
- resolution: {integrity: sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==}
-
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
- '@types/qs@6.9.12':
- resolution: {integrity: sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg==}
+ '@types/qs@6.9.16':
+ resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
@@ -1683,8 +1826,8 @@ packages:
'@types/raphael@2.3.9':
resolution: {integrity: sha512-K1dZwoLNvEN+mvleFU/t2swG9Z4SE5Vub7dA5wDYojH0bVTQ8ZAP+lNsl91t1njdu/B+roSEL4QXC67I7Hpiag==}
- '@types/sax@1.2.4':
- resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
+ '@types/sax@1.2.7':
+ resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
'@types/semver@7.5.8':
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
@@ -1692,17 +1835,14 @@ packages:
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
- '@types/serve-static@1.15.5':
- resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
+ '@types/serve-static@1.15.7':
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- '@types/trusted-types@2.0.2':
- resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==}
+ '@types/trusted-types@2.0.7':
+ resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
-
- '@types/unist@3.0.2':
- resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
+ '@types/unist@3.0.3':
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
@@ -1735,10 +1875,6 @@ packages:
resolution: {integrity: sha512-KQL502sCGZW+dYvxIzF6rEozbgppN0mBkYV6kT8ciY5OtFIRlLDTP7NdVAMMDk7q35T7Ad8negaQ9AGpZ8+Y5w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/scope-manager@8.4.0':
- resolution: {integrity: sha512-n2jFxLeY0JmKfUqy3P70rs6vdoPjHK8P/w+zJcV3fk0b0BwRXC/zxRTEnAsgYT7MwdQDt/ZEbtdzdVC+hcpF0A==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@typescript-eslint/scope-manager@8.6.0':
resolution: {integrity: sha512-ZuoutoS5y9UOxKvpc/GkvF4cuEmpokda4wRg64JEia27wX+PysIE9q+lzDtlHHgblwUWwo5/Qn+/WyTUvDwBHw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1756,10 +1892,6 @@ packages:
resolution: {integrity: sha512-44mUq4VZVydxNlOM8Xtp/BXDkyfuvvjgPIBf7vRQDutrLDeNS0pJ9pcSloSbop5MwKLfJjBU+PbwnJPQM+DWNg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/types@8.4.0':
- resolution: {integrity: sha512-T1RB3KQdskh9t3v/qv7niK6P8yvn7ja1mS7QK7XfRVL6wtZ8/mFs/FHf4fKvTA0rKnqnYxl/uHFNbnEt0phgbw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@typescript-eslint/types@8.6.0':
resolution: {integrity: sha512-rojqFZGd4MQxw33SrOy09qIDS8WEldM8JWtKQLAjf/X5mGSeEFh5ixQlxssMNyPslVIk9yzWqXCsV2eFhYrYUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1773,15 +1905,6 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.4.0':
- resolution: {integrity: sha512-kJ2OIP4dQw5gdI4uXsaxUZHRwWAGpREJ9Zq6D5L0BweyOrWsL6Sz0YcAZGWhvKnH7fm1J5YFE1JrQL0c9dd53A==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@typescript-eslint/typescript-estree@8.6.0':
resolution: {integrity: sha512-MOVAzsKJIPIlLK239l5s06YXjNqpKTVhBVDnqUumQJja5+Y94V3+4VUFRA0G60y2jNnTVwRCkhyGQpavfsbq/g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1797,12 +1920,6 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/utils@8.4.0':
- resolution: {integrity: sha512-swULW8n1IKLjRAgciCkTCafyTHHfwVQFt8DovmaF69sKbOxTSFMmIZaSHjqO9i/RV0wIblaawhzvtva8Nmm7lQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
-
'@typescript-eslint/utils@8.6.0':
resolution: {integrity: sha512-eNp9cWnYf36NaOVjkEUznf6fEgVy1TWpE0o52e4wtojjBx7D1UV2WAWGzR+8Y5lVFtpMLPwNbC67T83DWSph4A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1813,10 +1930,6 @@ packages:
resolution: {integrity: sha512-y1stojSPb5D3M8VlGGpaiBU5XxGLe+sPuW0YbLe09Lxvo4AwKGvhAr5lhqJZo4z6qHNz385+6+BS63+qIQdYLw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/visitor-keys@8.4.0':
- resolution: {integrity: sha512-zTQD6WLNTre1hj5wp09nBIDiOc2U5r/qmzo7wxPn4ZgAjHql09EofqhF9WF+fZHzL5aCyaIpPcT2hyxl73kr9A==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
'@typescript-eslint/visitor-keys@8.6.0':
resolution: {integrity: sha512-wapVFfZg9H0qOYh4grNVQiMklJGluQrOUiOhYRrQWhx7BY/+I1IYb8BczWNbbUpO+pqy0rDciv3lQH5E1bCLrg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1829,8 +1942,8 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@vitejs/plugin-vue@5.1.2':
- resolution: {integrity: sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==}
+ '@vitejs/plugin-vue@5.1.4':
+ resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
@@ -1851,36 +1964,27 @@ packages:
vitest:
optional: true
- '@volar/language-core@2.4.1':
- resolution: {integrity: sha512-9AKhC7Qn2mQYxj7Dz3bVxeOk7gGJladhWixUYKef/o0o7Bm4an+A3XvmcTHVqZ8stE6lBVH++g050tBtJ4TZPQ==}
+ '@volar/language-core@2.4.5':
+ resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==}
- '@volar/source-map@2.4.1':
- resolution: {integrity: sha512-Xq6ep3OZg9xUqN90jEgB9ztX5SsTz1yiV8wiQbcYNjWkek+Ie3dc8l7AVt3EhDm9mSIR58oWczHkzM2H6HIsmQ==}
+ '@volar/source-map@2.4.5':
+ resolution: {integrity: sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw==}
- '@vue/compiler-core@3.5.2':
- resolution: {integrity: sha512-1aP7FL2GkqfcskHWGg3lfWQpJnrmewKc+rNJ/hq9WNaAw4BEyJ5QbNChnqmbw+tJ409zdy1XWmUeXXMrCKJcQQ==}
+ '@vue/compiler-core@3.5.8':
+ resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==}
- '@vue/compiler-core@3.5.7':
- resolution: {integrity: sha512-A0gay3lK71MddsSnGlBxRPOugIVdACze9L/rCo5X5srCyjQfZOfYtSFMJc3aOZCM+xN55EQpb4R97rYn/iEbSw==}
+ '@vue/compiler-dom@3.5.8':
+ resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==}
- '@vue/compiler-dom@3.5.2':
- resolution: {integrity: sha512-QY4DpT8ZIUyu/ZA5gErpSEDocGNEbHmpkZIC/d5jbp/rUF0iOJNigAy3HCCKc0PMMhDlrcysO3ufQ6Ab4MpEcQ==}
+ '@vue/compiler-sfc@3.5.8':
+ resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==}
- '@vue/compiler-dom@3.5.7':
- resolution: {integrity: sha512-GYWl3+gO8/g0ZdYaJ18fYHdI/WVic2VuuUd1NsPp60DWXKy+XjdhFsDW7FbUto8siYYZcosBGn9yVBkjhq1M8Q==}
-
- '@vue/compiler-sfc@3.5.7':
- resolution: {integrity: sha512-EjOJtCWJrC7HqoCEzOwpIYHm+JH7YmkxC1hG6VkqIukYRqj8KFUlTLK6hcT4nGgtVov2+ZfrdrRlcaqS78HnBA==}
-
- '@vue/compiler-ssr@3.5.7':
- resolution: {integrity: sha512-oZx+jXP2k5arV/8Ly3TpQbfFyimMw2ANrRqvHJoKjPqtEzazxQGZjCLOfq8TnZ3wy2TOXdqfmVp4q7FyYeHV4g==}
+ '@vue/compiler-ssr@3.5.8':
+ resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
- '@vue/devtools-api@6.6.3':
- resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
-
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
@@ -1892,28 +1996,22 @@ packages:
typescript:
optional: true
- '@vue/reactivity@3.5.7':
- resolution: {integrity: sha512-yF0EpokpOHRNXyn/h6abXc9JFIzfdAf0MJHIi92xxCWS0mqrXH6+2aZ+A6EbSrspGzX5MHTd5N8iBA28HnXu9g==}
+ '@vue/reactivity@3.5.8':
+ resolution: {integrity: sha512-mlgUyFHLCUZcAYkqvzYnlBRCh0t5ZQfLYit7nukn1GR96gc48Bp4B7OIcSfVSvlG1k3BPfD+p22gi1t2n9tsXg==}
- '@vue/runtime-core@3.5.7':
- resolution: {integrity: sha512-OzLpBpKbZEaZVSNfd+hQbfBrDKux+b7Yl5hYhhWWWhHD7fEpF+CdI3Brm5k5GsufHEfvMcjruPxwQZuBN6nFYQ==}
+ '@vue/runtime-core@3.5.8':
+ resolution: {integrity: sha512-fJuPelh64agZ8vKkZgp5iCkPaEqFJsYzxLk9vSC0X3G8ppknclNDr61gDc45yBGTaN5Xqc1qZWU3/NoaBMHcjQ==}
- '@vue/runtime-dom@3.5.7':
- resolution: {integrity: sha512-fL7cETfE27U2jyTgqzE382IGFY6a6uyznErn27KbbEzNctzxxUWYDbaN3B55l9nXh0xW2LRWPuWKOvjtO2UewQ==}
+ '@vue/runtime-dom@3.5.8':
+ resolution: {integrity: sha512-DpAUz+PKjTZPUOB6zJgkxVI3GuYc2iWZiNeeHQUw53kdrparSTG6HeXUrYDjaam8dVsCdvQxDz6ZWxnyjccUjQ==}
- '@vue/server-renderer@3.5.7':
- resolution: {integrity: sha512-peRypij815eIDjpPpPXvYQGYqPH6QXwLJGWraJYPPn8JqWGl29A8QXnS7/Mh3TkMiOcdsJNhbFCoW2Agc2NgAQ==}
+ '@vue/server-renderer@3.5.8':
+ resolution: {integrity: sha512-7AmC9/mEeV9mmXNVyUIm1a1AjUhyeeGNbkLh39J00E7iPeGks8OGRB5blJiMmvqSh8SkaS7jkLWSpXtxUCeagA==}
peerDependencies:
- vue: 3.5.7
+ vue: 3.5.8
- '@vue/shared@3.5.2':
- resolution: {integrity: sha512-Ce89WNFBzcDca/AgFTxgX4/K4iAyF7oFIp8Z5aBbFBNbtpwnQr+5pZOoHndxnjE2h+YFcipVMzs9UL11XB6dwA==}
-
- '@vue/shared@3.5.4':
- resolution: {integrity: sha512-L2MCDD8l7yC62Te5UUyPVpmexhL9ipVnYRw9CsWfm/BGRL5FwDX4a25bcJ/OJSD3+Hx+k/a8LDKcG2AFdJV3BA==}
-
- '@vue/shared@3.5.7':
- resolution: {integrity: sha512-NBE1PBIvzIedxIc2RZiKXvGbJkrZ2/hLf3h8GlS4/sP9xcXEZMFWOazFkNd6aGeUCMaproe5MHVYB3/4AW9q9g==}
+ '@vue/shared@3.5.8':
+ resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==}
'@vuepress/bundler-vite@2.0.0-rc.15':
resolution: {integrity: sha512-xPJBOvrt9hn+3dkMuWIpVy1Jb3a29ZPkEZ0nE10ULzLaGvN+Lv6tB7FPTN9d67LGT4wi09X0EXSvWg9Eun+6pQ==}
@@ -1928,21 +2026,16 @@ packages:
'@vuepress/core@2.0.0-rc.15':
resolution: {integrity: sha512-CcVuANpF3k5QH6k27uShpQc+fdb35QdMbqNr4YEBleCVM2M5fHPeA8Did2OgzDzdr15G+AX2aP98yNVLgNR8cw==}
- '@vuepress/helper@2.0.0-rc.39':
- resolution: {integrity: sha512-X9KiTUjtrT6gxrDUDJhiB5+/kO4via8yzudowOPu55p/MKtPbShlJw/zEDivH3P4nD1LFWnjWWuEBgZLFymLFQ==}
- peerDependencies:
- vuepress: 2.0.0-rc.14
-
- '@vuepress/helper@2.0.0-rc.46':
- resolution: {integrity: sha512-LofxIcQk9584cSICl9DwXpfZ0EqUe5nC9u01+edZde8JSNLjncMx2rFfFKUl2YpuSCZpCkL71JgZ3Ym/1AUfaA==}
+ '@vuepress/helper@2.0.0-rc.47':
+ resolution: {integrity: sha512-XlfrkRjxv7Id3sc8Wjh7pHs2eFhOE/HAA+u9AMLZHcfxZUBkIftBfrSqg9ZBGybVkm4aGT+K/sC2IZxFhqukiA==}
peerDependencies:
vuepress: 2.0.0-rc.15
'@vuepress/markdown@2.0.0-rc.15':
resolution: {integrity: sha512-q+yuwV+PzvFCs92Q/O/3HHRDY9CNYKJgc+fKbqE98P3qGBATnDtABUjc+NjtPvG4OdYt2fELTXOzyprE8omFIw==}
- '@vuepress/plugin-active-header-links@2.0.0-rc.46':
- resolution: {integrity: sha512-Tvl1ZSUgROlP4ZJ4YtFtOrZ2tp9ZZCgWOQq5q/JlGhT3TiM8mF1za4dAifRO9lpakYADrFSmDY7+CRriZiuI8w==}
+ '@vuepress/plugin-active-header-links@2.0.0-rc.47':
+ resolution: {integrity: sha512-Y7pB8opzVmzkOPlQo6pWpP+xdagkVM+gKruudb+IR6irF8p53W77VWsdwxep8nmd02gk8gewGM+Wud7as4iV9w==}
peerDependencies:
vuepress: 2.0.0-rc.15
@@ -1951,8 +2044,8 @@ packages:
peerDependencies:
vuepress: 2.0.0-rc.15
- '@vuepress/plugin-comment@2.0.0-rc.46':
- resolution: {integrity: sha512-mb7zeKxNbEDFg829fMcKvUkqSwDUfjvHwkdP51Poa4P0xXzbrchG1y/q15ILm7XVG9afzVIq4o+V429nNhGMGA==}
+ '@vuepress/plugin-comment@2.0.0-rc.47':
+ resolution: {integrity: sha512-HULK4Dt5Mj+vU8pppADXgjnQb2TULyVNlJILKR7L8+HgXi860+W6SbFvtMh/VF92MY0x6NUUeDeD/XoiXgOKnA==}
peerDependencies:
'@waline/client': ^3.3.1
artalk: ^2.9.0
@@ -1966,8 +2059,8 @@ packages:
twikoo:
optional: true
- '@vuepress/plugin-docsearch@2.0.0-rc.46':
- resolution: {integrity: sha512-agCcD49xXux5l914qZEUTMcJbm8LTwMTbjfjVTmcqHd0R4/5bxsrv6zhUIeokVnfhOQYcwwzVhj3qX773uZy3w==}
+ '@vuepress/plugin-docsearch@2.0.0-rc.47':
+ resolution: {integrity: sha512-Eh1FKLIa+WwSbY8A/rp5RFU1QXQH5nJ+1bFojSFMgblaPr0K0J4b74Ro9HQeCDnvH/zjIO4Ho9qwJtmJ8Jhgwg==}
peerDependencies:
vuepress: 2.0.0-rc.15
@@ -1981,42 +2074,70 @@ packages:
peerDependencies:
vuepress: 2.0.0-rc.15
- '@vuepress/plugin-nprogress@2.0.0-rc.46':
- resolution: {integrity: sha512-lSVW3+76ny4etghttPy6PR6At4g8vmrOh47gwXXmNAWoSuB0FPQPIbBggaj2nXpEA7KN2JOPa1QGGMrFuunvbg==}
+ '@vuepress/plugin-markdown-hint@2.0.0-rc.47':
+ resolution: {integrity: sha512-TCK9uaLjnCIhhDYn5zBZIgzKeLUpgwG2cuJ0fAcmzKTF/0Am/+G4cLsnbwqrfEZr0WMooWG1KFjTHMAQ+f6lNQ==}
peerDependencies:
vuepress: 2.0.0-rc.15
- '@vuepress/plugin-photo-swipe@2.0.0-rc.46':
- resolution: {integrity: sha512-ZcNosVFMfCoT6gH9T/1n8vOn3zLF7WI7XesBUkU49S5YsMcU3ReSG1Ki4eXvPWT1GUjcteA360S7NSrYMdZmuw==}
+ '@vuepress/plugin-markdown-image@2.0.0-rc.47':
+ resolution: {integrity: sha512-clZuFplQq7RaXh0Itp6sUT/Dw+i0dou+bCfqDTPhU91AsnNDCJkyPWar7xQHBvYKkBcwD/Lh5GLRludH+PaAGg==}
peerDependencies:
vuepress: 2.0.0-rc.15
- '@vuepress/plugin-reading-time@2.0.0-rc.46':
- resolution: {integrity: sha512-jMXfk/yyJC8oBkCwGRn3rZcp/oYp2NNydR2KMSAd1A/Eevms2jrUoVL/nftXXpJmrBGeAxRDHMN62iiwcpwgYw==}
+ '@vuepress/plugin-markdown-math@2.0.0-rc.49':
+ resolution: {integrity: sha512-1SuXKrlbyZqk3gLdtWxB/PRLVhsnz+i7W0IwvMj1fIB6iMIToWypUX1xeOnNHq3q5NWtRYOj8en+Xs5r906IVw==}
peerDependencies:
+ katex: ^0.16.10
+ mathjax-full: ^3.2.2
vuepress: 2.0.0-rc.15
-
- '@vuepress/plugin-sass-palette@2.0.0-rc.39':
- resolution: {integrity: sha512-jBo/4Lz7H9pa7TCqMSFiEyZRowsLCOVHj+yrp0PE1fAwx+qTm9dNSDKauWIKGplFGQqf4BdKITE7hPDoBePiDw==}
- peerDependencies:
- sass-loader: ^14.0.0
- vuepress: 2.0.0-rc.14
peerDependenciesMeta:
+ katex:
+ optional: true
+ mathjax-full:
+ optional: true
+
+ '@vuepress/plugin-nprogress@2.0.0-rc.47':
+ resolution: {integrity: sha512-+e40iceSYnXOd6IW5a2lhDAiGVDQ/XvrL20KRYwERHcsUWqRKrzNpSiI8YhTucG+N2juLDaJsZNjeia2HofErQ==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.15
+
+ '@vuepress/plugin-photo-swipe@2.0.0-rc.47':
+ resolution: {integrity: sha512-p4dadqlv97KtfU/7Fpx5Ck8ofz/4grRh7o8Vd+Q7MCuinPWCUs3ywhToU+9Sukkv2FcVGRi4LPBJkBntN5IKLg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.15
+
+ '@vuepress/plugin-reading-time@2.0.0-rc.47':
+ resolution: {integrity: sha512-OHIMnFx8np0u0m0ujTg4QBya/imG+hIbMPP9jEDfF48fxoXGwWZyw0RfmwOQXrAtcjpOkZ25jkvqn2ZrjPM1jg==}
+ peerDependencies:
+ vuepress: 2.0.0-rc.15
+
+ '@vuepress/plugin-sass-palette@2.0.0-rc.51':
+ resolution: {integrity: sha512-OvO19SRmcNHXqMI8FG+BBDkg1sSe55KWOLArBcquAkrLvf2JYR0urmPJfNauPBbLcNWwS6dTkSwBFJ4FGJ28Dw==}
+ peerDependencies:
+ sass: ^1.79.2
+ sass-embedded: ^1.79.2
+ sass-loader: ^16.0.1
+ vuepress: 2.0.0-rc.15
+ peerDependenciesMeta:
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
sass-loader:
optional: true
- '@vuepress/plugin-seo@2.0.0-rc.46':
- resolution: {integrity: sha512-RxZBMN6xHjoYk5tmsIatsEebk2u6kDldQnkjMkjRrX4UkC+e/rd+ehqIUUEba6dauPCFkI1tV3eXht5WOsx5ZA==}
+ '@vuepress/plugin-seo@2.0.0-rc.47':
+ resolution: {integrity: sha512-CLcot2K+H13eCrB/dyKoZ/GZf+jg+CCKiNyGI3o48U4oLT8qYQJpYtccAUvJ5a9yCPlrUB8VwsL/CGflJIbitw==}
peerDependencies:
vuepress: 2.0.0-rc.15
- '@vuepress/plugin-sitemap@2.0.0-rc.46':
- resolution: {integrity: sha512-kkVJ7CPIHJ/QP4K4YIg/1AT7meUKWFgWknFcmLnKmKy88pdOxggv8re32RMp/eCZl456EhQq49s9oF+7HKdFVQ==}
+ '@vuepress/plugin-sitemap@2.0.0-rc.47':
+ resolution: {integrity: sha512-iO0zvX9YyDQqKd9l8B/9xM3jKH6yxmK0Rlc/6ICubsqOfYutv3rEwgzWS5Sddd0eCL8a8u4jfY7TZyjDbdihnQ==}
peerDependencies:
vuepress: 2.0.0-rc.15
- '@vuepress/plugin-watermark@2.0.0-rc.46':
- resolution: {integrity: sha512-jE0xItjUG3u7XO9X0PA8ki/JplArmWzyGhwWWFEhVLJQMFYD/nUZKFxMtx/As2GUuAmqxpWx3v3Qw+dA99rGRA==}
+ '@vuepress/plugin-watermark@2.0.0-rc.47':
+ resolution: {integrity: sha512-yI4ri60n0eIArDX/LjgalUH86RAWO+No4UnJ+vn1bk3pOGDIQ0DgjsTB3wT6Qw2JuFRDWCaQNPGUyna3pe5SMw==}
peerDependencies:
vuepress: 2.0.0-rc.15
@@ -2026,9 +2147,6 @@ packages:
'@vuepress/utils@2.0.0-rc.15':
resolution: {integrity: sha512-yHdMxPg8yxlAz/QL5G7U1IQ+jk34sCtn8H8X5j+A2U1x/j2lnr8LLDWzl84TyN78pdEA1cQL5g7Ks/zTzrIWhQ==}
- '@vueuse/core@10.11.1':
- resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
-
'@vueuse/core@11.1.0':
resolution: {integrity: sha512-P6dk79QYA6sKQnghrUz/1tHi0n9mrb/iO1WTMk/ElLmTyNqgDeSZ3wcDf6fRBGzRJbeG1dxzEOvLENMjr+E3fg==}
@@ -2073,15 +2191,9 @@ packages:
universal-cookie:
optional: true
- '@vueuse/metadata@10.11.1':
- resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
-
'@vueuse/metadata@11.1.0':
resolution: {integrity: sha512-l9Q502TBTaPYGanl1G+hPgd3QX5s4CGnpXriVBR5fEZ/goI6fvDaVmIl3Td8oKFurOxTmbXvBPSsgrd6eu6HYg==}
- '@vueuse/shared@10.11.1':
- resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
-
'@vueuse/shared@11.1.0':
resolution: {integrity: sha512-YUtIpY122q7osj+zsNMFAfMTubGz0sn5QzE5gPzAIiCmtt2ha3uQUY1+JPyL4gRCTsLPX82Y9brNbo/aqlA91w==}
@@ -2094,16 +2206,6 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.12.1:
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
@@ -2115,11 +2217,11 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- ajv@8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch@4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
+ algoliasearch@4.24.0:
+ resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
@@ -2133,8 +2235,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -2220,8 +2322,8 @@ packages:
resolution: {integrity: sha512-gDwQ5784AkkfhHACh3jGcg1hUubyZyeq9AtVd5gXkcyHGVOC+mORjRIHSj+fHfqwY5vxwyBLXQpcfk8MpK0ROg==}
engines: {node: '>=18'}
- binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
bl@4.1.0:
@@ -2236,10 +2338,6 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
- engines: {node: '>=8'}
-
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
@@ -2249,6 +2347,9 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ buffer-builder@0.2.0:
+ resolution: {integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==}
+
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
@@ -2267,8 +2368,8 @@ packages:
peerDependencies:
esbuild: '>=0.18'
- c12@1.11.1:
- resolution: {integrity: sha512-KDU0TvSvVdaYcQKQ6iPHATGz/7p/KiVjPg4vQrB6Jg/wX9R0yl5RZxWm9IoZqaIHD2+6PZd81+KMGwRr/lRIUg==}
+ c12@1.11.2:
+ resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
peerDependencies:
magicast: ^0.3.4
peerDependenciesMeta:
@@ -2294,8 +2395,8 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- caniuse-lite@1.0.30001653:
- resolution: {integrity: sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==}
+ caniuse-lite@1.0.30001663:
+ resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -2335,10 +2436,6 @@ packages:
resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==}
engines: {node: '>=18.17'}
- cheerio@1.0.0-rc.12:
- resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
- engines: {node: '>= 6'}
-
chevrotain-allstar@0.3.1:
resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==}
peerDependencies:
@@ -2351,6 +2448,10 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
@@ -2370,10 +2471,6 @@ packages:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
- cli-cursor@4.0.0:
- resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
cli-cursor@5.0.0:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
@@ -2417,6 +2514,9 @@ packages:
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ colorjs.io@0.5.2:
+ resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==}
+
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -2440,6 +2540,10 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
+ commander@9.2.0:
+ resolution: {integrity: sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==}
+ engines: {node: ^12.20.0 || >=14}
+
comment-parser@1.4.1:
resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
engines: {node: '>= 12.0.0'}
@@ -2552,8 +2656,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.38.1:
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
core-js@3.37.0:
resolution: {integrity: sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==}
@@ -2784,17 +2888,14 @@ packages:
resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
engines: {node: '>=12'}
- date-fns@4.1.0:
- resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
-
- dayjs@1.11.12:
- resolution: {integrity: sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- debounce@2.0.0:
- resolution: {integrity: sha512-xRetU6gL1VJbs85Mc4FoEGSjQxzpdxRyFhe3lmWFyy2EzydIcD4xzUvRJMD+NPDfMwKNhxa3PvsIOU32luIWeA==}
+ debounce@2.1.1:
+ resolution: {integrity: sha512-+xRWxgel9LgTC4PwKlm7TJUK6B6qsEK77NaiNvXmeQ7Y3e6OVVsBC4a9BSptS/mAYceyAz37Oa8JTTuPRft7uQ==}
engines: {node: '>=18'}
debug@3.2.7:
@@ -2805,17 +2906,8 @@ packages:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
- debug@4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -2867,10 +2959,6 @@ packages:
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
- diff@5.2.0:
- resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
- engines: {node: '>=0.3.1'}
-
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -2892,9 +2980,6 @@ packages:
dompurify@3.1.6:
resolution: {integrity: sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==}
- domutils@3.0.1:
- resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
-
domutils@3.1.0:
resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
@@ -2915,14 +3000,11 @@ packages:
echarts@5.5.1:
resolution: {integrity: sha512-Fce8upazaAXUVUVsjgV6mBnGuqgO+JNDlcgF79Dksy4+wgGpQB2lmYoO4TSweFg/mZITdpGHomw/cNBJZj1icA==}
- electron-to-chromium@1.5.13:
- resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==}
+ electron-to-chromium@1.5.27:
+ resolution: {integrity: sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==}
- elkjs@0.9.2:
- resolution: {integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==}
-
- emoji-regex@10.3.0:
- resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
+ emoji-regex@10.4.0:
+ resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -2933,8 +3015,8 @@ packages:
encoding-sniffer@0.2.0:
resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
- enhanced-resolve@5.17.0:
- resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
entities@4.5.0:
@@ -2945,8 +3027,8 @@ packages:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- envinfo@7.13.0:
- resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
+ envinfo@7.14.0:
+ resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==}
engines: {node: '>=4'}
hasBin: true
@@ -2978,8 +3060,13 @@ packages:
engines: {node: '>=18'}
hasBin: true
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ esbuild@0.24.0:
+ resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-string-regexp@1.0.5:
@@ -2994,14 +3081,8 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- eslint-compat-utils@0.1.2:
- resolution: {integrity: sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==}
- engines: {node: '>=12'}
- peerDependencies:
- eslint: '>=6.0.0'
-
- eslint-compat-utils@0.5.0:
- resolution: {integrity: sha512-dc6Y8tzEcSYZMHa+CMPLi/hyo1FzNeonbhJL7Ol0ccuKQkwopJcJBA9YL/xmMTLU1eKigXo9vj9nALElWYSowg==}
+ eslint-compat-utils@0.5.1:
+ resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
engines: {node: '>=12'}
peerDependencies:
eslint: '>=6.0.0'
@@ -3032,14 +3113,14 @@ packages:
peerDependencies:
eslint: '*'
- eslint-plugin-es-x@7.5.0:
- resolution: {integrity: sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==}
+ eslint-plugin-es-x@7.8.0:
+ resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '>=8'
- eslint-plugin-import-x@4.2.1:
- resolution: {integrity: sha512-WWi2GedccIJa0zXxx3WDnTgouGQTtdYK1nhXMwywbqqAgB0Ov+p1pYBsWh3VaB0bvBOwLse6OfVII7jZD9xo5Q==}
+ eslint-plugin-import-x@4.3.0:
+ resolution: {integrity: sha512-PxGzP7gAjF2DLeRnQtbYkkgZDg1intFyYr/XS1LgTYXUDrSXMHGkXx8++6i2eDv2jMs0jfeO6G6ykyeWxiFX7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -3156,6 +3237,10 @@ packages:
jiti:
optional: true
+ esm@3.2.25:
+ resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
+ engines: {node: '>=6'}
+
espree@10.1.0:
resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -3234,12 +3319,15 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-uri@3.0.1:
+ resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
+
fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
engines: {node: '>= 4.9.1'}
- fastq@1.14.0:
- resolution: {integrity: sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==}
+ fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
fdir@6.3.0:
resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
@@ -3264,14 +3352,10 @@ packages:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
- file-entry-cache@9.0.0:
- resolution: {integrity: sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==}
+ file-entry-cache@9.1.0:
+ resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==}
engines: {node: '>=18'}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
- engines: {node: '>=8'}
-
fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
@@ -3305,8 +3389,8 @@ packages:
resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==}
engines: {node: '>= 8'}
- flat-cache@4.0.0:
- resolution: {integrity: sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==}
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
flat-cache@5.0.0:
@@ -3332,8 +3416,8 @@ packages:
focus-trap@7.6.0:
resolution: {integrity: sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ==}
- follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -3341,8 +3425,8 @@ packages:
debug:
optional: true
- foreground-child@3.1.1:
- resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
form-data@4.0.0:
@@ -3352,10 +3436,6 @@ packages:
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- fs-extra@11.1.1:
- resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
- engines: {node: '>=14.14'}
-
fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
@@ -3403,8 +3483,8 @@ packages:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
- get-tsconfig@4.7.5:
- resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
giget@1.2.3:
resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
@@ -3440,9 +3520,8 @@ packages:
resolution: {integrity: sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=}
engines: {node: '>= 0.10'}
- glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
glob@11.0.0:
@@ -3500,9 +3579,6 @@ packages:
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- graceful-fs@4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
-
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -3543,8 +3619,8 @@ packages:
hash-sum@2.0.0:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
- hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
hast-util-to-html@9.0.3:
@@ -3564,8 +3640,8 @@ packages:
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- hosted-git-info@7.0.1:
- resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
+ hosted-git-info@7.0.2:
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
engines: {node: ^16.14.0 || >=18.0.0}
html-encoding-sniffer@3.0.0:
@@ -3579,8 +3655,8 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- htmlparser2@8.0.1:
- resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
+ htmlparser2@8.0.2:
+ resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
htmlparser2@9.1.0:
resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
@@ -3622,14 +3698,6 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore@5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
- engines: {node: '>= 4'}
-
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
- engines: {node: '>= 4'}
-
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
@@ -3639,15 +3707,15 @@ packages:
engines: {node: '>=16.x'}
hasBin: true
- immutable@4.1.0:
- resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==}
+ immutable@4.3.7:
+ resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-meta-resolve@4.0.0:
- resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==}
+ import-meta-resolve@4.1.0:
+ resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -3697,8 +3765,9 @@ packages:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
@@ -3776,8 +3845,8 @@ packages:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
- is-unicode-supported@2.0.0:
- resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
is-utf8@0.2.1:
@@ -3790,18 +3859,13 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
jackspeak@4.0.1:
resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==}
engines: {node: 20 || >=22}
- jiti@1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
- hasBin: true
-
jiti@1.21.6:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
@@ -3864,9 +3928,6 @@ packages:
resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
-
jsonc-parser@3.3.1:
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
@@ -3895,13 +3956,6 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
-
- known-css-properties@0.29.0:
- resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==}
-
known-css-properties@0.34.0:
resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==}
@@ -3922,10 +3976,6 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lilconfig@3.1.1:
- resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
- engines: {node: '>=14'}
-
lilconfig@3.1.2:
resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
@@ -3945,14 +3995,14 @@ packages:
resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==}
engines: {node: '>=18.0.0'}
- lit-element@4.0.4:
- resolution: {integrity: sha512-98CvgulX6eCPs6TyAIQoJZBCQPo80rgXR+dVBs61cstJXqtI+USQZAbA4gFHh6L/mxBx9MrgPLHLsUgDUHAcCQ==}
+ lit-element@4.1.0:
+ resolution: {integrity: sha512-gSejRUQJuMQjV2Z59KAS/D4iElUhwKpIyJvZ9w+DIagIQjfJnhR20h2Q5ddpzXGS+fF0tMZ/xEYGMnKmaI/iww==}
- lit-html@3.1.2:
- resolution: {integrity: sha512-3OBZSUrPnAHoKJ9AMjRL/m01YJxQMf+TMHanNtTHG68ubjnZxK0RFl102DPzsw4mWnHibfZIBJm3LWCZ/LmMvg==}
+ lit-html@3.2.0:
+ resolution: {integrity: sha512-pwT/HwoxqI9FggTrYVarkBKFN9MlTUpLrDHubTmW4SrkL3kkqW5gxwbxMMUnbbRHBC0WTZnYHcjDSCM559VyfA==}
- lit@3.1.2:
- resolution: {integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==}
+ lit@3.2.0:
+ resolution: {integrity: sha512-s6tI33Lf6VpDu7u4YqsSX78D28bYQulM+VAzsGch4fx2H0eLZnJsUBsPWmGYSGoKDNbjtRv02rio1o+UdPVwvw==}
load-tsconfig@0.2.5:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
@@ -4035,29 +4085,21 @@ packages:
resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==}
engines: {node: '>=0.10.0'}
- lru-cache@10.0.2:
- resolution: {integrity: sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==}
- engines: {node: 14 || >=16.14}
-
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.0.0:
- resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==}
+ lru-cache@11.0.1:
+ resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==}
engines: {node: 20 || >=22}
- lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
-
magic-string@0.30.11:
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
- markdown-it-anchor@9.0.1:
- resolution: {integrity: sha512-cBt7aAzmkfX8X7FqAe8EBryiKmToXgMQEEMqkXzWCm0toDtfDYIGboKeTKd8cpNJArJtutrf+977wFJTsvNGmQ==}
+ markdown-it-anchor@9.2.0:
+ resolution: {integrity: sha512-sa2ErMQ6kKOA4l31gLGYliFQrMKkqSO0ZJgGhDHKijPf0pNFM9vghjAh3gn26pS4JDRs7Iwa9S36gxm3vgZTzg==}
peerDependencies:
'@types/markdown-it': '*'
markdown-it: '*'
@@ -4080,20 +4122,20 @@ packages:
engines: {node: '>= 18'}
hasBin: true
+ mathjax-full@3.2.2:
+ resolution: {integrity: sha512-+LfG9Fik+OuI8SLwsiR02IVdjcnRCy5MufYLi0C3TdMT56L/pjB0alMVGgoWJF8pN9Rc7FESycZB9BMNWIid5w==}
+
mathml-tag-names@2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
mdast-util-find-and-replace@3.0.1:
resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
- mdast-util-from-markdown@1.3.1:
- resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
-
mdast-util-from-markdown@2.0.1:
resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
- mdast-util-gfm-autolink-literal@2.0.0:
- resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
+ mdast-util-gfm-autolink-literal@2.0.1:
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
mdast-util-gfm-footnote@2.0.0:
resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
@@ -4119,9 +4161,6 @@ packages:
mdast-util-to-markdown@2.1.0:
resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
- mdast-util-to-string@3.2.0:
- resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
-
mdast-util-to-string@4.0.0:
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
@@ -4149,17 +4188,14 @@ packages:
merge@2.1.1:
resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==}
- mermaid@10.9.1:
- resolution: {integrity: sha512-Mx45Obds5W1UkW1nv/7dHRsbfMM1aOKA2+Pxs/IGHNonygDHwmng8xTHyS9z4KWVi0rbko8gjiBmuwwXQ7tiNA==}
-
mermaid@11.2.1:
resolution: {integrity: sha512-F8TEaLVVyxTUmvKswVFyOkjPrlJA5h5vNR1f7ZnSWSpqxgEZG1hggtn/QCa7znC28bhlcrNh10qYaIiill7q4A==}
- micromark-core-commonmark@1.1.0:
- resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
+ mhchemparser@4.2.1:
+ resolution: {integrity: sha512-kYmyrCirqJf3zZ9t/0wGgRZ4/ZJw//VwaRVGA75C4nhE60vtnIzhl9J9ndkX/h6hxSN7pjg/cE0VxbnNM+bnDQ==}
- micromark-core-commonmark@2.0.0:
- resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==}
+ micromark-core-commonmark@2.0.1:
+ resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
micromark-extension-gfm-autolink-literal@2.1.0:
resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
@@ -4182,130 +4218,66 @@ packages:
micromark-extension-gfm@3.0.0:
resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
- micromark-factory-destination@1.1.0:
- resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
-
micromark-factory-destination@2.0.0:
resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
- micromark-factory-label@1.1.0:
- resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
-
micromark-factory-label@2.0.0:
resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
- micromark-factory-space@1.1.0:
- resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
-
micromark-factory-space@2.0.0:
resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
- micromark-factory-title@1.1.0:
- resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
-
micromark-factory-title@2.0.0:
resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
- micromark-factory-whitespace@1.1.0:
- resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
-
micromark-factory-whitespace@2.0.0:
resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
- micromark-util-character@1.2.0:
- resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
-
micromark-util-character@2.1.0:
resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
- micromark-util-chunked@1.1.0:
- resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
-
micromark-util-chunked@2.0.0:
resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
- micromark-util-classify-character@1.1.0:
- resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
-
micromark-util-classify-character@2.0.0:
resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
- micromark-util-combine-extensions@1.1.0:
- resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
-
micromark-util-combine-extensions@2.0.0:
resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
- micromark-util-decode-numeric-character-reference@1.1.0:
- resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
-
micromark-util-decode-numeric-character-reference@2.0.1:
resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
- micromark-util-decode-string@1.1.0:
- resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
-
micromark-util-decode-string@2.0.0:
resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
- micromark-util-encode@1.1.0:
- resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
-
micromark-util-encode@2.0.0:
resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
- micromark-util-html-tag-name@1.2.0:
- resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
-
micromark-util-html-tag-name@2.0.0:
resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
- micromark-util-normalize-identifier@1.1.0:
- resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
-
micromark-util-normalize-identifier@2.0.0:
resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
- micromark-util-resolve-all@1.1.0:
- resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
-
micromark-util-resolve-all@2.0.0:
resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
- micromark-util-sanitize-uri@1.2.0:
- resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
-
micromark-util-sanitize-uri@2.0.0:
resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
- micromark-util-subtokenize@1.1.0:
- resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
-
- micromark-util-subtokenize@2.0.0:
- resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==}
-
- micromark-util-symbol@1.1.0:
- resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
+ micromark-util-subtokenize@2.0.1:
+ resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
micromark-util-symbol@2.0.0:
resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
- micromark-util-types@1.1.0:
- resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
-
micromark-util-types@2.0.0:
resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
- micromark@3.2.0:
- resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
-
micromark@4.0.0:
resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
- micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
- engines: {node: '>=8.6'}
-
micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
@@ -4346,10 +4318,6 @@ packages:
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
- minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -4368,10 +4336,6 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -4383,6 +4347,9 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ mj-context-menu@0.6.1:
+ resolution: {integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==}
+
mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -4392,22 +4359,9 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.4.2:
- resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
-
- mlly@1.6.1:
- resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==}
-
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
- mri@1.2.0:
- resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
- engines: {node: '>=4'}
-
- ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -4448,14 +4402,11 @@ packages:
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
- non-layered-tidy-tree-layout@2.0.2:
- resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==}
-
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
- normalize-package-data@6.0.0:
- resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
+ normalize-package-data@6.0.2:
+ resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
engines: {node: ^16.14.0 || >=18.0.0}
normalize-path@3.0.0:
@@ -4481,8 +4432,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nypm@0.3.9:
- resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==}
+ nypm@0.3.11:
+ resolution: {integrity: sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -4494,8 +4445,8 @@ packages:
resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
engines: {node: '>= 0.4'}
- ohash@1.1.3:
- resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
+ ohash@1.1.4:
+ resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -4519,16 +4470,16 @@ packages:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- ora@8.0.1:
- resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
+ ora@8.1.0:
+ resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==}
engines: {node: '>=18'}
os-tmpdir@1.0.2:
@@ -4585,8 +4536,8 @@ packages:
resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
engines: {node: '>=14'}
- parse-imports@2.1.1:
- resolution: {integrity: sha512-TDT4HqzUiTMO1wJRwg/t/hYk8Wdp3iF/ToMIlAoVQfL1Xs/sTxq1dKWSMjMbQmIarfWKymOyly40+zmPHXMqCA==}
+ parse-imports@2.2.1:
+ resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
engines: {node: '>= 18'}
parse-json@5.2.0:
@@ -4643,9 +4594,9 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
- engines: {node: '>=16 || 14 >=14.17'}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-scurry@2.0.0:
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
@@ -4659,9 +4610,6 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
- pathe@1.1.1:
- resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
-
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
@@ -4692,11 +4640,8 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
-
- pkg-types@1.1.3:
- resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==}
+ pkg-types@1.2.0:
+ resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
@@ -4770,23 +4715,19 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.4.41:
- resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
- engines: {node: ^10 || ^12 || >=14}
-
postcss@8.4.47:
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.10.0:
- resolution: {integrity: sha512-fszkg1iJJjq68I4lI8ZsmBiaoQiQHbxf1lNq+72EmC/mZOsFF5zn3k1yv9QGoFgIXzgsdSKtYymLJsrJPoamjQ==}
+ preact@10.24.0:
+ resolution: {integrity: sha512-aK8Cf+jkfyuZ0ZZRG9FbYqwmEiGQ4y/PUO4SuTWoyWL244nZZh7bd5h2APd4rSNDYTBNghg1L+5iJN3Skxtbsw==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- pretty-ms@9.0.0:
- resolution: {integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==}
+ pretty-ms@9.1.0:
+ resolution: {integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==}
engines: {node: '>=18'}
prompts@2.4.2:
@@ -4803,12 +4744,12 @@ packages:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
- punycode@2.1.1:
- resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- qs@6.12.1:
- resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
queue-microtask@1.2.3:
@@ -4839,14 +4780,18 @@ packages:
resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==}
engines: {node: '>=18'}
- readable-stream@3.6.0:
- resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
+ readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.1:
+ resolution: {integrity: sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==}
+ engines: {node: '>= 14.16.0'}
+
refa@0.12.1:
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
@@ -4903,10 +4848,6 @@ packages:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
- restore-cursor@4.0.0:
- resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
restore-cursor@5.1.0:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
@@ -4918,11 +4859,6 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@5.0.8:
- resolution: {integrity: sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==}
- engines: {node: '>=18'}
- hasBin: true
-
rimraf@6.0.1:
resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==}
engines: {node: 20 || >=22}
@@ -4931,8 +4867,8 @@ packages:
robust-predicates@3.0.2:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
- rollup@4.21.1:
- resolution: {integrity: sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==}
+ rollup@4.22.4:
+ resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -4949,16 +4885,9 @@ packages:
rw@1.3.3:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
- rxjs@7.8.0:
- resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
-
rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- sade@1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
-
safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -4968,21 +4897,166 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.77.8:
- resolution: {integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==}
+ sass-embedded-android-arm64@1.79.3:
+ resolution: {integrity: sha512-Wqm/WKHIDQl7w7eIQRO/GQ7EXfnwNpipCyJL7Xtb15vSAV64J4/0D/esy6GOPlVG+qcu8/XN8NV7Bf5wZ2ExUw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ sass-embedded-android-arm@1.79.3:
+ resolution: {integrity: sha512-rrdaVDkKBLUqzdqlBFamUbeuLG+8r/QLXHIgz4qPhIDqceJH6ds0Vzrae9Ef6DhYfMatOg2xiScdatwQ8Yl/hA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [android]
+
+ sass-embedded-android-ia32@1.79.3:
+ resolution: {integrity: sha512-6rDmH0O7hjBP04/xBAFzSYYMU/7MrQYCak4541BZIbIfa2uw0x/8+mB7lZjdgFsBrFjcpdVCPhZPUE6Y50c00A==}
+ engines: {node: '>=14.0.0'}
+ cpu: [ia32]
+ os: [android]
+
+ sass-embedded-android-riscv64@1.79.3:
+ resolution: {integrity: sha512-B/PgB0AfTCvOlF1g89raJTwTXIUQUM3OXDWqEKIlJEZM1Yao91i8ZkyrFkDMzT4G5sETy4o8pgK+qE9+7bFlug==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [android]
+
+ sass-embedded-android-x64@1.79.3:
+ resolution: {integrity: sha512-a5cpo9Yw4xnX32Uo3WfMZLaTVnI/h2n7U3K3eTygyj707yhGkUB0i+qxldzCw8MmKivIu9irG6O4kmnRjW6f7g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [android]
+
+ sass-embedded-darwin-arm64@1.79.3:
+ resolution: {integrity: sha512-imafD0nlVz5FJhqBqxUbG5rK4E3cu1GxhMZ5VhKm0k4t5jFQo+3OjN7sHT4Ee2Mk1g8sjr5dtq5enDU4fs6lXA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ sass-embedded-darwin-x64@1.79.3:
+ resolution: {integrity: sha512-pjciT1FcMUMA4rWdpyZYSwMOvxk5JP7R6vy7TzvqkUEqXxP9FTflYnAiwgYUDVTpngHHqRxTjdyW+e+h2L9dHw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ sass-embedded-linux-arm64@1.79.3:
+ resolution: {integrity: sha512-ODo8ghwk6KHxchgwxq4CwgfYwWdreEbsQoukeEgRKxHcuLB9XF6tol9pGlfrc8sYox48Vp5WDCZuzgoo6rJ6tg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ sass-embedded-linux-arm@1.79.3:
+ resolution: {integrity: sha512-n0bDtzABPE5YaL9wSLxNPiQMl1zArsGblHJyED6fEHz41m+OkCTopfO8IVjcf+MBrK/j11gonxiIGWO+fNOxvg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ sass-embedded-linux-ia32@1.79.3:
+ resolution: {integrity: sha512-oC3rUyIE6mEm2etsc4CuNu6IVmB6CoSM4KsubxzCD3S37QFXq8wYbI0t9iiDdTkKb5Iu+vUyhn+tYJRVHg0tvw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [ia32]
+ os: [linux]
+
+ sass-embedded-linux-musl-arm64@1.79.3:
+ resolution: {integrity: sha512-Q9/5lsrK/JnQci3DwxZ9PGIIrRxuo/bySv+gbyVp8Kb7gdkZcEsY7HkxaBJfwVEwpZSGAyCviyZDHDMILjliOw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ sass-embedded-linux-musl-arm@1.79.3:
+ resolution: {integrity: sha512-TOUYMtDs9xoMsJSEEr7NjtcVCqVpg1eSOQHXXruJ1kiYfxwmHrCYTjTLoefbZ29mWqIq8NUaXJG4rZNDK6NzRA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ sass-embedded-linux-musl-ia32@1.79.3:
+ resolution: {integrity: sha512-T2uERh3gs9eWUzdkDadPuYbelQJQLZyX8myutUd4fxyrQ7ToQRBwcMoynEjl48DBHnM0oRiJUHrV9uFuJ+fmRA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [ia32]
+ os: [linux]
+
+ sass-embedded-linux-musl-riscv64@1.79.3:
+ resolution: {integrity: sha512-XTuYtTBPFeEjydS2GsIUkMztzXIiz13noknE7m1yAbVxOchu9jD9FCLAdK9pVPPki+9BiLSxsutYwOcQn8atqQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [linux]
+
+ sass-embedded-linux-musl-x64@1.79.3:
+ resolution: {integrity: sha512-gDHfaPlxT/XQTMbfb2y+U6zDMuI8pfapVXTYlUrgYhKH2KoICclIvahhjFii5i5+1dHpfGzjgYKBqI3nvZsYFg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ sass-embedded-linux-riscv64@1.79.3:
+ resolution: {integrity: sha512-NONTa//1ZfxA87+Zjp3rabL+Z9gM67FJBdktRKXXMBAce5i8eCj/eqJGUOGPjYxtvxtQw77cex0qMr9SZnX6ww==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [linux]
+
+ sass-embedded-linux-x64@1.79.3:
+ resolution: {integrity: sha512-drlUqMMw222+f/T5sNrIAv+z0vQwLkO4zAlDmf4biLdWIloPP/3plTodAkMyfagNcvA8jG2jN414pJXBI3zK6w==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ sass-embedded-win32-arm64@1.79.3:
+ resolution: {integrity: sha512-gYz0IUb0fLkHUbhq+HR52wvQfG75Zu1s48/v48TqC+b04H/01k2eiawp/Ec1f+lhpIL/pr5+n5jWR6CjkxPdnQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ sass-embedded-win32-ia32@1.79.3:
+ resolution: {integrity: sha512-fbDTyzbqRc+xCWZ+YHSDt2WvGk5PW2K0SjyHuwes/Fls1+wdO4iHIukE/pD+HSWytYrtCqhe7EFq5Ug5HxGTLg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [ia32]
+ os: [win32]
+
+ sass-embedded-win32-x64@1.79.3:
+ resolution: {integrity: sha512-vvfr6wyCaHvdQbGS8UkYab6DXc1FKJRYFT5aFE3QTVqbzCqmJ5tf80E4+gvB99nljLtMjwKR1d332iWI9KDLhw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ sass-embedded@1.79.3:
+ resolution: {integrity: sha512-zUve2qCn6uSOMZnZazLzrDWq//OQWFle5G45vJjv3B/ADIA3TXVgqHqN3u7D2vGajOGREz0HN5nhliSoKmQqZA==}
+ engines: {node: '>=16.0.0'}
+ hasBin: true
+
+ sass-loader@16.0.2:
+ resolution: {integrity: sha512-Ll6iXZ1EYwYT19SqW4mSBb76vSSi8JgzElmzIerhEGgzB5hRjDQIWsPmuk1UrAXkR16KJHqVY0eH+5/uw9Tmfw==}
+ engines: {node: '>= 18.12.0'}
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ sass: ^1.3.0
+ sass-embedded: '*'
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ webpack:
+ optional: true
+
+ sass@1.79.3:
+ resolution: {integrity: sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==}
engines: {node: '>=14.0.0'}
hasBin: true
- sax@1.2.4:
- resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ sax@1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
scslre@0.3.0:
resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
engines: {node: ^14.0.0 || >=16.0.0}
- search-insights@2.7.0:
- resolution: {integrity: sha512-GLbVaGgzYEKMvuJbHRhLi1qoBFnjXZGZ6l4LxOYPCp4lI2jDRB3jPU9/XNhMwv6kvnA9slTreq6pvK+b3o3aqg==}
- engines: {node: '>=8.16.0'}
+ search-insights@2.17.2:
+ resolution: {integrity: sha512-zFNpOpUO+tY2D85KrxJ+aqwnIfdEGi06UH2+xEb+Bp9Mwznmauqc9djbnBibJO5mpfUPPa8st6Sx65+vbeO45g==}
section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
@@ -4991,13 +5065,8 @@ packages:
secure-compare@3.0.1:
resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==}
- semver@5.7.1:
- resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
- hasBin: true
-
- semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
- engines: {node: '>=10'}
+ semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
semver@7.6.3:
@@ -5065,10 +5134,6 @@ packages:
resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
engines: {node: '>=18'}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
- engines: {node: '>=0.10.0'}
-
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
@@ -5084,11 +5149,11 @@ packages:
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- spdx-correct@3.1.1:
- resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
+ spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
- spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
@@ -5096,11 +5161,15 @@ packages:
spdx-expression-parse@4.0.0:
resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
- spdx-license-ids@3.0.12:
- resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==}
+ spdx-license-ids@3.0.20:
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
- split2@4.1.0:
- resolution: {integrity: sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ==}
+ speech-rule-engine@4.0.7:
+ resolution: {integrity: sha512-sJrL3/wHzNwJRLBdf6CjJWIlxC04iYKkyXvYSVsWVOiC2DSkHmxsqOhEeMsBA9XK+CHuNcsdkbFDnoUfAsmp9g==}
+ hasBin: true
+
+ split2@4.2.0:
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
sprintf-js@1.0.3:
@@ -5125,8 +5194,8 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string-width@7.0.0:
- resolution: {integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==}
+ string-width@7.2.0:
+ resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
string_decoder@1.3.0:
@@ -5181,12 +5250,12 @@ packages:
postcss-html: ^1.0.0
stylelint: '>=14.0.0'
- stylelint-config-recommended-scss@14.0.0:
- resolution: {integrity: sha512-HDvpoOAQ1RpF+sPbDOT2Q2/YrBDEJDnUymmVmZ7mMCeNiFSdhRdyGEimBkz06wsN+HaFwUh249gDR+I9JR7Onw==}
+ stylelint-config-recommended-scss@14.1.0:
+ resolution: {integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==}
engines: {node: '>=18.12.0'}
peerDependencies:
postcss: ^8.3.3
- stylelint: ^16.0.2
+ stylelint: ^16.6.1
peerDependenciesMeta:
postcss:
optional: true
@@ -5224,8 +5293,8 @@ packages:
peerDependencies:
stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1
- stylelint-scss@6.0.0:
- resolution: {integrity: sha512-N1xV/Ef5PNRQQt9E45unzGvBUN1KZxCI8B4FgN/pMfmyRYbZGVN4y9qWlvOMdScU17c8VVCnjIHTVn38Bb6qSA==}
+ stylelint-scss@6.7.0:
+ resolution: {integrity: sha512-RFIa2A+pVWS5wjNT+whtK7wsbZEWazyqesCuSaPbPlZ8lh2TujwVJSnCYJijg6ChZzwI8pZPRZS1L6A9aCbXDg==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.0.2
@@ -5235,8 +5304,8 @@ packages:
engines: {node: '>=18.12.0'}
hasBin: true
- stylis@4.3.1:
- resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==}
+ stylis@4.3.4:
+ resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==}
subarg@1.0.0:
resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==}
@@ -5254,6 +5323,10 @@ packages:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
+ supports-color@8.1.1:
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
+
supports-hyperlinks@3.1.0:
resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
engines: {node: '>=14.18'}
@@ -5288,8 +5361,8 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
temp-dir@3.0.0:
@@ -5327,8 +5400,8 @@ packages:
tm-grammars@1.17.24:
resolution: {integrity: sha512-SQ709YOUoWh0Fcem4t77iHdNFuEchfjspsGaUoJy4Dss9OreRO2NNVgMNt+8koX+B5dAZcjBv2xuW5fGzEqcwg==}
- tm-themes@1.8.3:
- resolution: {integrity: sha512-yHAzcLWm0UKPzu7r1AecpMis7mHU2f/FGRgDRENEYAfYVKAiwQ4/O1x2Ws+AvnYyOo0ZmbSuKh9z4B03sMLZYA==}
+ tm-themes@1.8.4:
+ resolution: {integrity: sha512-oGf917k4TPdDNoGnqFP38zGHskMdEXR+uSbhcQhLGVdEYE6LKfHd1jQ8HwMKj0Vg+9I6wsnTu0xRSrKPyEaUNg==}
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
@@ -5378,9 +5451,6 @@ packages:
tslib@2.3.0:
resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
-
tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
@@ -5403,11 +5473,6 @@ packages:
typescript:
optional: true
- tsx@4.16.0:
- resolution: {integrity: sha512-MPgN+CuY+4iKxGoJNPv+1pyo5YWZAQ5XfsyobUG+zoKG7IkvCPLZDEyoIb8yLS2FcWci1nlxAqmvPlFWD5AFiQ==}
- engines: {node: '>=18.0.0'}
- hasBin: true
-
twoslash-protocol@0.2.11:
resolution: {integrity: sha512-rp+nkOWbKfJnBTDZtnIaBGjnU+4CaMhqu6db2UU7byU96rH8X4hao4BOxYw6jdZc85Lhv5pOfcjgfHeQyLzndQ==}
@@ -5425,8 +5490,8 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-detect@4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ type-detect@4.1.0:
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
engines: {node: '>=4'}
type-fest@0.20.2:
@@ -5445,12 +5510,8 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- type-fest@4.12.0:
- resolution: {integrity: sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ==}
- engines: {node: '>=16'}
-
- type-fest@4.18.3:
- resolution: {integrity: sha512-Q08/0IrpvM+NMY9PA2rti9Jb+JejTddwmwmVQGskAlhtcrw1wsRzoR6ode6mR+OAabNa75w/dxedSUY2mlphaQ==}
+ type-fest@4.26.1:
+ resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
engines: {node: '>=16'}
typescript@5.6.2:
@@ -5461,17 +5522,11 @@ packages:
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
- ufo@1.3.1:
- resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==}
-
- ufo@1.3.2:
- resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
-
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
- uglify-js@3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -5500,9 +5555,6 @@ packages:
unist-util-position@5.0.0:
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
- unist-util-stringify-position@3.0.3:
- resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
-
unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
@@ -5512,8 +5564,8 @@ packages:
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- universalify@2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
upath@2.0.1:
@@ -5539,22 +5591,20 @@ packages:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
- uvu@0.5.6:
- resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
- engines: {node: '>=8'}
- hasBin: true
-
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+ varint@6.0.0:
+ resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
+
vfile-message@4.0.2:
resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
- vfile@6.0.1:
- resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite@5.4.2:
- resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==}
+ vite@5.4.7:
+ resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -5626,47 +5676,38 @@ packages:
peerDependencies:
vue: ^3.0.0
- vue-router@4.4.3:
- resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==}
- peerDependencies:
- vue: ^3.2.0
-
vue-router@4.4.5:
resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
peerDependencies:
vue: ^3.2.0
- vue@3.5.7:
- resolution: {integrity: sha512-JcFm0f5j8DQO9E07pZRxqZ/ZsNopMVzHYXpKvnfqXFcA4JTi+4YcrikRn9wkzWsdj0YsLzlLIsR0zzGxA2P6Wg==}
+ vue@3.5.8:
+ resolution: {integrity: sha512-hvuvuCy51nP/1fSRvrrIqTLSvrSyz2Pq+KQ8S8SXCxTWVE0nMaOnSDnSOxV1eYmGfvK7mqiwvd1C59CEEz7dAQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- vuepress-plugin-md-enhance@2.0.0-rc.52:
- resolution: {integrity: sha512-4lED2FSelBbtBVE5Hon9FQpCgmG1xQbi3+rFrj/Aa1VF+8PTjqFdG4NkdRTx94beOeu/A5jvWp5TFWMbaXD7hA==}
+ vuepress-plugin-md-enhance@2.0.0-rc.54:
+ resolution: {integrity: sha512-/E/HibDXcjZDM89ABt9lT2aoJie6JMGry7vOaVdrSLeEm46vLrDvEQSPTgLKP0bugcN4AgNgHoV4OkQp4TWaFQ==}
engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
- '@types/reveal.js': ^5.0.0
'@vue/repl': ^4.1.1
chart.js: ^4.0.0
echarts: ^5.0.0
- flowchart.ts: ^2.0.0 || ^3.0.0
- katex: ^0.16.0
+ flowchart.ts: ^3.0.0
kotlin-playground: ^1.23.0
markmap-lib: ^0.17.0
markmap-toolbar: ^0.17.0
markmap-view: ^0.17.0
- mathjax-full: ^3.2.2
- mermaid: ^10.8.0
- reveal.js: ^5.0.0
+ mermaid: ^11.2.0
sandpack-vue3: ^3.0.0
- sass-loader: ^14.0.0
- vuepress: 2.0.0-rc.14
+ sass: ^1.79.3
+ sass-embedded: ^1.79.3
+ sass-loader: ^16.0.2
+ vuepress: 2.0.0-rc.15
peerDependenciesMeta:
- '@types/reveal.js':
- optional: true
'@vue/repl':
optional: true
chart.js:
@@ -5675,8 +5716,6 @@ packages:
optional: true
flowchart.ts:
optional: true
- katex:
- optional: true
kotlin-playground:
optional: true
markmap-lib:
@@ -5685,22 +5724,22 @@ packages:
optional: true
markmap-view:
optional: true
- mathjax-full:
- optional: true
mermaid:
optional: true
- reveal.js:
- optional: true
sandpack-vue3:
optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
sass-loader:
optional: true
- vuepress-shared@2.0.0-rc.52:
- resolution: {integrity: sha512-/Y5Qpl8ueqiggqFAyeJ9U2PhLyE7O5hl3r1k4vER/gKpaeYIqmPxf0ToJMFa3uc4luoNEe/9NJb6LJCrcPjFEA==}
+ vuepress-shared@2.0.0-rc.54:
+ resolution: {integrity: sha512-Z+i/U6VtKteW5LhT3rvyGUjbhcimVf16QDIPw/g2kE6w94z332fcm/jlaokjFDBUiKRRSrbu74QSYZnwYGUdMQ==}
engines: {node: '>=18.19.0', npm: '>=8', pnpm: '>=7', yarn: '>=2'}
peerDependencies:
- vuepress: 2.0.0-rc.14
+ vuepress: 2.0.0-rc.15
vuepress@2.0.0-rc.15:
resolution: {integrity: sha512-8DRaONwIaG0Jn3P8OKBysTfcO1yPO1UwfUUNQjbToLrbYSsGFiFwpuTMSL3HbdaX7ou6TuJHgK/wuslsUV8jCQ==}
@@ -5728,9 +5767,6 @@ packages:
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- web-worker@1.3.0:
- resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==}
-
webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
@@ -5758,8 +5794,11 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- word-wrap@1.2.3:
- resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
+ wicked-good-xpath@1.3.0:
+ resolution: {integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==}
+
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
wordwrap@1.0.0:
@@ -5788,6 +5827,10 @@ packages:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
+ xmldom-sre@0.1.31:
+ resolution: {integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==}
+ engines: {node: '>=0.1'}
+
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -5799,8 +5842,8 @@ packages:
resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
+ yaml@2.5.1:
+ resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
engines: {node: '>= 14'}
hasBin: true
@@ -5816,12 +5859,12 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
- yoctocolors@2.0.0:
- resolution: {integrity: sha512-esbDnt0Z1zI1KgvOZU90hJbL6BkoUbrP9yy7ArNZ6TmxBxydMJTYMf9FZjmwwcA8ZgEQzriQ3hwZ0NYXhlFo8Q==}
+ yoctocolors@2.1.1:
+ resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
zrender@5.6.0:
@@ -5832,98 +5875,109 @@ packages:
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.7.0)':
+ '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.7.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.7.0)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- search-insights: 2.7.0
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
+ search-insights: 2.17.2
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)':
+ '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- '@algolia/client-search': 4.20.0
- algoliasearch: 4.20.0
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
+ '@algolia/client-search': 4.24.0
+ algoliasearch: 4.24.0
- '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)':
+ '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
dependencies:
- algoliasearch: 4.20.0
- optionalDependencies:
- '@algolia/client-search': 4.20.0
+ '@algolia/client-search': 4.24.0
+ algoliasearch: 4.24.0
- '@algolia/cache-browser-local-storage@4.20.0':
+ '@algolia/cache-browser-local-storage@4.24.0':
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/cache-common': 4.24.0
- '@algolia/cache-common@4.20.0': {}
+ '@algolia/cache-common@4.24.0': {}
- '@algolia/cache-in-memory@4.20.0':
+ '@algolia/cache-in-memory@4.24.0':
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/cache-common': 4.24.0
- '@algolia/client-account@4.20.0':
+ '@algolia/client-account@4.24.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-analytics@4.20.0':
+ '@algolia/client-analytics@4.24.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-common@4.20.0':
+ '@algolia/client-common@4.24.0':
dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-personalization@4.20.0':
+ '@algolia/client-personalization@4.24.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-search@4.20.0':
+ '@algolia/client-search@4.24.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/logger-common@4.20.0': {}
+ '@algolia/logger-common@4.24.0': {}
- '@algolia/logger-console@4.20.0':
+ '@algolia/logger-console@4.24.0':
dependencies:
- '@algolia/logger-common': 4.20.0
+ '@algolia/logger-common': 4.24.0
- '@algolia/requester-browser-xhr@4.20.0':
+ '@algolia/recommend@4.24.0':
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/requester-common@4.20.0': {}
-
- '@algolia/requester-node-http@4.20.0':
+ '@algolia/requester-browser-xhr@4.24.0':
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/requester-common': 4.24.0
- '@algolia/transporter@4.20.0':
+ '@algolia/requester-common@4.24.0': {}
+
+ '@algolia/requester-node-http@4.24.0':
dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
+ '@algolia/requester-common': 4.24.0
+
+ '@algolia/transporter@4.24.0':
+ dependencies:
+ '@algolia/cache-common': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
'@antfu/install-pkg@0.4.1':
dependencies:
@@ -5932,22 +5986,21 @@ snapshots:
'@antfu/utils@0.7.10': {}
- '@babel/code-frame@7.22.13':
+ '@babel/code-frame@7.24.7':
dependencies:
- '@babel/highlight': 7.22.20
- chalk: 2.4.2
+ '@babel/highlight': 7.24.7
+ picocolors: 1.1.0
'@babel/helper-string-parser@7.24.8': {}
- '@babel/helper-validator-identifier@7.22.20': {}
-
'@babel/helper-validator-identifier@7.24.7': {}
- '@babel/highlight@7.22.20':
+ '@babel/highlight@7.24.7':
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
+ picocolors: 1.1.0
'@babel/parser@7.25.6':
dependencies:
@@ -5959,11 +6012,10 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
- '@braintree/sanitize-url@6.0.4':
- optional: true
-
'@braintree/sanitize-url@7.1.0': {}
+ '@bufbuild/protobuf@2.1.0': {}
+
'@chevrotain/cst-dts-gen@11.0.3':
dependencies:
'@chevrotain/gast': 11.0.3
@@ -6010,16 +6062,10 @@ snapshots:
'@commitlint/types': 19.5.0
conventional-changelog-conventionalcommits: 7.0.2
- '@commitlint/config-validator@19.0.3':
- dependencies:
- '@commitlint/types': 19.0.3
- ajv: 8.12.0
- optional: true
-
'@commitlint/config-validator@19.5.0':
dependencies:
'@commitlint/types': 19.5.0
- ajv: 8.12.0
+ ajv: 8.17.1
'@commitlint/ensure@19.5.0':
dependencies:
@@ -6030,9 +6076,6 @@ snapshots:
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
- '@commitlint/execute-rule@19.0.0':
- optional: true
-
'@commitlint/execute-rule@19.5.0': {}
'@commitlint/format@19.5.0':
@@ -6052,23 +6095,6 @@ snapshots:
'@commitlint/rules': 19.5.0
'@commitlint/types': 19.5.0
- '@commitlint/load@19.2.0(@types/node@20.12.10)(typescript@5.6.2)':
- dependencies:
- '@commitlint/config-validator': 19.0.3
- '@commitlint/execute-rule': 19.0.0
- '@commitlint/resolve-extends': 19.1.0
- '@commitlint/types': 19.0.3
- chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.6.2)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.10)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2)
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- lodash.uniq: 4.5.0
- transitivePeerDependencies:
- - '@types/node'
- - typescript
- optional: true
-
'@commitlint/load@19.5.0(@types/node@20.12.10)(typescript@5.6.2)':
dependencies:
'@commitlint/config-validator': 19.5.0
@@ -6101,22 +6127,12 @@ snapshots:
minimist: 1.2.8
tinyexec: 0.3.0
- '@commitlint/resolve-extends@19.1.0':
- dependencies:
- '@commitlint/config-validator': 19.0.3
- '@commitlint/types': 19.0.3
- global-directory: 4.0.1
- import-meta-resolve: 4.0.0
- lodash.mergewith: 4.6.2
- resolve-from: 5.0.0
- optional: true
-
'@commitlint/resolve-extends@19.5.0':
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/types': 19.5.0
global-directory: 4.0.1
- import-meta-resolve: 4.0.0
+ import-meta-resolve: 4.1.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
@@ -6133,22 +6149,17 @@ snapshots:
dependencies:
find-up: 7.0.0
- '@commitlint/types@19.0.3':
- dependencies:
- '@types/conventional-commits-parser': 5.0.0
- chalk: 5.3.0
- optional: true
-
'@commitlint/types@19.5.0':
dependencies:
'@types/conventional-commits-parser': 5.0.0
chalk: 5.3.0
- '@conventional-changelog/git-client@1.0.0(conventional-commits-parser@6.0.0)':
+ '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)':
dependencies:
'@types/semver': 7.5.8
semver: 7.6.3
optionalDependencies:
+ conventional-commits-filter: 5.0.0
conventional-commits-parser: 6.0.0
'@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)':
@@ -6168,10 +6179,10 @@ snapshots:
'@docsearch/css@3.6.1': {}
- '@docsearch/js@3.6.1(@algolia/client-search@4.20.0)(search-insights@2.7.0)':
+ '@docsearch/js@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@docsearch/react': 3.6.1(@algolia/client-search@4.20.0)(search-insights@2.7.0)
- preact: 10.10.0
+ '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)
+ preact: 10.24.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -6179,14 +6190,14 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.6.1(@algolia/client-search@4.20.0)(search-insights@2.7.0)':
+ '@docsearch/react@3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.7.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.17.2)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
'@docsearch/css': 3.6.1
- algoliasearch: 4.20.0
+ algoliasearch: 4.24.0
optionalDependencies:
- search-insights: 2.7.0
+ search-insights: 2.17.2
transitivePeerDependencies:
- '@algolia/client-search'
@@ -6204,141 +6215,213 @@ snapshots:
'@esbuild/aix-ppc64@0.23.1':
optional: true
+ '@esbuild/aix-ppc64@0.24.0':
+ optional: true
+
'@esbuild/android-arm64@0.21.5':
optional: true
'@esbuild/android-arm64@0.23.1':
optional: true
+ '@esbuild/android-arm64@0.24.0':
+ optional: true
+
'@esbuild/android-arm@0.21.5':
optional: true
'@esbuild/android-arm@0.23.1':
optional: true
+ '@esbuild/android-arm@0.24.0':
+ optional: true
+
'@esbuild/android-x64@0.21.5':
optional: true
'@esbuild/android-x64@0.23.1':
optional: true
+ '@esbuild/android-x64@0.24.0':
+ optional: true
+
'@esbuild/darwin-arm64@0.21.5':
optional: true
'@esbuild/darwin-arm64@0.23.1':
optional: true
+ '@esbuild/darwin-arm64@0.24.0':
+ optional: true
+
'@esbuild/darwin-x64@0.21.5':
optional: true
'@esbuild/darwin-x64@0.23.1':
optional: true
+ '@esbuild/darwin-x64@0.24.0':
+ optional: true
+
'@esbuild/freebsd-arm64@0.21.5':
optional: true
'@esbuild/freebsd-arm64@0.23.1':
optional: true
+ '@esbuild/freebsd-arm64@0.24.0':
+ optional: true
+
'@esbuild/freebsd-x64@0.21.5':
optional: true
'@esbuild/freebsd-x64@0.23.1':
optional: true
+ '@esbuild/freebsd-x64@0.24.0':
+ optional: true
+
'@esbuild/linux-arm64@0.21.5':
optional: true
'@esbuild/linux-arm64@0.23.1':
optional: true
+ '@esbuild/linux-arm64@0.24.0':
+ optional: true
+
'@esbuild/linux-arm@0.21.5':
optional: true
'@esbuild/linux-arm@0.23.1':
optional: true
+ '@esbuild/linux-arm@0.24.0':
+ optional: true
+
'@esbuild/linux-ia32@0.21.5':
optional: true
'@esbuild/linux-ia32@0.23.1':
optional: true
+ '@esbuild/linux-ia32@0.24.0':
+ optional: true
+
'@esbuild/linux-loong64@0.21.5':
optional: true
'@esbuild/linux-loong64@0.23.1':
optional: true
+ '@esbuild/linux-loong64@0.24.0':
+ optional: true
+
'@esbuild/linux-mips64el@0.21.5':
optional: true
'@esbuild/linux-mips64el@0.23.1':
optional: true
+ '@esbuild/linux-mips64el@0.24.0':
+ optional: true
+
'@esbuild/linux-ppc64@0.21.5':
optional: true
'@esbuild/linux-ppc64@0.23.1':
optional: true
+ '@esbuild/linux-ppc64@0.24.0':
+ optional: true
+
'@esbuild/linux-riscv64@0.21.5':
optional: true
'@esbuild/linux-riscv64@0.23.1':
optional: true
+ '@esbuild/linux-riscv64@0.24.0':
+ optional: true
+
'@esbuild/linux-s390x@0.21.5':
optional: true
'@esbuild/linux-s390x@0.23.1':
optional: true
+ '@esbuild/linux-s390x@0.24.0':
+ optional: true
+
'@esbuild/linux-x64@0.21.5':
optional: true
'@esbuild/linux-x64@0.23.1':
optional: true
+ '@esbuild/linux-x64@0.24.0':
+ optional: true
+
'@esbuild/netbsd-x64@0.21.5':
optional: true
'@esbuild/netbsd-x64@0.23.1':
optional: true
+ '@esbuild/netbsd-x64@0.24.0':
+ optional: true
+
'@esbuild/openbsd-arm64@0.23.1':
optional: true
+ '@esbuild/openbsd-arm64@0.24.0':
+ optional: true
+
'@esbuild/openbsd-x64@0.21.5':
optional: true
'@esbuild/openbsd-x64@0.23.1':
optional: true
+ '@esbuild/openbsd-x64@0.24.0':
+ optional: true
+
'@esbuild/sunos-x64@0.21.5':
optional: true
'@esbuild/sunos-x64@0.23.1':
optional: true
+ '@esbuild/sunos-x64@0.24.0':
+ optional: true
+
'@esbuild/win32-arm64@0.21.5':
optional: true
'@esbuild/win32-arm64@0.23.1':
optional: true
+ '@esbuild/win32-arm64@0.24.0':
+ optional: true
+
'@esbuild/win32-ia32@0.21.5':
optional: true
'@esbuild/win32-ia32@0.23.1':
optional: true
+ '@esbuild/win32-ia32@0.24.0':
+ optional: true
+
'@esbuild/win32-x64@0.21.5':
optional: true
'@esbuild/win32-x64@0.23.1':
optional: true
+ '@esbuild/win32-x64@0.24.0':
+ optional: true
+
'@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.11.0(jiti@1.21.6))':
dependencies:
escape-string-regexp: 4.0.0
@@ -6350,14 +6433,14 @@ snapshots:
eslint: 9.11.0(jiti@1.21.6)
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.0': {}
+ '@eslint-community/regexpp@4.11.1': {}
'@eslint/compat@1.1.1': {}
'@eslint/config-array@0.18.0':
dependencies:
'@eslint/object-schema': 2.1.4
- debug: 4.3.6
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -6365,7 +6448,7 @@ snapshots:
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.6
+ debug: 4.3.7
espree: 10.1.0
globals: 14.0.0
ignore: 5.3.2
@@ -6393,15 +6476,15 @@ snapshots:
dependencies:
levn: 0.4.1
- '@floating-ui/core@1.6.0':
+ '@floating-ui/core@1.6.8':
dependencies:
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/utils': 0.2.8
'@floating-ui/dom@1.1.1':
dependencies:
- '@floating-ui/core': 1.6.0
+ '@floating-ui/core': 1.6.8
- '@floating-ui/utils@0.2.1': {}
+ '@floating-ui/utils@0.2.8': {}
'@hapi/hoek@9.3.0': {}
@@ -6415,7 +6498,7 @@ snapshots:
'@hutson/parse-repository-url@5.0.0': {}
- '@iconify/json@2.2.251':
+ '@iconify/json@2.2.252':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -6427,17 +6510,17 @@ snapshots:
'@antfu/install-pkg': 0.4.1
'@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.3.6
+ debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
mlly: 1.7.1
transitivePeerDependencies:
- supports-color
- '@iconify/vue@4.1.2(vue@3.5.7(typescript@5.6.2))':
+ '@iconify/vue@4.1.2(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.5.7(typescript@5.6.2)
+ vue: 3.5.8(typescript@5.6.2)
'@isaacs/cliui@8.0.2':
dependencies:
@@ -6470,15 +6553,15 @@ snapshots:
call-me-maybe: 1.0.2
cross-spawn: 7.0.3
string-argv: 0.3.2
- type-detect: 4.0.8
+ type-detect: 4.1.0
'@kurkle/color@0.3.2': {}
- '@lit-labs/ssr-dom-shim@1.2.0': {}
+ '@lit-labs/ssr-dom-shim@1.2.1': {}
'@lit/reactive-element@2.0.4':
dependencies:
- '@lit-labs/ssr-dom-shim': 1.2.0
+ '@lit-labs/ssr-dom-shim': 1.2.1
'@mdit-vue/plugin-component@2.1.3':
dependencies:
@@ -6527,146 +6610,147 @@ snapshots:
'@mdit-vue/types@2.1.0': {}
- '@mdit/plugin-alert@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-alert@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-align@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-align@0.13.1(markdown-it@14.1.0)':
dependencies:
- '@mdit/plugin-container': 0.12.0(markdown-it@14.1.0)
+ '@mdit/plugin-container': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-attrs@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-attrs@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-container@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-container@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-demo@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-demo@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-figure@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-figure@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-footnote@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-footnote@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- '@mdit/plugin-img-lazyload@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-img-lazyload@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-img-mark@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-img-mark@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-img-size@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-img-size@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-include@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-include@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
upath: 2.0.1
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-katex-slim@0.12.0(katex@0.16.11)(markdown-it@14.1.0)':
+ '@mdit/plugin-katex-slim@0.13.1(katex@0.16.11)(markdown-it@14.1.0)':
dependencies:
- '@mdit/plugin-tex': 0.12.0(markdown-it@14.1.0)
+ '@mdit/plugin-tex': 0.13.1(markdown-it@14.1.0)
'@types/katex': 0.16.7
'@types/markdown-it': 14.1.2
optionalDependencies:
katex: 0.16.11
markdown-it: 14.1.0
- '@mdit/plugin-mark@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-mark@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-mathjax-slim@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-mathjax-slim@0.13.1(markdown-it@14.1.0)(mathjax-full@3.2.2)':
dependencies:
- '@mdit/plugin-tex': 0.12.0(markdown-it@14.1.0)
+ '@mdit/plugin-tex': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
upath: 2.0.1
optionalDependencies:
markdown-it: 14.1.0
+ mathjax-full: 3.2.2
- '@mdit/plugin-plantuml@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-plantuml@0.13.1(markdown-it@14.1.0)':
dependencies:
- '@mdit/plugin-uml': 0.12.0(markdown-it@14.1.0)
+ '@mdit/plugin-uml': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-spoiler@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-spoiler@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-stylize@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-stylize@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-sub@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-sub@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-sup@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-sup@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-tab@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-tab@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-tasklist@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-tasklist@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-tex@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-tex@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
markdown-it: 14.1.0
- '@mdit/plugin-uml@0.12.0(markdown-it@14.1.0)':
+ '@mdit/plugin-uml@0.13.1(markdown-it@14.1.0)':
dependencies:
'@types/markdown-it': 14.1.2
optionalDependencies:
@@ -6686,14 +6770,14 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.14.0
+ fastq: 1.17.1
- '@pengzhanbo/eslint-config-vue@1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
+ '@pengzhanbo/eslint-config-vue@1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@pengzhanbo/eslint-config': 1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.21.6)))(eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)))
+ '@pengzhanbo/eslint-config': 1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.21.6)))(eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)))
eslint: 9.11.0(jiti@1.21.6)
eslint-plugin-vue: 9.28.0(eslint@9.11.0(jiti@1.21.6))
- eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6))
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))
vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6))
transitivePeerDependencies:
- '@eslint-react/eslint-plugin'
@@ -6713,7 +6797,7 @@ snapshots:
- typescript
- vitest
- '@pengzhanbo/eslint-config@1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.21.6)))(eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)))':
+ '@pengzhanbo/eslint-config@1.17.0(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.21.6)))(eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)))':
dependencies:
'@antfu/install-pkg': 0.4.1
'@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.11.0(jiti@1.21.6))
@@ -6728,7 +6812,7 @@ snapshots:
eslint-merge-processors: 0.1.0(eslint@9.11.0(jiti@1.21.6))
eslint-plugin-antfu: 2.7.0(eslint@9.11.0(jiti@1.21.6))
eslint-plugin-command: 0.2.5(eslint@9.11.0(jiti@1.21.6))
- eslint-plugin-import-x: 4.2.1(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ eslint-plugin-import-x: 4.3.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
eslint-plugin-jsdoc: 50.2.4(eslint@9.11.0(jiti@1.21.6))
eslint-plugin-jsonc: 2.16.0(eslint@9.11.0(jiti@1.21.6))
eslint-plugin-n: 17.10.3(eslint@9.11.0(jiti@1.21.6))
@@ -6747,7 +6831,7 @@ snapshots:
yaml-eslint-parser: 1.2.3
optionalDependencies:
eslint-plugin-vue: 9.28.0(eslint@9.11.0(jiti@1.21.6))
- eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6))
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6))
vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.21.6))
transitivePeerDependencies:
- '@typescript-eslint/utils'
@@ -6762,7 +6846,7 @@ snapshots:
'@stylelint-types/stylelint-order': 6.0.4(stylelint-define-config@1.6.0(stylelint@16.9.0(typescript@5.6.2)))(stylelint@16.9.0(typescript@5.6.2))
'@stylelint-types/stylelint-scss': 6.5.0(stylelint-define-config@1.6.0(stylelint@16.9.0(typescript@5.6.2)))(stylelint@16.9.0(typescript@5.6.2))
'@stylelint-types/stylelint-stylistic': 3.0.1(stylelint-define-config@1.6.0(stylelint@16.9.0(typescript@5.6.2)))(stylelint@16.9.0(typescript@5.6.2))
- '@stylistic/stylelint-plugin': 3.0.1(stylelint@16.9.0(typescript@5.6.2))
+ '@stylistic/stylelint-plugin': 3.1.0(stylelint@16.9.0(typescript@5.6.2))
local-pkg: 0.5.0
postcss: 8.4.47
postcss-html: 1.7.0
@@ -6780,52 +6864,52 @@ snapshots:
'@pkgr/core@0.1.1': {}
- '@rollup/rollup-android-arm-eabi@4.21.1':
+ '@rollup/rollup-android-arm-eabi@4.22.4':
optional: true
- '@rollup/rollup-android-arm64@4.21.1':
+ '@rollup/rollup-android-arm64@4.22.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.21.1':
+ '@rollup/rollup-darwin-arm64@4.22.4':
optional: true
- '@rollup/rollup-darwin-x64@4.21.1':
+ '@rollup/rollup-darwin-x64@4.22.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.21.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.21.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.22.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.21.1':
+ '@rollup/rollup-linux-arm64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.21.1':
+ '@rollup/rollup-linux-arm64-musl@4.22.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.21.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.21.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.21.1':
+ '@rollup/rollup-linux-s390x-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.21.1':
+ '@rollup/rollup-linux-x64-gnu@4.22.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.21.1':
+ '@rollup/rollup-linux-x64-musl@4.22.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.21.1':
+ '@rollup/rollup-win32-arm64-msvc@4.22.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.21.1':
+ '@rollup/rollup-win32-ia32-msvc@4.22.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.21.1':
+ '@rollup/rollup-win32-x64-msvc@4.22.4':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
@@ -6907,7 +6991,7 @@ snapshots:
'@stylistic/eslint-plugin@2.8.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/utils': 8.4.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
eslint: 9.11.0(jiti@1.21.6)
eslint-visitor-keys: 4.0.0
espree: 10.1.0
@@ -6917,7 +7001,7 @@ snapshots:
- supports-color
- typescript
- '@stylistic/stylelint-plugin@3.0.1(stylelint@16.9.0(typescript@5.6.2))':
+ '@stylistic/stylelint-plugin@3.1.0(stylelint@16.9.0(typescript@5.6.2))':
dependencies:
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
'@csstools/css-tokenizer': 3.0.1
@@ -6931,61 +7015,50 @@ snapshots:
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.14.8
+ '@types/node': 20.12.10
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.14.8
+ '@types/node': 20.12.10
'@types/conventional-commits-parser@5.0.0':
dependencies:
'@types/node': 20.12.10
- '@types/d3-scale-chromatic@3.0.3':
- optional: true
-
- '@types/d3-scale@4.0.8':
- dependencies:
- '@types/d3-time': 3.0.3
- optional: true
-
- '@types/d3-time@3.0.3':
- optional: true
-
'@types/debug@4.1.12':
dependencies:
- '@types/ms': 0.7.31
+ '@types/ms': 0.7.34
'@types/estree@1.0.5': {}
- '@types/express-serve-static-core@4.17.43':
+ '@types/express-serve-static-core@4.19.5':
dependencies:
- '@types/node': 20.14.8
- '@types/qs': 6.9.12
+ '@types/node': 20.12.10
+ '@types/qs': 6.9.16
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.17.43
- '@types/qs': 6.9.12
- '@types/serve-static': 1.15.5
+ '@types/express-serve-static-core': 4.19.5
+ '@types/qs': 6.9.16
+ '@types/serve-static': 1.15.7
'@types/fs-extra@11.0.4':
dependencies:
- '@types/jsonfile': 6.1.1
+ '@types/jsonfile': 6.1.4
'@types/node': 20.12.10
'@types/hash-sum@1.0.2': {}
'@types/hast@3.0.4':
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
'@types/http-errors@2.0.4': {}
- '@types/jsonfile@6.1.1':
+ '@types/jsonfile@6.1.4':
dependencies:
'@types/node': 20.12.10
@@ -6995,9 +7068,9 @@ snapshots:
'@types/lodash.merge@4.6.9':
dependencies:
- '@types/lodash': 4.14.182
+ '@types/lodash': 4.17.7
- '@types/lodash@4.14.182': {}
+ '@types/lodash@4.17.7': {}
'@types/markdown-it-emoji@3.0.1':
dependencies:
@@ -7008,22 +7081,15 @@ snapshots:
'@types/linkify-it': 5.0.0
'@types/mdurl': 2.0.0
- '@types/mdast@3.0.15':
+ '@types/mdast@4.0.4':
dependencies:
- '@types/unist': 2.0.10
- optional: true
-
- '@types/mdast@4.0.3':
- dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
'@types/mdurl@2.0.0': {}
'@types/mime@1.3.5': {}
- '@types/mime@3.0.4': {}
-
- '@types/ms@0.7.31': {}
+ '@types/ms@0.7.34': {}
'@types/node@17.0.45': {}
@@ -7031,19 +7097,15 @@ snapshots:
dependencies:
undici-types: 5.26.5
- '@types/node@20.14.8':
- dependencies:
- undici-types: 5.26.5
-
'@types/normalize-package-data@2.4.4': {}
- '@types/qs@6.9.12': {}
+ '@types/qs@6.9.16': {}
'@types/range-parser@1.2.7': {}
'@types/raphael@2.3.9': {}
- '@types/sax@1.2.4':
+ '@types/sax@1.2.7':
dependencies:
'@types/node': 20.12.10
@@ -7052,20 +7114,17 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.14.8
+ '@types/node': 20.12.10
- '@types/serve-static@1.15.5':
+ '@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/mime': 3.0.4
- '@types/node': 20.14.8
+ '@types/node': 20.12.10
+ '@types/send': 0.17.4
- '@types/trusted-types@2.0.2': {}
+ '@types/trusted-types@2.0.7': {}
- '@types/unist@2.0.10':
- optional: true
-
- '@types/unist@3.0.2': {}
+ '@types/unist@3.0.3': {}
'@types/web-bluetooth@0.0.20': {}
@@ -7073,7 +7132,7 @@ snapshots:
'@typescript-eslint/eslint-plugin@8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
'@typescript-eslint/parser': 8.0.0-alpha.40(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
'@typescript-eslint/scope-manager': 8.0.0-alpha.40
'@typescript-eslint/type-utils': 8.0.0-alpha.40(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
@@ -7095,7 +7154,7 @@ snapshots:
'@typescript-eslint/types': 8.0.0-alpha.40
'@typescript-eslint/typescript-estree': 8.0.0-alpha.40(typescript@5.6.2)
'@typescript-eslint/visitor-keys': 8.0.0-alpha.40
- debug: 4.3.6
+ debug: 4.3.7
eslint: 9.11.0(jiti@1.21.6)
optionalDependencies:
typescript: 5.6.2
@@ -7107,11 +7166,6 @@ snapshots:
'@typescript-eslint/types': 8.0.0-alpha.40
'@typescript-eslint/visitor-keys': 8.0.0-alpha.40
- '@typescript-eslint/scope-manager@8.4.0':
- dependencies:
- '@typescript-eslint/types': 8.4.0
- '@typescript-eslint/visitor-keys': 8.4.0
-
'@typescript-eslint/scope-manager@8.6.0':
dependencies:
'@typescript-eslint/types': 8.6.0
@@ -7121,7 +7175,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 8.0.0-alpha.40(typescript@5.6.2)
'@typescript-eslint/utils': 8.0.0-alpha.40(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
- debug: 4.3.6
+ debug: 4.3.7
ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
typescript: 5.6.2
@@ -7131,15 +7185,13 @@ snapshots:
'@typescript-eslint/types@8.0.0-alpha.40': {}
- '@typescript-eslint/types@8.4.0': {}
-
'@typescript-eslint/types@8.6.0': {}
'@typescript-eslint/typescript-estree@8.0.0-alpha.40(typescript@5.6.2)':
dependencies:
'@typescript-eslint/types': 8.0.0-alpha.40
'@typescript-eslint/visitor-keys': 8.0.0-alpha.40
- debug: 4.3.6
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
@@ -7150,26 +7202,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.4.0(typescript@5.6.2)':
- dependencies:
- '@typescript-eslint/types': 8.4.0
- '@typescript-eslint/visitor-keys': 8.4.0
- debug: 4.3.6
- fast-glob: 3.3.2
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
- optionalDependencies:
- typescript: 5.6.2
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/typescript-estree@8.6.0(typescript@5.6.2)':
dependencies:
'@typescript-eslint/types': 8.6.0
'@typescript-eslint/visitor-keys': 8.6.0
- debug: 4.3.6
+ debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
@@ -7191,17 +7228,6 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@8.4.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
- '@typescript-eslint/scope-manager': 8.4.0
- '@typescript-eslint/types': 8.4.0
- '@typescript-eslint/typescript-estree': 8.4.0(typescript@5.6.2)
- eslint: 9.11.0(jiti@1.21.6)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
'@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
@@ -7218,11 +7244,6 @@ snapshots:
'@typescript-eslint/types': 8.0.0-alpha.40
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.4.0':
- dependencies:
- '@typescript-eslint/types': 8.4.0
- eslint-visitor-keys: 3.4.3
-
'@typescript-eslint/visitor-keys@8.6.0':
dependencies:
'@typescript-eslint/types': 8.6.0
@@ -7230,17 +7251,17 @@ snapshots:
'@typescript/vfs@1.6.0(typescript@5.6.2)':
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
typescript: 5.6.2
transitivePeerDependencies:
- supports-color
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-vue@5.1.2(vite@5.4.2(@types/node@20.14.8)(sass@1.77.8))(vue@3.5.7(typescript@5.6.2))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.7(@types/node@20.12.10)(sass-embedded@1.79.3)(sass@1.79.3))(vue@3.5.8(typescript@5.6.2))':
dependencies:
- vite: 5.4.2(@types/node@20.14.8)(sass@1.77.8)
- vue: 3.5.7(typescript@5.6.2)
+ vite: 5.4.7(@types/node@20.12.10)(sass-embedded@1.79.3)(sass@1.79.3)
+ vue: 3.5.8(typescript@5.6.2)
'@vitest/eslint-plugin@1.1.4(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)':
dependencies:
@@ -7249,70 +7270,55 @@ snapshots:
'@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
typescript: 5.6.2
- '@volar/language-core@2.4.1':
+ '@volar/language-core@2.4.5':
dependencies:
- '@volar/source-map': 2.4.1
+ '@volar/source-map': 2.4.5
- '@volar/source-map@2.4.1': {}
+ '@volar/source-map@2.4.5': {}
- '@vue/compiler-core@3.5.2':
+ '@vue/compiler-core@3.5.8':
dependencies:
'@babel/parser': 7.25.6
- '@vue/shared': 3.5.2
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- '@vue/compiler-core@3.5.7':
- dependencies:
- '@babel/parser': 7.25.6
- '@vue/shared': 3.5.7
+ '@vue/shared': 3.5.8
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.2':
+ '@vue/compiler-dom@3.5.8':
dependencies:
- '@vue/compiler-core': 3.5.2
- '@vue/shared': 3.5.2
+ '@vue/compiler-core': 3.5.8
+ '@vue/shared': 3.5.8
- '@vue/compiler-dom@3.5.7':
- dependencies:
- '@vue/compiler-core': 3.5.7
- '@vue/shared': 3.5.7
-
- '@vue/compiler-sfc@3.5.7':
+ '@vue/compiler-sfc@3.5.8':
dependencies:
'@babel/parser': 7.25.6
- '@vue/compiler-core': 3.5.7
- '@vue/compiler-dom': 3.5.7
- '@vue/compiler-ssr': 3.5.7
- '@vue/shared': 3.5.7
+ '@vue/compiler-core': 3.5.8
+ '@vue/compiler-dom': 3.5.8
+ '@vue/compiler-ssr': 3.5.8
+ '@vue/shared': 3.5.8
estree-walker: 2.0.2
magic-string: 0.30.11
postcss: 8.4.47
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.7':
+ '@vue/compiler-ssr@3.5.8':
dependencies:
- '@vue/compiler-dom': 3.5.7
- '@vue/shared': 3.5.7
+ '@vue/compiler-dom': 3.5.8
+ '@vue/shared': 3.5.8
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
he: 1.2.0
- '@vue/devtools-api@6.6.3': {}
-
'@vue/devtools-api@6.6.4': {}
'@vue/language-core@2.1.6(typescript@5.6.2)':
dependencies:
- '@volar/language-core': 2.4.1
- '@vue/compiler-dom': 3.5.2
+ '@volar/language-core': 2.4.5
+ '@vue/compiler-dom': 3.5.8
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.2
+ '@vue/shared': 3.5.8
computeds: 0.0.1
minimatch: 9.0.5
muggle-string: 0.4.1
@@ -7320,49 +7326,45 @@ snapshots:
optionalDependencies:
typescript: 5.6.2
- '@vue/reactivity@3.5.7':
+ '@vue/reactivity@3.5.8':
dependencies:
- '@vue/shared': 3.5.7
+ '@vue/shared': 3.5.8
- '@vue/runtime-core@3.5.7':
+ '@vue/runtime-core@3.5.8':
dependencies:
- '@vue/reactivity': 3.5.7
- '@vue/shared': 3.5.7
+ '@vue/reactivity': 3.5.8
+ '@vue/shared': 3.5.8
- '@vue/runtime-dom@3.5.7':
+ '@vue/runtime-dom@3.5.8':
dependencies:
- '@vue/reactivity': 3.5.7
- '@vue/runtime-core': 3.5.7
- '@vue/shared': 3.5.7
+ '@vue/reactivity': 3.5.8
+ '@vue/runtime-core': 3.5.8
+ '@vue/shared': 3.5.8
csstype: 3.1.3
- '@vue/server-renderer@3.5.7(vue@3.5.7(typescript@5.6.2))':
+ '@vue/server-renderer@3.5.8(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@vue/compiler-ssr': 3.5.7
- '@vue/shared': 3.5.7
- vue: 3.5.7(typescript@5.6.2)
+ '@vue/compiler-ssr': 3.5.8
+ '@vue/shared': 3.5.8
+ vue: 3.5.8(typescript@5.6.2)
- '@vue/shared@3.5.2': {}
+ '@vue/shared@3.5.8': {}
- '@vue/shared@3.5.4': {}
-
- '@vue/shared@3.5.7': {}
-
- '@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0)':
+ '@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1)':
dependencies:
- '@vitejs/plugin-vue': 5.1.2(vite@5.4.2(@types/node@20.14.8)(sass@1.77.8))(vue@3.5.7(typescript@5.6.2))
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.7(@types/node@20.12.10)(sass-embedded@1.79.3)(sass@1.79.3))(vue@3.5.8(typescript@5.6.2))
'@vuepress/client': 2.0.0-rc.15(typescript@5.6.2)
'@vuepress/core': 2.0.0-rc.15(typescript@5.6.2)
'@vuepress/shared': 2.0.0-rc.15
'@vuepress/utils': 2.0.0-rc.15
- autoprefixer: 10.4.20(postcss@8.4.41)
+ autoprefixer: 10.4.20(postcss@8.4.47)
connect-history-api-fallback: 2.0.0
- postcss: 8.4.41
- postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.41)(tsx@4.16.0)(yaml@2.5.0)
- rollup: 4.21.1
- vite: 5.4.2(@types/node@20.14.8)(sass@1.77.8)
- vue: 3.5.7(typescript@5.6.2)
- vue-router: 4.4.3(vue@3.5.7(typescript@5.6.2))
+ postcss: 8.4.47
+ postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.47)(yaml@2.5.1)
+ rollup: 4.22.4
+ vite: 5.4.7(@types/node@20.12.10)(sass-embedded@1.79.3)(sass@1.79.3)
+ vue: 3.5.8(typescript@5.6.2)
+ vue-router: 4.4.5(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -7385,7 +7387,7 @@ snapshots:
'@vuepress/utils': 2.0.0-rc.15
cac: 6.7.14
chokidar: 3.6.0
- envinfo: 7.13.0
+ envinfo: 7.14.0
esbuild: 0.21.5
transitivePeerDependencies:
- supports-color
@@ -7393,10 +7395,10 @@ snapshots:
'@vuepress/client@2.0.0-rc.15(typescript@5.6.2)':
dependencies:
- '@vue/devtools-api': 6.6.3
+ '@vue/devtools-api': 6.6.4
'@vuepress/shared': 2.0.0-rc.15
- vue: 3.5.7(typescript@5.6.2)
- vue-router: 4.4.5(vue@3.5.7(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vue-router: 4.4.5(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- typescript
@@ -7406,31 +7408,20 @@ snapshots:
'@vuepress/markdown': 2.0.0-rc.15
'@vuepress/shared': 2.0.0-rc.15
'@vuepress/utils': 2.0.0-rc.15
- vue: 3.5.7(typescript@5.6.2)
+ vue: 3.5.8(typescript@5.6.2)
transitivePeerDependencies:
- supports-color
- typescript
- '@vuepress/helper@2.0.0-rc.39(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/helper@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vue/shared': 3.5.4
- cheerio: 1.0.0-rc.12
- fflate: 0.8.2
- gray-matter: 4.0.3
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
- transitivePeerDependencies:
- - typescript
-
- '@vuepress/helper@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
- dependencies:
- '@vue/shared': 3.5.7
- '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2))
+ '@vue/shared': 3.5.8
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
cheerio: 1.0.0
fflate: 0.8.2
gray-matter: 4.0.3
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
@@ -7450,47 +7441,47 @@ snapshots:
'@vuepress/shared': 2.0.0-rc.15
'@vuepress/utils': 2.0.0-rc.15
markdown-it: 14.1.0
- markdown-it-anchor: 9.0.1(@types/markdown-it@14.1.2)(markdown-it@14.1.0)
+ markdown-it-anchor: 9.2.0(@types/markdown-it@14.1.2)(markdown-it@14.1.0)
markdown-it-emoji: 3.0.0
mdurl: 2.0.0
transitivePeerDependencies:
- supports-color
- '@vuepress/plugin-active-header-links@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-active-header-links@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2))
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-cache@2.0.0-rc.42(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-cache@2.0.0-rc.42(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
ci-info: 4.0.0
lru-cache: 10.4.3
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
- '@vuepress/plugin-comment@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-comment@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
giscus: 1.5.0
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-docsearch@2.0.0-rc.46(@algolia/client-search@4.20.0)(search-insights@2.7.0)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-docsearch@2.0.0-rc.47(@algolia/client-search@4.24.0)(search-insights@2.17.2)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
'@docsearch/css': 3.6.1
- '@docsearch/js': 3.6.1(@algolia/client-search@4.20.0)(search-insights@2.7.0)
- '@docsearch/react': 3.6.1(@algolia/client-search@4.20.0)(search-insights@2.7.0)
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2))
+ '@docsearch/js': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)
+ '@docsearch/react': 3.6.1(@algolia/client-search@4.24.0)(search-insights@2.17.2)
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
ts-debounce: 4.0.0
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -7500,77 +7491,125 @@ snapshots:
- search-insights
- typescript
- '@vuepress/plugin-git@2.0.0-rc.44(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-git@2.0.0-rc.44(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
execa: 9.4.0
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
- '@vuepress/plugin-markdown-container@2.0.0-rc.43(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-markdown-container@2.0.0-rc.43(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
'@types/markdown-it': 14.1.2
markdown-it-container: 4.0.0
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
- '@vuepress/plugin-nprogress@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-markdown-hint@2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ '@mdit/plugin-alert': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-container': 0.13.1(markdown-it@14.1.0)
+ '@types/markdown-it': 14.1.2
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - markdown-it
+ - typescript
+ - vue
+
+ '@vuepress/plugin-markdown-image@2.0.0-rc.47(markdown-it@14.1.0)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
+ dependencies:
+ '@mdit/plugin-figure': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-img-lazyload': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-img-mark': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-img-size': 0.13.1(markdown-it@14.1.0)
+ '@types/markdown-it': 14.1.2
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - markdown-it
+ - typescript
+
+ '@vuepress/plugin-markdown-math@2.0.0-rc.49(katex@0.16.11)(markdown-it@14.1.0)(mathjax-full@3.2.2)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
+ dependencies:
+ '@mdit/plugin-katex-slim': 0.13.1(katex@0.16.11)(markdown-it@14.1.0)
+ '@mdit/plugin-mathjax-slim': 0.13.1(markdown-it@14.1.0)(mathjax-full@3.2.2)
+ '@types/markdown-it': 14.1.2
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
+ optionalDependencies:
+ katex: 0.16.11
+ mathjax-full: 3.2.2
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - markdown-it
+ - typescript
+
+ '@vuepress/plugin-nprogress@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-photo-swipe@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-photo-swipe@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
photoswipe: 5.4.4
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-reading-time@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-reading-time@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-sass-palette@2.0.0-rc.39(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-sass-palette@2.0.0-rc.51(sass-embedded@1.79.3)(sass-loader@16.0.2(sass-embedded@1.79.3)(sass@1.79.3))(sass@1.79.3)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.39(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- chokidar: 3.6.0
- sass: 1.77.8
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
- transitivePeerDependencies:
- - typescript
-
- '@vuepress/plugin-seo@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
- dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ chokidar: 4.0.1
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
+ optionalDependencies:
+ sass: 1.79.3
+ sass-embedded: 1.79.3
+ sass-loader: 16.0.2(sass-embedded@1.79.3)(sass@1.79.3)
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-sitemap@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-seo@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - typescript
+
+ '@vuepress/plugin-sitemap@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
sitemap: 8.0.0
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-watermark@2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))':
+ '@vuepress/plugin-watermark@2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.46(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
watermark-js-plus: 1.5.6
transitivePeerDependencies:
- '@vue/composition-api'
@@ -7586,41 +7625,31 @@ snapshots:
'@types/fs-extra': 11.0.4
'@types/hash-sum': 1.0.2
'@vuepress/shared': 2.0.0-rc.15
- debug: 4.3.6
+ debug: 4.3.7
fs-extra: 11.2.0
globby: 14.0.2
hash-sum: 2.0.0
- ora: 8.0.1
+ ora: 8.1.0
picocolors: 1.1.0
upath: 2.0.1
transitivePeerDependencies:
- supports-color
- '@vueuse/core@10.11.1(vue@3.5.7(typescript@5.6.2))':
- dependencies:
- '@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.5.7(typescript@5.6.2))
- vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/core@11.1.0(vue@3.5.7(typescript@5.6.2))':
+ '@vueuse/core@11.1.0(vue@3.5.8(typescript@5.6.2))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 11.1.0
- '@vueuse/shared': 11.1.0(vue@3.5.7(typescript@5.6.2))
- vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2))
+ '@vueuse/shared': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@11.1.0(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.7(typescript@5.6.2))':
+ '@vueuse/integrations@11.1.0(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.8(typescript@5.6.2))':
dependencies:
- '@vueuse/core': 11.1.0(vue@3.5.7(typescript@5.6.2))
- '@vueuse/shared': 11.1.0(vue@3.5.7(typescript@5.6.2))
- vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ '@vueuse/shared': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
optionalDependencies:
axios: 1.7.7
focus-trap: 7.6.0
@@ -7628,20 +7657,11 @@ snapshots:
- '@vue/composition-api'
- vue
- '@vueuse/metadata@10.11.1': {}
-
'@vueuse/metadata@11.1.0': {}
- '@vueuse/shared@10.11.1(vue@3.5.7(typescript@5.6.2))':
+ '@vueuse/shared@11.1.0(vue@3.5.8(typescript@5.6.2))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/shared@11.1.0(vue@3.5.7(typescript@5.6.2))':
- dependencies:
- vue-demi: 0.14.10(vue@3.5.7(typescript@5.6.2))
+ vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -7655,10 +7675,6 @@ snapshots:
dependencies:
acorn: 8.12.1
- acorn@8.10.0: {}
-
- acorn@8.11.3: {}
-
acorn@8.12.1: {}
add-stream@1.0.0: {}
@@ -7670,29 +7686,30 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.12.0:
+ ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
+ fast-uri: 3.0.1
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- uri-js: 4.4.1
- algoliasearch@4.20.0:
+ algoliasearch@4.24.0:
dependencies:
- '@algolia/cache-browser-local-storage': 4.20.0
- '@algolia/cache-common': 4.20.0
- '@algolia/cache-in-memory': 4.20.0
- '@algolia/client-account': 4.20.0
- '@algolia/client-analytics': 4.20.0
- '@algolia/client-common': 4.20.0
- '@algolia/client-personalization': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/logger-console': 4.20.0
- '@algolia/requester-browser-xhr': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/requester-node-http': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-account': 4.24.0
+ '@algolia/client-analytics': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-personalization': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/recommend': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
ansi-escapes@4.3.2:
dependencies:
@@ -7704,7 +7721,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@3.2.1:
dependencies:
@@ -7747,19 +7764,19 @@ snapshots:
at-least-node@1.0.0: {}
- autoprefixer@10.4.20(postcss@8.4.41):
+ autoprefixer@10.4.20(postcss@8.4.47):
dependencies:
browserslist: 4.23.3
- caniuse-lite: 1.0.30001653
+ caniuse-lite: 1.0.30001663
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.0
- postcss: 8.4.41
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
axios@1.7.7:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -7779,13 +7796,13 @@ snapshots:
bcrypt-ts@5.0.2: {}
- binary-extensions@2.2.0: {}
+ binary-extensions@2.3.0: {}
bl@4.1.0:
dependencies:
buffer: 5.7.1
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.2
boolbase@1.0.0: {}
@@ -7798,21 +7815,19 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
- dependencies:
- fill-range: 7.0.1
-
braces@3.0.3:
dependencies:
fill-range: 7.1.1
browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001653
- electron-to-chromium: 1.5.13
+ caniuse-lite: 1.0.30001663
+ electron-to-chromium: 1.5.27
node-releases: 2.0.18
update-browserslist-db: 1.1.0(browserslist@4.23.3)
+ buffer-builder@0.2.0: {}
+
buffer@5.7.1:
dependencies:
base64-js: 1.5.1
@@ -7823,9 +7838,9 @@ snapshots:
bumpp@9.5.2:
dependencies:
'@jsdevtools/ez-spawn': 3.0.4
- c12: 1.11.1
+ c12: 1.11.2
cac: 6.7.14
- escalade: 3.1.2
+ escalade: 3.2.0
fast-glob: 3.3.2
js-yaml: 4.1.0
jsonc-parser: 3.3.1
@@ -7839,7 +7854,7 @@ snapshots:
esbuild: 0.23.1
load-tsconfig: 0.2.5
- c12@1.11.1:
+ c12@1.11.2:
dependencies:
chokidar: 3.6.0
confbox: 0.1.7
@@ -7848,10 +7863,10 @@ snapshots:
giget: 1.2.3
jiti: 1.21.6
mlly: 1.7.1
- ohash: 1.1.3
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
rc9: 2.1.2
cac@6.7.14: {}
@@ -7870,7 +7885,7 @@ snapshots:
callsites@3.1.0: {}
- caniuse-lite@1.0.30001653: {}
+ caniuse-lite@1.0.30001663: {}
ccount@2.0.1: {}
@@ -7922,16 +7937,6 @@ snapshots:
undici: 6.19.8
whatwg-mimetype: 4.0.0
- cheerio@1.0.0-rc.12:
- dependencies:
- cheerio-select: 2.1.0
- dom-serializer: 2.0.0
- domhandler: 5.0.3
- domutils: 3.0.1
- htmlparser2: 8.0.1
- parse5: 7.1.2
- parse5-htmlparser2-tree-adapter: 7.0.0
-
chevrotain-allstar@0.3.1(chevrotain@11.0.3):
dependencies:
chevrotain: 11.0.3
@@ -7958,6 +7963,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.1
+
chownr@2.0.0: {}
ci-info@4.0.0: {}
@@ -7974,10 +7983,6 @@ snapshots:
dependencies:
restore-cursor: 3.1.0
- cli-cursor@4.0.0:
- dependencies:
- restore-cursor: 4.0.0
-
cli-cursor@5.0.0:
dependencies:
restore-cursor: 5.1.0
@@ -7987,7 +7992,7 @@ snapshots:
cli-truncate@4.0.0:
dependencies:
slice-ansi: 5.0.0
- string-width: 7.0.0
+ string-width: 7.2.0
cli-width@3.0.0: {}
@@ -8015,6 +8020,8 @@ snapshots:
colorette@2.0.20: {}
+ colorjs.io@0.5.2: {}
+
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -8029,6 +8036,8 @@ snapshots:
commander@8.3.0: {}
+ commander@9.2.0: {}
+
comment-parser@1.4.1: {}
commitizen@4.3.0(@types/node@20.12.10)(typescript@5.6.2):
@@ -8076,10 +8085,10 @@ snapshots:
conventional-changelog-atom@5.0.0: {}
- conventional-changelog-cli@5.0.0:
+ conventional-changelog-cli@5.0.0(conventional-commits-filter@5.0.0):
dependencies:
add-stream: 1.0.0
- conventional-changelog: 6.0.0
+ conventional-changelog: 6.0.0(conventional-commits-filter@5.0.0)
meow: 13.2.0
tempfile: 5.0.0
transitivePeerDependencies:
@@ -8095,16 +8104,16 @@ snapshots:
dependencies:
compare-func: 2.0.0
- conventional-changelog-core@8.0.0:
+ conventional-changelog-core@8.0.0(conventional-commits-filter@5.0.0):
dependencies:
'@hutson/parse-repository-url': 5.0.0
add-stream: 1.0.0
conventional-changelog-writer: 8.0.0
conventional-commits-parser: 6.0.0
- git-raw-commits: 5.0.0(conventional-commits-parser@6.0.0)
- git-semver-tags: 8.0.0(conventional-commits-parser@6.0.0)
- hosted-git-info: 7.0.1
- normalize-package-data: 6.0.0
+ git-raw-commits: 5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)
+ git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)
+ hosted-git-info: 7.0.2
+ normalize-package-data: 6.0.2
read-package-up: 11.0.0
read-pkg: 9.0.1
transitivePeerDependencies:
@@ -8130,15 +8139,15 @@ snapshots:
conventional-commits-filter: 5.0.0
handlebars: 4.7.8
meow: 13.2.0
- semver: 7.6.0
+ semver: 7.6.3
- conventional-changelog@6.0.0:
+ conventional-changelog@6.0.0(conventional-commits-filter@5.0.0):
dependencies:
conventional-changelog-angular: 8.0.0
conventional-changelog-atom: 5.0.0
conventional-changelog-codemirror: 5.0.0
conventional-changelog-conventionalcommits: 8.0.0
- conventional-changelog-core: 8.0.0
+ conventional-changelog-core: 8.0.0(conventional-commits-filter@5.0.0)
conventional-changelog-ember: 5.0.0
conventional-changelog-eslint: 6.0.0
conventional-changelog-express: 5.0.0
@@ -8157,13 +8166,13 @@ snapshots:
JSONStream: 1.3.5
is-text-path: 2.0.0
meow: 12.1.1
- split2: 4.1.0
+ split2: 4.2.0
conventional-commits-parser@6.0.0:
dependencies:
meow: 13.2.0
- core-js-compat@3.37.1:
+ core-js-compat@3.38.1:
dependencies:
browserslist: 4.23.3
@@ -8183,7 +8192,7 @@ snapshots:
dependencies:
'@types/node': 20.12.10
cosmiconfig: 9.0.0(typescript@5.6.2)
- jiti: 1.21.0
+ jiti: 1.21.6
typescript: 5.6.2
cosmiconfig@9.0.0(typescript@5.6.2):
@@ -8197,14 +8206,14 @@ snapshots:
cpx2@7.0.1:
dependencies:
- debounce: 2.0.0
- debug: 4.3.4
+ debounce: 2.1.1
+ debug: 4.3.7
duplexer: 0.1.2
- fs-extra: 11.1.1
- glob: 10.3.10
+ fs-extra: 11.2.0
+ glob: 10.4.5
glob2base: 0.0.12
- ignore: 5.2.4
- minimatch: 9.0.3
+ ignore: 5.3.2
+ minimatch: 9.0.5
p-map: 6.0.0
resolve: 1.22.8
safe-buffer: 5.2.1
@@ -8236,7 +8245,7 @@ snapshots:
css-tree@2.3.1:
dependencies:
mdn-data: 2.0.30
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
css-what@6.1.0: {}
@@ -8263,9 +8272,9 @@ snapshots:
conventional-commit-types: 3.0.0
lodash.map: 4.6.0
longest: 2.0.1
- word-wrap: 1.2.3
+ word-wrap: 1.2.5
optionalDependencies:
- '@commitlint/load': 19.2.0(@types/node@20.12.10)(typescript@5.6.2)
+ '@commitlint/load': 19.5.0(@types/node@20.12.10)(typescript@5.6.2)
transitivePeerDependencies:
- '@types/node'
- typescript
@@ -8444,25 +8453,19 @@ snapshots:
dargs@8.1.0: {}
- date-fns@4.1.0: {}
-
- dayjs@1.11.12: {}
+ dayjs@1.11.13: {}
de-indent@1.0.2: {}
- debounce@2.0.0: {}
+ debounce@2.1.1: {}
debug@3.2.7:
dependencies:
ms: 2.1.3
- debug@4.3.4:
+ debug@4.3.7:
dependencies:
- ms: 2.1.2
-
- debug@4.3.6:
- dependencies:
- ms: 2.1.2
+ ms: 2.1.3
decode-named-character-reference@1.0.2:
dependencies:
@@ -8502,9 +8505,6 @@ snapshots:
dependencies:
dequal: 2.0.3
- diff@5.2.0:
- optional: true
-
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
@@ -8527,12 +8527,6 @@ snapshots:
dompurify@3.1.6: {}
- domutils@3.0.1:
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
-
domutils@3.1.0:
dependencies:
dom-serializer: 2.0.0
@@ -8554,12 +8548,9 @@ snapshots:
tslib: 2.3.0
zrender: 5.6.0
- electron-to-chromium@1.5.13: {}
+ electron-to-chromium@1.5.27: {}
- elkjs@0.9.2:
- optional: true
-
- emoji-regex@10.3.0: {}
+ emoji-regex@10.4.0: {}
emoji-regex@8.0.0: {}
@@ -8570,7 +8561,7 @@ snapshots:
iconv-lite: 0.6.3
whatwg-encoding: 3.1.1
- enhanced-resolve@5.17.0:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -8579,7 +8570,7 @@ snapshots:
env-paths@2.2.1: {}
- envinfo@7.13.0: {}
+ envinfo@7.14.0: {}
environment@1.1.0: {}
@@ -8648,7 +8639,34 @@ snapshots:
'@esbuild/win32-ia32': 0.23.1
'@esbuild/win32-x64': 0.23.1
- escalade@3.1.2: {}
+ esbuild@0.24.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.24.0
+ '@esbuild/android-arm': 0.24.0
+ '@esbuild/android-arm64': 0.24.0
+ '@esbuild/android-x64': 0.24.0
+ '@esbuild/darwin-arm64': 0.24.0
+ '@esbuild/darwin-x64': 0.24.0
+ '@esbuild/freebsd-arm64': 0.24.0
+ '@esbuild/freebsd-x64': 0.24.0
+ '@esbuild/linux-arm': 0.24.0
+ '@esbuild/linux-arm64': 0.24.0
+ '@esbuild/linux-ia32': 0.24.0
+ '@esbuild/linux-loong64': 0.24.0
+ '@esbuild/linux-mips64el': 0.24.0
+ '@esbuild/linux-ppc64': 0.24.0
+ '@esbuild/linux-riscv64': 0.24.0
+ '@esbuild/linux-s390x': 0.24.0
+ '@esbuild/linux-x64': 0.24.0
+ '@esbuild/netbsd-x64': 0.24.0
+ '@esbuild/openbsd-arm64': 0.24.0
+ '@esbuild/openbsd-x64': 0.24.0
+ '@esbuild/sunos-x64': 0.24.0
+ '@esbuild/win32-arm64': 0.24.0
+ '@esbuild/win32-ia32': 0.24.0
+ '@esbuild/win32-x64': 0.24.0
+
+ escalade@3.2.0: {}
escape-string-regexp@1.0.5: {}
@@ -8656,11 +8674,7 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.1.2(eslint@9.11.0(jiti@1.21.6)):
- dependencies:
- eslint: 9.11.0(jiti@1.21.6)
-
- eslint-compat-utils@0.5.0(eslint@9.11.0(jiti@1.21.6)):
+ eslint-compat-utils@0.5.1(eslint@9.11.0(jiti@1.21.6)):
dependencies:
eslint: 9.11.0(jiti@1.21.6)
semver: 7.6.3
@@ -8678,7 +8692,7 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -8697,21 +8711,21 @@ snapshots:
'@es-joy/jsdoccomment': 0.48.0
eslint: 9.11.0(jiti@1.21.6)
- eslint-plugin-es-x@7.5.0(eslint@9.11.0(jiti@1.21.6)):
+ eslint-plugin-es-x@7.8.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
eslint: 9.11.0(jiti@1.21.6)
- eslint-compat-utils: 0.1.2(eslint@9.11.0(jiti@1.21.6))
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
- eslint-plugin-import-x@4.2.1(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2):
+ eslint-plugin-import-x@4.3.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2):
dependencies:
- '@typescript-eslint/utils': 8.4.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
- debug: 4.3.6
+ '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
+ debug: 4.3.7
doctrine: 3.0.0
eslint: 9.11.0(jiti@1.21.6)
eslint-import-resolver-node: 0.3.9
- get-tsconfig: 4.7.5
+ get-tsconfig: 4.8.1
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
@@ -8726,12 +8740,12 @@ snapshots:
'@es-joy/jsdoccomment': 0.48.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
- debug: 4.3.6
+ debug: 4.3.7
escape-string-regexp: 4.0.0
eslint: 9.11.0(jiti@1.21.6)
espree: 10.1.0
esquery: 1.6.0
- parse-imports: 2.1.1
+ parse-imports: 2.2.1
semver: 7.6.3
spdx-expression-parse: 4.0.0
synckit: 0.9.1
@@ -8742,7 +8756,7 @@ snapshots:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
eslint: 9.11.0(jiti@1.21.6)
- eslint-compat-utils: 0.5.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -8752,10 +8766,10 @@ snapshots:
eslint-plugin-n@17.10.3(eslint@9.11.0(jiti@1.21.6)):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
- enhanced-resolve: 5.17.0
+ enhanced-resolve: 5.17.1
eslint: 9.11.0(jiti@1.21.6)
- eslint-plugin-es-x: 7.5.0(eslint@9.11.0(jiti@1.21.6))
- get-tsconfig: 4.7.5
+ eslint-plugin-es-x: 7.8.0(eslint@9.11.0(jiti@1.21.6))
+ get-tsconfig: 4.8.1
globals: 15.9.0
ignore: 5.3.2
minimatch: 9.0.5
@@ -8779,7 +8793,7 @@ snapshots:
eslint-plugin-regexp@2.6.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
comment-parser: 1.4.1
eslint: 9.11.0(jiti@1.21.6)
jsdoc-type-pratt-parser: 4.1.0
@@ -8789,9 +8803,9 @@ snapshots:
eslint-plugin-toml@0.11.1(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
eslint: 9.11.0(jiti@1.21.6)
- eslint-compat-utils: 0.5.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
lodash: 4.17.21
toml-eslint-parser: 0.10.0
transitivePeerDependencies:
@@ -8803,7 +8817,7 @@ snapshots:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
ci-info: 4.0.0
clean-regexp: 1.0.0
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.1
eslint: 9.11.0(jiti@1.21.6)
esquery: 1.6.0
globals: 15.9.0
@@ -8839,18 +8853,18 @@ snapshots:
eslint-plugin-yml@1.14.0(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
eslint: 9.11.0(jiti@1.21.6)
- eslint-compat-utils: 0.5.0(eslint@9.11.0(jiti@1.21.6))
+ eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.21.6))
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 1.2.3
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.7)(eslint@9.11.0(jiti@1.21.6)):
+ eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- '@vue/compiler-sfc': 3.5.7
+ '@vue/compiler-sfc': 3.5.8
eslint: 9.11.0(jiti@1.21.6)
eslint-scope@7.2.2:
@@ -8870,7 +8884,7 @@ snapshots:
eslint@9.11.0(jiti@1.21.6):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
'@eslint/config-array': 0.18.0
'@eslint/eslintrc': 3.1.0
'@eslint/js': 9.11.0
@@ -8881,7 +8895,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.6
+ debug: 4.3.7
escape-string-regexp: 4.0.0
eslint-scope: 8.0.2
eslint-visitor-keys: 4.0.0
@@ -8900,7 +8914,7 @@ snapshots:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
optionalDependencies:
@@ -8908,6 +8922,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ esm@3.2.25: {}
+
espree@10.1.0:
dependencies:
acorn: 8.12.1
@@ -8976,10 +8992,10 @@ snapshots:
is-plain-obj: 4.1.0
is-stream: 4.0.1
npm-run-path: 6.0.0
- pretty-ms: 9.0.0
+ pretty-ms: 9.1.0
signal-exit: 4.1.0
strip-final-newline: 4.0.0
- yoctocolors: 2.0.0
+ yoctocolors: 2.1.1
expand-tilde@2.0.2:
dependencies:
@@ -9003,15 +9019,17 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
fast-levenshtein@2.0.6: {}
+ fast-uri@3.0.1: {}
+
fastest-levenshtein@1.0.16: {}
- fastq@1.14.0:
+ fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -9027,20 +9045,16 @@ snapshots:
figures@6.1.0:
dependencies:
- is-unicode-supported: 2.0.0
+ is-unicode-supported: 2.1.0
file-entry-cache@8.0.0:
dependencies:
- flat-cache: 4.0.0
+ flat-cache: 4.0.1
- file-entry-cache@9.0.0:
+ file-entry-cache@9.1.0:
dependencies:
flat-cache: 5.0.0
- fill-range@7.0.1:
- dependencies:
- to-regex-range: 5.0.1
-
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
@@ -9076,14 +9090,13 @@ snapshots:
dependencies:
detect-file: 1.0.0
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.8
resolve-dir: 1.0.1
- flat-cache@4.0.0:
+ flat-cache@4.0.1:
dependencies:
flatted: 3.3.1
keyv: 4.5.4
- rimraf: 5.0.8
flat-cache@5.0.0:
dependencies:
@@ -9092,11 +9105,11 @@ snapshots:
flatted@3.3.1: {}
- floating-vue@5.2.2(vue@3.5.7(typescript@5.6.2)):
+ floating-vue@5.2.2(vue@3.5.8(typescript@5.6.2)):
dependencies:
'@floating-ui/dom': 1.1.1
- vue: 3.5.7(typescript@5.6.2)
- vue-resize: 2.0.0-alpha.1(vue@3.5.7(typescript@5.6.2))
+ vue: 3.5.8(typescript@5.6.2)
+ vue-resize: 2.0.0-alpha.1(vue@3.5.8(typescript@5.6.2))
flowchart.ts@3.0.1:
dependencies:
@@ -9108,9 +9121,9 @@ snapshots:
dependencies:
tabbable: 6.2.0
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.9: {}
- foreground-child@3.1.1:
+ foreground-child@3.3.0:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
@@ -9123,24 +9136,18 @@ snapshots:
fraction.js@4.3.7: {}
- fs-extra@11.1.1:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
-
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
fs-extra@9.1.0:
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
fs-minipass@2.1.0:
dependencies:
@@ -9163,7 +9170,7 @@ snapshots:
function-bind: 1.1.2
has-proto: 1.0.3
has-symbols: 1.0.3
- hasown: 2.0.0
+ hasown: 2.0.2
get-stream@6.0.1: {}
@@ -9174,7 +9181,7 @@ snapshots:
'@sec-ant/readable-stream': 0.4.1
is-stream: 4.0.1
- get-tsconfig@4.7.5:
+ get-tsconfig@4.8.1:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -9184,32 +9191,32 @@ snapshots:
consola: 3.2.3
defu: 6.1.4
node-fetch-native: 1.6.4
- nypm: 0.3.9
- ohash: 1.1.3
+ nypm: 0.3.11
+ ohash: 1.1.4
pathe: 1.1.2
- tar: 6.2.0
+ tar: 6.2.1
giscus@1.5.0:
dependencies:
- lit: 3.1.2
+ lit: 3.2.0
git-raw-commits@4.0.0:
dependencies:
dargs: 8.1.0
meow: 12.1.1
- split2: 4.1.0
+ split2: 4.2.0
- git-raw-commits@5.0.0(conventional-commits-parser@6.0.0):
+ git-raw-commits@5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0):
dependencies:
- '@conventional-changelog/git-client': 1.0.0(conventional-commits-parser@6.0.0)
+ '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)
meow: 13.2.0
transitivePeerDependencies:
- conventional-commits-filter
- conventional-commits-parser
- git-semver-tags@8.0.0(conventional-commits-parser@6.0.0):
+ git-semver-tags@8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0):
dependencies:
- '@conventional-changelog/git-client': 1.0.0(conventional-commits-parser@6.0.0)
+ '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)
meow: 13.2.0
transitivePeerDependencies:
- conventional-commits-filter
@@ -9227,17 +9234,18 @@ snapshots:
dependencies:
find-index: 0.1.1
- glob@10.3.10:
+ glob@10.4.5:
dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.3
- minipass: 7.0.4
- path-scurry: 1.10.1
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.0
+ path-scurry: 1.11.1
glob@11.0.0:
dependencies:
- foreground-child: 3.1.1
+ foreground-child: 3.3.0
jackspeak: 4.0.1
minimatch: 10.0.1
minipass: 7.1.2
@@ -9294,7 +9302,7 @@ snapshots:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -9313,8 +9321,6 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
- graceful-fs@4.2.10: {}
-
graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -9335,7 +9341,7 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.4
+ uglify-js: 3.19.3
has-flag@3.0.0: {}
@@ -9351,14 +9357,14 @@ snapshots:
hash-sum@2.0.0: {}
- hasown@2.0.0:
+ hasown@2.0.2:
dependencies:
function-bind: 1.1.2
hast-util-to-html@9.0.3:
dependencies:
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
ccount: 2.0.1
comma-separated-tokens: 2.0.3
hast-util-whitespace: 3.0.0
@@ -9381,9 +9387,9 @@ snapshots:
hosted-git-info@2.8.9: {}
- hosted-git-info@7.0.1:
+ hosted-git-info@7.0.2:
dependencies:
- lru-cache: 10.0.2
+ lru-cache: 10.4.3
html-encoding-sniffer@3.0.0:
dependencies:
@@ -9393,11 +9399,11 @@ snapshots:
html-void-elements@3.0.0: {}
- htmlparser2@8.0.1:
+ htmlparser2@8.0.2:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.0.1
+ domutils: 3.1.0
entities: 4.5.0
htmlparser2@9.1.0:
@@ -9410,7 +9416,7 @@ snapshots:
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -9452,24 +9458,20 @@ snapshots:
ieee754@1.2.1: {}
- ignore@5.2.4: {}
-
- ignore@5.3.1: {}
-
ignore@5.3.2: {}
image-size@1.1.1:
dependencies:
queue: 6.0.2
- immutable@4.1.0: {}
+ immutable@4.3.7: {}
import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-meta-resolve@4.0.0: {}
+ import-meta-resolve@4.1.0: {}
imurmurhash@0.1.4: {}
@@ -9500,7 +9502,7 @@ snapshots:
mute-stream: 0.0.8
ora: 5.4.1
run-async: 2.4.1
- rxjs: 7.8.0
+ rxjs: 7.8.1
string-width: 4.2.3
strip-ansi: 6.0.1
through: 2.3.8
@@ -9514,15 +9516,15 @@ snapshots:
is-binary-path@2.1.0:
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
is-builtin-module@3.2.1:
dependencies:
builtin-modules: 3.3.0
- is-core-module@2.13.1:
+ is-core-module@2.15.1:
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.2
is-extendable@0.1.1: {}
@@ -9568,7 +9570,7 @@ snapshots:
is-unicode-supported@1.3.0: {}
- is-unicode-supported@2.0.0: {}
+ is-unicode-supported@2.1.0: {}
is-utf8@0.2.1: {}
@@ -9576,7 +9578,7 @@ snapshots:
isexe@2.0.0: {}
- jackspeak@2.3.6:
+ jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
@@ -9588,8 +9590,6 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jiti@1.21.0: {}
-
jiti@1.21.6: {}
joi@17.13.3:
@@ -9642,13 +9642,11 @@ snapshots:
espree: 9.6.1
semver: 7.6.3
- jsonc-parser@3.2.0: {}
-
jsonc-parser@3.3.1: {}
jsonfile@6.1.0:
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
@@ -9668,11 +9666,6 @@ snapshots:
kleur@3.0.3: {}
- kleur@4.1.5:
- optional: true
-
- known-css-properties@0.29.0: {}
-
known-css-properties@0.34.0: {}
kolorist@1.8.0: {}
@@ -9694,8 +9687,6 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lilconfig@3.1.1: {}
-
lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
@@ -9708,14 +9699,14 @@ snapshots:
dependencies:
chalk: 5.3.0
commander: 12.1.0
- debug: 4.3.6
+ debug: 4.3.7
execa: 8.0.1
lilconfig: 3.1.2
listr2: 8.2.4
micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.5.0
+ yaml: 2.5.1
transitivePeerDependencies:
- supports-color
@@ -9728,28 +9719,28 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- lit-element@4.0.4:
+ lit-element@4.1.0:
dependencies:
- '@lit-labs/ssr-dom-shim': 1.2.0
+ '@lit-labs/ssr-dom-shim': 1.2.1
'@lit/reactive-element': 2.0.4
- lit-html: 3.1.2
+ lit-html: 3.2.0
- lit-html@3.1.2:
+ lit-html@3.2.0:
dependencies:
- '@types/trusted-types': 2.0.2
+ '@types/trusted-types': 2.0.7
- lit@3.1.2:
+ lit@3.2.0:
dependencies:
'@lit/reactive-element': 2.0.4
- lit-element: 4.0.4
- lit-html: 3.1.2
+ lit-element: 4.1.0
+ lit-html: 3.2.0
load-tsconfig@0.2.5: {}
local-pkg@0.5.0:
dependencies:
- mlly: 1.6.1
- pkg-types: 1.0.3
+ mlly: 1.7.1
+ pkg-types: 1.2.0
locate-path@5.0.0:
dependencies:
@@ -9813,17 +9804,9 @@ snapshots:
longest@2.0.1: {}
- lru-cache@10.0.2:
- dependencies:
- semver: 7.6.3
-
lru-cache@10.4.3: {}
- lru-cache@11.0.0: {}
-
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
+ lru-cache@11.0.1: {}
magic-string@0.30.11:
dependencies:
@@ -9831,7 +9814,7 @@ snapshots:
mark.js@8.11.1: {}
- markdown-it-anchor@9.0.1(@types/markdown-it@14.1.2)(markdown-it@14.1.0):
+ markdown-it-anchor@9.2.0(@types/markdown-it@14.1.2)(markdown-it@14.1.0):
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
@@ -9853,37 +9836,26 @@ snapshots:
marked@13.0.3: {}
+ mathjax-full@3.2.2:
+ dependencies:
+ esm: 3.2.25
+ mhchemparser: 4.2.1
+ mj-context-menu: 0.6.1
+ speech-rule-engine: 4.0.7
+
mathml-tag-names@2.1.3: {}
mdast-util-find-and-replace@3.0.1:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
escape-string-regexp: 5.0.0
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- mdast-util-from-markdown@1.3.1:
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- decode-named-character-reference: 1.0.2
- mdast-util-to-string: 3.2.0
- micromark: 3.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-decode-string: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-stringify-position: 3.0.3
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
- optional: true
-
mdast-util-from-markdown@2.0.1:
dependencies:
- '@types/mdast': 4.0.3
- '@types/unist': 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
decode-named-character-reference: 1.0.2
devlop: 1.1.0
mdast-util-to-string: 4.0.0
@@ -9897,9 +9869,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-gfm-autolink-literal@2.0.0:
+ mdast-util-gfm-autolink-literal@2.0.1:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
ccount: 2.0.1
devlop: 1.1.0
mdast-util-find-and-replace: 3.0.1
@@ -9907,7 +9879,7 @@ snapshots:
mdast-util-gfm-footnote@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
@@ -9917,7 +9889,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
@@ -9925,7 +9897,7 @@ snapshots:
mdast-util-gfm-table@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
markdown-table: 3.0.3
mdast-util-from-markdown: 2.0.1
@@ -9935,7 +9907,7 @@ snapshots:
mdast-util-gfm-task-list-item@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
@@ -9945,7 +9917,7 @@ snapshots:
mdast-util-gfm@3.0.0:
dependencies:
mdast-util-from-markdown: 2.0.1
- mdast-util-gfm-autolink-literal: 2.0.0
+ mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
@@ -9956,25 +9928,25 @@ snapshots:
mdast-util-phrasing@4.1.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
unist-util-is: 6.0.0
mdast-util-to-hast@13.2.0:
dependencies:
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
'@ungap/structured-clone': 1.2.0
devlop: 1.1.0
micromark-util-sanitize-uri: 2.0.0
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.1
+ vfile: 6.0.3
mdast-util-to-markdown@2.1.0:
dependencies:
- '@types/mdast': 4.0.3
- '@types/unist': 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
@@ -9982,14 +9954,9 @@ snapshots:
unist-util-visit: 5.0.0
zwitch: 2.0.4
- mdast-util-to-string@3.2.0:
- dependencies:
- '@types/mdast': 3.0.15
- optional: true
-
mdast-util-to-string@4.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdn-data@2.0.30: {}
@@ -10005,32 +9972,6 @@ snapshots:
merge@2.1.1: {}
- mermaid@10.9.1:
- dependencies:
- '@braintree/sanitize-url': 6.0.4
- '@types/d3-scale': 4.0.8
- '@types/d3-scale-chromatic': 3.0.3
- cytoscape: 3.30.2
- cytoscape-cose-bilkent: 4.1.0(cytoscape@3.30.2)
- d3: 7.9.0
- d3-sankey: 0.12.3
- dagre-d3-es: 7.0.10
- dayjs: 1.11.12
- dompurify: 3.1.6
- elkjs: 0.9.2
- katex: 0.16.11
- khroma: 2.1.0
- lodash-es: 4.17.21
- mdast-util-from-markdown: 1.3.1
- non-layered-tidy-tree-layout: 2.0.2
- stylis: 4.3.1
- ts-dedent: 2.2.0
- uuid: 9.0.1
- web-worker: 1.3.0
- transitivePeerDependencies:
- - supports-color
- optional: true
-
mermaid@11.2.1:
dependencies:
'@braintree/sanitize-url': 7.1.0
@@ -10042,40 +9983,22 @@ snapshots:
d3: 7.9.0
d3-sankey: 0.12.3
dagre-d3-es: 7.0.10
- dayjs: 1.11.12
+ dayjs: 1.11.13
dompurify: 3.1.6
katex: 0.16.11
khroma: 2.1.0
lodash-es: 4.17.21
marked: 13.0.3
roughjs: 4.6.6
- stylis: 4.3.1
+ stylis: 4.3.4
ts-dedent: 2.2.0
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
- micromark-core-commonmark@1.1.0:
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-factory-destination: 1.1.0
- micromark-factory-label: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-factory-title: 1.1.0
- micromark-factory-whitespace: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-html-tag-name: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- optional: true
+ mhchemparser@4.2.1: {}
- micromark-core-commonmark@2.0.0:
+ micromark-core-commonmark@2.0.1:
dependencies:
decode-named-character-reference: 1.0.2
devlop: 1.1.0
@@ -10090,7 +10013,7 @@ snapshots:
micromark-util-html-tag-name: 2.0.0
micromark-util-normalize-identifier: 2.0.0
micromark-util-resolve-all: 2.0.0
- micromark-util-subtokenize: 2.0.0
+ micromark-util-subtokenize: 2.0.1
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
@@ -10104,7 +10027,7 @@ snapshots:
micromark-extension-gfm-footnote@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-core-commonmark: 2.0.0
+ micromark-core-commonmark: 2.0.1
micromark-factory-space: 2.0.0
micromark-util-character: 2.1.0
micromark-util-normalize-identifier: 2.0.0
@@ -10152,27 +10075,12 @@ snapshots:
micromark-util-combine-extensions: 2.0.0
micromark-util-types: 2.0.0
- micromark-factory-destination@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-factory-destination@2.0.0:
dependencies:
micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-factory-label@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- optional: true
-
micromark-factory-label@2.0.0:
dependencies:
devlop: 1.1.0
@@ -10180,25 +10088,11 @@ snapshots:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-factory-space@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-factory-space@2.0.0:
dependencies:
micromark-util-character: 2.1.0
micromark-util-types: 2.0.0
- micromark-factory-title@1.1.0:
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-factory-title@2.0.0:
dependencies:
micromark-factory-space: 2.0.0
@@ -10206,14 +10100,6 @@ snapshots:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-factory-whitespace@1.1.0:
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-factory-whitespace@2.0.0:
dependencies:
micromark-factory-space: 2.0.0
@@ -10221,67 +10107,30 @@ snapshots:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-util-character@1.2.0:
- dependencies:
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-util-character@2.1.0:
dependencies:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-util-chunked@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
- optional: true
-
micromark-util-chunked@2.0.0:
dependencies:
micromark-util-symbol: 2.0.0
- micromark-util-classify-character@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-util-classify-character@2.0.0:
dependencies:
micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-util-combine-extensions@1.1.0:
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-types: 1.1.0
- optional: true
-
micromark-util-combine-extensions@2.0.0:
dependencies:
micromark-util-chunked: 2.0.0
micromark-util-types: 2.0.0
- micromark-util-decode-numeric-character-reference@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
- optional: true
-
micromark-util-decode-numeric-character-reference@2.0.1:
dependencies:
micromark-util-symbol: 2.0.0
- micromark-util-decode-string@1.1.0:
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-util-character: 1.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-symbol: 1.1.0
- optional: true
-
micromark-util-decode-string@2.0.0:
dependencies:
decode-named-character-reference: 1.0.2
@@ -10289,102 +10138,42 @@ snapshots:
micromark-util-decode-numeric-character-reference: 2.0.1
micromark-util-symbol: 2.0.0
- micromark-util-encode@1.1.0:
- optional: true
-
micromark-util-encode@2.0.0: {}
- micromark-util-html-tag-name@1.2.0:
- optional: true
-
micromark-util-html-tag-name@2.0.0: {}
- micromark-util-normalize-identifier@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
- optional: true
-
micromark-util-normalize-identifier@2.0.0:
dependencies:
micromark-util-symbol: 2.0.0
- micromark-util-resolve-all@1.1.0:
- dependencies:
- micromark-util-types: 1.1.0
- optional: true
-
micromark-util-resolve-all@2.0.0:
dependencies:
micromark-util-types: 2.0.0
- micromark-util-sanitize-uri@1.2.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-encode: 1.1.0
- micromark-util-symbol: 1.1.0
- optional: true
-
micromark-util-sanitize-uri@2.0.0:
dependencies:
micromark-util-character: 2.1.0
micromark-util-encode: 2.0.0
micromark-util-symbol: 2.0.0
- micromark-util-subtokenize@1.1.0:
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- optional: true
-
- micromark-util-subtokenize@2.0.0:
+ micromark-util-subtokenize@2.0.1:
dependencies:
devlop: 1.1.0
micromark-util-chunked: 2.0.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- micromark-util-symbol@1.1.0:
- optional: true
-
micromark-util-symbol@2.0.0: {}
- micromark-util-types@1.1.0:
- optional: true
-
micromark-util-types@2.0.0: {}
- micromark@3.2.0:
- dependencies:
- '@types/debug': 4.1.12
- debug: 4.3.6
- decode-named-character-reference: 1.0.2
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-combine-extensions: 1.1.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-encode: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
- optional: true
-
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-core-commonmark: 2.0.0
+ micromark-core-commonmark: 2.0.1
micromark-factory-space: 2.0.0
micromark-util-character: 2.1.0
micromark-util-chunked: 2.0.0
@@ -10394,17 +10183,12 @@ snapshots:
micromark-util-normalize-identifier: 2.0.0
micromark-util-resolve-all: 2.0.0
micromark-util-sanitize-uri: 2.0.0
- micromark-util-subtokenize: 2.0.0
+ micromark-util-subtokenize: 2.0.1
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
transitivePeerDependencies:
- supports-color
- micromatch@4.0.5:
- dependencies:
- braces: 3.0.2
- picomatch: 2.3.1
-
micromatch@4.0.8:
dependencies:
braces: 3.0.3
@@ -10434,10 +10218,6 @@ snapshots:
dependencies:
brace-expansion: 1.1.11
- minimatch@9.0.3:
- dependencies:
- brace-expansion: 2.0.1
-
minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -10452,8 +10232,6 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.0.4: {}
-
minipass@7.1.2: {}
minisearch@7.1.0: {}
@@ -10463,38 +10241,21 @@ snapshots:
minipass: 3.3.6
yallist: 4.0.0
+ mj-context-menu@0.6.1: {}
+
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
mkdirp@1.0.4: {}
- mlly@1.4.2:
- dependencies:
- acorn: 8.10.0
- pathe: 1.1.2
- pkg-types: 1.0.3
- ufo: 1.3.1
-
- mlly@1.6.1:
- dependencies:
- acorn: 8.11.3
- pathe: 1.1.2
- pkg-types: 1.0.3
- ufo: 1.3.2
-
mlly@1.7.1:
dependencies:
acorn: 8.12.1
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
ufo: 1.5.4
- mri@1.2.0:
- optional: true
-
- ms@2.1.2: {}
-
ms@2.1.3: {}
muggle-string@0.4.1: {}
@@ -10523,21 +10284,17 @@ snapshots:
node-releases@2.0.18: {}
- non-layered-tidy-tree-layout@2.0.2:
- optional: true
-
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
resolve: 1.22.8
- semver: 5.7.1
+ semver: 5.7.2
validate-npm-package-license: 3.0.4
- normalize-package-data@6.0.0:
+ normalize-package-data@6.0.2:
dependencies:
- hosted-git-info: 7.0.1
- is-core-module: 2.13.1
- semver: 7.6.0
+ hosted-git-info: 7.0.2
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -10561,20 +10318,20 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nypm@0.3.9:
+ nypm@0.3.11:
dependencies:
citty: 0.1.6
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
ufo: 1.5.4
object-assign@4.1.1: {}
object-inspect@1.13.2: {}
- ohash@1.1.3: {}
+ ohash@1.1.4: {}
once@1.4.0:
dependencies:
@@ -10598,14 +10355,14 @@ snapshots:
opener@1.5.2: {}
- optionator@0.9.3:
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
ora@5.4.1:
dependencies:
@@ -10619,16 +10376,16 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@8.0.1:
+ ora@8.1.0:
dependencies:
chalk: 5.3.0
- cli-cursor: 4.0.0
+ cli-cursor: 5.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
- is-unicode-supported: 2.0.0
+ is-unicode-supported: 2.1.0
log-symbols: 6.0.0
stdin-discarder: 0.2.2
- string-width: 7.0.0
+ string-width: 7.2.0
strip-ansi: 7.1.0
os-tmpdir@1.0.2: {}
@@ -10643,7 +10400,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@4.1.0:
dependencies:
@@ -10673,23 +10430,23 @@ snapshots:
parse-gitignore@2.0.0: {}
- parse-imports@2.1.1:
+ parse-imports@2.2.1:
dependencies:
es-module-lexer: 1.5.4
slashes: 3.0.12
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.24.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@8.1.0:
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.24.7
index-to-position: 0.1.2
- type-fest: 4.12.0
+ type-fest: 4.26.1
parse-ms@4.0.0: {}
@@ -10724,22 +10481,20 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@1.10.1:
+ path-scurry@1.11.1:
dependencies:
- lru-cache: 10.0.2
- minipass: 5.0.0
+ lru-cache: 10.4.3
+ minipass: 7.1.2
path-scurry@2.0.0:
dependencies:
- lru-cache: 11.0.0
+ lru-cache: 11.0.1
minipass: 7.1.2
path-type@4.0.0: {}
path-type@5.0.0: {}
- pathe@1.1.1: {}
-
pathe@1.1.2: {}
perfect-debounce@1.0.0: {}
@@ -10756,13 +10511,7 @@ snapshots:
pirates@4.0.6: {}
- pkg-types@1.0.3:
- dependencies:
- jsonc-parser: 3.2.0
- mlly: 1.4.2
- pathe: 1.1.1
-
- pkg-types@1.1.3:
+ pkg-types@1.2.0:
dependencies:
confbox: 0.1.7
mlly: 1.7.1
@@ -10787,19 +10536,18 @@ snapshots:
postcss-html@1.7.0:
dependencies:
- htmlparser2: 8.0.1
+ htmlparser2: 8.0.2
js-tokens: 9.0.0
postcss: 8.4.47
postcss-safe-parser: 6.0.0(postcss@8.4.47)
- postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.41)(tsx@4.16.0)(yaml@2.5.0):
+ postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.47)(yaml@2.5.1):
dependencies:
- lilconfig: 3.1.1
+ lilconfig: 3.1.2
optionalDependencies:
jiti: 1.21.6
- postcss: 8.4.41
- tsx: 4.16.0
- yaml: 2.5.0
+ postcss: 8.4.47
+ yaml: 2.5.1
postcss-media-query-parser@0.2.3: {}
@@ -10809,9 +10557,9 @@ snapshots:
dependencies:
postcss: 8.4.47
- postcss-safe-parser@7.0.0(postcss@8.4.41):
+ postcss-safe-parser@7.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.41
+ postcss: 8.4.47
postcss-scss@4.0.9(postcss@8.4.47):
dependencies:
@@ -10828,23 +10576,17 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss@8.4.41:
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.1.0
- source-map-js: 1.2.0
-
postcss@8.4.47:
dependencies:
nanoid: 3.3.7
picocolors: 1.1.0
source-map-js: 1.2.1
- preact@10.10.0: {}
+ preact@10.24.0: {}
prelude-ls@1.2.1: {}
- pretty-ms@9.0.0:
+ pretty-ms@9.1.0:
dependencies:
parse-ms: 4.0.0
@@ -10859,9 +10601,9 @@ snapshots:
punycode.js@2.3.1: {}
- punycode@2.1.1: {}
+ punycode@2.3.1: {}
- qs@6.12.1:
+ qs@6.13.0:
dependencies:
side-channel: 1.0.6
@@ -10884,7 +10626,7 @@ snapshots:
dependencies:
find-up-simple: 1.0.0
read-pkg: 9.0.1
- type-fest: 4.18.3
+ type-fest: 4.26.1
read-pkg-up@7.0.1:
dependencies:
@@ -10902,12 +10644,12 @@ snapshots:
read-pkg@9.0.1:
dependencies:
'@types/normalize-package-data': 2.4.4
- normalize-package-data: 6.0.0
+ normalize-package-data: 6.0.2
parse-json: 8.1.0
- type-fest: 4.12.0
+ type-fest: 4.26.1
unicorn-magic: 0.1.0
- readable-stream@3.6.0:
+ readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
@@ -10917,15 +10659,17 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.1: {}
+
refa@0.12.1:
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
regex@4.3.2: {}
regexp-ast-analysis@0.7.1:
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
refa: 0.12.1
regexp-tree@0.1.27: {}
@@ -10955,7 +10699,7 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -10964,11 +10708,6 @@ snapshots:
onetime: 5.1.2
signal-exit: 3.0.7
- restore-cursor@4.0.0:
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
-
restore-cursor@5.1.0:
dependencies:
onetime: 7.0.0
@@ -10978,10 +10717,6 @@ snapshots:
rfdc@1.4.1: {}
- rimraf@5.0.8:
- dependencies:
- glob: 10.3.10
-
rimraf@6.0.1:
dependencies:
glob: 11.0.0
@@ -10989,26 +10724,26 @@ snapshots:
robust-predicates@3.0.2: {}
- rollup@4.21.1:
+ rollup@4.22.4:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.21.1
- '@rollup/rollup-android-arm64': 4.21.1
- '@rollup/rollup-darwin-arm64': 4.21.1
- '@rollup/rollup-darwin-x64': 4.21.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.21.1
- '@rollup/rollup-linux-arm-musleabihf': 4.21.1
- '@rollup/rollup-linux-arm64-gnu': 4.21.1
- '@rollup/rollup-linux-arm64-musl': 4.21.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.21.1
- '@rollup/rollup-linux-riscv64-gnu': 4.21.1
- '@rollup/rollup-linux-s390x-gnu': 4.21.1
- '@rollup/rollup-linux-x64-gnu': 4.21.1
- '@rollup/rollup-linux-x64-musl': 4.21.1
- '@rollup/rollup-win32-arm64-msvc': 4.21.1
- '@rollup/rollup-win32-ia32-msvc': 4.21.1
- '@rollup/rollup-win32-x64-msvc': 4.21.1
+ '@rollup/rollup-android-arm-eabi': 4.22.4
+ '@rollup/rollup-android-arm64': 4.22.4
+ '@rollup/rollup-darwin-arm64': 4.22.4
+ '@rollup/rollup-darwin-x64': 4.22.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.22.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.22.4
+ '@rollup/rollup-linux-arm64-gnu': 4.22.4
+ '@rollup/rollup-linux-arm64-musl': 4.22.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.22.4
+ '@rollup/rollup-linux-s390x-gnu': 4.22.4
+ '@rollup/rollup-linux-x64-gnu': 4.22.4
+ '@rollup/rollup-linux-x64-musl': 4.22.4
+ '@rollup/rollup-win32-arm64-msvc': 4.22.4
+ '@rollup/rollup-win32-ia32-msvc': 4.22.4
+ '@rollup/rollup-win32-x64-msvc': 4.22.4
fsevents: 2.3.3
roughjs@4.6.6:
@@ -11026,40 +10761,129 @@ snapshots:
rw@1.3.3: {}
- rxjs@7.8.0:
- dependencies:
- tslib: 2.6.2
-
rxjs@7.8.1:
dependencies:
tslib: 2.7.0
- sade@1.8.1:
- dependencies:
- mri: 1.2.0
- optional: true
-
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
safer-buffer@2.1.2: {}
- sass@1.77.8:
- dependencies:
- chokidar: 3.6.0
- immutable: 4.1.0
- source-map-js: 1.2.0
+ sass-embedded-android-arm64@1.79.3:
+ optional: true
- sax@1.2.4: {}
+ sass-embedded-android-arm@1.79.3:
+ optional: true
+
+ sass-embedded-android-ia32@1.79.3:
+ optional: true
+
+ sass-embedded-android-riscv64@1.79.3:
+ optional: true
+
+ sass-embedded-android-x64@1.79.3:
+ optional: true
+
+ sass-embedded-darwin-arm64@1.79.3:
+ optional: true
+
+ sass-embedded-darwin-x64@1.79.3:
+ optional: true
+
+ sass-embedded-linux-arm64@1.79.3:
+ optional: true
+
+ sass-embedded-linux-arm@1.79.3:
+ optional: true
+
+ sass-embedded-linux-ia32@1.79.3:
+ optional: true
+
+ sass-embedded-linux-musl-arm64@1.79.3:
+ optional: true
+
+ sass-embedded-linux-musl-arm@1.79.3:
+ optional: true
+
+ sass-embedded-linux-musl-ia32@1.79.3:
+ optional: true
+
+ sass-embedded-linux-musl-riscv64@1.79.3:
+ optional: true
+
+ sass-embedded-linux-musl-x64@1.79.3:
+ optional: true
+
+ sass-embedded-linux-riscv64@1.79.3:
+ optional: true
+
+ sass-embedded-linux-x64@1.79.3:
+ optional: true
+
+ sass-embedded-win32-arm64@1.79.3:
+ optional: true
+
+ sass-embedded-win32-ia32@1.79.3:
+ optional: true
+
+ sass-embedded-win32-x64@1.79.3:
+ optional: true
+
+ sass-embedded@1.79.3:
+ dependencies:
+ '@bufbuild/protobuf': 2.1.0
+ buffer-builder: 0.2.0
+ colorjs.io: 0.5.2
+ immutable: 4.3.7
+ rxjs: 7.8.1
+ supports-color: 8.1.1
+ varint: 6.0.0
+ optionalDependencies:
+ sass-embedded-android-arm: 1.79.3
+ sass-embedded-android-arm64: 1.79.3
+ sass-embedded-android-ia32: 1.79.3
+ sass-embedded-android-riscv64: 1.79.3
+ sass-embedded-android-x64: 1.79.3
+ sass-embedded-darwin-arm64: 1.79.3
+ sass-embedded-darwin-x64: 1.79.3
+ sass-embedded-linux-arm: 1.79.3
+ sass-embedded-linux-arm64: 1.79.3
+ sass-embedded-linux-ia32: 1.79.3
+ sass-embedded-linux-musl-arm: 1.79.3
+ sass-embedded-linux-musl-arm64: 1.79.3
+ sass-embedded-linux-musl-ia32: 1.79.3
+ sass-embedded-linux-musl-riscv64: 1.79.3
+ sass-embedded-linux-musl-x64: 1.79.3
+ sass-embedded-linux-riscv64: 1.79.3
+ sass-embedded-linux-x64: 1.79.3
+ sass-embedded-win32-arm64: 1.79.3
+ sass-embedded-win32-ia32: 1.79.3
+ sass-embedded-win32-x64: 1.79.3
+
+ sass-loader@16.0.2(sass-embedded@1.79.3)(sass@1.79.3):
+ dependencies:
+ neo-async: 2.6.2
+ optionalDependencies:
+ sass: 1.79.3
+ sass-embedded: 1.79.3
+
+ sass@1.79.3:
+ dependencies:
+ chokidar: 4.0.1
+ immutable: 4.3.7
+ source-map-js: 1.2.1
+
+ sax@1.4.1: {}
scslre@0.3.0:
dependencies:
- '@eslint-community/regexpp': 4.11.0
+ '@eslint-community/regexpp': 4.11.1
refa: 0.12.1
regexp-ast-analysis: 0.7.1
- search-insights@2.7.0: {}
+ search-insights@2.17.2: {}
section-matter@1.0.0:
dependencies:
@@ -11068,11 +10892,7 @@ snapshots:
secure-compare@3.0.1: {}
- semver@5.7.1: {}
-
- semver@7.6.0:
- dependencies:
- lru-cache: 6.0.0
+ semver@5.7.2: {}
semver@7.6.3: {}
@@ -11118,9 +10938,9 @@ snapshots:
sitemap@8.0.0:
dependencies:
'@types/node': 17.0.45
- '@types/sax': 1.2.4
+ '@types/sax': 1.2.7
arg: 5.0.2
- sax: 1.2.4
+ sax: 1.4.1
slash@3.0.0: {}
@@ -11144,8 +10964,6 @@ snapshots:
ansi-styles: 6.2.1
is-fullwidth-code-point: 5.0.0
- source-map-js@1.2.0: {}
-
source-map-js@1.2.1: {}
source-map@0.6.1: {}
@@ -11156,26 +10974,32 @@ snapshots:
space-separated-tokens@2.0.2: {}
- spdx-correct@3.1.1:
+ spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.12
+ spdx-license-ids: 3.0.20
- spdx-exceptions@2.3.0: {}
+ spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.12
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.20
spdx-expression-parse@4.0.0:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.12
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.20
- spdx-license-ids@3.0.12: {}
+ spdx-license-ids@3.0.20: {}
- split2@4.1.0: {}
+ speech-rule-engine@4.0.7:
+ dependencies:
+ commander: 9.2.0
+ wicked-good-xpath: 1.3.0
+ xmldom-sre: 0.1.31
+
+ split2@4.2.0: {}
sprintf-js@1.0.3: {}
@@ -11197,9 +11021,9 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string-width@7.0.0:
+ string-width@7.2.0:
dependencies:
- emoji-regex: 10.3.0
+ emoji-regex: 10.4.0
get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
@@ -11218,7 +11042,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom-string@1.0.0: {}
@@ -11243,12 +11067,12 @@ snapshots:
postcss-html: 1.7.0
stylelint: 16.9.0(typescript@5.6.2)
- stylelint-config-recommended-scss@14.0.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)):
+ stylelint-config-recommended-scss@14.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)):
dependencies:
postcss-scss: 4.0.9(postcss@8.4.47)
stylelint: 16.9.0(typescript@5.6.2)
stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2))
- stylelint-scss: 6.0.0(stylelint@16.9.0(typescript@5.6.2))
+ stylelint-scss: 6.7.0(stylelint@16.9.0(typescript@5.6.2))
optionalDependencies:
postcss: 8.4.47
@@ -11259,7 +11083,7 @@ snapshots:
stylelint-config-standard-scss@13.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)):
dependencies:
stylelint: 16.9.0(typescript@5.6.2)
- stylelint-config-recommended-scss: 14.0.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2))
+ stylelint-config-recommended-scss: 14.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2))
stylelint-config-standard: 36.0.1(stylelint@16.9.0(typescript@5.6.2))
optionalDependencies:
postcss: 8.4.47
@@ -11280,9 +11104,11 @@ snapshots:
postcss-sorting: 8.0.2(postcss@8.4.47)
stylelint: 16.9.0(typescript@5.6.2)
- stylelint-scss@6.0.0(stylelint@16.9.0(typescript@5.6.2)):
+ stylelint-scss@6.7.0(stylelint@16.9.0(typescript@5.6.2)):
dependencies:
- known-css-properties: 0.29.0
+ css-tree: 2.3.1
+ is-plain-object: 5.0.0
+ known-css-properties: 0.34.0
postcss-media-query-parser: 0.2.3
postcss-resolve-nested-selector: 0.1.6
postcss-selector-parser: 6.1.2
@@ -11301,10 +11127,10 @@ snapshots:
cosmiconfig: 9.0.0(typescript@5.6.2)
css-functions-list: 3.2.2
css-tree: 2.3.1
- debug: 4.3.6
+ debug: 4.3.7
fast-glob: 3.3.2
fastest-levenshtein: 1.0.16
- file-entry-cache: 9.0.0
+ file-entry-cache: 9.1.0
global-modules: 2.0.0
globby: 11.1.0
globjoin: 0.1.4
@@ -11318,9 +11144,9 @@ snapshots:
micromatch: 4.0.8
normalize-path: 3.0.0
picocolors: 1.1.0
- postcss: 8.4.41
+ postcss: 8.4.47
postcss-resolve-nested-selector: 0.1.6
- postcss-safe-parser: 7.0.0(postcss@8.4.41)
+ postcss-safe-parser: 7.0.0(postcss@8.4.47)
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
@@ -11334,7 +11160,7 @@ snapshots:
- supports-color
- typescript
- stylis@4.3.1: {}
+ stylis@4.3.4: {}
subarg@1.0.0:
dependencies:
@@ -11344,7 +11170,7 @@ snapshots:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.10
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -11358,6 +11184,10 @@ snapshots:
dependencies:
has-flag: 4.0.0
+ supports-color@8.1.1:
+ dependencies:
+ has-flag: 4.0.0
+
supports-hyperlinks@3.1.0:
dependencies:
has-flag: 4.0.0
@@ -11382,7 +11212,7 @@ snapshots:
table@6.8.2:
dependencies:
- ajv: 8.12.0
+ ajv: 8.17.1
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -11390,7 +11220,7 @@ snapshots:
tapable@2.2.1: {}
- tar@6.2.0:
+ tar@6.2.1:
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
@@ -11428,7 +11258,7 @@ snapshots:
tm-grammars@1.17.24: {}
- tm-themes@1.8.3: {}
+ tm-themes@1.8.4: {}
tmp@0.0.33:
dependencies:
@@ -11446,7 +11276,7 @@ snapshots:
tr46@1.0.1:
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
tree-kill@1.2.2: {}
@@ -11466,30 +11296,28 @@ snapshots:
tslib@2.3.0: {}
- tslib@2.6.2: {}
-
tslib@2.7.0: {}
- tsup@8.3.0(jiti@1.21.6)(postcss@8.4.41)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0):
+ tsup@8.3.0(jiti@1.21.6)(postcss@8.4.47)(typescript@5.6.2)(yaml@2.5.1):
dependencies:
bundle-require: 5.0.0(esbuild@0.23.1)
cac: 6.7.14
chokidar: 3.6.0
consola: 3.2.3
- debug: 4.3.6
+ debug: 4.3.7
esbuild: 0.23.1
execa: 5.1.1
joycon: 3.1.1
picocolors: 1.1.0
- postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.41)(tsx@4.16.0)(yaml@2.5.0)
+ postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.47)(yaml@2.5.1)
resolve-from: 5.0.0
- rollup: 4.21.1
+ rollup: 4.22.4
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyglobby: 0.2.6
tree-kill: 1.2.2
optionalDependencies:
- postcss: 8.4.41
+ postcss: 8.4.47
typescript: 5.6.2
transitivePeerDependencies:
- jiti
@@ -11497,14 +11325,6 @@ snapshots:
- tsx
- yaml
- tsx@4.16.0:
- dependencies:
- esbuild: 0.21.5
- get-tsconfig: 4.7.5
- optionalDependencies:
- fsevents: 2.3.3
- optional: true
-
twoslash-protocol@0.2.11: {}
twoslash-vue@0.2.11(typescript@5.6.2):
@@ -11528,7 +11348,7 @@ snapshots:
dependencies:
prelude-ls: 1.2.1
- type-detect@4.0.8: {}
+ type-detect@4.1.0: {}
type-fest@0.20.2: {}
@@ -11538,21 +11358,15 @@ snapshots:
type-fest@0.8.1: {}
- type-fest@4.12.0: {}
-
- type-fest@4.18.3: {}
+ type-fest@4.26.1: {}
typescript@5.6.2: {}
uc.micro@2.1.0: {}
- ufo@1.3.1: {}
-
- ufo@1.3.2: {}
-
ufo@1.5.4: {}
- uglify-js@3.17.4:
+ uglify-js@3.19.3:
optional: true
undici-types@5.26.5: {}
@@ -11565,49 +11379,44 @@ snapshots:
union@0.5.0:
dependencies:
- qs: 6.12.1
+ qs: 6.13.0
unist-util-is@6.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-position@5.0.0:
dependencies:
- '@types/unist': 3.0.2
-
- unist-util-stringify-position@3.0.3:
- dependencies:
- '@types/unist': 2.0.10
- optional: true
+ '@types/unist': 3.0.3
unist-util-stringify-position@4.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-visit-parents@6.0.1:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- universalify@2.0.0: {}
+ universalify@2.0.1: {}
upath@2.0.1: {}
update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
browserslist: 4.23.3
- escalade: 3.1.2
+ escalade: 3.2.0
picocolors: 1.1.0
uri-js@4.4.1:
dependencies:
- punycode: 2.1.1
+ punycode: 2.3.1
url-join@4.0.1: {}
@@ -11615,39 +11424,33 @@ snapshots:
uuid@9.0.1: {}
- uvu@0.5.6:
- dependencies:
- dequal: 2.0.3
- diff: 5.2.0
- kleur: 4.1.5
- sade: 1.8.1
- optional: true
-
validate-npm-package-license@3.0.4:
dependencies:
- spdx-correct: 3.1.1
+ spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
+ varint@6.0.0: {}
+
vfile-message@4.0.2:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
- vfile@6.0.1:
+ vfile@6.0.3:
dependencies:
- '@types/unist': 3.0.2
- unist-util-stringify-position: 4.0.0
+ '@types/unist': 3.0.3
vfile-message: 4.0.2
- vite@5.4.2(@types/node@20.14.8)(sass@1.77.8):
+ vite@5.4.7(@types/node@20.12.10)(sass-embedded@1.79.3)(sass@1.79.3):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.41
- rollup: 4.21.1
+ postcss: 8.4.47
+ rollup: 4.22.4
optionalDependencies:
- '@types/node': 20.14.8
+ '@types/node': 20.12.10
fsevents: 2.3.3
- sass: 1.77.8
+ sass: 1.79.3
+ sass-embedded: 1.79.3
vscode-jsonrpc@8.2.0: {}
@@ -11666,13 +11469,13 @@ snapshots:
vscode-uri@3.0.8: {}
- vue-demi@0.14.10(vue@3.5.7(typescript@5.6.2)):
+ vue-demi@0.14.10(vue@3.5.8(typescript@5.6.2)):
dependencies:
- vue: 3.5.7(typescript@5.6.2)
+ vue: 3.5.8(typescript@5.6.2)
vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.21.6)):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7
eslint: 9.11.0(jiti@1.21.6)
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
@@ -11683,92 +11486,76 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-resize@2.0.0-alpha.1(vue@3.5.7(typescript@5.6.2)):
+ vue-resize@2.0.0-alpha.1(vue@3.5.8(typescript@5.6.2)):
dependencies:
- vue: 3.5.7(typescript@5.6.2)
+ vue: 3.5.8(typescript@5.6.2)
- vue-router@4.4.3(vue@3.5.7(typescript@5.6.2)):
- dependencies:
- '@vue/devtools-api': 6.6.3
- vue: 3.5.7(typescript@5.6.2)
-
- vue-router@4.4.5(vue@3.5.7(typescript@5.6.2)):
+ vue-router@4.4.5(vue@3.5.8(typescript@5.6.2)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.7(typescript@5.6.2)
+ vue: 3.5.8(typescript@5.6.2)
- vue@3.5.7(typescript@5.6.2):
+ vue@3.5.8(typescript@5.6.2):
dependencies:
- '@vue/compiler-dom': 3.5.7
- '@vue/compiler-sfc': 3.5.7
- '@vue/runtime-dom': 3.5.7
- '@vue/server-renderer': 3.5.7(vue@3.5.7(typescript@5.6.2))
- '@vue/shared': 3.5.7
+ '@vue/compiler-dom': 3.5.8
+ '@vue/compiler-sfc': 3.5.8
+ '@vue/runtime-dom': 3.5.8
+ '@vue/server-renderer': 3.5.8(vue@3.5.8(typescript@5.6.2))
+ '@vue/shared': 3.5.8
optionalDependencies:
typescript: 5.6.2
- vuepress-plugin-md-enhance@2.0.0-rc.52(chart.js@4.4.4)(echarts@5.5.1)(flowchart.ts@3.0.1)(katex@0.16.11)(markdown-it@14.1.0)(mermaid@10.9.1)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))):
+ vuepress-plugin-md-enhance@2.0.0-rc.54(chart.js@4.4.4)(echarts@5.5.1)(flowchart.ts@3.0.1)(markdown-it@14.1.0)(mermaid@11.2.1)(sass-embedded@1.79.3)(sass-loader@16.0.2(sass-embedded@1.79.3)(sass@1.79.3))(sass@1.79.3)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))):
dependencies:
- '@mdit/plugin-alert': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-align': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-attrs': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-container': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-demo': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-figure': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-footnote': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-img-lazyload': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-img-mark': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-img-size': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-include': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-katex-slim': 0.12.0(katex@0.16.11)(markdown-it@14.1.0)
- '@mdit/plugin-mark': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-mathjax-slim': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-plantuml': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-spoiler': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-stylize': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-sub': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-sup': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-tab': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-tasklist': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-tex': 0.12.0(markdown-it@14.1.0)
- '@mdit/plugin-uml': 0.12.0(markdown-it@14.1.0)
+ '@mdit/plugin-alert': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-align': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-attrs': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-container': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-demo': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-footnote': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-include': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-mark': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-plantuml': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-spoiler': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-stylize': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-sub': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-sup': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-tasklist': 0.13.1(markdown-it@14.1.0)
+ '@mdit/plugin-uml': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
- '@vuepress/helper': 2.0.0-rc.39(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- '@vuepress/plugin-sass-palette': 2.0.0-rc.39(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- '@vueuse/core': 10.11.1(vue@3.5.7(typescript@5.6.2))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vuepress/plugin-sass-palette': 2.0.0-rc.51(sass-embedded@1.79.3)(sass-loader@16.0.2(sass-embedded@1.79.3)(sass@1.79.3))(sass@1.79.3)(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
balloon-css: 1.2.0
js-yaml: 4.1.0
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
- vuepress-shared: 2.0.0-rc.52(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
+ vuepress-shared: 2.0.0-rc.54(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
optionalDependencies:
chart.js: 4.4.4
echarts: 5.5.1
flowchart.ts: 3.0.1
- katex: 0.16.11
- mermaid: 10.9.1
+ mermaid: 11.2.1
+ sass: 1.79.3
+ sass-embedded: 1.79.3
+ sass-loader: 16.0.2(sass-embedded@1.79.3)(sass@1.79.3)
transitivePeerDependencies:
- '@vue/composition-api'
- markdown-it
- typescript
- vuepress-shared@2.0.0-rc.52(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))):
+ vuepress-shared@2.0.0-rc.54(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))):
dependencies:
- '@vuepress/helper': 2.0.0-rc.39(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)))
- '@vueuse/core': 10.11.1(vue@3.5.7(typescript@5.6.2))
- cheerio: 1.0.0-rc.12
- dayjs: 1.11.12
- execa: 9.4.0
- fflate: 0.8.2
- gray-matter: 4.0.3
- semver: 7.6.3
- vue: 3.5.7(typescript@5.6.2)
- vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2))
+ '@vuepress/helper': 2.0.0-rc.47(typescript@5.6.2)(vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)))
+ '@vueuse/core': 11.1.0(vue@3.5.8(typescript@5.6.2))
+ dayjs: 1.11.13
+ vue: 3.5.8(typescript@5.6.2)
+ vuepress: 2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0))(typescript@5.6.2)(vue@3.5.7(typescript@5.6.2)):
+ vuepress@2.0.0-rc.15(@vuepress/bundler-vite@2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1))(typescript@5.6.2)(vue@3.5.8(typescript@5.6.2)):
dependencies:
'@vuepress/cli': 2.0.0-rc.15(typescript@5.6.2)
'@vuepress/client': 2.0.0-rc.15(typescript@5.6.2)
@@ -11776,9 +11563,9 @@ snapshots:
'@vuepress/markdown': 2.0.0-rc.15
'@vuepress/shared': 2.0.0-rc.15
'@vuepress/utils': 2.0.0-rc.15
- vue: 3.5.7(typescript@5.6.2)
+ vue: 3.5.8(typescript@5.6.2)
optionalDependencies:
- '@vuepress/bundler-vite': 2.0.0-rc.15(@types/node@20.14.8)(jiti@1.21.6)(sass@1.77.8)(tsx@4.16.0)(typescript@5.6.2)(yaml@2.5.0)
+ '@vuepress/bundler-vite': 2.0.0-rc.15(@types/node@20.12.10)(jiti@1.21.6)(sass-embedded@1.79.3)(sass@1.79.3)(typescript@5.6.2)(yaml@2.5.1)
transitivePeerDependencies:
- supports-color
- typescript
@@ -11799,9 +11586,6 @@ snapshots:
dependencies:
defaults: 1.0.4
- web-worker@1.3.0:
- optional: true
-
webidl-conversions@4.0.2: {}
whatwg-encoding@2.0.0:
@@ -11828,7 +11612,9 @@ snapshots:
dependencies:
isexe: 2.0.0
- word-wrap@1.2.3: {}
+ wicked-good-xpath@1.3.0: {}
+
+ word-wrap@1.2.5: {}
wordwrap@1.0.0: {}
@@ -11847,7 +11633,7 @@ snapshots:
wrap-ansi@9.0.0:
dependencies:
ansi-styles: 6.2.1
- string-width: 7.0.0
+ string-width: 7.2.0
strip-ansi: 7.1.0
wrappy@1.0.2: {}
@@ -11859,6 +11645,8 @@ snapshots:
xml-name-validator@4.0.0: {}
+ xmldom-sre@0.1.31: {}
+
y18n@5.0.8: {}
yallist@4.0.0: {}
@@ -11867,16 +11655,16 @@ snapshots:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.5.0
+ yaml: 2.5.1
- yaml@2.5.0: {}
+ yaml@2.5.1: {}
yargs-parser@21.1.1: {}
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -11885,9 +11673,9 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
- yoctocolors@2.0.0: {}
+ yoctocolors@2.1.1: {}
zrender@5.6.0:
dependencies:
diff --git a/theme/package.json b/theme/package.json
index 2bbae90b..3034392e 100644
--- a/theme/package.json
+++ b/theme/package.json
@@ -63,6 +63,11 @@
},
"peerDependencies": {
"@iconify/json": "^2",
+ "katex": "^0.16.10",
+ "mathjax-full": "^3.2.2",
+ "sass": "^1.79.3",
+ "sass-embedded": "^1.79.3",
+ "sass-loader": "^16.0.2",
"swiper": "^11.0.0",
"vuepress": "2.0.0-rc.15"
},
@@ -70,6 +75,21 @@
"@iconify/json": {
"optional": true
},
+ "katex": {
+ "optional": true
+ },
+ "mathjax-full": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "sass-loader": {
+ "optional": true
+ },
"swiper": {
"optional": true
}
@@ -82,37 +102,40 @@
"@vuepress-plume/plugin-fonts": "workspace:*",
"@vuepress-plume/plugin-search": "workspace:*",
"@vuepress-plume/plugin-shikiji": "workspace:*",
- "@vuepress/helper": "2.0.0-rc.46",
- "@vuepress/plugin-active-header-links": "2.0.0-rc.46",
+ "@vuepress/helper": "2.0.0-rc.47",
+ "@vuepress/plugin-active-header-links": "2.0.0-rc.47",
"@vuepress/plugin-cache": "2.0.0-rc.42",
- "@vuepress/plugin-comment": "2.0.0-rc.46",
- "@vuepress/plugin-docsearch": "2.0.0-rc.46",
+ "@vuepress/plugin-comment": "2.0.0-rc.47",
+ "@vuepress/plugin-docsearch": "2.0.0-rc.47",
"@vuepress/plugin-git": "2.0.0-rc.44",
"@vuepress/plugin-markdown-container": "2.0.0-rc.43",
- "@vuepress/plugin-nprogress": "2.0.0-rc.46",
- "@vuepress/plugin-photo-swipe": "2.0.0-rc.46",
- "@vuepress/plugin-reading-time": "2.0.0-rc.46",
- "@vuepress/plugin-seo": "2.0.0-rc.46",
- "@vuepress/plugin-sitemap": "2.0.0-rc.46",
- "@vuepress/plugin-watermark": "2.0.0-rc.46",
+ "@vuepress/plugin-markdown-hint": "2.0.0-rc.47",
+ "@vuepress/plugin-markdown-image": "2.0.0-rc.47",
+ "@vuepress/plugin-markdown-math": "2.0.0-rc.49",
+ "@vuepress/plugin-nprogress": "2.0.0-rc.47",
+ "@vuepress/plugin-photo-swipe": "2.0.0-rc.47",
+ "@vuepress/plugin-reading-time": "2.0.0-rc.47",
+ "@vuepress/plugin-seo": "2.0.0-rc.47",
+ "@vuepress/plugin-sitemap": "2.0.0-rc.47",
+ "@vuepress/plugin-watermark": "2.0.0-rc.47",
"@vueuse/core": "^11.1.0",
"bcrypt-ts": "^5.0.2",
"chokidar": "3.6.0",
"create-filter": "^1.1.0",
- "date-fns": "^4.1.0",
- "esbuild": "^0.23.1",
+ "dayjs": "^1.11.13",
+ "esbuild": "^0.24.0",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"json2yaml": "^1.1.0",
"katex": "^0.16.11",
"local-pkg": "^0.5.0",
"nanoid": "^5.0.7",
- "vue": "^3.5.7",
- "vuepress-plugin-md-enhance": "2.0.0-rc.52",
+ "vue": "^3.5.8",
+ "vuepress-plugin-md-enhance": "2.0.0-rc.54",
"vuepress-plugin-md-power": "workspace:*"
},
"devDependencies": {
- "@iconify/json": "^2.2.251",
+ "@iconify/json": "^2.2.252",
"swiper": "^11.1.14",
"vue-router": "^4.4.5"
}
diff --git a/theme/src/client/components/VPDocFooter.vue b/theme/src/client/components/VPDocFooter.vue
index 89a83e3a..13b1faa6 100644
--- a/theme/src/client/components/VPDocFooter.vue
+++ b/theme/src/client/components/VPDocFooter.vue
@@ -87,7 +87,7 @@ const showFooter = computed(() => {