diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 89d40e6e5..6c1140532 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -49,7 +49,7 @@ jobs:
needs: build
strategy:
matrix:
- node-version: [18, 20, 22]
+ node-version: [20, 22, 24]
os: [ubuntu-latest, windows-latest, macos-latest]
verification-script:
- pnpm --filter '!*typescript*' build
@@ -83,7 +83,9 @@ jobs:
run: pnpm install
- name: Install dependencies in playground
working-directory: ./playground
- run: pnpm install --no-frozen-lockfile --ignore-scripts
+ run: |
+ pnpm install --no-frozen-lockfile --ignore-scripts
+ pnpm dedupe --ignore-scripts
- name: Run build script in playground
working-directory: ./playground
@@ -96,6 +98,11 @@ jobs:
e2e-framework: ['cypress', 'playwright']
node-version: [22]
os: [ubuntu-latest, windows-latest, macos-latest]
+ exclude:
+ # Temporarily exclude Windows + Cypress due to EPERM issues with start-server-and-test
+ # FIXME: move away from `start-server-and-test`
+ - os: windows-latest
+ e2e-framework: cypress
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'windows-latest' }}
env:
@@ -120,7 +127,9 @@ jobs:
run: pnpm install
- name: Install dependencies in playground
working-directory: ./playground
- run: pnpm install --no-frozen-lockfile --ignore-scripts
+ run: |
+ pnpm install --no-frozen-lockfile --ignore-scripts
+ pnpm dedupe --ignore-scripts
env:
# Skip Cypress installation temporarily, we'll install it later with cache
CYPRESS_INSTALL_BINARY: 0
diff --git a/LICENSE b/LICENSE
index f783510db..b5a7c2b0f 100644
--- a/LICENSE
+++ b/LICENSE
@@ -209,7 +209,7 @@ Repository: alexeyraspopov/picocolors
License: MIT
By: Nate Moore
-Repository: https://github.com/natemoo-re/clack
+Repository: git+https://github.com/bombshell-dev/clack.git
> MIT License
>
@@ -226,7 +226,7 @@ Repository: https://github.com/natemoo-re/clack
License: MIT
By: Nate Moore
-Repository: https://github.com/natemoo-re/clack
+Repository: git+https://github.com/bombshell-dev/clack.git
> MIT License
>
diff --git a/__test__/renderEslint.spec.ts b/__test__/renderEslint.spec.ts
index f20f4f6b6..4deaf6c6e 100644
--- a/__test__/renderEslint.spec.ts
+++ b/__test__/renderEslint.spec.ts
@@ -45,7 +45,7 @@ describe('renderEslint', () => {
expect(additionalCypressConfig.afterVuePlugin).toHaveLength(1)
const [additionalCypressPlugin] = additionalCypressConfig.afterVuePlugin!
expect(additionalCypressPlugin.importer).toBe(
- "import pluginCypress from 'eslint-plugin-cypress/flat'",
+ "import pluginCypress from 'eslint-plugin-cypress'",
)
expect(additionalCypressPlugin.content).toContain('...pluginCypress.configs.recommended')
expect(additionalCypressPlugin.content).toContain(
@@ -68,7 +68,7 @@ describe('renderEslint', () => {
expect(additionalCypressConfig.afterVuePlugin).toHaveLength(1)
const [additionalCypressPlugin] = additionalCypressConfig.afterVuePlugin!
expect(additionalCypressPlugin.importer).toBe(
- "import pluginCypress from 'eslint-plugin-cypress/flat'",
+ "import pluginCypress from 'eslint-plugin-cypress'",
)
expect(additionalCypressPlugin.content).toContain('...pluginCypress.configs.recommended')
expect(additionalCypressPlugin.content).toContain("'**/__tests__/*.{cy,spec}.{js,ts,jsx,tsx}'")
diff --git a/index.ts b/index.ts
index 123cb430d..4d77d0904 100755
--- a/index.ts
+++ b/index.ts
@@ -12,7 +12,11 @@ import ejs from 'ejs'
import * as banners from './utils/banners'
import renderTemplate from './utils/renderTemplate'
-import { postOrderDirectoryTraverse, preOrderDirectoryTraverse } from './utils/directoryTraverse'
+import {
+ postOrderDirectoryTraverse,
+ preOrderDirectoryTraverse,
+ dotGitDirectoryState,
+} from './utils/directoryTraverse'
import generateReadme from './utils/generateReadme'
import getCommand from './utils/getCommand'
import getLanguage from './utils/getLanguage'
@@ -39,8 +43,9 @@ const FEATURE_FLAGS = [
'playwright',
'eslint',
'prettier',
- 'eslint-with-oxlint',
'eslint-with-prettier',
+ 'oxlint',
+ 'rolldown-vite',
] as const
const FEATURE_OPTIONS = [
@@ -77,6 +82,16 @@ const FEATURE_OPTIONS = [
label: language.needsPrettier.message,
},
] as const
+const EXPERIMENTAL_FEATURE_OPTIONS = [
+ {
+ value: 'oxlint',
+ label: language.needsOxlint.message,
+ },
+ {
+ value: 'rolldown-vite',
+ label: language.needsRolldownVite.message,
+ },
+] as const
type PromptResult = {
projectName?: string
@@ -84,7 +99,8 @@ type PromptResult = {
packageName?: string
features?: (typeof FEATURE_OPTIONS)[number]['value'][]
e2eFramework?: 'cypress' | 'nightwatch' | 'playwright'
- experimentOxlint?: boolean
+ experimentFeatures?: (typeof EXPERIMENTAL_FEATURE_OPTIONS)[number]['value'][]
+ needsBareboneTemplates?: boolean
}
function isValidPackageName(projectName) {
@@ -110,6 +126,7 @@ function canSkipEmptying(dir: string) {
return true
}
if (files.length === 1 && files[0] === '.git') {
+ dotGitDirectoryState.hasDotGitDirectory = true
return true
}
@@ -177,12 +194,14 @@ Available feature flags:
If used without ${cyan('--vitest')}, it will also add Nightwatch Component Testing.
--eslint
Add ESLint for code quality.
- --eslint-with-oxlint
- Add ESLint for code quality, and use Oxlint to speed up the linting process.
--eslint-with-prettier (Deprecated in favor of ${cyan('--eslint --prettier')})
Add Prettier for code formatting in addition to ESLint.
--prettier
Add Prettier for code formatting.
+ --oxlint
+ Add Oxlint for code quality and formatting.
+ --rolldown-vite
+ Use Rolldown Vite instead of Vite for building the project.
Unstable feature flags:
--tests, --with-tests
@@ -232,7 +251,10 @@ async function init() {
packageName: defaultProjectName,
features: [],
e2eFramework: undefined,
- experimentOxlint: false,
+ experimentFeatures: [],
+
+ // TODO: default to true sometime in the future
+ needsBareboneTemplates: false,
}
intro(
@@ -246,8 +268,11 @@ async function init() {
text({
message: language.projectName.message,
placeholder: defaultProjectName,
+ defaultValue: defaultProjectName,
validate: (value) =>
- value.trim().length > 0 ? undefined : language.projectName.invalidMessage,
+ value.length === 0 || value.trim().length > 0
+ ? undefined
+ : language.projectName.invalidMessage,
}),
)
targetDir = result.projectName = result.packageName = _result.trim()
@@ -321,32 +346,40 @@ async function init() {
}),
)
}
+ result.experimentFeatures = await unwrapPrompt(
+ multiselect({
+ message: `${language.needsExperimentalFeatures.message} ${dim(language.needsExperimentalFeatures.hint)}`,
+ // @ts-expect-error @clack/prompt's type doesn't support readonly array yet
+ options: EXPERIMENTAL_FEATURE_OPTIONS,
+ required: false,
+ }),
+ )
+ }
- if (result.features.includes('eslint')) {
- result.experimentOxlint = await unwrapPrompt(
- confirm({
- message: language.needsOxlint.message,
- initialValue: false,
- }),
- )
- }
+ if (argv.bare) {
+ result.needsBareboneTemplates = true
+ } else if (!isFeatureFlagsUsed) {
+ result.needsBareboneTemplates = await unwrapPrompt(
+ confirm({
+ message: language.needsBareboneTemplates.message,
+ // TODO: default to true sometime in the future
+ initialValue: false,
+ }),
+ )
}
- const { features } = result
+ const { features, experimentFeatures, needsBareboneTemplates } = result
const needsTypeScript = argv.ts || argv.typescript || features.includes('typescript')
const needsJsx = argv.jsx || features.includes('jsx')
const needsRouter = argv.router || argv['vue-router'] || features.includes('router')
const needsPinia = argv.pinia || features.includes('pinia')
const needsVitest = argv.vitest || argv.tests || features.includes('vitest')
- const needsEslint =
- argv.eslint ||
- argv['eslint-with-oxlint'] ||
- argv['eslint-with-prettier'] ||
- features.includes('eslint')
+ const needsEslint = argv.eslint || argv['eslint-with-prettier'] || features.includes('eslint')
const needsPrettier =
argv.prettier || argv['eslint-with-prettier'] || features.includes('prettier')
- const needsOxlint = argv['eslint-with-oxlint'] || result.experimentOxlint
+ const needsOxlint = experimentFeatures.includes('oxlint') || argv['oxlint']
+ const needsRolldownVite = experimentFeatures.includes('rolldown-vite') || argv['rolldown-vite']
const { e2eFramework } = result
const needsCypress = argv.cypress || argv.tests || e2eFramework === 'cypress'
@@ -374,6 +407,13 @@ async function init() {
const templateDir = path.resolve(templateRoot, templateName)
renderTemplate(templateDir, root, callbacks)
}
+ const replaceVite = () => {
+ const content = fs.readFileSync(path.resolve(root, 'package.json'), 'utf-8')
+ const json = JSON.parse(content)
+ // Replace `vite` with `rolldown-vite` if the feature is enabled
+ json.devDependencies.vite = 'npm:rolldown-vite@latest'
+ fs.writeFileSync(path.resolve(root, 'package.json'), JSON.stringify(json, null, 2))
+ }
// Render base template
render('base')
@@ -471,7 +511,7 @@ async function init() {
}
// Render ESLint config
- if (needsEslint) {
+ if (needsEslint || needsOxlint) {
renderEslint(root, {
needsTypeScript,
needsOxlint,
@@ -492,6 +532,11 @@ async function init() {
render('config/prettier')
}
+ // use rolldown-vite if the feature is enabled
+ if (needsRolldownVite) {
+ replaceVite()
+ }
+
// Render code template.
// prettier-ignore
const codeTemplate =
@@ -533,7 +578,7 @@ async function init() {
},
)
- if (argv.bare) {
+ if (needsBareboneTemplates) {
trimBoilerplate(root)
render('bare/base')
// TODO: refactor the `render` utility to avoid this kind of manual mapping?
@@ -600,7 +645,7 @@ async function init() {
)
}
- if (argv.bare) {
+ if (needsBareboneTemplates) {
removeCSSImport(root, needsTypeScript, needsCypressCT)
if (needsRouter) {
emptyRouterConfig(root, needsTypeScript)
@@ -646,10 +691,12 @@ async function init() {
}
outroMessage += ` ${bold(green(getCommand(packageManager, 'dev')))}\n`
- outroMessage += `
+ if (!dotGitDirectoryState.hasDotGitDirectory) {
+ outroMessage += `
${dim('|')} ${language.infos.optionalGitCommand}
-
+
${bold(green('git init && git add -A && git commit -m "initial commit"'))}`
+ }
outro(outroMessage)
}
diff --git a/locales/en-US.json b/locales/en-US.json
index 24c335dc8..d5ab60a65 100644
--- a/locales/en-US.json
+++ b/locales/en-US.json
@@ -60,7 +60,20 @@
}
},
"needsOxlint": {
- "message": "Install Oxlint for faster linting? (experimental)"
+ "message": "Oxlint (experimental)"
+ },
+ "needsExperimental": {
+ "message": "Enable experimental features"
+ },
+ "needsExperimentalFeatures": {
+ "message": "Select experimental features to include in your project:",
+ "hint": "(↑/↓ to navigate, space to select, a to toggle all, enter to confirm)"
+ },
+ "needsRolldownVite": {
+ "message": "rolldown-vite (experimental)"
+ },
+ "needsBareboneTemplates": {
+ "message": "Skip all example code and start with a blank Vue project?"
},
"errors": {
"operationCancelled": "Operation cancelled"
diff --git a/locales/fr-FR.json b/locales/fr-FR.json
index 480df3050..3a2f22895 100644
--- a/locales/fr-FR.json
+++ b/locales/fr-FR.json
@@ -60,7 +60,20 @@
}
},
"needsOxlint": {
- "message": "Installer Oxlint pour un linting plus rapide\u00a0? (expérimental)"
+ "message": "Oxlint (expérimental)"
+ },
+ "needsExperimental": {
+ "message": "Activer les fonctionnalités expérimentales"
+ },
+ "needsExperimentalFeatures": {
+ "message": "Sélectionnez les fonctionnalités expérimentales à inclure\u00a0:",
+ "hint": "(↑/↓ pour naviguer, espace pour sélectionner, a pour tout sélectionner, entrée pour confirmer)"
+ },
+ "needsRolldownVite": {
+ "message": "rolldown-vite (expérimental)"
+ },
+ "needsBareboneTemplates": {
+ "message": "Ignorer tout le code d'exemple et commencer avec un projet Vue vierge\u00a0?"
},
"errors": {
"operationCancelled": "Operation annulée"
diff --git a/locales/tr-TR.json b/locales/tr-TR.json
index 60c71a2cc..bafa18934 100644
--- a/locales/tr-TR.json
+++ b/locales/tr-TR.json
@@ -60,7 +60,20 @@
}
},
"needsOxlint": {
- "message": "Daha hızlı linting için Oxlint eklensin mi? (deneysel)"
+ "message": "Oxlint (deneysel)"
+ },
+ "needsExperimental": {
+ "message": "Deneysel özellikleri etkinleştir"
+ },
+ "needsExperimentalFeatures": {
+ "message": "Dahil edilecek deneysel özellikleri seçin:",
+ "hint": "(↑/↓ gezinmek için, boşluk seçmek için, a tümünü seçmek için, enter onaylamak için)"
+ },
+ "needsRolldownVite": {
+ "message": "rolldown-vite (deneysel)"
+ },
+ "needsBareboneTemplates": {
+ "message": "Tüm örnek kodları atlayıp boş bir Vue projesi ile başlansın mı?"
},
"errors": {
"operationCancelled": "İşlem iptal edildi"
diff --git a/locales/zh-Hans.json b/locales/zh-Hans.json
index 92e367adc..9fe1e22fd 100644
--- a/locales/zh-Hans.json
+++ b/locales/zh-Hans.json
@@ -60,7 +60,20 @@
}
},
"needsOxlint": {
- "message": "是否引入 Oxlint 以加快检测?(试验阶段)"
+ "message": "Oxlint(试验阶段)"
+ },
+ "needsExperimental": {
+ "message": "启用试验特性"
+ },
+ "needsExperimentalFeatures": {
+ "message": "选择要包含的试验特性:",
+ "hint": "(↑/↓ 切换,空格选择,a 全选,回车确认)"
+ },
+ "needsRolldownVite": {
+ "message": "rolldown-vite(试验阶段)"
+ },
+ "needsBareboneTemplates": {
+ "message": "跳过所有示例代码,创建一个空白的 Vue 项目?"
},
"errors": {
"operationCancelled": "操作取消"
diff --git a/locales/zh-Hant.json b/locales/zh-Hant.json
index d7b80b958..ec0c1f1aa 100644
--- a/locales/zh-Hant.json
+++ b/locales/zh-Hant.json
@@ -60,7 +60,20 @@
}
},
"needsOxlint": {
- "message": "是否引入 Oxlint 以加快檢測?(試驗性功能)"
+ "message": "Oxlint(試驗性功能)"
+ },
+ "needsExperimental": {
+ "message": "启用試驗性功能"
+ },
+ "needsExperimentalFeatures": {
+ "message": "請選擇要包含的試驗特性:",
+ "hint": "(↑/↓ 切換,空格選擇,a 全選,enter 確認)"
+ },
+ "needsRolldownVite": {
+ "message": "rolldown-vite(試驗性功能)"
+ },
+ "needsBareboneTemplates": {
+ "message": "跳過所有範例程式碼,建立一個空白的 Vue 專案?"
},
"errors": {
"operationCancelled": "操作取消"
diff --git a/package.json b/package.json
index ad447f5a3..e6e9f92a0 100644
--- a/package.json
+++ b/package.json
@@ -1,9 +1,9 @@
{
"name": "create-vue",
- "version": "3.16.4",
+ "version": "3.18.0",
"description": "🛠️ The recommended way to start a Vite-powered Vue project",
"type": "module",
- "packageManager": "pnpm@10.8.0",
+ "packageManager": "pnpm@10.14.0",
"bin": {
"create-vue": "bundle.js"
},
@@ -14,14 +14,7 @@
"!template/**/node_modules/.bin/*"
],
"engines": {
- "node": ">=v18.3.0"
- },
- "devEngines": {
- "packageManager": {
- "name": "pnpm",
- "onFail": "download",
- "version": ">= 10.7.1"
- }
+ "node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"prepare": "husky",
@@ -47,22 +40,22 @@
},
"homepage": "https://github.com/vuejs/create-vue#readme",
"devDependencies": {
- "@clack/prompts": "^0.10.1",
- "@tsconfig/node22": "^22.0.1",
+ "@clack/prompts": "^0.11.0",
+ "@tsconfig/node22": "^22.0.2",
"@types/eslint": "^9.6.1",
- "@types/node": "^22.14.1",
+ "@types/node": "^22.17.0",
"@types/prompts": "^2.4.9",
- "@vue/create-eslint-config": "^0.10.1",
+ "@vue/create-eslint-config": "^0.12.0",
"@vue/tsconfig": "^0.7.0",
"ejs": "^3.1.10",
"husky": "^9.1.7",
- "lint-staged": "^15.5.1",
+ "lint-staged": "^16.1.4",
"picocolors": "^1.1.1",
- "prettier": "3.5.3",
- "rolldown": "1.0.0-beta.7",
+ "prettier": "3.6.2",
+ "rolldown": "1.0.0-beta.30",
"rollup-plugin-license": "^3.6.0",
- "vitest": "^3.1.1",
- "zx": "^8.5.2"
+ "vitest": "^3.2.4",
+ "zx": "^8.7.2"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
diff --git a/playground b/playground
index b302a9d25..7ba50a08d 160000
--- a/playground
+++ b/playground
@@ -1 +1 @@
-Subproject commit b302a9d2513d7461dd95e26f870c73ee55339d89
+Subproject commit 7ba50a08d155ea63911ad6e67d513d351a774b21
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bb34acc40..bd7025cab 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,26 +9,26 @@ importers:
.:
devDependencies:
'@clack/prompts':
- specifier: ^0.10.1
- version: 0.10.1
+ specifier: ^0.11.0
+ version: 0.11.0
'@tsconfig/node22':
- specifier: ^22.0.1
- version: 22.0.1
+ specifier: ^22.0.2
+ version: 22.0.2
'@types/eslint':
specifier: ^9.6.1
version: 9.6.1
'@types/node':
- specifier: ^22.14.1
- version: 22.14.1
+ specifier: ^22.17.0
+ version: 22.17.0
'@types/prompts':
specifier: ^2.4.9
version: 2.4.9
'@vue/create-eslint-config':
- specifier: ^0.10.1
- version: 0.10.1
+ specifier: ^0.12.0
+ version: 0.12.0
'@vue/tsconfig':
specifier: ^0.7.0
- version: 0.7.0(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))
+ version: 0.7.0(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
ejs:
specifier: ^3.1.10
version: 3.1.10
@@ -36,98 +36,98 @@ importers:
specifier: ^9.1.7
version: 9.1.7
lint-staged:
- specifier: ^15.5.1
- version: 15.5.1
+ specifier: ^16.1.4
+ version: 16.1.4
picocolors:
specifier: ^1.1.1
version: 1.1.1
prettier:
- specifier: 3.5.3
- version: 3.5.3
+ specifier: 3.6.2
+ version: 3.6.2
rolldown:
- specifier: 1.0.0-beta.7
- version: 1.0.0-beta.7(typescript@5.8.2)
+ specifier: 1.0.0-beta.30
+ version: 1.0.0-beta.30
rollup-plugin-license:
specifier: ^3.6.0
- version: 3.6.0(picomatch@4.0.2)(rollup@4.37.0)
+ version: 3.6.0(picomatch@4.0.3)(rollup@4.44.0)
vitest:
- specifier: ^3.1.1
- version: 3.1.1(@types/node@22.14.1)(jsdom@26.1.0)(yaml@2.7.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/node@22.17.0)(jsdom@26.1.0)(yaml@2.8.0)
zx:
- specifier: ^8.5.2
- version: 8.5.2
+ specifier: ^8.7.2
+ version: 8.7.2
template/base:
dependencies:
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.2.3
- version: 5.2.3(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ specifier: ^6.0.1
+ version: 6.0.1(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))
vite:
- specifier: ^6.2.4
- version: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
vite-plugin-vue-devtools:
- specifier: ^7.7.2
- version: 7.7.2(rollup@4.37.0)(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ specifier: ^8.0.0
+ version: 8.0.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))
template/config/cypress:
devDependencies:
cypress:
- specifier: ^14.3.0
- version: 14.3.0
+ specifier: ^14.5.3
+ version: 14.5.3
start-server-and-test:
- specifier: ^2.0.11
- version: 2.0.11
+ specifier: ^2.0.13
+ version: 2.0.13
template/config/cypress-ct:
dependencies:
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
devDependencies:
cypress:
- specifier: ^14.3.0
- version: 14.3.0
+ specifier: ^14.5.3
+ version: 14.5.3
template/config/jsx:
dependencies:
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
devDependencies:
'@vitejs/plugin-vue-jsx':
- specifier: ^4.1.2
- version: 4.1.2(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ specifier: ^5.0.1
+ version: 5.0.1(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))
vite:
- specifier: ^6.2.4
- version: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
template/config/nightwatch:
devDependencies:
'@nightwatch/vue':
specifier: ^3.1.2
- version: 3.1.2(@types/node@22.14.1)(vue@3.5.13(typescript@5.8.2))
+ version: 3.1.2(@types/node@22.17.0)(vue@3.5.18(typescript@5.9.2))
'@vitejs/plugin-vue':
- specifier: ^5.2.3
- version: 5.2.3(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
+ specifier: ^6.0.1
+ version: 6.0.1(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))
chromedriver:
- specifier: ^135.0.1
- version: 135.0.1
+ specifier: ^138.0.5
+ version: 138.0.5
geckodriver:
specifier: ^5.0.0
version: 5.0.0
nightwatch:
- specifier: ^3.12.1
- version: 3.12.1(chromedriver@135.0.1)(geckodriver@5.0.0)
+ specifier: ^3.12.2
+ version: 3.12.2(chromedriver@138.0.5)(geckodriver@5.0.0)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@22.14.1)(typescript@5.8.2)
+ version: 10.9.2(@types/node@22.17.0)(typescript@5.9.2)
vite:
- specifier: ^6.2.4
- version: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -135,8 +135,8 @@ importers:
template/config/nightwatch-ct:
dependencies:
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
devDependencies:
'@vue/test-utils':
specifier: ^2.4.6
@@ -145,53 +145,53 @@ importers:
template/config/pinia:
dependencies:
pinia:
- specifier: ^3.0.2
- version: 3.0.2(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))
+ specifier: ^3.0.3
+ version: 3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
template/config/playwright:
devDependencies:
'@playwright/test':
- specifier: ^1.51.1
- version: 1.51.1
+ specifier: ^1.54.2
+ version: 1.54.2
template/config/prettier:
devDependencies:
prettier:
- specifier: 3.5.3
- version: 3.5.3
+ specifier: 3.6.2
+ version: 3.6.2
template/config/router:
dependencies:
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
vue-router:
- specifier: ^4.5.0
- version: 4.5.0(vue@3.5.13(typescript@5.8.2))
+ specifier: ^4.5.1
+ version: 4.5.1(vue@3.5.18(typescript@5.9.2))
template/config/typescript:
devDependencies:
'@types/node':
- specifier: ^22.14.1
- version: 22.14.1
+ specifier: ^22.17.0
+ version: 22.17.0
npm-run-all2:
- specifier: ^7.0.2
- version: 7.0.2
+ specifier: ^8.0.4
+ version: 8.0.4
typescript:
- specifier: ~5.8.0
- version: 5.8.2
+ specifier: ~5.9.0
+ version: 5.9.2
vue-tsc:
- specifier: ^2.2.8
- version: 2.2.8(typescript@5.8.2)
+ specifier: ^3.0.5
+ version: 3.0.5(typescript@5.9.2)
template/config/vitest:
dependencies:
vue:
- specifier: ^3.5.13
- version: 3.5.13(typescript@5.8.2)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.9.2)
devDependencies:
'@vue/test-utils':
specifier: ^2.4.6
@@ -200,17 +200,17 @@ importers:
specifier: ^26.1.0
version: 26.1.0
vitest:
- specifier: ^3.1.1
- version: 3.1.1(@types/node@22.14.1)(jsdom@26.1.0)(yaml@2.7.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/node@22.17.0)(jsdom@26.1.0)(yaml@2.8.0)
template/tsconfig/base:
devDependencies:
'@tsconfig/node22':
- specifier: ^22.0.1
- version: 22.0.1
+ specifier: ^22.0.2
+ version: 22.0.2
'@vue/tsconfig':
specifier: ^0.7.0
- version: 0.7.0(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))
+ version: 0.7.0(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))
template/tsconfig/vitest:
devDependencies:
@@ -224,92 +224,89 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/utils@0.7.10':
- resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
-
'@asamuzakjp/css-color@2.8.2':
resolution: {integrity: sha512-RtWv9jFN2/bLExuZgFFZ0I3pWWeezAHGgrmjqGGWclATl1aDe3yhCUaI0Ilkp6OCk9zX7+FjvDasEX8Q9Rxc5w==}
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/code-frame@7.27.1':
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
+ '@babel/compat-data@7.27.2':
+ resolution: {integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.10':
- resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ '@babel/core@7.27.7':
+ resolution: {integrity: sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.10':
- resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==}
+ '@babel/generator@7.27.5':
+ resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.9':
- resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ '@babel/helper-annotate-as-pure@7.27.1':
+ resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.26.5':
- resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
+ '@babel/helper-compilation-targets@7.27.2':
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.25.9':
- resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
+ '@babel/helper-create-class-features-plugin@7.27.1':
+ resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-member-expression-to-functions@7.25.9':
- resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ '@babel/helper-module-imports@7.27.1':
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ '@babel/helper-module-transforms@7.27.3':
+ resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.9':
- resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.26.5':
- resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ '@babel/helper-plugin-utils@7.27.1':
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-replace-supers@7.25.9':
- resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
+ '@babel/helper-replace-supers@7.27.1':
+ resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.10':
- resolution: {integrity: sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==}
+ '@babel/helpers@7.27.6':
+ resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.10':
- resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==}
+ '@babel/parser@7.28.0':
+ resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -336,44 +333,44 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.7':
- resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==}
+ '@babel/plugin-syntax-jsx@7.27.1':
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.9':
- resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ '@babel/plugin-syntax-typescript@7.27.1':
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.26.8':
- resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
+ '@babel/plugin-transform-typescript@7.27.1':
+ resolution: {integrity: sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/template@7.26.9':
- resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
+ '@babel/template@7.27.2':
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.10':
- resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==}
+ '@babel/traverse@7.27.7':
+ resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.10':
- resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==}
+ '@babel/types@7.28.2':
+ resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
engines: {node: '>=6.9.0'}
'@bazel/runfiles@6.3.1':
resolution: {integrity: sha512-1uLNT5NZsUVIGS4syuHwTzZ8HycMPyr6POA3FCE4GbMtc4rhoJk8aZKtNIRthJYfL+iioppi+rTfH3olMPr9nA==}
- '@clack/core@0.4.2':
- resolution: {integrity: sha512-NYQfcEy8MWIxrT5Fj8nIVchfRFA26yYKJcvBS7WlUIlw2OmQOY9DhGGXMovyI5J5PpxrCPGkgUi207EBrjpBvg==}
+ '@clack/core@0.5.0':
+ resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==}
- '@clack/prompts@0.10.1':
- resolution: {integrity: sha512-Q0T02vx8ZM9XSv9/Yde0jTmmBQufZhPJfYAg2XrrrxWWaZgq1rr8nU8Hv710BQ1dhoP8rtY7YUdpGej2Qza/cw==}
+ '@clack/prompts@0.11.0':
+ resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==}
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -411,21 +408,21 @@ packages:
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
- '@cypress/request@3.0.8':
- resolution: {integrity: sha512-h0NFgh1mJmm1nr4jCwkGHwKneVYKghUyWe6TMNrk0B9zsjAJxpg8C4/+BAcmLgCPa1vj1V8rNUaILl+zYRUWBQ==}
+ '@cypress/request@3.0.9':
+ resolution: {integrity: sha512-I3l7FdGRXluAS44/0NguwWlO83J18p0vlr2FYHrJkWdNYhgVoiYo61IXPqaOsL+vNxU1ZqMACzItGK3/KKDsdw==}
engines: {node: '>= 6'}
'@cypress/xvfb@1.2.4':
resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==}
- '@emnapi/core@1.3.1':
- resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
+ '@emnapi/core@1.4.5':
+ resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==}
- '@emnapi/runtime@1.3.1':
- resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+ '@emnapi/runtime@1.4.5':
+ resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
- '@emnapi/wasi-threads@1.0.1':
- resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
+ '@emnapi/wasi-threads@1.0.4':
+ resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==}
'@esbuild/aix-ppc64@0.25.1':
resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
@@ -858,8 +855,8 @@ packages:
resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
engines: {node: '>= 10'}
- '@napi-rs/wasm-runtime@0.2.7':
- resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
+ '@napi-rs/wasm-runtime@1.0.1':
+ resolution: {integrity: sha512-KVlQ/jgywZpixGCKMNwxStmmbYEMyokZpCf2YuIChhfJA2uqfAKNEM8INz7zzTo55iEXfBhIIs3VqYyqzDLj8g==}
'@nightwatch/chai@5.0.3':
resolution: {integrity: sha512-1OIkOf/7jswOC3/t+Add/HVQO8ib75kz6BVYSNeWGghTlmHUqYEfNJ6vcACbXrn/4v3+9iRlWixuhFkxXkU/RQ==}
@@ -880,187 +877,198 @@ packages:
'@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
- '@oxc-project/types@0.61.2':
- resolution: {integrity: sha512-rfuwJwvwn9MRthHNXlSo9Eka/u7gC0MhnWAoX3BhE1+rwPOl22nq0K0Y997Hof0tHCOuD7H3/Z8HTfCVhB4c5Q==}
+ '@oxc-project/runtime@0.78.0':
+ resolution: {integrity: sha512-jOU7sDFMyq5ShGJC21UobalVzqcdtWGfySVp8ELvKoVLzMpLHb4kv1bs9VKxaP8XC7Z9hlAXwEKVhCTN+j21aQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@oxc-project/types@0.78.0':
+ resolution: {integrity: sha512-8FvExh0WRWN1FoSTjah1xa9RlavZcJQ8/yxRbZ7ElmSa2Ij5f5Em7MvRbSthE6FbwC6Wh8iAw0Gpna7QdoqLGg==}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@playwright/test@1.51.1':
- resolution: {integrity: sha512-nM+kEaTSAoVlXmMPH10017vn3FSiFqr/bh4fKg9vmAdMfd9SDqRZNvPSiAHADc/itWak+qPvMPZQOPwCBW7k7Q==}
+ '@playwright/test@1.54.2':
+ resolution: {integrity: sha512-A+znathYxPf+72riFd1r1ovOLqsIIB0jKIoPjyK2kqEIe30/6jF6BC7QNluHuwUmsD2tv1XZVugN8GqfTMOxsA==}
engines: {node: '>=18'}
hasBin: true
- '@polka/url@1.0.0-next.28':
- resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+ '@polka/url@1.0.0-next.29':
+ resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
+
+ '@rolldown/binding-android-arm64@1.0.0-beta.30':
+ resolution: {integrity: sha512-4j7QBitb/WMT1fzdJo7BsFvVNaFR5WCQPdf/RPDHEsgQIYwBaHaL47KTZxncGFQDD1UAKN3XScJ0k7LAsZfsvg==}
+ cpu: [arm64]
+ os: [android]
- '@rolldown/binding-darwin-arm64@1.0.0-beta.7':
- resolution: {integrity: sha512-spVRMdG9NotVYfrc94W8zMKEqLFbxm/dzkBjTfKzXMqhyBryo1lwZ14o8xFb3lM/ON/ZUT7laR9y+r6SIUtFrg==}
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.30':
+ resolution: {integrity: sha512-4vWFTe1o5LXeitI2lW8qMGRxxwrH/LhKd2HDLa/QPhdxohvdnfKyDZWN96XUhDyje2bHFCFyhMs3ak2lg2mJFA==}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-beta.7':
- resolution: {integrity: sha512-6d6PicpBNLWJUyGO1b87QOBtQuqL1X9qVugi+kyGcChxW2bL87/CIBAJDu1g3mM62xSzxUitGa2YWRMhMJu2OA==}
+ '@rolldown/binding-darwin-x64@1.0.0-beta.30':
+ resolution: {integrity: sha512-MxrfodqImbsDFFFU/8LxyFPZjt7s4ht8g2Zb76EmIQ+xlmit46L9IzvWiuMpEaSJ5WbnjO7fCDWwakMGyJJ+Dw==}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-freebsd-x64@1.0.0-beta.7':
- resolution: {integrity: sha512-RCKUAMUr1+F1wDSUmWUoGimCNAoQ9km5SRIEhrTlCOXe4wv+rY4o07cTaBjehBm+GtT+u0r36SW2gOmikivj9Q==}
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.30':
+ resolution: {integrity: sha512-c/TQXcATKoO8qE1bCjCOkymZTu7yVUAxBSNLp42Q97XHCb0Cu9v6MjZpB6c7Hq9NQ9NzW44uglak9D/r77JeDw==}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.7':
- resolution: {integrity: sha512-SRGp4RaUC2oFZTDtLSRePWWE5F4C5vrlsr/a3+/mBlBVUdSrB7341hqAEcezW3YYHQOT/j9CPXu2NULENSywwQ==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.30':
+ resolution: {integrity: sha512-Vxci4xylM11zVqvrmezAaRjGBDyOlMRtlt7TDgxaBmSYLuiokXbZpD8aoSuOyjUAeN0/tmWItkxNGQza8UWGNQ==}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.7':
- resolution: {integrity: sha512-q6Szr5o54lJWir2uYxwxDoOUdSCrA2Nb8sKqQRnJHP9985o0uxeq85LKvMubFRgTKq9Q71ZZPrZBs7pwr4ji1Q==}
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.30':
+ resolution: {integrity: sha512-iEBEdSs25Ol0lXyVNs763f7YPAIP0t1EAjoXME81oJ94DesJslaLTj71Rn1shoMDVA+dfkYA286w5uYnOs9ZNA==}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.7':
- resolution: {integrity: sha512-MiEE4ReEw7jdxKE8eKTdt3z7N1sucgSb1J0BUY3Dd8YKLjh2jNYHhJu13/tCo2DBMZxT+FDJE3WJ5kCxZA7+YA==}
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.30':
+ resolution: {integrity: sha512-Ny684Sn1X8c+gGLuDlxkOuwiEE3C7eEOqp1/YVBzQB4HO7U/b4n7alvHvShboOEY5DP1fFUjq6Z+sBLYlCIZbQ==}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.7':
- resolution: {integrity: sha512-2yDNUKQidgcZr/VSJCUy9IGvtcF/GfBEBrCsqvSkVKMNLNySICvybAwKtCNPeZSOwf875CWnnyKNeg5vwV6rMg==}
+ '@rolldown/binding-linux-arm64-ohos@1.0.0-beta.30':
+ resolution: {integrity: sha512-6moyULHDPKwt5RDEV72EqYw5n+s46AerTwtEBau5wCsZd1wuHS1L9z6wqhKISXAFTK9sneN0TEjvYKo+sgbbiA==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.30':
+ resolution: {integrity: sha512-p0yoPdoGg5Ow2YZKKB5Ypbn58i7u4XFk3PvMkriFnEcgtVk40c5u7miaX7jH0JdzahyXVBJ/KT5yEpJrzQn8yg==}
cpu: [x64]
os: [linux]
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.7':
- resolution: {integrity: sha512-72LjHkY9Sqav35qopNh4fabhSsqKWmOwMtjmrNgONTtC5LhALjNZlaXkAaFvQRJ8N7ftT8BOITzaZeqrF6BYdg==}
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.30':
+ resolution: {integrity: sha512-sM/KhCrsT0YdHX10mFSr0cvbfk1+btG6ftepAfqhbcDfhi0s65J4dTOxGmklJnJL9i1LXZ8WA3N4wmnqsfoK8Q==}
cpu: [x64]
os: [linux]
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.7':
- resolution: {integrity: sha512-sR8q2p3j5ZCkFWPbm6LUIYE7SHfmrVqXu0n4CFpzmAM95pDhFRx8SzT/oL5tkFN+mCdnPpzcvpn9OioVXQ8CxA==}
- engines: {node: '>=14.21.3'}
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.30':
+ resolution: {integrity: sha512-i3kD5OWs8PQP0V+JW3TFyCLuyjuNzrB45em0g84Jc+gvnDsGVlzVjMNPo7txE/yT8CfE90HC/lDs3ry9FvaUyw==}
+ engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.7':
- resolution: {integrity: sha512-eeSNGdZt01NelYGl5LZc3cSwN4iYG5XE8zMqkILErfW6ndpc74DKeDWI0aG8jmtjz5VerLA4B9DzOkhuFj4lNg==}
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.30':
+ resolution: {integrity: sha512-q7mrYln30V35VrCqnBVQQvNPQm8Om9HC59I3kMYiOWogvJobzSPyO+HA1MP363+Qgwe39I2I1nqBKPOtWZ33AQ==}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.7':
- resolution: {integrity: sha512-d7Uhs3LWirrE4+TRa2N25AqrZaZjYZdOrKSYbZFMF42tFkWIgGWPCQouTqjMgjVGX0feJpF7+9dwVhjZFzZbYA==}
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.30':
+ resolution: {integrity: sha512-nUqGBt39XTpbBEREEnyKofdP3uz+SN/x2884BH+N3B2NjSUrP6NXwzltM35C0wKK42hX/nthRrwSgj715m99Jw==}
cpu: [ia32]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.7':
- resolution: {integrity: sha512-Z3P1JHx+U7Sr73v5wJtEygxboF2VR9ds4eSAgFfslhIxFI48FFm+WEMeuLLeqnx0tiq1UL6cIIg5+h3mlaG6UA==}
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.30':
+ resolution: {integrity: sha512-lbnvUwAXIVWSXAeZrCa4b1KvV/DW0rBnMHuX0T7I6ey1IsXZ90J37dEgt3j48Ex1Cw1E+5H7VDNP2gyOX8iu3w==}
cpu: [x64]
os: [win32]
- '@rollup/pluginutils@5.1.3':
- resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
+ '@rolldown/pluginutils@1.0.0-beta.29':
+ resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==}
+
+ '@rolldown/pluginutils@1.0.0-beta.30':
+ resolution: {integrity: sha512-whXaSoNUFiyDAjkUF8OBpOm77Szdbk5lGNqFe6CbVbJFrhCCPinCbRA3NjawwlNHla1No7xvXXh+CpSxnPfUEw==}
- '@rollup/rollup-android-arm-eabi@4.37.0':
- resolution: {integrity: sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==}
+ '@rollup/rollup-android-arm-eabi@4.44.0':
+ resolution: {integrity: sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.37.0':
- resolution: {integrity: sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==}
+ '@rollup/rollup-android-arm64@4.44.0':
+ resolution: {integrity: sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.37.0':
- resolution: {integrity: sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA==}
+ '@rollup/rollup-darwin-arm64@4.44.0':
+ resolution: {integrity: sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.37.0':
- resolution: {integrity: sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==}
+ '@rollup/rollup-darwin-x64@4.44.0':
+ resolution: {integrity: sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.37.0':
- resolution: {integrity: sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==}
+ '@rollup/rollup-freebsd-arm64@4.44.0':
+ resolution: {integrity: sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.37.0':
- resolution: {integrity: sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==}
+ '@rollup/rollup-freebsd-x64@4.44.0':
+ resolution: {integrity: sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.37.0':
- resolution: {integrity: sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.44.0':
+ resolution: {integrity: sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.37.0':
- resolution: {integrity: sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==}
+ '@rollup/rollup-linux-arm-musleabihf@4.44.0':
+ resolution: {integrity: sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.37.0':
- resolution: {integrity: sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==}
+ '@rollup/rollup-linux-arm64-gnu@4.44.0':
+ resolution: {integrity: sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.37.0':
- resolution: {integrity: sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==}
+ '@rollup/rollup-linux-arm64-musl@4.44.0':
+ resolution: {integrity: sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.37.0':
- resolution: {integrity: sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.44.0':
+ resolution: {integrity: sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.37.0':
- resolution: {integrity: sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.44.0':
+ resolution: {integrity: sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.37.0':
- resolution: {integrity: sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.44.0':
+ resolution: {integrity: sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.37.0':
- resolution: {integrity: sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA==}
+ '@rollup/rollup-linux-riscv64-musl@4.44.0':
+ resolution: {integrity: sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.37.0':
- resolution: {integrity: sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==}
+ '@rollup/rollup-linux-s390x-gnu@4.44.0':
+ resolution: {integrity: sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.37.0':
- resolution: {integrity: sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ==}
+ '@rollup/rollup-linux-x64-gnu@4.44.0':
+ resolution: {integrity: sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.37.0':
- resolution: {integrity: sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==}
+ '@rollup/rollup-linux-x64-musl@4.44.0':
+ resolution: {integrity: sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.37.0':
- resolution: {integrity: sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==}
+ '@rollup/rollup-win32-arm64-msvc@4.44.0':
+ resolution: {integrity: sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.37.0':
- resolution: {integrity: sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==}
+ '@rollup/rollup-win32-ia32-msvc@4.44.0':
+ resolution: {integrity: sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.37.0':
- resolution: {integrity: sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==}
+ '@rollup/rollup-win32-x64-msvc@4.44.0':
+ resolution: {integrity: sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==}
cpu: [x64]
os: [win32]
@@ -1110,23 +1118,26 @@ packages:
'@tsconfig/node16@1.0.4':
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
- '@tsconfig/node22@22.0.1':
- resolution: {integrity: sha512-VkgOa3n6jvs1p+r3DiwBqeEwGAwEvnVCg/hIjiANl5IEcqP3G0u5m8cBJspe1t9qjZRlZ7WFgqq5bJrGdgAKMg==}
+ '@tsconfig/node22@22.0.2':
+ resolution: {integrity: sha512-Kmwj4u8sDRDrMYRoN9FDEcXD8UpBSaPQQ24Gz+Gamqfm7xxn+GBR7ge/Z7pK8OXNGyUzbSwJj+TH6B+DS/epyA==}
- '@tybys/wasm-util@0.9.0':
- resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+ '@tybys/wasm-util@0.10.0':
+ resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
'@types/chai@4.3.20':
resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
- '@types/chai@5.0.0':
- resolution: {integrity: sha512-+DwhEHAaFPPdJ2ral3kNHFQXnTfscEEFsUxzD+d7nlcLrFK23JtNjH71RGasTcHb88b4vVi4mTyfpf8u2L8bdA==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
'@types/eslint@9.6.1':
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/jsdom@21.1.7':
resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==}
@@ -1137,8 +1148,8 @@ packages:
'@types/nightwatch@2.3.32':
resolution: {integrity: sha512-RXAWpe83AERF0MbRHXaEJlMQGDtA6BW5sgbn2jO0z04yzbxc4gUvzaJwHpGULBSa2QKUHfBZoLwe/tuQx0PWLg==}
- '@types/node@22.14.1':
- resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
+ '@types/node@22.17.0':
+ resolution: {integrity: sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==}
'@types/prompts@2.4.9':
resolution: {integrity: sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA==}
@@ -1161,16 +1172,11 @@ packages:
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
- '@valibot/to-json-schema@1.0.0':
- resolution: {integrity: sha512-/9crJgPptVsGCL6X+JPDQyaJwkalSZ/52WuF8DiRUxJgcmpNdzYRfZ+gqMEP8W3CTVfuMWPqqvIgfwJ97f9Etw==}
+ '@vitejs/plugin-vue-jsx@5.0.1':
+ resolution: {integrity: sha512-X7qmQMXbdDh+sfHUttXokPD0cjPkMFoae7SgbkF9vi3idGUKmxLcnU2Ug49FHwiKXebfzQRIm5yK3sfCJzNBbg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- valibot: ^1.0.0
-
- '@vitejs/plugin-vue-jsx@4.1.2':
- resolution: {integrity: sha512-4Rk0GdE0QCdsIkuMmWeg11gmM4x8UmTnZR/LWPm7QJ7+BsK4tq08udrN0isrrWqz5heFy9HLV/7bOLgFS8hUjA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0
vue: ^3.0.0
'@vitejs/plugin-vue@4.6.2':
@@ -1180,84 +1186,84 @@ packages:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
- '@vitejs/plugin-vue@5.2.3':
- resolution: {integrity: sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ '@vitejs/plugin-vue@6.0.1':
+ resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0
vue: ^3.2.25
- '@vitest/expect@3.1.1':
- resolution: {integrity: sha512-q/zjrW9lgynctNbwvFtQkGK9+vvHA5UzVi2V8APrp1C6fG6/MuYYkmlx4FubuqLycCeSdHD5aadWfua/Vr0EUA==}
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/mocker@3.1.1':
- resolution: {integrity: sha512-bmpJJm7Y7i9BBELlLuuM1J1Q6EQ6K5Ye4wcyOpOMXMcePYKSIYlpcrCm4l/O6ja4VJA5G2aMJiuZkZdnxlC3SA==}
+ '@vitest/mocker@3.2.4':
+ resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.1.1':
- resolution: {integrity: sha512-dg0CIzNx+hMMYfNmSqJlLSXEmnNhMswcn3sXO7Tpldr0LiGmg3eXdLLhwkv2ZqgHb/d5xg5F7ezNFRA1fA13yA==}
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
- '@vitest/runner@3.1.1':
- resolution: {integrity: sha512-X/d46qzJuEDO8ueyjtKfxffiXraPRfmYasoC4i5+mlLEJ10UvPb0XH5M9C3gWuxd7BAQhpK42cJgJtq53YnWVA==}
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
- '@vitest/snapshot@3.1.1':
- resolution: {integrity: sha512-bByMwaVWe/+1WDf9exFxWWgAixelSdiwo2p33tpqIlM14vW7PRV5ppayVXtfycqze4Qhtwag5sVhX400MLBOOw==}
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
- '@vitest/spy@3.1.1':
- resolution: {integrity: sha512-+EmrUOOXbKzLkTDwlsc/xrwOlPDXyVk3Z6P6K4oiCndxz7YLpp/0R0UsWVOKT0IXWjjBJuSMk6D27qipaupcvQ==}
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
- '@vitest/utils@3.1.1':
- resolution: {integrity: sha512-1XIjflyaU2k3HMArJ50bwSh3wKWPD6Q47wz/NUSmRV0zNywPc4w79ARjg/i/aNINHwA+mIALhUVqD9/aUvZNgg==}
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
- '@volar/language-core@2.4.11':
- resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ '@volar/language-core@2.4.22':
+ resolution: {integrity: sha512-gp4M7Di5KgNyIyO903wTClYBavRt6UyFNpc5LWfyZr1lBsTUY+QrVZfmbNF2aCyfklBOVk9YC4p+zkwoyT7ECg==}
- '@volar/source-map@2.4.11':
- resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ '@volar/source-map@2.4.22':
+ resolution: {integrity: sha512-L2nVr/1vei0xKRgO2tYVXtJYd09HTRjaZi418e85Q+QdbbqA8h7bBjfNyPPSsjnrOO4l4kaAo78c8SQUAdHvgA==}
- '@volar/typescript@2.4.11':
- resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
+ '@volar/typescript@2.4.22':
+ resolution: {integrity: sha512-6ZczlJW1/GWTrNnkmZxJp4qyBt/SGVlcTuCWpI5zLrdPdCZsj66Aff9ZsfFaT3TyjG8zVYgBMYPuCm/eRkpcpQ==}
- '@vue/babel-helper-vue-transform-on@1.2.5':
- resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
+ '@vue/babel-helper-vue-transform-on@1.4.0':
+ resolution: {integrity: sha512-mCokbouEQ/ocRce/FpKCRItGo+013tHg7tixg3DUNS+6bmIchPt66012kBMm476vyEIJPafrvOf4E5OYj3shSw==}
- '@vue/babel-plugin-jsx@1.2.5':
- resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
+ '@vue/babel-plugin-jsx@1.4.0':
+ resolution: {integrity: sha512-9zAHmwgMWlaN6qRKdrg1uKsBKHvnUU+Py+MOCTuYZBoZsopa90Di10QRjB+YPnVss0BZbG/H5XFwJY1fTxJWhA==}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
- '@vue/babel-plugin-resolve-type@1.2.5':
- resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
+ '@vue/babel-plugin-resolve-type@1.4.0':
+ resolution: {integrity: sha512-4xqDRRbQQEWHQyjlYSgZsWj44KfiF6D+ktCuXyZ8EnVDYV3pztmXJDf1HveAjUAXxAnR8daCQT51RneWWxtTyQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.5.13':
- resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+ '@vue/compiler-core@3.5.18':
+ resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
- '@vue/compiler-dom@3.5.13':
- resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+ '@vue/compiler-dom@3.5.18':
+ resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
- '@vue/compiler-sfc@3.5.13':
- resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
+ '@vue/compiler-sfc@3.5.18':
+ resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
- '@vue/compiler-ssr@3.5.13':
- resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
+ '@vue/compiler-ssr@3.5.18':
+ resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
- '@vue/create-eslint-config@0.10.1':
- resolution: {integrity: sha512-43NNffVryo2XvH39x98/Ws7ajAUQIKZCIkpj8P/AlI56ucGsq0mHiv4ChjNeotIJpYZ7t41UWwUEzBeclQXTXw==}
+ '@vue/create-eslint-config@0.12.0':
+ resolution: {integrity: sha512-46+ysdQ87HHvQs4KyxdJ7MmPIb1TS5WoP05a3YURUxynw83fcx3LASQY6+UB1a42jghER77F33cxa4AkY8UzhQ==}
engines: {node: ^16.14.0 || >= 18.0.0}
hasBin: true
@@ -1267,41 +1273,47 @@ packages:
'@vue/devtools-api@7.7.2':
resolution: {integrity: sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==}
- '@vue/devtools-core@7.7.2':
- resolution: {integrity: sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==}
+ '@vue/devtools-core@8.0.0':
+ resolution: {integrity: sha512-5bPtF0jAFnaGs4C/4+3vGRR5U+cf6Y8UWK0nJflutEDGepHxl5L9JRaPdHQYCUgrzUaf4cY4waNBEEGXrfcs3A==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-kit@7.7.2':
- resolution: {integrity: sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==}
+ '@vue/devtools-kit@7.7.7':
+ resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==}
- '@vue/devtools-shared@7.7.2':
- resolution: {integrity: sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==}
+ '@vue/devtools-kit@8.0.0':
+ resolution: {integrity: sha512-b11OeQODkE0bctdT0RhL684pEV2DPXJ80bjpywVCbFn1PxuL3bmMPDoJKjbMnnoWbrnUYXYzFfmMWBZAMhORkQ==}
- '@vue/language-core@2.2.8':
- resolution: {integrity: sha512-rrzB0wPGBvcwaSNRriVWdNAbHQWSf0NlGqgKHK5mEkXpefjUlVRP62u03KvwZpvKVjRnBIQ/Lwre+Mx9N6juUQ==}
+ '@vue/devtools-shared@7.7.7':
+ resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==}
+
+ '@vue/devtools-shared@8.0.0':
+ resolution: {integrity: sha512-jrKnbjshQCiOAJanoeJjTU7WaCg0Dz2BUal6SaR6VM/P3hiFdX5Q6Pxl73ZMnrhCxNK9nAg5hvvRGqs+6dtU1g==}
+
+ '@vue/language-core@3.0.5':
+ resolution: {integrity: sha512-gCEjn9Ik7I/seHVNIEipOm8W+f3/kg60e8s1IgIkMYma2wu9ZGUTMv3mSL2bX+Md2L8fslceJ4SU8j1fgSRoiw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity@3.5.13':
- resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
+ '@vue/reactivity@3.5.18':
+ resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
- '@vue/runtime-core@3.5.13':
- resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
+ '@vue/runtime-core@3.5.18':
+ resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
- '@vue/runtime-dom@3.5.13':
- resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
+ '@vue/runtime-dom@3.5.18':
+ resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
- '@vue/server-renderer@3.5.13':
- resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
+ '@vue/server-renderer@3.5.18':
+ resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
peerDependencies:
- vue: 3.5.13
+ vue: 3.5.18
- '@vue/shared@3.5.13':
- resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+ '@vue/shared@3.5.18':
+ resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
@@ -1346,8 +1358,8 @@ packages:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
- alien-signals@1.0.3:
- resolution: {integrity: sha512-zQOh3wAYK5ujENxvBBR3CFGF/b6afaSzZ/c9yNhJ1ENrGHETvpUuKQsa93Qrclp0+PzTF93MaZ7scVp1uUozhA==}
+ alien-signals@2.0.5:
+ resolution: {integrity: sha512-PdJB6+06nUNAClInE3Dweq7/2xVAYM64vvvS1IHVHSJmgeOtEdrAGyp7Z2oJtYm0B342/Exd2NT0uMJaThcjLQ==}
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -1389,6 +1401,10 @@ packages:
engines: {node: '>=8.0.0'}
hasBin: true
+ ansis@4.1.0:
+ resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==}
+ engines: {node: '>=14'}
+
anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
@@ -1474,6 +1490,9 @@ packages:
resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
engines: {node: '>=4'}
+ axios@1.11.0:
+ resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
+
axios@1.8.3:
resolution: {integrity: sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==}
@@ -1512,8 +1531,8 @@ packages:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- birpc@0.2.19:
- resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
+ birpc@2.5.0:
+ resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==}
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -1617,9 +1636,9 @@ packages:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
- chromedriver@135.0.1:
- resolution: {integrity: sha512-MLAS4t9dkttp1R1O2o/1nvtNIxg1dBTx7OE3ZCSrrFz+EFowd0wRAO7H5j918hw0i8+30yODq99p8CumvqRS9Q==}
- engines: {node: '>=18'}
+ chromedriver@138.0.5:
+ resolution: {integrity: sha512-WE5O09if9TmFfIpvydt5dyhj+TNTUttvnujoRtAShQuDghulSh1HFirBnjNrAWjEoMkXn9VUw+cCYzZ597VPJQ==}
+ engines: {node: '>=20'}
hasBin: true
ci-info@3.3.0:
@@ -1649,6 +1668,10 @@ packages:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
+ cli-table3@0.6.1:
+ resolution: {integrity: sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==}
+ engines: {node: 10.* || >= 12.*}
+
cli-table3@0.6.5:
resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
@@ -1678,6 +1701,10 @@ packages:
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ colors@1.4.0:
+ resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
+ engines: {node: '>=0.1.90'}
+
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -1686,9 +1713,9 @@ packages:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
- commander@13.1.0:
- resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
- engines: {node: '>=18'}
+ commander@14.0.0:
+ resolution: {integrity: sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==}
+ engines: {node: '>=20'}
commander@6.2.1:
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
@@ -1750,8 +1777,8 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- cypress@14.3.0:
- resolution: {integrity: sha512-rRfPl9Z0/CczuYybBEoLbDVuT1OGkhYaJ0+urRCshgiDRz6QnoA0KQIQnPx7MJ3zy+VCsbUU1pV74n+6cbJEdg==}
+ cypress@14.5.3:
+ resolution: {integrity: sha512-syLwKjDeMg77FRRx68bytLdlqHXDT4yBVh0/PPkcgesChYDjUZbwxLqMXuryYKzAyJsPsQHUDW1YU74/IYEUIA==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
@@ -1803,8 +1830,8 @@ packages:
supports-color:
optional: true
- debug@4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ debug@4.4.1:
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -1820,9 +1847,6 @@ packages:
resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- decimal.js@10.4.3:
- resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
-
decimal.js@10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
@@ -1959,12 +1983,8 @@ packages:
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
engines: {node: '>=18'}
- error-stack-parser-es@0.1.5:
- resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
-
- es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
- engines: {node: '>= 0.4'}
+ error-stack-parser-es@1.0.5:
+ resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
@@ -1977,13 +1997,17 @@ packages:
es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+ es-module-lexer@1.7.0:
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
+ es-set-tostringtag@2.1.0:
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ engines: {node: '>= 0.4'}
+
esbuild-android-64@0.15.18:
resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==}
engines: {node: '>=12'}
@@ -2172,20 +2196,16 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
- execa@9.5.1:
- resolution: {integrity: sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==}
+ execa@9.6.0:
+ resolution: {integrity: sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==}
engines: {node: ^18.19.0 || >=20.5.0}
executable@4.1.1:
resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
engines: {node: '>=4'}
- expect-type@1.2.0:
- resolution: {integrity: sha512-80F22aiJ3GLyVnS/B3HzgR6RelZVumzj9jkL0Rhz4h0xYbNW9PjlQz5h3J/SShErbXBc295vseR4/MIbVmUbeA==}
+ expect-type@1.2.1:
+ resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==}
engines: {node: '>=12.0.0'}
extend@3.0.2:
@@ -2206,8 +2226,8 @@ packages:
fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- fdir@6.4.3:
- resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -2260,8 +2280,8 @@ packages:
forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
- form-data@4.0.1:
- resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
+ form-data@4.0.4:
+ resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
engines: {node: '>= 6'}
formdata-polyfill@4.0.10:
@@ -2321,10 +2341,6 @@ packages:
get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
- engines: {node: '>= 0.4'}
-
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
@@ -2345,10 +2361,6 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
-
get-stream@9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
@@ -2388,9 +2400,6 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
-
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
@@ -2408,14 +2417,6 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
- engines: {node: '>= 0.4'}
-
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
-
has-symbols@1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
@@ -2424,6 +2425,10 @@ packages:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
+ hasha@5.2.2:
+ resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
+ engines: {node: '>=8'}
+
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -2439,10 +2444,6 @@ packages:
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
engines: {node: '>=18'}
- html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
-
http-proxy-agent@7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
@@ -2463,12 +2464,8 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
- human-signals@8.0.0:
- resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
+ human-signals@8.0.1:
+ resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
engines: {node: '>=18.18.0'}
husky@9.1.7:
@@ -2629,10 +2626,6 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
@@ -2722,6 +2715,9 @@ packages:
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
@@ -2805,9 +2801,9 @@ packages:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
- lint-staged@15.5.1:
- resolution: {integrity: sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==}
- engines: {node: '>=18.12.0'}
+ lint-staged@16.1.4:
+ resolution: {integrity: sha512-xy7rnzQrhTVGKMpv6+bmIA3C0yET31x8OhKBYfvGo0/byeZ6E0BjGARrir3Kg/RhhYHutpsi01+2J5IpfVoueA==}
+ engines: {node: '>=20.17'}
hasBin: true
listr2@3.14.0:
@@ -2819,9 +2815,9 @@ packages:
enquirer:
optional: true
- listr2@8.2.5:
- resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
- engines: {node: '>=18.0.0'}
+ listr2@9.0.1:
+ resolution: {integrity: sha512-SL0JY3DaxylDuo/MecFeiC+7pedM0zia33zl0vcjgwcq1q1FWWF1To9EIauPbl8GbMCU0R2e0uJ8bZunhYKD2g==}
+ engines: {node: '>=20.0.0'}
locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
@@ -2880,8 +2876,8 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
- loupe@3.1.3:
- resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==}
+ loupe@3.1.4:
+ resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
@@ -2937,10 +2933,6 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
mimic-function@5.0.1:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
@@ -2990,8 +2982,8 @@ packages:
moment@2.30.1:
resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
- mrmime@2.0.0:
- resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
+ mrmime@2.0.1:
+ resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
engines: {node: '>=10'}
ms@2.1.2:
@@ -3003,13 +2995,17 @@ packages:
muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+ nano-spawn@1.0.2:
+ resolution: {integrity: sha512-21t+ozMQDAL/UGgQVBbZ/xXvNO10++ZPuTmKRO8k9V3AClVRht49ahtDjfY8l1q6nSHOrE5ASfthzH3ol6R/hg==}
+ engines: {node: '>=20.17'}
+
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.9:
- resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
+ nanoid@5.1.5:
+ resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==}
engines: {node: ^18 || >=20}
hasBin: true
@@ -3020,8 +3016,8 @@ packages:
nightwatch-axe-verbose@2.3.1:
resolution: {integrity: sha512-C6N95bwPHsRnv04eVIwJ6w5m6X1+Pddvo6nzpzOHQlO0j+pYRVU7zaQmFUJ0L4cqeUxReNEXyTUg/R9WWfHk7w==}
- nightwatch@3.12.1:
- resolution: {integrity: sha512-+tTSjw7w2xY3TRdq5qMkgSztEk6ofMw1l/+Tc4GVRTyUi2/43qV4m2EzOi8Q/3ERKZrIR1Wqqyyh3pw6PJSKMQ==}
+ nightwatch@3.12.2:
+ resolution: {integrity: sha512-B4MGUvO+RjX8gYg84oJ3DKdgzfXIFRKbs19nLBlUt+aJlzBdv6VdN00wlOmzCakHXZlU10MGm1KiW0dsTlgFRA==}
engines: {node: '>= 16'}
hasBin: true
peerDependencies:
@@ -3042,6 +3038,7 @@ packages:
node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
+ deprecated: Use your platform's native DOMException instead
node-fetch@3.3.2:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
@@ -3063,19 +3060,15 @@ packages:
resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
engines: {node: ^18.17.0 || >=20.5.0}
- npm-run-all2@7.0.2:
- resolution: {integrity: sha512-7tXR+r9hzRNOPNTvXegM+QzCuMjzUIIq66VDunL6j60O4RrExx32XUhlrS7UK4VcdGw5/Wxzb3kfNcFix9JKDA==}
- engines: {node: ^18.17.0 || >=20.5.0, npm: '>= 9'}
+ npm-run-all2@8.0.4:
+ resolution: {integrity: sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==}
+ engines: {node: ^20.5.0 || >=22.0.0, npm: '>= 10'}
hasBin: true
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.3.0:
- resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
npm-run-path@6.0.0:
resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
engines: {node: '>=18'}
@@ -3083,10 +3076,6 @@ packages:
nwsapi@2.2.16:
resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
- object-inspect@1.13.2:
- resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
- engines: {node: '>= 0.4'}
-
object-inspect@1.13.4:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
@@ -3103,6 +3092,9 @@ packages:
resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
+ ohash@2.0.11:
+ resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
+
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -3110,16 +3102,12 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
onetime@7.0.0:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- open@10.1.0:
- resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
open@8.4.2:
@@ -3225,8 +3213,8 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- picomatch@4.0.2:
- resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
pidtree@0.6.0:
@@ -3238,8 +3226,8 @@ packages:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- pinia@3.0.2:
- resolution: {integrity: sha512-sH2JK3wNY809JOeiiURUR0wehJ9/gd9qFN2Y828jCbxEzKEmEt0pzCXwqiSTfuRsK9vQsOflSdnbdBOGrhtn+g==}
+ pinia@3.0.3:
+ resolution: {integrity: sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==}
peerDependencies:
typescript: '>=4.4.4'
vue: ^2.7.0 || ^3.5.11
@@ -3250,13 +3238,13 @@ packages:
piscina@4.7.0:
resolution: {integrity: sha512-b8hvkpp9zS0zsfa939b/jXbe64Z2gZv0Ha7FYPNUiDIB1y2AtxcOZdfP8xN8HFjUaqQiT9gRlfjAsoL8vdJ1Iw==}
- playwright-core@1.51.1:
- resolution: {integrity: sha512-/crRMj8+j/Nq5s8QcvegseuyeZPxpQCZb6HNk3Sos3BlZyAknRjoyJPFWkpNn8v0+P3WiwqFF8P+zQo4eqiNuw==}
+ playwright-core@1.54.2:
+ resolution: {integrity: sha512-n5r4HFbMmWsB4twG7tJLDN9gmBUeSPcsBZiWSE4DnYz9mJMAFqr2ID7+eGC9kpEnxExJ1epttwR59LEWCk8mtA==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.51.1:
- resolution: {integrity: sha512-kkx+MB2KQRkyxjYPc3a0wLZZoDczmppyGJIvQ43l+aZihkaVvmu/21kiyaHeHjiFxjxNNFnUncKmcGIyOojsaw==}
+ playwright@1.54.2:
+ resolution: {integrity: sha512-Hu/BMoA1NAdRUuulyvQC0pEqZ4vQbGfn8f7wPXcnqQmM+zct9UliKxsIkLNmz/ku7LElUNqmaiv1TG/aL5ACsw==}
engines: {node: '>=18'}
hasBin: true
@@ -3264,12 +3252,12 @@ packages:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
- prettier@3.5.3:
- resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
+ prettier@3.6.2:
+ resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
engines: {node: '>=14'}
hasBin: true
@@ -3372,14 +3360,9 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rolldown@1.0.0-beta.7:
- resolution: {integrity: sha512-IUa/9lZVqgFilYggiY7jxUbmvU4Q8wVvVqsru+AeMldBccBEhTYZ6/XP6cWsznb8Fv49zfYGaeEpJ5WeVdo6Mg==}
+ rolldown@1.0.0-beta.30:
+ resolution: {integrity: sha512-H/LmDTUPlm65hWOTjXvd1k0qrGinNi8LrG3JsHVm6Oit7STg0upBmgoG5PZUHbAnGTHr0MLoLyzjmH261lIqSg==}
hasBin: true
- peerDependencies:
- '@oxc-project/runtime': 0.61.2
- peerDependenciesMeta:
- '@oxc-project/runtime':
- optional: true
rollup-plugin-license@3.6.0:
resolution: {integrity: sha512-1ieLxTCaigI5xokIfszVDRoy6c/Wmlot1fDEnea7Q/WXSR8AqOjYljHDLObAx7nFxHC2mbxT3QnTSPhaic2IYw==}
@@ -3392,8 +3375,8 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.37.0:
- resolution: {integrity: sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==}
+ rollup@4.44.0:
+ resolution: {integrity: sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -3478,10 +3461,6 @@ packages:
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
engines: {node: '>= 0.4'}
- side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
- engines: {node: '>= 0.4'}
-
side-channel@1.1.0:
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
@@ -3499,8 +3478,8 @@ packages:
sinon@17.0.1:
resolution: {integrity: sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==}
- sirv@3.0.0:
- resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ sirv@3.0.1:
+ resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
engines: {node: '>=18'}
sisteransi@1.0.5:
@@ -3585,13 +3564,13 @@ packages:
resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
engines: {node: '>=6'}
- start-server-and-test@2.0.11:
- resolution: {integrity: sha512-TN39gLzPhHAflxyOkE/oMfQGj+pj3JgF6qVicFH/JrXt7xXktidKXwqfRga+ve7lVA8+RgPZVc25VrEPRScaDw==}
+ start-server-and-test@2.0.13:
+ resolution: {integrity: sha512-G42GCIUjBv/nDoK+QsO+nBdX2Cg3DSAKhSic2DN0GLlK4Q+63TkOeN1cV9PHZKnVOzDKGNVZGCREjpvAIAOdiQ==}
engines: {node: '>=16'}
hasBin: true
- std-env@3.8.1:
- resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
+ std-env@3.9.0:
+ resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
@@ -3637,10 +3616,6 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
strip-final-newline@4.0.0:
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
engines: {node: '>=18'}
@@ -3649,8 +3624,11 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- superjson@2.2.1:
- resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
+ strip-literal@3.0.0:
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+
+ superjson@2.2.2:
+ resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
engines: {node: '>=16'}
supports-color@7.2.0:
@@ -3661,9 +3639,6 @@ packages:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
- svg-tags@1.0.0:
- resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
-
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -3695,16 +3670,20 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ engines: {node: '>=12.0.0'}
+
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@2.0.0:
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.2:
- resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
tldts-core@6.1.50:
@@ -3730,18 +3709,10 @@ packages:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
- tough-cookie@5.0.0:
- resolution: {integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==}
- engines: {node: '>=16'}
-
tough-cookie@5.1.2:
resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
engines: {node: '>=16'}
- tr46@5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
- engines: {node: '>=18'}
-
tr46@5.1.0:
resolution: {integrity: sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==}
engines: {node: '>=18'}
@@ -3793,8 +3764,12 @@ packages:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- typescript@5.8.2:
- resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
+ type-fest@0.8.1:
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
+
+ typescript@5.9.2:
+ resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
engines: {node: '>=14.17'}
hasBin: true
@@ -3813,6 +3788,10 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
+ unplugin-utils@0.2.4:
+ resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
+ engines: {node: '>=18.12.0'}
+
untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
@@ -3836,34 +3815,31 @@ packages:
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- valibot@1.0.0:
- resolution: {integrity: sha512-1Hc0ihzWxBar6NGeZv7fPLY0QuxFMyxwYR2sF1Blu7Wq7EnremwY2W02tit2ij2VJT8HcSkHAQqmFfl77f73Yw==}
- peerDependencies:
- typescript: '>=5'
- peerDependenciesMeta:
- typescript:
- optional: true
-
verror@1.10.0:
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
engines: {'0': node >=0.6.0}
- vite-hot-client@0.2.4:
- resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
+ vite-dev-rpc@1.1.0:
+ resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0
+
+ vite-hot-client@2.1.0:
+ resolution: {integrity: sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==}
peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
- vite-node@3.1.1:
- resolution: {integrity: sha512-V+IxPAE2FvXpTCHXyNem0M+gWm6J7eRyWPR6vYoG/Gl+IscNOjXzztUhimQgTxaAoUoj40Qqimaa0NLIOOAH4w==}
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-plugin-inspect@0.8.9:
- resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
+ vite-plugin-inspect@11.3.2:
+ resolution: {integrity: sha512-nzwvyFQg58XSMAmKVLr2uekAxNYvAbz1lyPmCAFVIBncCgN9S/HPM+2UM9Q9cvc4JEbC5ZBgwLAdaE2onmQuKg==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
+ vite: ^6.0.0 || ^7.0.0-0
peerDependenciesMeta:
'@nuxt/kit':
optional: true
@@ -3871,19 +3847,19 @@ packages:
vite-plugin-nightwatch@0.4.6:
resolution: {integrity: sha512-7mxANgh3KA2c/xGJU35T8z1Xj9akWQ4FuyB1PN3nwinqxqYBAx44sW9Z87a2x6efj5TD4lU0Tbuvvgous6F1+Q==}
- vite-plugin-vue-devtools@7.7.2:
- resolution: {integrity: sha512-5V0UijQWiSBj32blkyPEqIbzc6HO9c1bwnBhx+ay2dzU0FakH+qMdNUT8nF9BvDE+i6I1U8CqCuJiO20vKEdQw==}
+ vite-plugin-vue-devtools@8.0.0:
+ resolution: {integrity: sha512-9bWQig8UMu3nPbxX86NJv56aelpFYoBHxB5+pxuQz3pa3Tajc1ezRidj/0dnADA4/UHuVIfwIVYHOvMXYcPshg==}
engines: {node: '>=v14.21.3'}
peerDependencies:
- vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
+ vite: ^6.0.0 || ^7.0.0-0
- vite-plugin-vue-inspector@5.3.1:
- resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
+ vite-plugin-vue-inspector@5.3.2:
+ resolution: {integrity: sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==}
peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
- vite@4.5.10:
- resolution: {integrity: sha512-f2ueoukYTMI/5kMMT7wW+ol3zL6z6PjN28zYrGKAjnbzXhRXWXPThD3uN6muCp+TbfXaDgGvRuPsg6mwVLaWwQ==}
+ vite@4.5.14:
+ resolution: {integrity: sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -3910,19 +3886,19 @@ packages:
terser:
optional: true
- vite@6.2.4:
- resolution: {integrity: sha512-veHMSew8CcRzhL5o8ONjy8gkfmFJAd5Ac16oxBUjlwgX3Gq2Wqr+qNC3TjPIpy7TPV/KporLga5GT9HqdrCizw==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ vite@7.0.6:
+ resolution: {integrity: sha512-MHFiOENNBd+Bd9uvc8GEsIzdkn1JxMmEeYX35tI3fv0sJBUTfW5tQsoaOwuY4KhBI09A3dUJ/DXf2yxPVPUceg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@types/node': ^20.19.0 || >=22.12.0
jiti: '>=1.21.0'
- less: '*'
+ less: ^4.0.0
lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
terser: ^5.16.0
tsx: ^4.8.1
yaml: ^2.4.2
@@ -3950,16 +3926,16 @@ packages:
yaml:
optional: true
- vitest@3.1.1:
- resolution: {integrity: sha512-kiZc/IYmKICeBAZr9DQ5rT7/6bD9G7uqQEki4fxazi1jdVl2mWGzedtBs5s6llz59yQhVb7FFY2MbHzHCnT79Q==}
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/debug': ^4.1.12
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.1.1
- '@vitest/ui': 3.1.1
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -3984,19 +3960,19 @@ packages:
vue-component-type-helpers@2.1.6:
resolution: {integrity: sha512-ng11B8B/ZADUMMOsRbqv0arc442q7lifSubD0v8oDXIFoMg/mXwAPUunrroIDkY+mcD0dHKccdaznSVp8EoX3w==}
- vue-router@4.5.0:
- resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
+ vue-router@4.5.1:
+ resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
peerDependencies:
vue: ^3.2.0
- vue-tsc@2.2.8:
- resolution: {integrity: sha512-jBYKBNFADTN+L+MdesNX/TB3XuDSyaWynKMDgR+yCSln0GQ9Tfb7JS2lr46s2LiFUT1WsmfWsSvIElyxzOPqcQ==}
+ vue-tsc@3.0.5:
+ resolution: {integrity: sha512-PsTFN9lo1HJCrZw9NoqjYcAbYDXY0cOKyuW2E7naX5jcaVyWpqEsZOHN9Dws5890E8e5SDAD4L4Zam3dxG3/Cw==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
- vue@3.5.13:
- resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
+ vue@3.5.18:
+ resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -4007,8 +3983,8 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- wait-on@8.0.3:
- resolution: {integrity: sha512-nQFqAFzZDeRxsu7S3C7LbuxslHhk+gnJZHyethuGKAn2IVleIbTB9I3vJSQiSR+DifUqmdzfPMoMPJfLqMF2vw==}
+ wait-on@8.0.4:
+ resolution: {integrity: sha512-8f9LugAGo4PSc0aLbpKVCVtzayd36sSCp4WLpVngkYq6PK87H79zt77/tlCU6eKCLqR46iFvcl0PU5f+DmtkwA==}
engines: {node: '>=12.0.0'}
hasBin: true
@@ -4031,10 +4007,6 @@ packages:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
- whatwg-url@14.1.0:
- resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
- engines: {node: '>=18'}
-
whatwg-url@14.2.0:
resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==}
engines: {node: '>=18'}
@@ -4103,6 +4075,10 @@ packages:
utf-8-validate:
optional: true
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
@@ -4120,9 +4096,9 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml@2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
- engines: {node: '>= 14'}
+ yaml@2.8.0:
+ resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
+ engines: {node: '>= 14.6'}
hasBin: true
yargs-parser@20.2.4:
@@ -4156,8 +4132,8 @@ packages:
resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
engines: {node: '>= 10'}
- zx@8.5.2:
- resolution: {integrity: sha512-eIxjTkCtlzvDNRhw3RD1gGBPA4nxOTn6PafpKl+MW4eE2jR/u/R6mqq7oyUCXwarM5DSP96kWtq6XkrL2kSFrg==}
+ zx@8.7.2:
+ resolution: {integrity: sha512-4Wtl46msLFx6QW6GjLu1aRnFhavukT4VSp4tdXvfRIBRNW3RP7Si3RlRFD7YeQeecQBacVFRQQgm5LTvE/YEGQ==}
engines: {node: '>= 12.17.0'}
hasBin: true
@@ -4168,8 +4144,6 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/utils@0.7.10': {}
-
'@asamuzakjp/css-color@2.8.2':
dependencies:
'@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
@@ -4178,205 +4152,205 @@ snapshots:
'@csstools/css-tokenizer': 3.0.3
lru-cache: 11.0.2
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.8': {}
+ '@babel/compat-data@7.27.2': {}
- '@babel/core@7.26.10':
+ '@babel/core@7.27.7':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helpers': 7.26.10
- '@babel/parser': 7.26.10
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.10':
+ '@babel/generator@7.27.5':
dependencies:
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.2
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.25.9':
+ '@babel/helper-annotate-as-pure@7.27.1':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.28.2
- '@babel/helper-compilation-targets@7.26.5':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
+ '@babel/compat-data': 7.27.2
+ '@babel/helper-validator-option': 7.27.1
browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.10)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.27.7
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.9':
+ '@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.9':
+ '@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.28.2
- '@babel/helper-plugin-utils@7.26.5': {}
+ '@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.10)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.10
+ '@babel/core': 7.27.7
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
- '@babel/helper-validator-option@7.25.9': {}
+ '@babel/helper-validator-option@7.27.1': {}
- '@babel/helpers@7.26.10':
+ '@babel/helpers@7.27.6':
dependencies:
- '@babel/template': 7.26.9
- '@babel/types': 7.26.10
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.2
- '@babel/parser@7.26.10':
+ '@babel/parser@7.28.0':
dependencies:
- '@babel/types': 7.26.10
+ '@babel/types': 7.28.2
- '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.26.10)
+ '@babel/core': 7.27.7
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.27.7
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.10)':
+ '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.7)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.27.7
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.7)
transitivePeerDependencies:
- supports-color
- '@babel/template@7.26.9':
+ '@babel/template@7.27.2':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.10
- '@babel/types': 7.26.10
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.2
- '@babel/traverse@7.26.10':
+ '@babel/traverse@7.27.7':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
- '@babel/parser': 7.26.10
- '@babel/template': 7.26.9
- '@babel/types': 7.26.10
- debug: 4.4.0(supports-color@8.1.1)
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.5
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.2
+ debug: 4.4.1(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.10':
+ '@babel/types@7.28.2':
dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
'@bazel/runfiles@6.3.1': {}
- '@clack/core@0.4.2':
+ '@clack/core@0.5.0':
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@0.10.1':
+ '@clack/prompts@0.11.0':
dependencies:
- '@clack/core': 0.4.2
+ '@clack/core': 0.5.0
picocolors: 1.1.1
sisteransi: 1.0.5
@@ -4407,7 +4381,7 @@ snapshots:
'@csstools/css-tokenizer@3.0.3': {}
- '@cypress/request@3.0.8':
+ '@cypress/request@3.0.9':
dependencies:
aws-sign2: 0.7.0
aws4: 1.13.2
@@ -4415,7 +4389,7 @@ snapshots:
combined-stream: 1.0.8
extend: 3.0.2
forever-agent: 0.6.1
- form-data: 4.0.1
+ form-data: 4.0.4
http-signature: 1.4.0
is-typedarray: 1.0.0
isstream: 0.1.2
@@ -4424,7 +4398,7 @@ snapshots:
performance-now: 2.1.0
qs: 6.14.0
safe-buffer: 5.2.1
- tough-cookie: 5.0.0
+ tough-cookie: 5.1.2
tunnel-agent: 0.6.0
uuid: 8.3.2
@@ -4435,18 +4409,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@emnapi/core@1.3.1':
+ '@emnapi/core@1.4.5':
dependencies:
- '@emnapi/wasi-threads': 1.0.1
+ '@emnapi/wasi-threads': 1.0.4
tslib: 2.7.0
optional: true
- '@emnapi/runtime@1.3.1':
+ '@emnapi/runtime@1.4.5':
dependencies:
tslib: 2.7.0
optional: true
- '@emnapi/wasi-threads@1.0.1':
+ '@emnapi/wasi-threads@1.0.4':
dependencies:
tslib: 2.7.0
optional: true
@@ -4706,11 +4680,11 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.0.1
optional: true
- '@napi-rs/wasm-runtime@0.2.7':
+ '@napi-rs/wasm-runtime@1.0.1':
dependencies:
- '@emnapi/core': 1.3.1
- '@emnapi/runtime': 1.3.1
- '@tybys/wasm-util': 0.9.0
+ '@emnapi/core': 1.4.5
+ '@emnapi/runtime': 1.4.5
+ '@tybys/wasm-util': 0.10.0
optional: true
'@nightwatch/chai@5.0.3':
@@ -4724,7 +4698,7 @@ snapshots:
'@nightwatch/esbuild-utils@0.2.1':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.27.7
esbuild: 0.15.18
lodash.merge: 4.6.2
lodash.mergewith: 4.6.2
@@ -4737,12 +4711,12 @@ snapshots:
dependencies:
archiver: 5.3.2
- '@nightwatch/vue@3.1.2(@types/node@22.14.1)(vue@3.5.13(typescript@5.8.2))':
+ '@nightwatch/vue@3.1.2(@types/node@22.17.0)(vue@3.5.18(typescript@5.9.2))':
dependencies:
'@nightwatch/esbuild-utils': 0.2.1
- '@vitejs/plugin-vue': 4.6.2(vite@4.5.10(@types/node@22.14.1))(vue@3.5.13(typescript@5.8.2))
+ '@vitejs/plugin-vue': 4.6.2(vite@4.5.14(@types/node@22.17.0))(vue@3.5.18(typescript@5.9.2))
get-port: 5.1.1
- vite: 4.5.10(@types/node@22.14.1)
+ vite: 4.5.14(@types/node@22.17.0)
vite-plugin-nightwatch: 0.4.6
optionalDependencies:
'@esbuild/android-arm': 0.17.19
@@ -4761,121 +4735,125 @@ snapshots:
'@one-ini/wasm@0.1.1': {}
- '@oxc-project/types@0.61.2': {}
+ '@oxc-project/runtime@0.78.0': {}
+
+ '@oxc-project/types@0.78.0': {}
'@pkgjs/parseargs@0.11.0':
optional: true
- '@playwright/test@1.51.1':
+ '@playwright/test@1.54.2':
dependencies:
- playwright: 1.51.1
+ playwright: 1.54.2
- '@polka/url@1.0.0-next.28': {}
+ '@polka/url@1.0.0-next.29': {}
- '@rolldown/binding-darwin-arm64@1.0.0-beta.7':
+ '@rolldown/binding-android-arm64@1.0.0-beta.30':
optional: true
- '@rolldown/binding-darwin-x64@1.0.0-beta.7':
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.30':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-beta.7':
+ '@rolldown/binding-darwin-x64@1.0.0-beta.30':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.7':
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.30':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.7':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.30':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.7':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.30':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.7':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.30':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.7':
+ '@rolldown/binding-linux-arm64-ohos@1.0.0-beta.30':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.7':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.30':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.30':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.30':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.7
+ '@napi-rs/wasm-runtime': 1.0.1
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.7':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.30':
optional: true
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.7':
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.30':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.7':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.30':
optional: true
- '@rollup/pluginutils@5.1.3(rollup@4.37.0)':
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.37.0
+ '@rolldown/pluginutils@1.0.0-beta.29': {}
+
+ '@rolldown/pluginutils@1.0.0-beta.30': {}
- '@rollup/rollup-android-arm-eabi@4.37.0':
+ '@rollup/rollup-android-arm-eabi@4.44.0':
optional: true
- '@rollup/rollup-android-arm64@4.37.0':
+ '@rollup/rollup-android-arm64@4.44.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.37.0':
+ '@rollup/rollup-darwin-arm64@4.44.0':
optional: true
- '@rollup/rollup-darwin-x64@4.37.0':
+ '@rollup/rollup-darwin-x64@4.44.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.37.0':
+ '@rollup/rollup-freebsd-arm64@4.44.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.37.0':
+ '@rollup/rollup-freebsd-x64@4.44.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.37.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.44.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.37.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.44.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.37.0':
+ '@rollup/rollup-linux-arm64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.37.0':
+ '@rollup/rollup-linux-arm64-musl@4.44.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.37.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.37.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.37.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.37.0':
+ '@rollup/rollup-linux-riscv64-musl@4.44.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.37.0':
+ '@rollup/rollup-linux-s390x-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.37.0':
+ '@rollup/rollup-linux-x64-gnu@4.44.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.37.0':
+ '@rollup/rollup-linux-x64-musl@4.44.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.37.0':
+ '@rollup/rollup-win32-arm64-msvc@4.44.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.37.0':
+ '@rollup/rollup-win32-ia32-msvc@4.44.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.37.0':
+ '@rollup/rollup-win32-x64-msvc@4.44.0':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
@@ -4918,27 +4896,31 @@ snapshots:
'@tsconfig/node16@1.0.4': {}
- '@tsconfig/node22@22.0.1': {}
+ '@tsconfig/node22@22.0.2': {}
- '@tybys/wasm-util@0.9.0':
+ '@tybys/wasm-util@0.10.0':
dependencies:
tslib: 2.7.0
optional: true
'@types/chai@4.3.20': {}
- '@types/chai@5.0.0': {}
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+
+ '@types/deep-eql@4.0.2': {}
'@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
- '@types/estree@1.0.6': {}
+ '@types/estree@1.0.8': {}
'@types/jsdom@21.1.7':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
'@types/tough-cookie': 4.0.5
parse5: 7.2.1
@@ -4946,23 +4928,23 @@ snapshots:
'@types/nightwatch@2.3.32':
dependencies:
- '@types/chai': 5.0.0
- '@types/node': 22.14.1
+ '@types/chai': 5.2.2
+ '@types/node': 22.17.0
'@types/selenium-webdriver': 4.1.26
devtools-protocol: 0.0.1025565
- '@types/node@22.14.1':
+ '@types/node@22.17.0':
dependencies:
undici-types: 6.21.0
'@types/prompts@2.4.9':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
kleur: 3.0.3
'@types/selenium-webdriver@4.1.26':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
'@types/ws': 8.5.12
'@types/sinonjs__fake-timers@8.1.1': {}
@@ -4973,155 +4955,154 @@ snapshots:
'@types/ws@8.5.12':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
optional: true
- '@valibot/to-json-schema@1.0.0(valibot@1.0.0(typescript@5.8.2))':
- dependencies:
- valibot: 1.0.0(typescript@5.8.2)
-
- '@vitejs/plugin-vue-jsx@4.1.2(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))':
+ '@vitejs/plugin-vue-jsx@5.0.1(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))':
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.10)
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.8.2)
+ '@babel/core': 7.27.7
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
+ '@rolldown/pluginutils': 1.0.0-beta.29
+ '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.27.7)
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
+ vue: 3.5.18(typescript@5.9.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@4.6.2(vite@4.5.10(@types/node@22.14.1))(vue@3.5.13(typescript@5.8.2))':
+ '@vitejs/plugin-vue@4.6.2(vite@4.5.14(@types/node@22.17.0))(vue@3.5.18(typescript@5.9.2))':
dependencies:
- vite: 4.5.10(@types/node@22.14.1)
- vue: 3.5.13(typescript@5.8.2)
+ vite: 4.5.14(@types/node@22.17.0)
+ vue: 3.5.18(typescript@5.9.2)
- '@vitejs/plugin-vue@5.2.3(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))':
+ '@vitejs/plugin-vue@6.0.1(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))':
dependencies:
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.8.2)
+ '@rolldown/pluginutils': 1.0.0-beta.29
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
+ vue: 3.5.18(typescript@5.9.2)
- '@vitest/expect@3.1.1':
+ '@vitest/expect@3.2.4':
dependencies:
- '@vitest/spy': 3.1.1
- '@vitest/utils': 3.1.1
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.1.1(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))':
+ '@vitest/mocker@3.2.4(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))':
dependencies:
- '@vitest/spy': 3.1.1
+ '@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
- '@vitest/pretty-format@3.1.1':
+ '@vitest/pretty-format@3.2.4':
dependencies:
tinyrainbow: 2.0.0
- '@vitest/runner@3.1.1':
+ '@vitest/runner@3.2.4':
dependencies:
- '@vitest/utils': 3.1.1
+ '@vitest/utils': 3.2.4
pathe: 2.0.3
+ strip-literal: 3.0.0
- '@vitest/snapshot@3.1.1':
+ '@vitest/snapshot@3.2.4':
dependencies:
- '@vitest/pretty-format': 3.1.1
+ '@vitest/pretty-format': 3.2.4
magic-string: 0.30.17
pathe: 2.0.3
- '@vitest/spy@3.1.1':
+ '@vitest/spy@3.2.4':
dependencies:
- tinyspy: 3.0.2
+ tinyspy: 4.0.3
- '@vitest/utils@3.1.1':
+ '@vitest/utils@3.2.4':
dependencies:
- '@vitest/pretty-format': 3.1.1
- loupe: 3.1.3
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.1.4
tinyrainbow: 2.0.0
- '@volar/language-core@2.4.11':
+ '@volar/language-core@2.4.22':
dependencies:
- '@volar/source-map': 2.4.11
+ '@volar/source-map': 2.4.22
- '@volar/source-map@2.4.11': {}
+ '@volar/source-map@2.4.22': {}
- '@volar/typescript@2.4.11':
+ '@volar/typescript@2.4.22':
dependencies:
- '@volar/language-core': 2.4.11
+ '@volar/language-core': 2.4.22
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue/babel-helper-vue-transform-on@1.2.5': {}
+ '@vue/babel-helper-vue-transform-on@1.4.0': {}
- '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.10)':
+ '@vue/babel-plugin-jsx@1.4.0(@babel/core@7.27.7)':
dependencies:
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.26.10)
- '@babel/template': 7.26.9
- '@babel/traverse': 7.26.10
- '@babel/types': 7.26.10
- '@vue/babel-helper-vue-transform-on': 1.2.5
- '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.10)
- html-tags: 3.3.1
- svg-tags: 1.0.0
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.7)
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.2
+ '@vue/babel-helper-vue-transform-on': 1.4.0
+ '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.27.7)
+ '@vue/shared': 3.5.18
optionalDependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.27.7
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.10)':
+ '@vue/babel-plugin-resolve-type@1.4.0(@babel/core@7.27.7)':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/parser': 7.26.10
- '@vue/compiler-sfc': 3.5.13
+ '@babel/code-frame': 7.27.1
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/parser': 7.28.0
+ '@vue/compiler-sfc': 3.5.18
transitivePeerDependencies:
- supports-color
- '@vue/compiler-core@3.5.13':
+ '@vue/compiler-core@3.5.18':
dependencies:
- '@babel/parser': 7.26.10
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.28.0
+ '@vue/shared': 3.5.18
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.13':
+ '@vue/compiler-dom@3.5.18':
dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-core': 3.5.18
+ '@vue/shared': 3.5.18
- '@vue/compiler-sfc@3.5.13':
+ '@vue/compiler-sfc@3.5.18':
dependencies:
- '@babel/parser': 7.26.10
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.28.0
+ '@vue/compiler-core': 3.5.18
+ '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-ssr': 3.5.18
+ '@vue/shared': 3.5.18
estree-walker: 2.0.2
magic-string: 0.30.17
- postcss: 8.5.3
+ postcss: 8.5.6
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.13':
+ '@vue/compiler-ssr@3.5.18':
dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-dom': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
he: 1.2.0
- '@vue/create-eslint-config@0.10.1':
+ '@vue/create-eslint-config@0.12.0':
dependencies:
ejs: 3.1.10
enquirer: 2.4.1
@@ -5131,80 +5112,94 @@ snapshots:
'@vue/devtools-api@7.7.2':
dependencies:
- '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-kit': 7.7.7
- '@vue/devtools-core@7.7.2(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))':
+ '@vue/devtools-core@8.0.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))':
dependencies:
- '@vue/devtools-kit': 7.7.2
- '@vue/devtools-shared': 7.7.2
+ '@vue/devtools-kit': 8.0.0
+ '@vue/devtools-shared': 8.0.0
mitt: 3.0.1
- nanoid: 5.0.9
+ nanoid: 5.1.5
pathe: 2.0.3
- vite-hot-client: 0.2.4(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))
- vue: 3.5.13(typescript@5.8.2)
+ vite-hot-client: 2.1.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))
+ vue: 3.5.18(typescript@5.9.2)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.7.2':
+ '@vue/devtools-kit@7.7.7':
dependencies:
- '@vue/devtools-shared': 7.7.2
- birpc: 0.2.19
+ '@vue/devtools-shared': 7.7.7
+ birpc: 2.5.0
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
- superjson: 2.2.1
+ superjson: 2.2.2
- '@vue/devtools-shared@7.7.2':
+ '@vue/devtools-kit@8.0.0':
+ dependencies:
+ '@vue/devtools-shared': 8.0.0
+ birpc: 2.5.0
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.2
+
+ '@vue/devtools-shared@7.7.7':
+ dependencies:
+ rfdc: 1.4.1
+
+ '@vue/devtools-shared@8.0.0':
dependencies:
rfdc: 1.4.1
- '@vue/language-core@2.2.8(typescript@5.8.2)':
+ '@vue/language-core@3.0.5(typescript@5.9.2)':
dependencies:
- '@volar/language-core': 2.4.11
- '@vue/compiler-dom': 3.5.13
+ '@volar/language-core': 2.4.22
+ '@vue/compiler-dom': 3.5.18
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.13
- alien-signals: 1.0.3
- minimatch: 9.0.5
+ '@vue/shared': 3.5.18
+ alien-signals: 2.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
+ picomatch: 4.0.3
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.2
- '@vue/reactivity@3.5.13':
+ '@vue/reactivity@3.5.18':
dependencies:
- '@vue/shared': 3.5.13
+ '@vue/shared': 3.5.18
- '@vue/runtime-core@3.5.13':
+ '@vue/runtime-core@3.5.18':
dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/reactivity': 3.5.18
+ '@vue/shared': 3.5.18
- '@vue/runtime-dom@3.5.13':
+ '@vue/runtime-dom@3.5.18':
dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/runtime-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/reactivity': 3.5.18
+ '@vue/runtime-core': 3.5.18
+ '@vue/shared': 3.5.18
csstype: 3.1.3
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.8.2))':
+ '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2))':
dependencies:
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.8.2)
+ '@vue/compiler-ssr': 3.5.18
+ '@vue/shared': 3.5.18
+ vue: 3.5.18(typescript@5.9.2)
- '@vue/shared@3.5.13': {}
+ '@vue/shared@3.5.18': {}
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.1
vue-component-type-helpers: 2.1.6
- '@vue/tsconfig@0.7.0(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))':
+ '@vue/tsconfig@0.7.0(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2))':
optionalDependencies:
- typescript: 5.8.2
- vue: 3.5.13(typescript@5.8.2)
+ typescript: 5.9.2
+ vue: 3.5.18(typescript@5.9.2)
'@wdio/logger@9.1.3':
dependencies:
@@ -5230,7 +5225,7 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- alien-signals@1.0.3: {}
+ alien-signals@2.0.5: {}
ansi-align@3.0.1:
dependencies:
@@ -5262,6 +5257,8 @@ snapshots:
dependencies:
entities: 2.2.0
+ ansis@4.1.0: {}
+
anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
@@ -5354,10 +5351,18 @@ snapshots:
axe-core@4.10.0: {}
- axios@1.8.3(debug@4.4.0):
+ axios@1.11.0(debug@4.4.1):
dependencies:
- follow-redirects: 1.15.9(debug@4.4.0)
- form-data: 4.0.1
+ follow-redirects: 1.15.9(debug@4.4.1)
+ form-data: 4.0.4
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
+ axios@1.8.3:
+ dependencies:
+ follow-redirects: 1.15.9(debug@4.4.1)
+ form-data: 4.0.4
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -5400,7 +5405,7 @@ snapshots:
binary-extensions@2.3.0: {}
- birpc@0.2.19: {}
+ birpc@2.5.0: {}
bl@4.1.0:
dependencies:
@@ -5467,10 +5472,10 @@ snapshots:
call-bind@1.0.7:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
set-function-length: 1.2.2
call-bound@1.0.4:
@@ -5493,7 +5498,7 @@ snapshots:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.3
+ loupe: 3.1.4
pathval: 2.0.0
chalk@4.1.2:
@@ -5521,10 +5526,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chromedriver@135.0.1:
+ chromedriver@138.0.5:
dependencies:
'@testim/chrome-version': 1.1.4
- axios: 1.8.3(debug@4.4.0)
+ axios: 1.8.3
compare-versions: 6.1.1
extract-zip: 2.0.1(supports-color@8.1.1)
proxy-agent: 6.4.0
@@ -5552,6 +5557,12 @@ snapshots:
cli-spinners@2.9.2: {}
+ cli-table3@0.6.1:
+ dependencies:
+ string-width: 4.2.3
+ optionalDependencies:
+ colors: 1.4.0
+
cli-table3@0.6.5:
dependencies:
string-width: 4.2.3
@@ -5584,13 +5595,16 @@ snapshots:
colorette@2.0.20: {}
+ colors@1.4.0:
+ optional: true
+
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
commander@10.0.1: {}
- commander@13.1.0: {}
+ commander@14.0.0: {}
commander@6.2.1: {}
@@ -5646,9 +5660,9 @@ snapshots:
csstype@3.1.3: {}
- cypress@14.3.0:
+ cypress@14.5.3:
dependencies:
- '@cypress/request': 3.0.8
+ '@cypress/request': 3.0.9
'@cypress/xvfb': 1.2.4(supports-color@8.1.1)
'@types/sinonjs__fake-timers': 8.1.1
'@types/sizzle': 2.3.8
@@ -5661,11 +5675,11 @@ snapshots:
check-more-types: 2.24.0
ci-info: 4.1.0
cli-cursor: 3.1.0
- cli-table3: 0.6.5
+ cli-table3: 0.6.1
commander: 6.2.1
common-tags: 1.8.2
dayjs: 1.11.13
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
enquirer: 2.4.1
eventemitter2: 6.4.7
execa: 4.1.0
@@ -5674,6 +5688,7 @@ snapshots:
figures: 3.2.0
fs-extra: 9.1.0
getos: 3.2.1
+ hasha: 5.2.2
is-installed-globally: 0.4.0
lazy-ass: 1.6.0
listr2: 3.14.0(enquirer@2.4.1)
@@ -5725,7 +5740,7 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
- debug@4.4.0(supports-color@8.1.1):
+ debug@4.4.1(supports-color@8.1.1):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -5735,8 +5750,6 @@ snapshots:
decamelize@6.0.0: {}
- decimal.js@10.4.3: {}
-
decimal.js@10.5.0: {}
deep-eql@4.0.1:
@@ -5750,7 +5763,7 @@ snapshots:
array-buffer-byte-length: 1.0.1
call-bind: 1.0.7
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
is-arguments: 1.1.1
is-array-buffer: 3.0.4
is-date-object: 1.0.5
@@ -5761,7 +5774,7 @@ snapshots:
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.3
- side-channel: 1.0.6
+ side-channel: 1.1.0
which-boxed-primitive: 1.0.2
which-collection: 1.0.2
which-typed-array: 1.1.15
@@ -5781,9 +5794,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- gopd: 1.0.1
+ gopd: 1.2.0
define-lazy-prop@2.0.0: {}
@@ -5868,11 +5881,7 @@ snapshots:
environment@1.1.0: {}
- error-stack-parser-es@0.1.5: {}
-
- es-define-property@1.0.0:
- dependencies:
- get-intrinsic: 1.2.4
+ error-stack-parser-es@1.0.5: {}
es-define-property@1.0.1: {}
@@ -5881,8 +5890,8 @@ snapshots:
es-get-iterator@1.1.3:
dependencies:
call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
is-arguments: 1.1.1
is-map: 2.0.3
is-set: 2.0.3
@@ -5890,12 +5899,19 @@ snapshots:
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- es-module-lexer@1.6.0: {}
+ es-module-lexer@1.7.0: {}
es-object-atoms@1.1.1:
dependencies:
es-errors: 1.3.0
+ es-set-tostringtag@2.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+
esbuild-android-64@0.15.18:
optional: true
@@ -6056,7 +6072,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
esutils@2.0.3: {}
@@ -6098,25 +6114,13 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
- execa@9.5.1:
+ execa@9.6.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.6
figures: 6.1.0
get-stream: 9.0.1
- human-signals: 8.0.0
+ human-signals: 8.0.1
is-plain-obj: 4.1.0
is-stream: 4.0.1
npm-run-path: 6.0.0
@@ -6129,13 +6133,13 @@ snapshots:
dependencies:
pify: 2.3.0
- expect-type@1.2.0: {}
+ expect-type@1.2.1: {}
extend@3.0.2: {}
extract-zip@2.0.1(supports-color@8.1.1):
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -6151,9 +6155,9 @@ snapshots:
dependencies:
pend: 1.2.0
- fdir@6.4.3(picomatch@4.0.2):
+ fdir@6.4.6(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
+ picomatch: 4.0.3
fetch-blob@3.2.0:
dependencies:
@@ -6183,9 +6187,9 @@ snapshots:
flat@5.0.2: {}
- follow-redirects@1.15.9(debug@4.4.0):
+ follow-redirects@1.15.9(debug@4.4.1):
optionalDependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
for-each@0.3.3:
dependencies:
@@ -6198,10 +6202,12 @@ snapshots:
forever-agent@0.6.1: {}
- form-data@4.0.1:
+ form-data@4.0.4:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
formdata-polyfill@4.0.10:
@@ -6258,14 +6264,6 @@ snapshots:
get-func-name@2.0.2: {}
- get-intrinsic@1.2.4:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- hasown: 2.0.2
-
get-intrinsic@1.3.0:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -6292,8 +6290,6 @@ snapshots:
get-stream@6.0.1: {}
- get-stream@8.0.1: {}
-
get-stream@9.0.1:
dependencies:
'@sec-ant/readable-stream': 0.4.1
@@ -6303,7 +6299,7 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
@@ -6352,10 +6348,6 @@ snapshots:
globals@11.12.0: {}
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.4
-
gopd@1.2.0: {}
graceful-fs@4.2.11: {}
@@ -6366,17 +6358,18 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
-
- has-proto@1.0.3: {}
-
- has-symbols@1.0.3: {}
+ es-define-property: 1.0.1
has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
+
+ hasha@5.2.2:
+ dependencies:
+ is-stream: 2.0.1
+ type-fest: 0.8.1
hasown@2.0.2:
dependencies:
@@ -6390,12 +6383,10 @@ snapshots:
dependencies:
whatwg-encoding: 3.1.1
- html-tags@3.3.1: {}
-
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -6408,7 +6399,7 @@ snapshots:
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -6416,9 +6407,7 @@ snapshots:
human-signals@2.1.0: {}
- human-signals@5.0.0: {}
-
- human-signals@8.0.0: {}
+ human-signals@8.0.1: {}
husky@9.1.7: {}
@@ -6464,7 +6453,7 @@ snapshots:
is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
is-bigint@1.0.4:
dependencies:
@@ -6543,8 +6532,6 @@ snapshots:
is-stream@2.0.1: {}
- is-stream@3.0.0: {}
-
is-stream@4.0.1: {}
is-string@1.0.7:
@@ -6553,7 +6540,7 @@ snapshots:
is-symbol@1.0.4:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
is-typedarray@1.0.0: {}
@@ -6568,7 +6555,7 @@ snapshots:
is-weakset@2.0.3:
dependencies:
call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
is-what@4.1.16: {}
@@ -6629,6 +6616,8 @@ snapshots:
js-tokens@4.0.0: {}
+ js-tokens@9.0.1: {}
+
js-yaml@4.1.0:
dependencies:
argparse: 2.0.1
@@ -6641,8 +6630,8 @@ snapshots:
dependencies:
cssstyle: 4.2.1
data-urls: 5.0.0
- decimal.js: 10.4.3
- form-data: 4.0.1
+ decimal.js: 10.5.0
+ form-data: 4.0.4
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
@@ -6657,7 +6646,7 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
+ whatwg-url: 14.2.0
ws: 8.18.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
@@ -6740,18 +6729,18 @@ snapshots:
lilconfig@3.1.3: {}
- lint-staged@15.5.1:
+ lint-staged@16.1.4:
dependencies:
chalk: 5.4.1
- commander: 13.1.0
- debug: 4.4.0(supports-color@8.1.1)
- execa: 8.0.1
+ commander: 14.0.0
+ debug: 4.4.1(supports-color@8.1.1)
lilconfig: 3.1.3
- listr2: 8.2.5
+ listr2: 9.0.1
micromatch: 4.0.8
+ nano-spawn: 1.0.2
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.7.0
+ yaml: 2.8.0
transitivePeerDependencies:
- supports-color
@@ -6768,7 +6757,7 @@ snapshots:
optionalDependencies:
enquirer: 2.4.1
- listr2@8.2.5:
+ listr2@9.0.1:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -6829,7 +6818,7 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- loupe@3.1.3: {}
+ loupe@3.1.4: {}
lru-cache@10.4.3: {}
@@ -6872,8 +6861,6 @@ snapshots:
mimic-fn@2.1.0: {}
- mimic-fn@4.0.0: {}
-
mimic-function@5.0.1: {}
minimatch@3.1.2:
@@ -6931,7 +6918,7 @@ snapshots:
moment@2.30.1: {}
- mrmime@2.0.0: {}
+ mrmime@2.0.1: {}
ms@2.1.2: {}
@@ -6939,9 +6926,11 @@ snapshots:
muggle-string@0.4.1: {}
+ nano-spawn@1.0.2: {}
+
nanoid@3.3.11: {}
- nanoid@5.0.9: {}
+ nanoid@5.1.5: {}
netmask@2.0.2: {}
@@ -6949,7 +6938,7 @@ snapshots:
dependencies:
axe-core: 4.10.0
- nightwatch@3.12.1(chromedriver@135.0.1)(geckodriver@5.0.0):
+ nightwatch@3.12.2(chromedriver@138.0.5)(geckodriver@5.0.0):
dependencies:
'@nightwatch/chai': 5.0.3
'@nightwatch/html-reporter-template': 0.3.0
@@ -6986,7 +6975,7 @@ snapshots:
untildify: 4.0.0
uuid: 8.3.2
optionalDependencies:
- chromedriver: 135.0.1
+ chromedriver: 138.0.5
geckodriver: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -7020,12 +7009,12 @@ snapshots:
npm-normalize-package-bin@4.0.0: {}
- npm-run-all2@7.0.2:
+ npm-run-all2@8.0.4:
dependencies:
ansi-styles: 6.2.1
cross-spawn: 7.0.6
memorystream: 0.3.1
- minimatch: 9.0.5
+ picomatch: 4.0.3
pidtree: 0.6.0
read-package-json-fast: 4.0.0
shell-quote: 1.8.1
@@ -7035,10 +7024,6 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.3.0:
- dependencies:
- path-key: 4.0.0
-
npm-run-path@6.0.0:
dependencies:
path-key: 4.0.0
@@ -7046,8 +7031,6 @@ snapshots:
nwsapi@2.2.16: {}
- object-inspect@1.13.2: {}
-
object-inspect@1.13.4: {}
object-is@1.1.6:
@@ -7061,9 +7044,11 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
object-keys: 1.1.1
+ ohash@2.0.11: {}
+
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -7072,20 +7057,16 @@ snapshots:
dependencies:
mimic-fn: 2.1.0
- onetime@6.0.0:
- dependencies:
- mimic-fn: 4.0.0
-
onetime@7.0.0:
dependencies:
mimic-function: 5.0.1
- open@10.1.0:
+ open@10.2.0:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
- is-wsl: 3.1.0
+ wsl-utils: 0.1.0
open@8.4.2:
dependencies:
@@ -7123,7 +7104,7 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
@@ -7186,40 +7167,40 @@ snapshots:
picomatch@2.3.1: {}
- picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
pidtree@0.6.0: {}
pify@2.3.0: {}
- pinia@3.0.2(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)):
+ pinia@3.0.3(typescript@5.9.2)(vue@3.5.18(typescript@5.9.2)):
dependencies:
'@vue/devtools-api': 7.7.2
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.18(typescript@5.9.2)
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.2
piscina@4.7.0:
optionalDependencies:
'@napi-rs/nice': 1.0.1
- playwright-core@1.51.1: {}
+ playwright-core@1.54.2: {}
- playwright@1.51.1:
+ playwright@1.54.2:
dependencies:
- playwright-core: 1.51.1
+ playwright-core: 1.54.2
optionalDependencies:
fsevents: 2.3.2
possible-typed-array-names@1.0.0: {}
- postcss@8.5.3:
+ postcss@8.5.6:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- prettier@3.5.3: {}
+ prettier@3.6.2: {}
pretty-bytes@5.6.0: {}
@@ -7236,7 +7217,7 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
lru-cache: 7.18.3
@@ -7331,36 +7312,37 @@ snapshots:
rfdc@1.4.1: {}
- rolldown@1.0.0-beta.7(typescript@5.8.2):
+ rolldown@1.0.0-beta.30:
dependencies:
- '@oxc-project/types': 0.61.2
- '@valibot/to-json-schema': 1.0.0(valibot@1.0.0(typescript@5.8.2))
- valibot: 1.0.0(typescript@5.8.2)
+ '@oxc-project/runtime': 0.78.0
+ '@oxc-project/types': 0.78.0
+ '@rolldown/pluginutils': 1.0.0-beta.30
+ ansis: 4.1.0
optionalDependencies:
- '@rolldown/binding-darwin-arm64': 1.0.0-beta.7
- '@rolldown/binding-darwin-x64': 1.0.0-beta.7
- '@rolldown/binding-freebsd-x64': 1.0.0-beta.7
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.7
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.7
- '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.7
- '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.7
- '@rolldown/binding-linux-x64-musl': 1.0.0-beta.7
- '@rolldown/binding-wasm32-wasi': 1.0.0-beta.7
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.7
- '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.7
- '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.7
- transitivePeerDependencies:
- - typescript
-
- rollup-plugin-license@3.6.0(picomatch@4.0.2)(rollup@4.37.0):
+ '@rolldown/binding-android-arm64': 1.0.0-beta.30
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.30
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.30
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.30
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.30
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.30
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.30
+ '@rolldown/binding-linux-arm64-ohos': 1.0.0-beta.30
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.30
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.30
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.30
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.30
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.30
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.30
+
+ rollup-plugin-license@3.6.0(picomatch@4.0.3)(rollup@4.44.0):
dependencies:
commenting: 1.1.0
- fdir: 6.4.3(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.3)
lodash: 4.17.21
magic-string: 0.30.17
moment: 2.30.1
package-name-regex: 2.0.6
- rollup: 4.37.0
+ rollup: 4.44.0
spdx-expression-validate: 2.0.0
spdx-satisfies: 5.0.1
transitivePeerDependencies:
@@ -7370,30 +7352,30 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.37.0:
+ rollup@4.44.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.37.0
- '@rollup/rollup-android-arm64': 4.37.0
- '@rollup/rollup-darwin-arm64': 4.37.0
- '@rollup/rollup-darwin-x64': 4.37.0
- '@rollup/rollup-freebsd-arm64': 4.37.0
- '@rollup/rollup-freebsd-x64': 4.37.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.37.0
- '@rollup/rollup-linux-arm-musleabihf': 4.37.0
- '@rollup/rollup-linux-arm64-gnu': 4.37.0
- '@rollup/rollup-linux-arm64-musl': 4.37.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.37.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.37.0
- '@rollup/rollup-linux-riscv64-gnu': 4.37.0
- '@rollup/rollup-linux-riscv64-musl': 4.37.0
- '@rollup/rollup-linux-s390x-gnu': 4.37.0
- '@rollup/rollup-linux-x64-gnu': 4.37.0
- '@rollup/rollup-linux-x64-musl': 4.37.0
- '@rollup/rollup-win32-arm64-msvc': 4.37.0
- '@rollup/rollup-win32-ia32-msvc': 4.37.0
- '@rollup/rollup-win32-x64-msvc': 4.37.0
+ '@rollup/rollup-android-arm-eabi': 4.44.0
+ '@rollup/rollup-android-arm64': 4.44.0
+ '@rollup/rollup-darwin-arm64': 4.44.0
+ '@rollup/rollup-darwin-x64': 4.44.0
+ '@rollup/rollup-freebsd-arm64': 4.44.0
+ '@rollup/rollup-freebsd-x64': 4.44.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.44.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.44.0
+ '@rollup/rollup-linux-arm64-gnu': 4.44.0
+ '@rollup/rollup-linux-arm64-musl': 4.44.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.44.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.44.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.44.0
+ '@rollup/rollup-linux-riscv64-musl': 4.44.0
+ '@rollup/rollup-linux-s390x-gnu': 4.44.0
+ '@rollup/rollup-linux-x64-gnu': 4.44.0
+ '@rollup/rollup-linux-x64-musl': 4.44.0
+ '@rollup/rollup-win32-arm64-msvc': 4.44.0
+ '@rollup/rollup-win32-ia32-msvc': 4.44.0
+ '@rollup/rollup-win32-x64-msvc': 4.44.0
fsevents: 2.3.3
rrweb-cssom@0.7.1: {}
@@ -7443,8 +7425,8 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
- gopd: 1.0.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -7484,13 +7466,6 @@ snapshots:
object-inspect: 1.13.4
side-channel-map: 1.0.1
- side-channel@1.0.6:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- object-inspect: 1.13.2
-
side-channel@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -7514,10 +7489,10 @@ snapshots:
nise: 5.1.9
supports-color: 7.2.0
- sirv@3.0.0:
+ sirv@3.0.1:
dependencies:
- '@polka/url': 1.0.0-next.28
- mrmime: 2.0.0
+ '@polka/url': 1.0.0-next.29
+ mrmime: 2.0.1
totalist: 3.0.1
sisteransi@1.0.5: {}
@@ -7549,7 +7524,7 @@ snapshots:
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -7617,20 +7592,20 @@ snapshots:
dependencies:
type-fest: 0.7.1
- start-server-and-test@2.0.11:
+ start-server-and-test@2.0.13:
dependencies:
arg: 5.0.2
bluebird: 3.7.2
check-more-types: 2.24.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.4.1(supports-color@8.1.1)
execa: 5.1.1
lazy-ass: 1.6.0
ps-tree: 1.2.0
- wait-on: 8.0.3(debug@4.4.0)
+ wait-on: 8.0.4(debug@4.4.1)
transitivePeerDependencies:
- supports-color
- std-env@3.8.1: {}
+ std-env@3.9.0: {}
stop-iteration-iterator@1.0.0:
dependencies:
@@ -7686,13 +7661,15 @@ snapshots:
strip-final-newline@2.0.0: {}
- strip-final-newline@3.0.0: {}
-
strip-final-newline@4.0.0: {}
strip-json-comments@3.1.1: {}
- superjson@2.2.1:
+ strip-literal@3.0.0:
+ dependencies:
+ js-tokens: 9.0.1
+
+ superjson@2.2.2:
dependencies:
copy-anything: 3.0.5
@@ -7704,8 +7681,6 @@ snapshots:
dependencies:
has-flag: 4.0.0
- svg-tags@1.0.0: {}
-
symbol-tree@3.2.4: {}
tar-fs@3.0.6:
@@ -7749,11 +7724,16 @@ snapshots:
tinyexec@0.3.2: {}
- tinypool@1.0.2: {}
+ tinyglobby@0.2.14:
+ dependencies:
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+
+ tinypool@1.1.1: {}
tinyrainbow@2.0.0: {}
- tinyspy@3.0.2: {}
+ tinyspy@4.0.3: {}
tldts-core@6.1.50: {}
@@ -7776,39 +7756,31 @@ snapshots:
universalify: 0.2.0
url-parse: 1.5.10
- tough-cookie@5.0.0:
- dependencies:
- tldts: 6.1.50
-
tough-cookie@5.1.2:
dependencies:
tldts: 6.1.50
- tr46@5.0.0:
- dependencies:
- punycode: 2.3.1
-
tr46@5.1.0:
dependencies:
punycode: 2.3.1
tree-kill@1.2.2: {}
- ts-node@10.9.2(@types/node@22.14.1)(typescript@5.8.2):
+ ts-node@10.9.2(@types/node@22.17.0)(typescript@5.9.2):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
acorn: 8.12.1
acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.8.2
+ typescript: 5.9.2
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
@@ -7830,7 +7802,9 @@ snapshots:
type-fest@0.7.1: {}
- typescript@5.8.2: {}
+ type-fest@0.8.1: {}
+
+ typescript@5.9.2: {}
undici-types@6.21.0: {}
@@ -7840,6 +7814,11 @@ snapshots:
universalify@2.0.1: {}
+ unplugin-utils@0.2.4:
+ dependencies:
+ pathe: 2.0.3
+ picomatch: 4.0.3
+
untildify@4.0.0: {}
update-browserslist-db@1.1.1(browserslist@4.24.0):
@@ -7859,27 +7838,29 @@ snapshots:
v8-compile-cache-lib@3.0.1: {}
- valibot@1.0.0(typescript@5.8.2):
- optionalDependencies:
- typescript: 5.8.2
-
verror@1.10.0:
dependencies:
assert-plus: 1.0.0
core-util-is: 1.0.2
extsprintf: 1.3.0
- vite-hot-client@0.2.4(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0)):
+ vite-dev-rpc@1.1.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0)):
+ dependencies:
+ birpc: 2.5.0
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
+ vite-hot-client: 2.1.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))
+
+ vite-hot-client@2.1.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0)):
dependencies:
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
- vite-node@3.1.1(@types/node@22.14.1)(yaml@2.7.0):
+ vite-node@3.2.4(@types/node@22.17.0)(yaml@2.8.0):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@8.1.1)
- es-module-lexer: 1.6.0
+ debug: 4.4.1(supports-color@8.1.1)
+ es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -7894,20 +7875,19 @@ snapshots:
- tsx
- yaml
- vite-plugin-inspect@0.8.9(rollup@4.37.0)(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0)):
+ vite-plugin-inspect@11.3.2(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0)):
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.3(rollup@4.37.0)
- debug: 4.4.0(supports-color@8.1.1)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.2.0
- open: 10.1.0
+ ansis: 4.1.0
+ debug: 4.4.1(supports-color@8.1.1)
+ error-stack-parser-es: 1.0.5
+ ohash: 2.0.11
+ open: 10.2.0
perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.0
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ sirv: 3.0.1
+ unplugin-utils: 0.2.4
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
+ vite-dev-rpc: 1.1.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))
transitivePeerDependencies:
- - rollup
- supports-color
vite-plugin-nightwatch@0.4.6:
@@ -7924,80 +7904,85 @@ snapshots:
- supports-color
- utf-8-validate
- vite-plugin-vue-devtools@7.7.2(rollup@4.37.0)(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2)):
+ vite-plugin-vue-devtools@8.0.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2)):
dependencies:
- '@vue/devtools-core': 7.7.2(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.2))
- '@vue/devtools-kit': 7.7.2
- '@vue/devtools-shared': 7.7.2
- execa: 9.5.1
- sirv: 3.0.0
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(rollup@4.37.0)(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))
+ '@vue/devtools-core': 8.0.0(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))(vue@3.5.18(typescript@5.9.2))
+ '@vue/devtools-kit': 8.0.0
+ '@vue/devtools-shared': 8.0.0
+ execa: 9.6.0
+ sirv: 3.0.1
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
+ vite-plugin-inspect: 11.3.2(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))
+ vite-plugin-vue-inspector: 5.3.2(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))
transitivePeerDependencies:
- '@nuxt/kit'
- - rollup
- supports-color
- vue
- vite-plugin-vue-inspector@5.3.1(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0)):
+ vite-plugin-vue-inspector@5.3.2(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0)):
dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.10)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.10)
- '@vue/compiler-dom': 3.5.13
+ '@babel/core': 7.27.7
+ '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.27.7)
+ '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.27.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.7)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.7)
+ '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.27.7)
+ '@vue/compiler-dom': 3.5.18
kolorist: 1.8.0
magic-string: 0.30.17
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
- vite@4.5.10(@types/node@22.14.1):
+ vite@4.5.14(@types/node@22.17.0):
dependencies:
esbuild: 0.18.20
- postcss: 8.5.3
+ postcss: 8.5.6
rollup: 3.29.5
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
fsevents: 2.3.3
- vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0):
+ vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0):
dependencies:
esbuild: 0.25.1
- postcss: 8.5.3
- rollup: 4.37.0
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.44.0
+ tinyglobby: 0.2.14
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
fsevents: 2.3.3
- yaml: 2.7.0
-
- vitest@3.1.1(@types/node@22.14.1)(jsdom@26.1.0)(yaml@2.7.0):
- dependencies:
- '@vitest/expect': 3.1.1
- '@vitest/mocker': 3.1.1(vite@6.2.4(@types/node@22.14.1)(yaml@2.7.0))
- '@vitest/pretty-format': 3.1.1
- '@vitest/runner': 3.1.1
- '@vitest/snapshot': 3.1.1
- '@vitest/spy': 3.1.1
- '@vitest/utils': 3.1.1
+ yaml: 2.8.0
+
+ vitest@3.2.4(@types/node@22.17.0)(jsdom@26.1.0)(yaml@2.8.0):
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(vite@7.0.6(@types/node@22.17.0)(yaml@2.8.0))
+ '@vitest/pretty-format': 3.2.4
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
chai: 5.2.0
- debug: 4.4.0(supports-color@8.1.1)
- expect-type: 1.2.0
+ debug: 4.4.1(supports-color@8.1.1)
+ expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
- std-env: 3.8.1
+ picomatch: 4.0.3
+ std-env: 3.9.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinypool: 1.0.2
+ tinyglobby: 0.2.14
+ tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.2.4(@types/node@22.14.1)(yaml@2.7.0)
- vite-node: 3.1.1(@types/node@22.14.1)(yaml@2.7.0)
+ vite: 7.0.6(@types/node@22.17.0)(yaml@2.8.0)
+ vite-node: 3.2.4(@types/node@22.17.0)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 22.17.0
jsdom: 26.1.0
transitivePeerDependencies:
- jiti
@@ -8017,34 +8002,34 @@ snapshots:
vue-component-type-helpers@2.1.6: {}
- vue-router@4.5.0(vue@3.5.13(typescript@5.8.2)):
+ vue-router@4.5.1(vue@3.5.18(typescript@5.9.2)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.8.2)
+ vue: 3.5.18(typescript@5.9.2)
- vue-tsc@2.2.8(typescript@5.8.2):
+ vue-tsc@3.0.5(typescript@5.9.2):
dependencies:
- '@volar/typescript': 2.4.11
- '@vue/language-core': 2.2.8(typescript@5.8.2)
- typescript: 5.8.2
+ '@volar/typescript': 2.4.22
+ '@vue/language-core': 3.0.5(typescript@5.9.2)
+ typescript: 5.9.2
- vue@3.5.13(typescript@5.8.2):
+ vue@3.5.18(typescript@5.9.2):
dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-sfc': 3.5.13
- '@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.8.2))
- '@vue/shared': 3.5.13
+ '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-sfc': 3.5.18
+ '@vue/runtime-dom': 3.5.18
+ '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.2))
+ '@vue/shared': 3.5.18
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.9.2
w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
- wait-on@8.0.3(debug@4.4.0):
+ wait-on@8.0.4(debug@4.4.1):
dependencies:
- axios: 1.8.3(debug@4.4.0)
+ axios: 1.11.0(debug@4.4.1)
joi: 17.13.3
lodash: 4.17.21
minimist: 1.2.8
@@ -8066,11 +8051,6 @@ snapshots:
whatwg-mimetype@4.0.0: {}
- whatwg-url@14.1.0:
- dependencies:
- tr46: 5.0.0
- webidl-conversions: 7.0.0
-
whatwg-url@14.2.0:
dependencies:
tr46: 5.1.0
@@ -8096,7 +8076,7 @@ snapshots:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.0.1
+ gopd: 1.2.0
has-tostringtag: 1.0.2
which@2.0.2:
@@ -8146,6 +8126,10 @@ snapshots:
ws@8.18.0: {}
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.0
+
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
@@ -8156,7 +8140,7 @@ snapshots:
yallist@4.0.0: {}
- yaml@2.7.0: {}
+ yaml@2.8.0: {}
yargs-parser@20.2.4: {}
@@ -8194,4 +8178,4 @@ snapshots:
compress-commons: 4.1.2
readable-stream: 3.6.2
- zx@8.5.2: {}
+ zx@8.7.2: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 735dbd81e..7c06994df 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,4 +1,8 @@
packages:
- - 'template/base'
- - 'template/config/**'
- - 'template/tsconfig/**'
+ - template/base
+ - template/config/**
+ - template/tsconfig/**
+
+ignoredBuiltDependencies:
+ - chromedriver
+ - cypress
diff --git a/rolldown.config.ts b/rolldown.config.ts
index bdb523e4f..ed1c51cbf 100644
--- a/rolldown.config.ts
+++ b/rolldown.config.ts
@@ -203,8 +203,11 @@ export default defineConfig({
{
name: '@vue/create-eslint-config fix',
- async transform(code, id) {
- if (/@vue.create-eslint-config.renderEjsFile\.js$/.test(id)) {
+ transform: {
+ filter: {
+ id: /@vue.create-eslint-config.renderEjsFile\.js$/,
+ },
+ handler(_code, id) {
const pkgDir = path.dirname(id)
const templatesDir = path.resolve(pkgDir, './templates')
@@ -223,7 +226,7 @@ export default defineConfig({
return ejs.render(templates[filePath], data, {})
}
`
- }
+ },
},
},
],
diff --git a/scripts/postversion.mjs b/scripts/postversion.mjs
index 4d569fb01..3e0996796 100644
--- a/scripts/postversion.mjs
+++ b/scripts/postversion.mjs
@@ -12,6 +12,7 @@ const playgroundDir = path.resolve(__dirname, '../playground/')
cd(playgroundDir)
await $`pnpm install`
+await $`pnpm dedupe`
await $`git add -A .`
try {
await $`git commit -m "version ${version} snapshot"`
diff --git a/template/bare/base/src/App.vue b/template/bare/base/src/App.vue
index d3d95dda3..6ec9f6039 100644
--- a/template/bare/base/src/App.vue
+++ b/template/bare/base/src/App.vue
@@ -2,6 +2,10 @@
You did it!
+
+ Visit vuejs.org to read the
+ documentation
+
diff --git a/template/bare/typescript/src/App.vue b/template/bare/typescript/src/App.vue
index 9a8afec5f..abfd315f5 100644
--- a/template/bare/typescript/src/App.vue
+++ b/template/bare/typescript/src/App.vue
@@ -2,6 +2,10 @@
You did it!
+
+ Visit vuejs.org to read the
+ documentation
+
diff --git a/template/base/package.json b/template/base/package.json
index f07f63c77..9ff518c6c 100644
--- a/template/base/package.json
+++ b/template/base/package.json
@@ -1,17 +1,20 @@
{
"private": true,
"type": "module",
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.5.13"
+ "vue": "^3.5.18"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.2.3",
- "vite": "^6.2.4",
- "vite-plugin-vue-devtools": "^7.7.2"
+ "@vitejs/plugin-vue": "^6.0.1",
+ "vite": "^7.0.6",
+ "vite-plugin-vue-devtools": "^8.0.0"
}
}
diff --git a/template/config/cypress-ct/package.json b/template/config/cypress-ct/package.json
index 98ce66a1b..7fea98021 100644
--- a/template/config/cypress-ct/package.json
+++ b/template/config/cypress-ct/package.json
@@ -4,9 +4,9 @@
"test:unit:dev": "cypress open --component"
},
"dependencies": {
- "vue": "^3.5.13"
+ "vue": "^3.5.18"
},
"devDependencies": {
- "cypress": "^14.3.0"
+ "cypress": "^14.5.3"
}
}
diff --git a/template/config/cypress/package.json b/template/config/cypress/package.json
index d79a51dba..16cf349a0 100644
--- a/template/config/cypress/package.json
+++ b/template/config/cypress/package.json
@@ -5,7 +5,7 @@
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"devDependencies": {
- "cypress": "^14.3.0",
- "start-server-and-test": "^2.0.11"
+ "cypress": "^14.5.3",
+ "start-server-and-test": "^2.0.13"
}
}
diff --git a/template/config/jsx/package.json b/template/config/jsx/package.json
index f70327806..e01a57cf3 100644
--- a/template/config/jsx/package.json
+++ b/template/config/jsx/package.json
@@ -1,9 +1,9 @@
{
"dependencies": {
- "vue": "^3.5.13"
+ "vue": "^3.5.18"
},
"devDependencies": {
- "@vitejs/plugin-vue-jsx": "^4.1.2",
- "vite": "^6.2.4"
+ "@vitejs/plugin-vue-jsx": "^5.0.1",
+ "vite": "^7.0.6"
}
}
diff --git a/template/config/nightwatch-ct/package.json b/template/config/nightwatch-ct/package.json
index d08112189..2f2393d27 100644
--- a/template/config/nightwatch-ct/package.json
+++ b/template/config/nightwatch-ct/package.json
@@ -3,7 +3,7 @@
"test:unit": "nightwatch src/**/__tests__/*"
},
"dependencies": {
- "vue": "^3.5.13"
+ "vue": "^3.5.18"
},
"devDependencies": {
"@vue/test-utils": "^2.4.6"
diff --git a/template/config/nightwatch/package.json b/template/config/nightwatch/package.json
index c70b351d4..4aad1816c 100644
--- a/template/config/nightwatch/package.json
+++ b/template/config/nightwatch/package.json
@@ -4,12 +4,12 @@
},
"devDependencies": {
"@nightwatch/vue": "^3.1.2",
- "@vitejs/plugin-vue": "^5.2.3",
- "chromedriver": "^135.0.1",
+ "@vitejs/plugin-vue": "^6.0.1",
+ "chromedriver": "^138.0.5",
"geckodriver": "^5.0.0",
- "nightwatch": "^3.12.1",
+ "nightwatch": "^3.12.2",
"ts-node": "^10.9.2",
- "vite": "^6.2.4",
+ "vite": "^7.0.6",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/template/config/pinia/package.json b/template/config/pinia/package.json
index 56dbf2d80..1790bfd75 100644
--- a/template/config/pinia/package.json
+++ b/template/config/pinia/package.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "pinia": "^3.0.2",
- "vue": "^3.5.13"
+ "pinia": "^3.0.3",
+ "vue": "^3.5.18"
}
}
diff --git a/template/config/playwright/package.json b/template/config/playwright/package.json
index 624d4abe2..e93b5aed9 100644
--- a/template/config/playwright/package.json
+++ b/template/config/playwright/package.json
@@ -3,6 +3,6 @@
"test:e2e": "playwright test"
},
"devDependencies": {
- "@playwright/test": "^1.51.1"
+ "@playwright/test": "^1.54.2"
}
}
diff --git a/template/config/prettier/package.json b/template/config/prettier/package.json
index 4fe1c6079..4eb2730fb 100644
--- a/template/config/prettier/package.json
+++ b/template/config/prettier/package.json
@@ -3,6 +3,6 @@
"format": "prettier --write src/"
},
"devDependencies": {
- "prettier": "3.5.3"
+ "prettier": "3.6.2"
}
}
diff --git a/template/config/router/package.json b/template/config/router/package.json
index 1ac18f639..a63153758 100644
--- a/template/config/router/package.json
+++ b/template/config/router/package.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "vue": "^3.5.13",
- "vue-router": "^4.5.0"
+ "vue": "^3.5.18",
+ "vue-router": "^4.5.1"
}
}
diff --git a/template/config/typescript/package.json b/template/config/typescript/package.json
index b38bf6b56..92346bace 100644
--- a/template/config/typescript/package.json
+++ b/template/config/typescript/package.json
@@ -5,9 +5,9 @@
"type-check": "vue-tsc --build"
},
"devDependencies": {
- "@types/node": "^22.14.1",
- "npm-run-all2": "^7.0.2",
- "typescript": "~5.8.0",
- "vue-tsc": "^2.2.8"
+ "@types/node": "^22.17.0",
+ "npm-run-all2": "^8.0.4",
+ "typescript": "~5.9.0",
+ "vue-tsc": "^3.0.5"
}
}
diff --git a/template/config/vitest/package.json b/template/config/vitest/package.json
index 814d6362e..543125f82 100644
--- a/template/config/vitest/package.json
+++ b/template/config/vitest/package.json
@@ -3,11 +3,11 @@
"test:unit": "vitest"
},
"dependencies": {
- "vue": "^3.5.13"
+ "vue": "^3.5.18"
},
"devDependencies": {
"@vue/test-utils": "^2.4.6",
"jsdom": "^26.1.0",
- "vitest": "^3.1.1"
+ "vitest": "^3.2.4"
}
}
diff --git a/template/eslint/package.json b/template/eslint/package.json
index 7e2650322..974409c3a 100644
--- a/template/eslint/package.json
+++ b/template/eslint/package.json
@@ -1,7 +1,7 @@
{
"devDependencies": {
- "@vitest/eslint-plugin": "^1.1.42",
- "eslint-plugin-cypress": "^4.2.1",
- "eslint-plugin-playwright": "^2.2.0"
+ "@vitest/eslint-plugin": "^1.3.4",
+ "eslint-plugin-cypress": "^5.1.0",
+ "eslint-plugin-playwright": "^2.2.2"
}
}
diff --git a/template/tsconfig/base/package.json b/template/tsconfig/base/package.json
index 851d20107..902cd27a3 100644
--- a/template/tsconfig/base/package.json
+++ b/template/tsconfig/base/package.json
@@ -1,6 +1,6 @@
{
"devDependencies": {
- "@tsconfig/node22": "^22.0.1",
+ "@tsconfig/node22": "^22.0.2",
"@vue/tsconfig": "^0.7.0"
}
}
diff --git a/utils/directoryTraverse.ts b/utils/directoryTraverse.ts
index 5cced6820..78446e041 100644
--- a/utils/directoryTraverse.ts
+++ b/utils/directoryTraverse.ts
@@ -19,9 +19,14 @@ export function preOrderDirectoryTraverse(dir, dirCallback, fileCallback) {
}
}
+export const dotGitDirectoryState = {
+ hasDotGitDirectory: false,
+}
+
export function postOrderDirectoryTraverse(dir, dirCallback, fileCallback) {
for (const filename of fs.readdirSync(dir)) {
if (filename === '.git') {
+ dotGitDirectoryState.hasDotGitDirectory = true
continue
}
const fullpath = path.resolve(dir, filename)
diff --git a/utils/generateReadme.ts b/utils/generateReadme.ts
index b5b50f765..c91f35705 100644
--- a/utils/generateReadme.ts
+++ b/utils/generateReadme.ts
@@ -29,7 +29,16 @@ This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
-[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
+[VS Code](https://code.visualstudio.com/) + [Vue (Official)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
+
+## Recommended Browser Setup
+
+- Chromium-based browsers (Chrome, Edge, Brave, etc.):
+ - [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd)
+ - [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters)
+- Firefox:
+ - [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/)
+ - [Turn on Custom Object Formatter in Firefox DevTools](https://fxdx.dev/firefox-devtools-custom-object-formatters/)
${needsTypeScript ? sfcTypeSupportDoc : ''}
## Customize configuration
diff --git a/utils/getLanguage.ts b/utils/getLanguage.ts
index 5b60fe386..5d81d2a00 100644
--- a/utils/getLanguage.ts
+++ b/utils/getLanguage.ts
@@ -37,7 +37,11 @@ interface Language {
[key: string]: { title: string; desc?: string; hintOnComponentTesting?: string }
}
}
+ needsExperimental: LanguageItem
+ needsExperimentalFeatures: LanguageItem
needsOxlint: LanguageItem
+ needsRolldownVite: LanguageItem
+ needsBareboneTemplates: LanguageItem
errors: {
operationCancelled: string
}
diff --git a/utils/renderEslint.ts b/utils/renderEslint.ts
index dc85b2f44..823543851 100644
--- a/utils/renderEslint.ts
+++ b/utils/renderEslint.ts
@@ -102,7 +102,7 @@ export function getAdditionalConfigs({
(needsTypeScript
? `// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n` +
`// @ts-ignore\n`
- : '') + "import pluginCypress from 'eslint-plugin-cypress/flat'",
+ : '') + "import pluginCypress from 'eslint-plugin-cypress'",
content: `
{
...pluginCypress.configs.recommended,