diff --git a/cypress/package.json b/cypress/package.json
index 5c222a13..742671f7 100644
--- a/cypress/package.json
+++ b/cypress/package.json
@@ -13,12 +13,12 @@
"test:unit:dev": "cypress open --component"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/default/package.json b/default/package.json
index bc56a041..756c36b1 100644
--- a/default/package.json
+++ b/default/package.json
@@ -9,10 +9,10 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/devtools-router-pinia/.gitignore b/devtools-router-pinia/.gitignore
new file mode 100644
index 00000000..8ee54e8d
--- /dev/null
+++ b/devtools-router-pinia/.gitignore
@@ -0,0 +1,30 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+.DS_Store
+dist
+dist-ssr
+coverage
+*.local
+
+/cypress/videos/
+/cypress/screenshots/
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
+*.tsbuildinfo
diff --git a/devtools-router-pinia/.vscode/extensions.json b/devtools-router-pinia/.vscode/extensions.json
new file mode 100644
index 00000000..a7cea0b0
--- /dev/null
+++ b/devtools-router-pinia/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["Vue.volar"]
+}
diff --git a/devtools-router-pinia/README.md b/devtools-router-pinia/README.md
new file mode 100644
index 00000000..a29edcb5
--- /dev/null
+++ b/devtools-router-pinia/README.md
@@ -0,0 +1,29 @@
+# devtools-router-pinia
+
+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).
+
+## Customize configuration
+
+See [Vite Configuration Reference](https://vitejs.dev/config/).
+
+## Project Setup
+
+```sh
+pnpm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+pnpm dev
+```
+
+### Compile and Minify for Production
+
+```sh
+pnpm build
+```
diff --git a/devtools-router-pinia/index.html b/devtools-router-pinia/index.html
new file mode 100644
index 00000000..99f583aa
--- /dev/null
+++ b/devtools-router-pinia/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Vite App
+
+
+
+
+
+
diff --git a/devtools-router-pinia/jsconfig.json b/devtools-router-pinia/jsconfig.json
new file mode 100644
index 00000000..5a1f2d22
--- /dev/null
+++ b/devtools-router-pinia/jsconfig.json
@@ -0,0 +1,8 @@
+{
+ "compilerOptions": {
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "exclude": ["node_modules", "dist"]
+}
diff --git a/devtools-router-pinia/package.json b/devtools-router-pinia/package.json
new file mode 100644
index 00000000..7c9f4c3a
--- /dev/null
+++ b/devtools-router-pinia/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "devtools-router-pinia",
+ "version": "0.0.0",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "vite build",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "pinia": "^2.1.7",
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
+ },
+ "devDependencies": {
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1",
+ "vite-plugin-vue-devtools": "^7.3.1"
+ }
+}
diff --git a/devtools-router-pinia/public/favicon.ico b/devtools-router-pinia/public/favicon.ico
new file mode 100644
index 00000000..df36fcfb
Binary files /dev/null and b/devtools-router-pinia/public/favicon.ico differ
diff --git a/devtools-router-pinia/src/App.vue b/devtools-router-pinia/src/App.vue
new file mode 100644
index 00000000..e8641950
--- /dev/null
+++ b/devtools-router-pinia/src/App.vue
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+ Home
+ About
+
+
+
+
+
+
+
+
diff --git a/devtools-router-pinia/src/assets/base.css b/devtools-router-pinia/src/assets/base.css
new file mode 100644
index 00000000..8816868a
--- /dev/null
+++ b/devtools-router-pinia/src/assets/base.css
@@ -0,0 +1,86 @@
+/* color palette from */
+:root {
+ --vt-c-white: #ffffff;
+ --vt-c-white-soft: #f8f8f8;
+ --vt-c-white-mute: #f2f2f2;
+
+ --vt-c-black: #181818;
+ --vt-c-black-soft: #222222;
+ --vt-c-black-mute: #282828;
+
+ --vt-c-indigo: #2c3e50;
+
+ --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
+ --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
+ --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
+ --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
+
+ --vt-c-text-light-1: var(--vt-c-indigo);
+ --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
+ --vt-c-text-dark-1: var(--vt-c-white);
+ --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
+}
+
+/* semantic color variables for this project */
+:root {
+ --color-background: var(--vt-c-white);
+ --color-background-soft: var(--vt-c-white-soft);
+ --color-background-mute: var(--vt-c-white-mute);
+
+ --color-border: var(--vt-c-divider-light-2);
+ --color-border-hover: var(--vt-c-divider-light-1);
+
+ --color-heading: var(--vt-c-text-light-1);
+ --color-text: var(--vt-c-text-light-1);
+
+ --section-gap: 160px;
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --color-background: var(--vt-c-black);
+ --color-background-soft: var(--vt-c-black-soft);
+ --color-background-mute: var(--vt-c-black-mute);
+
+ --color-border: var(--vt-c-divider-dark-2);
+ --color-border-hover: var(--vt-c-divider-dark-1);
+
+ --color-heading: var(--vt-c-text-dark-1);
+ --color-text: var(--vt-c-text-dark-2);
+ }
+}
+
+*,
+*::before,
+*::after {
+ box-sizing: border-box;
+ margin: 0;
+ font-weight: normal;
+}
+
+body {
+ min-height: 100vh;
+ color: var(--color-text);
+ background: var(--color-background);
+ transition:
+ color 0.5s,
+ background-color 0.5s;
+ line-height: 1.6;
+ font-family:
+ Inter,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ Roboto,
+ Oxygen,
+ Ubuntu,
+ Cantarell,
+ 'Fira Sans',
+ 'Droid Sans',
+ 'Helvetica Neue',
+ sans-serif;
+ font-size: 15px;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
diff --git a/devtools-router-pinia/src/assets/logo.svg b/devtools-router-pinia/src/assets/logo.svg
new file mode 100644
index 00000000..75656603
--- /dev/null
+++ b/devtools-router-pinia/src/assets/logo.svg
@@ -0,0 +1 @@
+
diff --git a/devtools-router-pinia/src/assets/main.css b/devtools-router-pinia/src/assets/main.css
new file mode 100644
index 00000000..36fb845b
--- /dev/null
+++ b/devtools-router-pinia/src/assets/main.css
@@ -0,0 +1,35 @@
+@import './base.css';
+
+#app {
+ max-width: 1280px;
+ margin: 0 auto;
+ padding: 2rem;
+ font-weight: normal;
+}
+
+a,
+.green {
+ text-decoration: none;
+ color: hsla(160, 100%, 37%, 1);
+ transition: 0.4s;
+ padding: 3px;
+}
+
+@media (hover: hover) {
+ a:hover {
+ background-color: hsla(160, 100%, 37%, 0.2);
+ }
+}
+
+@media (min-width: 1024px) {
+ body {
+ display: flex;
+ place-items: center;
+ }
+
+ #app {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ padding: 0 2rem;
+ }
+}
diff --git a/devtools-router-pinia/src/components/HelloWorld.vue b/devtools-router-pinia/src/components/HelloWorld.vue
new file mode 100644
index 00000000..5fb372c9
--- /dev/null
+++ b/devtools-router-pinia/src/components/HelloWorld.vue
@@ -0,0 +1,44 @@
+
+
+
+
+
{{ msg }}
+
+ You’ve successfully created a project with
+ Vite +
+ Vue 3 .
+
+
+
+
+
diff --git a/devtools-router-pinia/src/components/TheWelcome.vue b/devtools-router-pinia/src/components/TheWelcome.vue
new file mode 100644
index 00000000..dab95367
--- /dev/null
+++ b/devtools-router-pinia/src/components/TheWelcome.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+ Documentation
+
+ Vue’s
+ official documentation
+ provides you with all information you need to get started.
+
+
+
+
+
+
+ Tooling
+
+ This project is served and bundled with
+ Vite . The
+ recommended IDE setup is
+ VSCode +
+ Volar . If
+ you need to test your components and web pages, check out
+ Cypress and
+ Cypress Component Testing .
+
+
+
+ More instructions are available in README.md
.
+
+
+
+
+
+
+ Ecosystem
+
+ Get official tools and libraries for your project:
+ Pinia ,
+ Vue Router ,
+ Vue Test Utils , and
+ Vue Dev Tools . If
+ you need more resources, we suggest paying
+ Awesome Vue
+ a visit.
+
+
+
+
+
+
+ Community
+
+ Got stuck? Ask your question on
+ Vue Land , our official
+ Discord server, or
+ StackOverflow . You should also subscribe to
+ our mailing list and follow
+ the official
+ @vuejs
+ twitter account for latest news in the Vue world.
+
+
+
+
+
+
+ Support Vue
+
+ As an independent project, Vue relies on community backing for its sustainability. You can help
+ us by
+ becoming a sponsor .
+
+
diff --git a/devtools-router-pinia/src/components/WelcomeItem.vue b/devtools-router-pinia/src/components/WelcomeItem.vue
new file mode 100644
index 00000000..ac366d07
--- /dev/null
+++ b/devtools-router-pinia/src/components/WelcomeItem.vue
@@ -0,0 +1,86 @@
+
+
+
+
+
diff --git a/devtools-router-pinia/src/components/icons/IconCommunity.vue b/devtools-router-pinia/src/components/icons/IconCommunity.vue
new file mode 100644
index 00000000..2dc8b055
--- /dev/null
+++ b/devtools-router-pinia/src/components/icons/IconCommunity.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/devtools-router-pinia/src/components/icons/IconDocumentation.vue b/devtools-router-pinia/src/components/icons/IconDocumentation.vue
new file mode 100644
index 00000000..6d4791cf
--- /dev/null
+++ b/devtools-router-pinia/src/components/icons/IconDocumentation.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/devtools-router-pinia/src/components/icons/IconEcosystem.vue b/devtools-router-pinia/src/components/icons/IconEcosystem.vue
new file mode 100644
index 00000000..c3a4f078
--- /dev/null
+++ b/devtools-router-pinia/src/components/icons/IconEcosystem.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/devtools-router-pinia/src/components/icons/IconSupport.vue b/devtools-router-pinia/src/components/icons/IconSupport.vue
new file mode 100644
index 00000000..7452834d
--- /dev/null
+++ b/devtools-router-pinia/src/components/icons/IconSupport.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/devtools-router-pinia/src/components/icons/IconTooling.vue b/devtools-router-pinia/src/components/icons/IconTooling.vue
new file mode 100644
index 00000000..660598d7
--- /dev/null
+++ b/devtools-router-pinia/src/components/icons/IconTooling.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/devtools-router-pinia/src/main.js b/devtools-router-pinia/src/main.js
new file mode 100644
index 00000000..5dcad83c
--- /dev/null
+++ b/devtools-router-pinia/src/main.js
@@ -0,0 +1,14 @@
+import './assets/main.css'
+
+import { createApp } from 'vue'
+import { createPinia } from 'pinia'
+
+import App from './App.vue'
+import router from './router'
+
+const app = createApp(App)
+
+app.use(createPinia())
+app.use(router)
+
+app.mount('#app')
diff --git a/devtools-router-pinia/src/router/index.js b/devtools-router-pinia/src/router/index.js
new file mode 100644
index 00000000..a49ae507
--- /dev/null
+++ b/devtools-router-pinia/src/router/index.js
@@ -0,0 +1,23 @@
+import { createRouter, createWebHistory } from 'vue-router'
+import HomeView from '../views/HomeView.vue'
+
+const router = createRouter({
+ history: createWebHistory(import.meta.env.BASE_URL),
+ routes: [
+ {
+ path: '/',
+ name: 'home',
+ component: HomeView
+ },
+ {
+ path: '/about',
+ name: 'about',
+ // route level code-splitting
+ // this generates a separate chunk (About.[hash].js) for this route
+ // which is lazy-loaded when the route is visited.
+ component: () => import('../views/AboutView.vue')
+ }
+ ]
+})
+
+export default router
diff --git a/devtools-router-pinia/src/stores/counter.js b/devtools-router-pinia/src/stores/counter.js
new file mode 100644
index 00000000..b6757ba5
--- /dev/null
+++ b/devtools-router-pinia/src/stores/counter.js
@@ -0,0 +1,12 @@
+import { ref, computed } from 'vue'
+import { defineStore } from 'pinia'
+
+export const useCounterStore = defineStore('counter', () => {
+ const count = ref(0)
+ const doubleCount = computed(() => count.value * 2)
+ function increment() {
+ count.value++
+ }
+
+ return { count, doubleCount, increment }
+})
diff --git a/devtools-router-pinia/src/views/AboutView.vue b/devtools-router-pinia/src/views/AboutView.vue
new file mode 100644
index 00000000..756ad2a1
--- /dev/null
+++ b/devtools-router-pinia/src/views/AboutView.vue
@@ -0,0 +1,15 @@
+
+
+
This is an about page
+
+
+
+
diff --git a/devtools-router-pinia/src/views/HomeView.vue b/devtools-router-pinia/src/views/HomeView.vue
new file mode 100644
index 00000000..6bb706f0
--- /dev/null
+++ b/devtools-router-pinia/src/views/HomeView.vue
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
diff --git a/devtools-router-pinia/vite.config.js b/devtools-router-pinia/vite.config.js
new file mode 100644
index 00000000..26a21a9e
--- /dev/null
+++ b/devtools-router-pinia/vite.config.js
@@ -0,0 +1,18 @@
+import { fileURLToPath, URL } from 'node:url'
+
+import { defineConfig } from 'vite'
+import vue from '@vitejs/plugin-vue'
+import vueDevTools from 'vite-plugin-vue-devtools'
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ plugins: [
+ vue(),
+ vueDevTools(),
+ ],
+ resolve: {
+ alias: {
+ '@': fileURLToPath(new URL('./src', import.meta.url))
+ }
+ }
+})
diff --git a/eslint-with-prettier/package.json b/eslint-with-prettier/package.json
index b89ba7e7..68b80dbf 100644
--- a/eslint-with-prettier/package.json
+++ b/eslint-with-prettier/package.json
@@ -11,15 +11,15 @@
"format": "prettier --write src/"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
- "vite": "^5.2.8"
+ "vite": "^5.3.1"
}
}
diff --git a/eslint/package.json b/eslint/package.json
index c6aae839..bb7a6fad 100644
--- a/eslint/package.json
+++ b/eslint/package.json
@@ -10,12 +10,12 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
+ "@vitejs/plugin-vue": "^5.0.5",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
- "vite": "^5.2.8"
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-cypress/package.json b/jsx-cypress/package.json
index 30aaa0e9..d248f550 100644
--- a/jsx-cypress/package.json
+++ b/jsx-cypress/package.json
@@ -13,13 +13,13 @@
"test:unit:dev": "cypress open --component"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-nightwatch/package.json b/jsx-nightwatch/package.json
index b6327574..74af6875 100644
--- a/jsx-nightwatch/package.json
+++ b/jsx-nightwatch/package.json
@@ -11,18 +11,18 @@
"test:unit": "nightwatch src/**/__tests__/*"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/jsx-pinia-cypress/package.json b/jsx-pinia-cypress/package.json
index 3caf2318..2f12e163 100644
--- a/jsx-pinia-cypress/package.json
+++ b/jsx-pinia-cypress/package.json
@@ -14,13 +14,13 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-pinia-nightwatch/package.json b/jsx-pinia-nightwatch/package.json
index eca6973c..3740c23e 100644
--- a/jsx-pinia-nightwatch/package.json
+++ b/jsx-pinia-nightwatch/package.json
@@ -12,18 +12,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/jsx-pinia-playwright/package.json b/jsx-pinia-playwright/package.json
index 858d138c..c1128218 100644
--- a/jsx-pinia-playwright/package.json
+++ b/jsx-pinia-playwright/package.json
@@ -11,12 +11,12 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-pinia-vitest-cypress/package.json b/jsx-pinia-vitest-cypress/package.json
index 483d2741..8ebeea1b 100644
--- a/jsx-pinia-vitest-cypress/package.json
+++ b/jsx-pinia-vitest-cypress/package.json
@@ -13,16 +13,16 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-pinia-vitest-nightwatch/package.json b/jsx-pinia-vitest-nightwatch/package.json
index 380b5aeb..934b0486 100644
--- a/jsx-pinia-vitest-nightwatch/package.json
+++ b/jsx-pinia-vitest-nightwatch/package.json
@@ -12,20 +12,20 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-pinia-vitest-playwright/package.json b/jsx-pinia-vitest-playwright/package.json
index b5f1bf5c..060f1ec4 100644
--- a/jsx-pinia-vitest-playwright/package.json
+++ b/jsx-pinia-vitest-playwright/package.json
@@ -12,15 +12,15 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-pinia-vitest/package.json b/jsx-pinia-vitest/package.json
index 26c307a9..98ef1c9a 100644
--- a/jsx-pinia-vitest/package.json
+++ b/jsx-pinia-vitest/package.json
@@ -11,14 +11,14 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-pinia-with-tests/package.json b/jsx-pinia-with-tests/package.json
index f7a99281..315fe96a 100644
--- a/jsx-pinia-with-tests/package.json
+++ b/jsx-pinia-with-tests/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-pinia/package.json b/jsx-pinia/package.json
index ff763591..25dd2f41 100644
--- a/jsx-pinia/package.json
+++ b/jsx-pinia/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-playwright/package.json b/jsx-playwright/package.json
index 70e88df5..771c3b58 100644
--- a/jsx-playwright/package.json
+++ b/jsx-playwright/package.json
@@ -10,12 +10,12 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-cypress/package.json b/jsx-router-cypress/package.json
index f18bad02..fb8eb464 100644
--- a/jsx-router-cypress/package.json
+++ b/jsx-router-cypress/package.json
@@ -13,14 +13,14 @@
"test:unit:dev": "cypress open --component"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-nightwatch/package.json b/jsx-router-nightwatch/package.json
index c179d396..db252af2 100644
--- a/jsx-router-nightwatch/package.json
+++ b/jsx-router-nightwatch/package.json
@@ -11,19 +11,19 @@
"test:unit": "nightwatch src/**/__tests__/*"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/jsx-router-pinia-cypress/package.json b/jsx-router-pinia-cypress/package.json
index 62d8e15d..e82bf728 100644
--- a/jsx-router-pinia-cypress/package.json
+++ b/jsx-router-pinia-cypress/package.json
@@ -14,14 +14,14 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-pinia-nightwatch/package.json b/jsx-router-pinia-nightwatch/package.json
index c1d485b3..9e2253fc 100644
--- a/jsx-router-pinia-nightwatch/package.json
+++ b/jsx-router-pinia-nightwatch/package.json
@@ -12,19 +12,19 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/jsx-router-pinia-playwright/package.json b/jsx-router-pinia-playwright/package.json
index abf2eff0..822c20ae 100644
--- a/jsx-router-pinia-playwright/package.json
+++ b/jsx-router-pinia-playwright/package.json
@@ -11,13 +11,13 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-pinia-vitest-cypress/package.json b/jsx-router-pinia-vitest-cypress/package.json
index d432fdce..7db08d9b 100644
--- a/jsx-router-pinia-vitest-cypress/package.json
+++ b/jsx-router-pinia-vitest-cypress/package.json
@@ -13,17 +13,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-pinia-vitest-nightwatch/package.json b/jsx-router-pinia-vitest-nightwatch/package.json
index b9b802ed..6ebc59d0 100644
--- a/jsx-router-pinia-vitest-nightwatch/package.json
+++ b/jsx-router-pinia-vitest-nightwatch/package.json
@@ -12,21 +12,21 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-pinia-vitest-playwright/package.json b/jsx-router-pinia-vitest-playwright/package.json
index e4383310..b017224c 100644
--- a/jsx-router-pinia-vitest-playwright/package.json
+++ b/jsx-router-pinia-vitest-playwright/package.json
@@ -12,16 +12,16 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-pinia-vitest/package.json b/jsx-router-pinia-vitest/package.json
index 74bd1284..a7c27660 100644
--- a/jsx-router-pinia-vitest/package.json
+++ b/jsx-router-pinia-vitest/package.json
@@ -11,15 +11,15 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-pinia-with-tests/package.json b/jsx-router-pinia-with-tests/package.json
index c6906c2e..eb009209 100644
--- a/jsx-router-pinia-with-tests/package.json
+++ b/jsx-router-pinia-with-tests/package.json
@@ -10,12 +10,12 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-pinia/package.json b/jsx-router-pinia/package.json
index d2f6e9ba..9f4ac287 100644
--- a/jsx-router-pinia/package.json
+++ b/jsx-router-pinia/package.json
@@ -10,12 +10,12 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-playwright/package.json b/jsx-router-playwright/package.json
index 325510d0..384d7f07 100644
--- a/jsx-router-playwright/package.json
+++ b/jsx-router-playwright/package.json
@@ -10,13 +10,13 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router-vitest-cypress/package.json b/jsx-router-vitest-cypress/package.json
index 9e198e66..54a801ae 100644
--- a/jsx-router-vitest-cypress/package.json
+++ b/jsx-router-vitest-cypress/package.json
@@ -12,17 +12,17 @@
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-vitest-nightwatch/package.json b/jsx-router-vitest-nightwatch/package.json
index 0010c71c..0b501adb 100644
--- a/jsx-router-vitest-nightwatch/package.json
+++ b/jsx-router-vitest-nightwatch/package.json
@@ -11,21 +11,21 @@
"test:e2e": "nightwatch tests/e2e/*"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-vitest-playwright/package.json b/jsx-router-vitest-playwright/package.json
index f51fd5af..2e47ee84 100644
--- a/jsx-router-vitest-playwright/package.json
+++ b/jsx-router-vitest-playwright/package.json
@@ -11,16 +11,16 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-vitest/package.json b/jsx-router-vitest/package.json
index bc39ce0e..0f6bddc6 100644
--- a/jsx-router-vitest/package.json
+++ b/jsx-router-vitest/package.json
@@ -10,15 +10,15 @@
"test:unit": "vitest"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-router-with-tests/package.json b/jsx-router-with-tests/package.json
index e2233f6c..0c969a25 100644
--- a/jsx-router-with-tests/package.json
+++ b/jsx-router-with-tests/package.json
@@ -9,12 +9,12 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-router/package.json b/jsx-router/package.json
index daa8f7da..6640352a 100644
--- a/jsx-router/package.json
+++ b/jsx-router/package.json
@@ -9,12 +9,12 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx-vitest-cypress/package.json b/jsx-vitest-cypress/package.json
index 05e2f27f..a7cc0e0a 100644
--- a/jsx-vitest-cypress/package.json
+++ b/jsx-vitest-cypress/package.json
@@ -12,16 +12,16 @@
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-vitest-nightwatch/package.json b/jsx-vitest-nightwatch/package.json
index 371607aa..7bc21738 100644
--- a/jsx-vitest-nightwatch/package.json
+++ b/jsx-vitest-nightwatch/package.json
@@ -11,20 +11,20 @@
"test:e2e": "nightwatch tests/e2e/*"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-vitest-playwright/package.json b/jsx-vitest-playwright/package.json
index f3cc822a..0157b6c3 100644
--- a/jsx-vitest-playwright/package.json
+++ b/jsx-vitest-playwright/package.json
@@ -11,15 +11,15 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-vitest/package.json b/jsx-vitest/package.json
index fdbc85fe..c918aa62 100644
--- a/jsx-vitest/package.json
+++ b/jsx-vitest/package.json
@@ -10,14 +10,14 @@
"test:unit": "vitest"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/jsx-with-tests/package.json b/jsx-with-tests/package.json
index a880f610..a54f8d17 100644
--- a/jsx-with-tests/package.json
+++ b/jsx-with-tests/package.json
@@ -9,11 +9,11 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/jsx/package.json b/jsx/package.json
index 2a574126..93e6661f 100644
--- a/jsx/package.json
+++ b/jsx/package.json
@@ -9,11 +9,11 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "vite": "^5.3.1"
}
}
diff --git a/nightwatch/package.json b/nightwatch/package.json
index 69c582ea..bc521156 100644
--- a/nightwatch/package.json
+++ b/nightwatch/package.json
@@ -11,17 +11,17 @@
"test:unit": "nightwatch src/**/__tests__/*"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/pinia-cypress/package.json b/pinia-cypress/package.json
index 96b64f45..2c1de2aa 100644
--- a/pinia-cypress/package.json
+++ b/pinia-cypress/package.json
@@ -14,12 +14,12 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/pinia-nightwatch/package.json b/pinia-nightwatch/package.json
index b030a181..7bbf14cc 100644
--- a/pinia-nightwatch/package.json
+++ b/pinia-nightwatch/package.json
@@ -12,17 +12,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/pinia-playwright/package.json b/pinia-playwright/package.json
index 5382b970..2469c9d1 100644
--- a/pinia-playwright/package.json
+++ b/pinia-playwright/package.json
@@ -11,11 +11,11 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/pinia-vitest-cypress/package.json b/pinia-vitest-cypress/package.json
index 1e69fd17..6c417bfb 100644
--- a/pinia-vitest-cypress/package.json
+++ b/pinia-vitest-cypress/package.json
@@ -13,15 +13,15 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/pinia-vitest-nightwatch/package.json b/pinia-vitest-nightwatch/package.json
index 82d37b45..f4b0c7c0 100644
--- a/pinia-vitest-nightwatch/package.json
+++ b/pinia-vitest-nightwatch/package.json
@@ -12,19 +12,19 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/pinia-vitest-playwright/package.json b/pinia-vitest-playwright/package.json
index 5d3be9c8..4c23001c 100644
--- a/pinia-vitest-playwright/package.json
+++ b/pinia-vitest-playwright/package.json
@@ -12,14 +12,14 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/pinia-vitest/package.json b/pinia-vitest/package.json
index f3f04edd..4f7e700d 100644
--- a/pinia-vitest/package.json
+++ b/pinia-vitest/package.json
@@ -11,13 +11,13 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/pinia-with-tests/package.json b/pinia-with-tests/package.json
index a863d038..79ef866f 100644
--- a/pinia-with-tests/package.json
+++ b/pinia-with-tests/package.json
@@ -10,10 +10,10 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/pinia/package.json b/pinia/package.json
index 7caa01f2..7d19ed0f 100644
--- a/pinia/package.json
+++ b/pinia/package.json
@@ -10,10 +10,10 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/playwright/package.json b/playwright/package.json
index 85d3dca3..2541b16c 100644
--- a/playwright/package.json
+++ b/playwright/package.json
@@ -10,11 +10,11 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e0090a85..1d2103bd 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,4 +1,4 @@
-lockfileVersion: '6.0'
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
@@ -9,34 +9,34 @@ importers:
cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
default:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
devtools:
dependencies:
@@ -46,23 +46,45 @@ importers:
devDependencies:
'@vitejs/plugin-vue':
specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ version: 5.0.4(vite@5.2.8(@types/node@20.14.5))(vue@3.4.21(typescript@5.4.2))
vite:
specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ version: 5.2.8(@types/node@20.14.5)
vite-plugin-vue-devtools:
specifier: ^7.0.25
- version: 7.0.27(vite@5.2.8)(vue@3.4.21)
+ version: 7.0.27(rollup@4.14.1)(vite@5.2.8(@types/node@20.14.5))(vue@3.4.21(typescript@5.4.2))
+
+ devtools-router-pinia:
+ dependencies:
+ pinia:
+ specifier: ^2.1.7
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
+ vue:
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
+ vue-router:
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
+ devDependencies:
+ '@vitejs/plugin-vue':
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
+ vite:
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
+ vite-plugin-vue-devtools:
+ specifier: ^7.3.1
+ version: 7.3.1(rollup@4.14.1)(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
eslint:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
eslint:
specifier: ^8.57.0
version: 8.57.0
@@ -70,21 +92,21 @@ importers:
specifier: ^9.23.0
version: 9.23.0(eslint@8.57.0)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
eslint-with-prettier:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@rushstack/eslint-patch':
specifier: ^1.8.0
version: 1.10.2
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/eslint-config-prettier':
specifier: ^9.0.0
version: 9.0.0(eslint@8.57.0)(prettier@3.2.5)
@@ -98,80 +120,80 @@ importers:
specifier: ^3.2.5
version: 3.2.5
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -180,82 +202,82 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -264,281 +286,281 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -547,91 +569,91 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -640,553 +662,553 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-router-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-router-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
jsx-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
jsx-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -1195,73 +1217,73 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -1270,251 +1292,251 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -1523,82 +1545,82 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
@@ -1607,4921 +1629,4744 @@ importers:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
router-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
router-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
typescript:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-router-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-jsx-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue-jsx':
- specifier: ^3.1.0
- version: 3.1.0(vite@5.2.8)(vue@3.4.21)
+ specifier: ^4.0.0
+ version: 4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-vitest:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-vitest-cypress:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-vitest-nightwatch:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-vitest-playwright:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-pinia-with-tests:
dependencies:
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.4.2)(vue@3.4.21)
+ version: 2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2))
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-router-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.0(vue@3.4.21)
+ specifier: ^4.3.3
+ version: 4.3.3(vue@3.4.29(typescript@5.4.2))
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/jsdom':
- specifier: ^21.1.6
- version: 21.1.6
+ specifier: ^21.1.7
+ version: 21.1.7
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
typescript-with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@tsconfig/node20':
specifier: ^20.1.4
version: 20.1.4
'@types/node':
- specifier: ^20.12.5
- version: 20.12.7
+ specifier: ^20.14.5
+ version: 20.14.5
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
npm-run-all2:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.2.0
+ version: 6.2.0
typescript:
specifier: ~5.4.0
version: 5.4.2
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vue-tsc:
- specifier: ^2.0.11
- version: 2.0.12(typescript@5.4.2)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.2)
vitest:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vitest-cypress:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
cypress:
- specifier: ^13.7.2
- version: 13.7.2
+ specifier: ^13.12.0
+ version: 13.12.0
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
start-server-and-test:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vitest-nightwatch:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@nightwatch/vue':
- specifier: ^3.1.0
- version: 3.1.0(@types/node@20.12.7)(vue@3.4.21)
+ specifier: ^3.1.1
+ version: 3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
chromedriver:
- specifier: ^123.0.1
- version: 123.0.3
+ specifier: ^126.0.2
+ version: 126.0.2
geckodriver:
- specifier: ^4.3.3
- version: 4.3.3
+ specifier: ^4.4.1
+ version: 4.4.1
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
nightwatch:
- specifier: ^3.6.0
- version: 3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3)
+ specifier: ^3.6.3
+ version: 3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@types/node@20.12.7)(typescript@5.4.2)
+ version: 10.9.2(@types/node@20.14.5)(typescript@5.4.2)
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vite-plugin-nightwatch:
specifier: ^0.4.6
version: 0.4.6
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
vitest-playwright:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@playwright/test':
- specifier: ^1.43.0
- version: 1.43.0
+ specifier: ^1.44.1
+ version: 1.44.1
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
'@vue/test-utils':
- specifier: ^2.4.5
- version: 2.4.5
+ specifier: ^2.4.6
+ version: 2.4.6
jsdom:
- specifier: ^24.0.0
- version: 24.0.0
+ specifier: ^24.1.0
+ version: 24.1.0
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
vitest:
- specifier: ^1.4.0
- version: 1.4.0(@types/node@20.12.7)(jsdom@24.0.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0)
with-tests:
dependencies:
vue:
- specifier: ^3.4.21
- version: 3.4.21(typescript@5.4.2)
+ specifier: ^3.4.29
+ version: 3.4.29(typescript@5.4.2)
devDependencies:
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.8)(vue@3.4.21)
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
vite:
- specifier: ^5.2.8
- version: 5.2.8(@types/node@20.12.7)
+ specifier: ^5.3.1
+ version: 5.3.1(@types/node@20.14.5)
packages:
- /@aashutoshrathi/word-wrap@1.2.6:
+ '@aashutoshrathi/word-wrap@1.2.6':
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- dev: true
- /@ampproject/remapping@2.2.0:
+ '@ampproject/remapping@2.2.0':
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.18
- dev: true
- /@antfu/utils@0.7.7:
+ '@antfu/utils@0.7.7':
resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
- dev: true
- /@asamuzakjp/dom-selector@2.0.2:
+ '@asamuzakjp/dom-selector@2.0.2':
resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==}
- dependencies:
- bidi-js: 1.0.3
- css-tree: 2.3.1
- is-potential-custom-element-name: 1.0.1
- dev: true
- /@babel/code-frame@7.23.5:
+ '@babel/code-frame@7.23.5':
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.23.4
- chalk: 2.4.2
- dev: true
- /@babel/compat-data@7.22.9:
+ '@babel/code-frame@7.24.7':
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.22.9':
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/core@7.23.5:
+ '@babel/compat-data@7.24.7':
+ resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.23.5':
resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helpers': 7.23.5
- '@babel/parser': 7.23.9
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
- convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/generator@7.23.5:
+ '@babel/core@7.24.7':
+ resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.23.5':
resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- '@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.18
- jsesc: 2.5.2
- dev: true
- /@babel/helper-annotate-as-pure@7.22.5:
+ '@babel/generator@7.24.7':
+ resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-compilation-targets@7.22.15:
+ '@babel/helper-annotate-as-pure@7.24.7':
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.22.15':
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/helper-validator-option': 7.23.5
- browserslist: 4.21.10
- lru-cache: 5.1.1
- semver: 6.3.1
- dev: true
- /@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.23.5):
+ '@babel/helper-compilation-targets@7.24.7':
+ resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.24.0':
resolution: {integrity: sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- dev: true
- /@babel/helper-environment-visitor@7.22.20:
+ '@babel/helper-create-class-features-plugin@7.24.7':
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-environment-visitor@7.22.20':
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/helper-function-name@7.23.0:
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ '@babel/helper-environment-visitor@7.24.7':
+ resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-function-name@7.23.0':
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-function-name@7.24.7':
+ resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-hoist-variables@7.22.5:
+ '@babel/helper-hoist-variables@7.22.5':
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-member-expression-to-functions@7.23.0:
+ '@babel/helper-hoist-variables@7.24.7':
+ resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-member-expression-to-functions@7.23.0':
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-module-imports@7.22.15:
+ '@babel/helper-member-expression-to-functions@7.24.7':
+ resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.22.15':
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
+ '@babel/helper-module-imports@7.24.7':
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.23.3':
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
- dev: true
- /@babel/helper-optimise-call-expression@7.22.5:
+ '@babel/helper-module-transforms@7.24.7':
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-plugin-utils@7.24.0:
+ '@babel/helper-optimise-call-expression@7.24.7':
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-plugin-utils@7.24.0':
resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5):
+ '@babel/helper-plugin-utils@7.24.7':
+ resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-replace-supers@7.22.20':
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- dev: true
- /@babel/helper-simple-access@7.22.5:
+ '@babel/helper-replace-supers@7.24.7':
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-simple-access@7.22.5':
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
+ '@babel/helper-simple-access@7.24.7':
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-split-export-declaration@7.22.6:
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-split-export-declaration@7.22.6':
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.23.5
- dev: true
- /@babel/helper-string-parser@7.23.4:
+ '@babel/helper-split-export-declaration@7.24.7':
+ resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.23.4':
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.22.20:
+ '@babel/helper-string-parser@7.24.7':
+ resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.22.20':
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option@7.23.5:
+ '@babel/helper-validator-identifier@7.24.7':
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.23.5':
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/helpers@7.23.5:
+ '@babel/helper-validator-option@7.24.7':
+ resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.23.5':
resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/highlight@7.23.4:
+ '@babel/helpers@7.24.7':
+ resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/highlight@7.23.4':
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- chalk: 2.4.2
- js-tokens: 4.0.0
- dev: true
- /@babel/parser@7.23.9:
+ '@babel/highlight@7.24.7':
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.23.9':
resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
hasBin: true
- dependencies:
- '@babel/types': 7.23.5
- /@babel/plugin-proposal-decorators@7.24.0(@babel/core@7.23.5):
+ '@babel/parser@7.24.7':
+ resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-proposal-decorators@7.24.0':
resolution: {integrity: sha512-LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.23.5)
- dev: true
- /@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.23.5):
+ '@babel/plugin-syntax-decorators@7.24.0':
resolution: {integrity: sha512-MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.24.0
- dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5):
+ '@babel/plugin-syntax-import-attributes@7.23.3':
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.24.0
- dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5):
+ '@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.24.0
- dev: true
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5):
+ '@babel/plugin-syntax-jsx@7.22.5':
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.24.0
- dev: true
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5):
+ '@babel/plugin-syntax-jsx@7.24.7':
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-typescript@7.23.3':
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.24.0
- dev: true
- /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5):
+ '@babel/plugin-syntax-typescript@7.24.7':
+ resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typescript@7.23.5':
resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5)
- dev: true
- /@babel/template@7.22.15:
+ '@babel/plugin-transform-typescript@7.24.7':
+ resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/template@7.22.15':
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.9
- '@babel/types': 7.23.5
- dev: true
- /@babel/traverse@7.23.5:
+ '@babel/template@7.24.7':
+ resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.23.5':
resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.9
- '@babel/types': 7.23.5
- debug: 4.3.4(supports-color@8.1.1)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@babel/types@7.23.5:
+ '@babel/traverse@7.24.7':
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.23.5':
resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.23.4
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
- /@colors/colors@1.5.0:
+ '@babel/types@7.24.7':
+ resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- requiresBuild: true
- dev: true
- optional: true
- /@cspotcode/source-map-support@0.8.1:
+ '@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- dependencies:
- '@jridgewell/trace-mapping': 0.3.9
- dev: true
- /@cypress/request@3.0.1:
+ '@cypress/request@3.0.1':
resolution: {integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==}
engines: {node: '>= 6'}
- dependencies:
- aws-sign2: 0.7.0
- aws4: 1.11.0
- caseless: 0.12.0
- combined-stream: 1.0.8
- extend: 3.0.2
- forever-agent: 0.6.1
- form-data: 2.3.3
- http-signature: 1.3.6
- is-typedarray: 1.0.0
- isstream: 0.1.2
- json-stringify-safe: 5.0.1
- mime-types: 2.1.35
- performance-now: 2.1.0
- qs: 6.10.4
- safe-buffer: 5.2.1
- tough-cookie: 4.1.3
- tunnel-agent: 0.6.0
- uuid: 8.3.2
- dev: true
- /@cypress/xvfb@1.2.4(supports-color@8.1.1):
+ '@cypress/xvfb@1.2.4':
resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==}
- dependencies:
- debug: 3.2.7(supports-color@8.1.1)
- lodash.once: 4.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@esbuild/aix-ppc64@0.20.2:
+ '@esbuild/aix-ppc64@0.20.2':
resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm64@0.18.16:
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/android-arm64@0.18.16':
resolution: {integrity: sha512-wsCqSPqLz+6Ov+OM4EthU43DyYVVyfn15S4j1bJzylDpc1r1jZFFfJQNfDuT8SlgwuqpmpJXK4uPlHGw6ve7eA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm64@0.20.2:
+ '@esbuild/android-arm64@0.20.2':
resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm@0.15.18:
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm@0.15.18':
resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm@0.17.19:
+ '@esbuild/android-arm@0.17.19':
resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm@0.18.16:
+ '@esbuild/android-arm@0.18.16':
resolution: {integrity: sha512-gCHjjQmA8L0soklKbLKA6pgsLk1byULuHe94lkZDzcO3/Ta+bbeewJioEn1Fr7kgy9NWNFy/C+MrBwC6I/WCug==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-arm@0.20.2:
+ '@esbuild/android-arm@0.20.2':
resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-x64@0.18.16:
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-x64@0.18.16':
resolution: {integrity: sha512-ldsTXolyA3eTQ1//4DS+E15xl0H/3DTRJaRL0/0PgkqDsI0fV/FlOtD+h0u/AUJr+eOTlZv4aC9gvfppo3C4sw==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/android-x64@0.20.2:
+ '@esbuild/android-x64@0.20.2':
resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/darwin-arm64@0.18.16:
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/darwin-arm64@0.18.16':
resolution: {integrity: sha512-aBxruWCII+OtluORR/KvisEw0ALuw/qDQWvkoosA+c/ngC/Kwk0lLaZ+B++LLS481/VdydB2u6tYpWxUfnLAIw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/darwin-arm64@0.20.2:
+ '@esbuild/darwin-arm64@0.20.2':
resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/darwin-x64@0.18.16:
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.18.16':
resolution: {integrity: sha512-6w4Dbue280+rp3LnkgmriS1icOUZDyPuZo/9VsuMUTns7SYEiOaJ7Ca1cbhu9KVObAWfmdjUl4gwy9TIgiO5eA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/darwin-x64@0.20.2:
+ '@esbuild/darwin-x64@0.20.2':
resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/freebsd-arm64@0.18.16:
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/freebsd-arm64@0.18.16':
resolution: {integrity: sha512-x35fCebhe9s979DGKbVAwXUOcTmCIE32AIqB9CB1GralMIvxdnMLAw5CnID17ipEw9/3MvDsusj/cspYt2ZLNQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/freebsd-arm64@0.20.2:
+ '@esbuild/freebsd-arm64@0.20.2':
resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/freebsd-x64@0.18.16:
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.18.16':
resolution: {integrity: sha512-YM98f+PeNXF3GbxIJlUsj+McUWG1irguBHkszCIwfr3BXtXZsXo0vqybjUDFfu9a8Wr7uUD/YSmHib+EeGAFlg==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/freebsd-x64@0.20.2:
+ '@esbuild/freebsd-x64@0.20.2':
resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-arm64@0.18.16:
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/linux-arm64@0.18.16':
resolution: {integrity: sha512-XIqhNUxJiuy+zsR77+H5Z2f7s4YRlriSJKtvx99nJuG5ATuJPjmZ9n0ANgnGlPCpXGSReFpgcJ7O3SMtzIFeiQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-arm64@0.20.2:
+ '@esbuild/linux-arm64@0.20.2':
resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-arm@0.18.16:
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.18.16':
resolution: {integrity: sha512-b5ABb+5Ha2C9JkeZXV+b+OruR1tJ33ePmv9ZwMeETSEKlmu/WJ45XTTG+l6a2KDsQtJJ66qo/hbSGBtk0XVLHw==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-arm@0.20.2:
+ '@esbuild/linux-arm@0.20.2':
resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-ia32@0.18.16:
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.18.16':
resolution: {integrity: sha512-no+pfEpwnRvIyH+txbBAWtjxPU9grslmTBfsmDndj7bnBmr55rOo/PfQmRfz7Qg9isswt1FP5hBbWb23fRWnow==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-ia32@0.20.2:
+ '@esbuild/linux-ia32@0.20.2':
resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-loong64@0.15.18:
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.15.18':
resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-loong64@0.18.16:
+ '@esbuild/linux-loong64@0.18.16':
resolution: {integrity: sha512-Zbnczs9ZXjmo0oZSS0zbNlJbcwKXa/fcNhYQjahDs4Xg18UumpXG/lwM2lcSvHS3mTrRyCYZvJbmzYc4laRI1g==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-loong64@0.20.2:
+ '@esbuild/linux-loong64@0.20.2':
resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-mips64el@0.18.16:
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.18.16':
resolution: {integrity: sha512-YMF7hih1HVR/hQVa/ot4UVffc5ZlrzEb3k2ip0nZr1w6fnYypll9td2qcoMLvd3o8j3y6EbJM3MyIcXIVzXvQQ==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-mips64el@0.20.2:
+ '@esbuild/linux-mips64el@0.20.2':
resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-ppc64@0.18.16:
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.18.16':
resolution: {integrity: sha512-Wkz++LZ29lDwUyTSEnzDaaP5OveOgTU69q9IyIw9WqLRxM4BjTBjz9un4G6TOvehWpf/J3gYVFN96TjGHrbcNQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-ppc64@0.20.2:
+ '@esbuild/linux-ppc64@0.20.2':
resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-riscv64@0.18.16:
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.18.16':
resolution: {integrity: sha512-LFMKZ30tk78/mUv1ygvIP+568bwf4oN6reG/uczXnz6SvFn4e2QUFpUpZY9iSJT6Qpgstrhef/nMykIXZtZWGQ==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-riscv64@0.20.2:
+ '@esbuild/linux-riscv64@0.20.2':
resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-s390x@0.18.16:
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.18.16':
resolution: {integrity: sha512-3ZC0BgyYHYKfZo3AV2/66TD/I9tlSBaW7eWTEIkrQQKfJIifKMMttXl9FrAg+UT0SGYsCRLI35Gwdmm96vlOjg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-s390x@0.20.2:
+ '@esbuild/linux-s390x@0.20.2':
resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-x64@0.18.16:
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.18.16':
resolution: {integrity: sha512-xu86B3647DihHJHv/wx3NCz2Dg1gjQ8bbf9cVYZzWKY+gsvxYmn/lnVlqDRazObc3UMwoHpUhNYaZset4X8IPA==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/linux-x64@0.20.2:
+ '@esbuild/linux-x64@0.20.2':
resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/netbsd-x64@0.18.16:
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/netbsd-x64@0.18.16':
resolution: {integrity: sha512-uVAgpimx9Ffw3xowtg/7qQPwHFx94yCje+DoBx+LNm2ePDpQXHrzE+Sb0Si2VBObYz+LcRps15cq+95YM7gkUw==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/netbsd-x64@0.20.2:
+ '@esbuild/netbsd-x64@0.20.2':
resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/openbsd-x64@0.18.16:
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-x64@0.18.16':
resolution: {integrity: sha512-6OjCQM9wf7z8/MBi6BOWaTL2AS/SZudsZtBziXMtNI8r/U41AxS9x7jn0ATOwVy08OotwkPqGRMkpPR2wcTJXA==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/openbsd-x64@0.20.2:
+ '@esbuild/openbsd-x64@0.20.2':
resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/sunos-x64@0.18.16:
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/sunos-x64@0.18.16':
resolution: {integrity: sha512-ZoNkruFYJp9d1LbUYCh8awgQDvB9uOMZqlQ+gGEZR7v6C+N6u7vPr86c+Chih8niBR81Q/bHOSKGBK3brJyvkQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/sunos-x64@0.20.2:
+ '@esbuild/sunos-x64@0.20.2':
resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-arm64@0.18.16:
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/win32-arm64@0.18.16':
resolution: {integrity: sha512-+j4anzQ9hrs+iqO+/wa8UE6TVkKua1pXUb0XWFOx0FiAj6R9INJ+WE//1/Xo6FG1vB5EpH3ko+XcgwiDXTxcdw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-arm64@0.20.2:
+ '@esbuild/win32-arm64@0.20.2':
resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-ia32@0.18.16:
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.18.16':
resolution: {integrity: sha512-5PFPmq3sSKTp9cT9dzvI67WNfRZGvEVctcZa1KGjDDu4n3H8k59Inbk0du1fz0KrAbKKNpJbdFXQMDUz7BG4rQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-ia32@0.20.2:
+ '@esbuild/win32-ia32@0.20.2':
resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-x64@0.18.16:
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.18.16':
resolution: {integrity: sha512-sCIVrrtcWN5Ua7jYXNG1xD199IalrbfV2+0k/2Zf2OyV2FtnQnMgdzgpRAbi4AWlKJj1jkX+M+fEGPQj6BQB4w==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@esbuild/win32-x64@0.20.2:
+ '@esbuild/win32-x64@0.20.2':
resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0):
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.57.0
- eslint-visitor-keys: 3.4.3
- dev: true
- /@eslint-community/regexpp@4.10.0:
+ '@eslint-community/regexpp@4.10.0':
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- dev: true
- /@eslint/eslintrc@2.1.4:
+ '@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
- espree: 9.6.1
- globals: 13.24.0
- ignore: 5.3.1
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@eslint/js@8.57.0:
+ '@eslint/js@8.57.0':
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
- /@hapi/hoek@9.3.0:
+ '@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
- dev: true
- /@hapi/topo@5.1.0:
+ '@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- dependencies:
- '@hapi/hoek': 9.3.0
- dev: true
- /@humanwhocodes/config-array@0.11.14:
+ '@humanwhocodes/config-array@0.11.14':
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 2.0.2
- debug: 4.3.4(supports-color@8.1.1)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@humanwhocodes/module-importer@1.0.1:
+ '@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- dev: true
- /@humanwhocodes/object-schema@2.0.2:
+ '@humanwhocodes/object-schema@2.0.2':
resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
- dev: true
- /@jest/schemas@29.6.3:
+ '@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@sinclair/typebox': 0.27.8
- dev: true
- /@jridgewell/gen-mapping@0.1.1:
+ '@jridgewell/gen-mapping@0.1.1':
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
- /@jridgewell/gen-mapping@0.3.2:
+ '@jridgewell/gen-mapping@0.3.2':
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.18
- dev: true
- /@jridgewell/resolve-uri@3.1.0:
+ '@jridgewell/gen-mapping@0.3.5':
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/resolve-uri@3.1.0':
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- dev: true
- /@jridgewell/set-array@1.1.2:
+ '@jridgewell/set-array@1.1.2':
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- dev: true
- /@jridgewell/sourcemap-codec@1.4.14:
+ '@jridgewell/set-array@1.2.1':
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/sourcemap-codec@1.4.14':
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- dev: true
- /@jridgewell/sourcemap-codec@1.4.15:
+ '@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping@0.3.18:
+ '@jridgewell/trace-mapping@0.3.18':
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.14
- dev: true
- /@jridgewell/trace-mapping@0.3.9:
+ '@jridgewell/trace-mapping@0.3.25':
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+
+ '@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
- /@nightwatch/chai@5.0.3:
+ '@nightwatch/chai@5.0.3':
resolution: {integrity: sha512-1OIkOf/7jswOC3/t+Add/HVQO8ib75kz6BVYSNeWGghTlmHUqYEfNJ6vcACbXrn/4v3+9iRlWixuhFkxXkU/RQ==}
engines: {node: '>=12'}
- dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.2
- deep-eql: 4.0.1
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.0.8
- dev: true
- /@nightwatch/esbuild-utils@0.2.1:
+ '@nightwatch/esbuild-utils@0.2.1':
resolution: {integrity: sha512-OLvkmfYs0DxT3o0BKWi1dq+GTXAs6x0t2O6N5WaCab5d5mXb/Nc/zTXswZLpjXjn3kMjR1rZrIZ+xENWhhFlfQ==}
- dependencies:
- '@babel/core': 7.23.5
- esbuild: 0.15.18
- lodash.merge: 4.6.2
- lodash.mergewith: 4.6.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@nightwatch/html-reporter-template@0.3.0:
+ '@nightwatch/html-reporter-template@0.3.0':
resolution: {integrity: sha512-Mze1z6pmUz2O8N9w1/h3QWz1lzMig45PGyh8PrL9ERs3FxVnIX0RCn37vjZUYiV4wgjZOg41JjdcpriZ3dJxkA==}
- dev: true
- /@nightwatch/nightwatch-inspector@1.0.1:
+ '@nightwatch/nightwatch-inspector@1.0.1':
resolution: {integrity: sha512-/ax11EOB4eJXT5VioMztcalbCtsNeuFn6icfT75qPLBmkxLvThePSfyGTys+t9AULUR0ug0wMDMiLV1Oy586Fg==}
- requiresBuild: true
- dependencies:
- archiver: 5.3.1
- dev: true
- /@nightwatch/vue@3.1.0(@types/node@20.12.7)(vue@3.4.21):
- resolution: {integrity: sha512-ifHlQ81h8ys/au2EvRgV+hZztg8Liy+AGlvIYE0nJYsafjUl3Fr5Pl+stlr8BUC+/iVgvmqreR6KubT92H9Whg==}
- dependencies:
- '@nightwatch/esbuild-utils': 0.2.1
- '@vitejs/plugin-vue': 4.5.2(vite@4.5.0)(vue@3.4.21)
- get-port: 5.1.1
- vite: 4.5.0(@types/node@20.12.7)
- vite-plugin-nightwatch: 0.4.6
- optionalDependencies:
- '@esbuild/android-arm': 0.17.19
- transitivePeerDependencies:
- - '@types/node'
- - bufferutil
- - less
- - lightningcss
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
- - utf-8-validate
- - vue
- dev: true
+ '@nightwatch/vue@3.1.1':
+ resolution: {integrity: sha512-KRjQmxn9lRYlonnyJfQgLBf4Q+8JA8YR3WFoVhU5993lBzyGQLGrSTMOriLnaBmibHpY3MDGJsf98RgAFq8Txg==}
- /@nodelib/fs.scandir@2.1.5:
+ '@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
- dev: true
- /@nodelib/fs.stat@2.0.5:
+ '@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- dev: true
- /@nodelib/fs.walk@1.2.8:
+ '@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.17.1
- dev: true
- /@one-ini/wasm@0.1.1:
+ '@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
- dev: true
- /@pkgr/core@0.1.1:
+ '@pkgr/core@0.1.1':
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- dev: true
- /@playwright/test@1.43.0:
- resolution: {integrity: sha512-Ebw0+MCqoYflop7wVKj711ccbNlrwTBCtjY5rlbiY9kHL2bCYxq+qltK6uPsVBGGAOb033H2VO0YobcQVxoW7Q==}
+ '@playwright/test@1.44.1':
+ resolution: {integrity: sha512-1hZ4TNvD5z9VuhNJ/walIjvMVvYkZKf71axoF/uiAqpntQJXpG64dlXhoDXE3OczPuTuvjf/M5KWFg5VAVUS3Q==}
engines: {node: '>=16'}
hasBin: true
- dependencies:
- playwright: 1.43.0
- dev: true
- /@polka/url@1.0.0-next.25:
+ '@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
- dev: true
- /@rollup/pluginutils@5.1.0:
+ '@rollup/pluginutils@5.1.0':
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -6529,1419 +6374,827 @@ packages:
peerDependenciesMeta:
rollup:
optional: true
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- dev: true
- /@rollup/rollup-android-arm-eabi@4.14.1:
+ '@rollup/rollup-android-arm-eabi@4.14.1':
resolution: {integrity: sha512-fH8/o8nSUek8ceQnT7K4EQbSiV7jgkHq81m9lWZFIXjJ7lJzpWXbQFpT/Zh6OZYnpFykvzC3fbEvEAFZu03dPA==}
cpu: [arm]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-android-arm64@4.14.1:
+ '@rollup/rollup-android-arm64@4.14.1':
resolution: {integrity: sha512-Y/9OHLjzkunF+KGEoJr3heiD5X9OLa8sbT1lm0NYeKyaM3oMhhQFvPB0bNZYJwlq93j8Z6wSxh9+cyKQaxS7PQ==}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-darwin-arm64@4.14.1:
+ '@rollup/rollup-darwin-arm64@4.14.1':
resolution: {integrity: sha512-+kecg3FY84WadgcuSVm6llrABOdQAEbNdnpi5X3UwWiFVhZIZvKgGrF7kmLguvxHNQy+UuRV66cLVl3S+Rkt+Q==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-darwin-x64@4.14.1:
+ '@rollup/rollup-darwin-x64@4.14.1':
resolution: {integrity: sha512-2pYRzEjVqq2TB/UNv47BV/8vQiXkFGVmPFwJb+1E0IFFZbIX8/jo1olxqqMbo6xCXf8kabANhp5bzCij2tFLUA==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.14.1:
+ '@rollup/rollup-linux-arm-gnueabihf@4.14.1':
resolution: {integrity: sha512-mS6wQ6Do6/wmrF9aTFVpIJ3/IDXhg1EZcQFYHZLHqw6AzMBjTHWnCG35HxSqUNphh0EHqSM6wRTT8HsL1C0x5g==}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm64-gnu@4.14.1:
+ '@rollup/rollup-linux-arm64-gnu@4.14.1':
resolution: {integrity: sha512-p9rGKYkHdFMzhckOTFubfxgyIO1vw//7IIjBBRVzyZebWlzRLeNhqxuSaZ7kCEKVkm/kuC9fVRW9HkC/zNRG2w==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-arm64-musl@4.14.1:
+ '@rollup/rollup-linux-arm64-musl@4.14.1':
resolution: {integrity: sha512-nDY6Yz5xS/Y4M2i9JLQd3Rofh5OR8Bn8qe3Mv/qCVpHFlwtZSBYSPaU4mrGazWkXrdQ98GB//H0BirGR/SKFSw==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-powerpc64le-gnu@4.14.1:
+ '@rollup/rollup-linux-powerpc64le-gnu@4.14.1':
resolution: {integrity: sha512-im7HE4VBL+aDswvcmfx88Mp1soqL9OBsdDBU8NqDEYtkri0qV0THhQsvZtZeNNlLeCUQ16PZyv7cqutjDF35qw==}
cpu: [ppc64le]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-riscv64-gnu@4.14.1:
+ '@rollup/rollup-linux-riscv64-gnu@4.14.1':
resolution: {integrity: sha512-RWdiHuAxWmzPJgaHJdpvUUlDz8sdQz4P2uv367T2JocdDa98iRw2UjIJ4QxSyt077mXZT2X6pKfT2iYtVEvOFw==}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-s390x-gnu@4.14.1:
+ '@rollup/rollup-linux-s390x-gnu@4.14.1':
resolution: {integrity: sha512-VMgaGQ5zRX6ZqV/fas65/sUGc9cPmsntq2FiGmayW9KMNfWVG/j0BAqImvU4KTeOOgYSf1F+k6at1UfNONuNjA==}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-x64-gnu@4.14.1:
+ '@rollup/rollup-linux-x64-gnu@4.14.1':
resolution: {integrity: sha512-9Q7DGjZN+hTdJomaQ3Iub4m6VPu1r94bmK2z3UeWP3dGUecRC54tmVu9vKHTm1bOt3ASoYtEz6JSRLFzrysKlA==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-linux-x64-musl@4.14.1:
+ '@rollup/rollup-linux-x64-musl@4.14.1':
resolution: {integrity: sha512-JNEG/Ti55413SsreTguSx0LOVKX902OfXIKVg+TCXO6Gjans/k9O6ww9q3oLGjNDaTLxM+IHFMeXy/0RXL5R/g==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-win32-arm64-msvc@4.14.1:
+ '@rollup/rollup-win32-arm64-msvc@4.14.1':
resolution: {integrity: sha512-ryS22I9y0mumlLNwDFYZRDFLwWh3aKaC72CWjFcFvxK0U6v/mOkM5Up1bTbCRAhv3kEIwW2ajROegCIQViUCeA==}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-win32-ia32-msvc@4.14.1:
+ '@rollup/rollup-win32-ia32-msvc@4.14.1':
resolution: {integrity: sha512-TdloItiGk+T0mTxKx7Hp279xy30LspMso+GzQvV2maYePMAWdmrzqSNZhUpPj3CGw12aGj57I026PgLCTu8CGg==}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@rollup/rollup-win32-x64-msvc@4.14.1:
+ '@rollup/rollup-win32-x64-msvc@4.14.1':
resolution: {integrity: sha512-wQGI+LY/Py20zdUPq+XCem7JcPOyzIJBm3dli+56DJsQOHbnXZFEwgmnC6el1TPAfC8lBT3m+z69RmLykNUbew==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@rushstack/eslint-patch@1.10.2:
+ '@rushstack/eslint-patch@1.10.2':
resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
- dev: true
- /@sideway/address@4.1.4:
+ '@sideway/address@4.1.4':
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
- dependencies:
- '@hapi/hoek': 9.3.0
- dev: true
- /@sideway/formula@3.0.1:
+ '@sideway/formula@3.0.1':
resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- dev: true
- /@sideway/pinpoint@2.0.0:
+ '@sideway/pinpoint@2.0.0':
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- dev: true
- /@sinclair/typebox@0.27.8:
+ '@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- dev: true
- /@sinonjs/commons@2.0.0:
+ '@sinonjs/commons@2.0.0':
resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==}
- dependencies:
- type-detect: 4.0.8
- dev: true
- /@sinonjs/commons@3.0.0:
+ '@sinonjs/commons@3.0.0':
resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
- dependencies:
- type-detect: 4.0.8
- dev: true
- /@sinonjs/fake-timers@11.2.2:
+ '@sinonjs/fake-timers@11.2.2':
resolution: {integrity: sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==}
- dependencies:
- '@sinonjs/commons': 3.0.0
- dev: true
- /@sinonjs/samsam@8.0.0:
+ '@sinonjs/samsam@8.0.0':
resolution: {integrity: sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==}
- dependencies:
- '@sinonjs/commons': 2.0.0
- lodash.get: 4.4.2
- type-detect: 4.0.8
- dev: true
- /@sinonjs/text-encoding@0.7.2:
+ '@sinonjs/text-encoding@0.7.2':
resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==}
- dev: true
- /@testim/chrome-version@1.1.4:
+ '@testim/chrome-version@1.1.4':
resolution: {integrity: sha512-kIhULpw9TrGYnHp/8VfdcneIcxKnLixmADtukQRtJUmsVlMg0niMkwV0xZmi8hqa57xqilIHjWFA0GKvEjVU5g==}
- dev: true
- /@tootallnate/quickjs-emscripten@0.23.0:
+ '@tootallnate/quickjs-emscripten@0.23.0':
resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
- dev: true
- /@tsconfig/node10@1.0.9:
+ '@tsconfig/node10@1.0.9':
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
- dev: true
- /@tsconfig/node12@1.0.11:
+ '@tsconfig/node12@1.0.11':
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
- dev: true
- /@tsconfig/node14@1.0.3:
+ '@tsconfig/node14@1.0.3':
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
- dev: true
- /@tsconfig/node16@1.0.4:
+ '@tsconfig/node16@1.0.4':
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
- dev: true
- /@tsconfig/node20@20.1.4:
+ '@tsconfig/node20@20.1.4':
resolution: {integrity: sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==}
- dev: true
- /@types/chai@4.3.5:
+ '@types/chai@4.3.5':
resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==}
- dev: true
- /@types/estree@1.0.5:
+ '@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- dev: true
- /@types/jsdom@21.1.6:
- resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==}
- dependencies:
- '@types/node': 20.12.7
- '@types/tough-cookie': 4.0.2
- parse5: 7.1.2
- dev: true
+ '@types/jsdom@21.1.7':
+ resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==}
- /@types/nightwatch@2.3.30:
+ '@types/nightwatch@2.3.30':
resolution: {integrity: sha512-TiVGKR9mORwx0nN3ylonXp2IobpQoZxwV63IjABYkxsEpNauHL8GU9kmceEThjqDUigKaeh6aPOqepwC4bwCfA==}
- dependencies:
- '@types/chai': 4.3.5
- '@types/selenium-webdriver': 4.1.15
- devtools-protocol: 0.0.1025565
- dev: true
- /@types/node@20.12.7:
- resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
- dependencies:
- undici-types: 5.26.5
- dev: true
+ '@types/node@20.14.5':
+ resolution: {integrity: sha512-aoRR+fJkZT2l0aGOJhuA8frnCSoNX6W7U2mpNq63+BxBIj5BQFt8rHy627kijCmm63ijdSdwvGgpUsU6MBsZZA==}
- /@types/selenium-webdriver@4.1.15:
+ '@types/selenium-webdriver@4.1.15':
resolution: {integrity: sha512-oQ15G3q3EZ0dS049SB/5zx2tQkIS2kmDQWC/TSfAHJYKvXLZoUiLaPXnfSwbLP8Q5lcJeu5oYjKVSEV0t3H6Bg==}
- dependencies:
- '@types/ws': 8.5.5
- dev: true
- /@types/sinonjs__fake-timers@8.1.1:
+ '@types/sinonjs__fake-timers@8.1.1':
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
- dev: true
- /@types/sizzle@2.3.3:
+ '@types/sizzle@2.3.3':
resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==}
- dev: true
- /@types/tough-cookie@4.0.2:
+ '@types/tough-cookie@4.0.2':
resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
- dev: true
- /@types/ws@8.5.5:
+ '@types/ws@8.5.5':
resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
- dependencies:
- '@types/node': 20.12.7
- dev: true
- /@types/yauzl@2.10.0:
+ '@types/yauzl@2.10.0':
resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
- requiresBuild: true
- dependencies:
- '@types/node': 20.12.7
- dev: true
- optional: true
- /@ungap/structured-clone@1.2.0:
+ '@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- dev: true
- /@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.8)(vue@3.4.21):
- resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@vitejs/plugin-vue-jsx@4.0.0':
+ resolution: {integrity: sha512-A+6wL2AdQhDsLsDnY+2v4rRDI1HLJGIMc97a8FURO9tqKsH5QvjWrzsa5DH3NlZsM742W2wODl2fF+bfcTWtXw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^4.0.0 || ^5.0.0
+ vite: ^5.0.0
vue: ^3.0.0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
- vite: 5.2.8(@types/node@20.12.7)
- vue: 3.4.21(typescript@5.4.2)
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@vitejs/plugin-vue@4.5.2(vite@4.5.0)(vue@3.4.21):
+ '@vitejs/plugin-vue@4.5.2':
resolution: {integrity: sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
- dependencies:
- vite: 4.5.0(@types/node@20.12.7)
- vue: 3.4.21(typescript@5.4.2)
- dev: true
- /@vitejs/plugin-vue@5.0.4(vite@5.2.8)(vue@3.4.21):
+ '@vitejs/plugin-vue@5.0.4':
resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
vue: ^3.2.25
- dependencies:
- vite: 5.2.8(@types/node@20.12.7)
- vue: 3.4.21(typescript@5.4.2)
- dev: true
- /@vitest/expect@1.4.0:
- resolution: {integrity: sha512-Jths0sWCJZ8BxjKe+p+eKsoqev1/T8lYcrjavEaz8auEJ4jAVY0GwW3JKmdVU4mmNPLPHixh4GNXP7GFtAiDHA==}
- dependencies:
- '@vitest/spy': 1.4.0
- '@vitest/utils': 1.4.0
- chai: 4.3.10
- dev: true
+ '@vitejs/plugin-vue@5.0.5':
+ resolution: {integrity: sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ vite: ^5.0.0
+ vue: ^3.2.25
- /@vitest/runner@1.4.0:
- resolution: {integrity: sha512-EDYVSmesqlQ4RD2VvWo3hQgTJ7ZrFQ2VSJdfiJiArkCerDAGeyF1i6dHkmySqk573jLp6d/cfqCN+7wUB5tLgg==}
- dependencies:
- '@vitest/utils': 1.4.0
- p-limit: 5.0.0
- pathe: 1.1.2
- dev: true
+ '@vitest/expect@1.6.0':
+ resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
- /@vitest/snapshot@1.4.0:
- resolution: {integrity: sha512-saAFnt5pPIA5qDGxOHxJ/XxhMFKkUSBJmVt5VgDsAqPTX6JP326r5C/c9UuCMPoXNzuudTPsYDZCoJ5ilpqG2A==}
- dependencies:
- magic-string: 0.30.8
- pathe: 1.1.2
- pretty-format: 29.7.0
- dev: true
+ '@vitest/runner@1.6.0':
+ resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
- /@vitest/spy@1.4.0:
- resolution: {integrity: sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==}
- dependencies:
- tinyspy: 2.2.0
- dev: true
+ '@vitest/snapshot@1.6.0':
+ resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
- /@vitest/utils@1.4.0:
- resolution: {integrity: sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==}
- dependencies:
- diff-sequences: 29.6.3
- estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
- dev: true
+ '@vitest/spy@1.6.0':
+ resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
- /@volar/language-core@2.2.0-alpha.7:
- resolution: {integrity: sha512-igpp+nTkyl8faVzRJMpSCeA4XlBJ5UVSyc/WGyksmUmP10YbfufbcQCFlxEXv2uMBV+a3L4JVCj+Vju+08FOSA==}
- dependencies:
- '@volar/source-map': 2.2.0-alpha.7
- dev: true
+ '@vitest/utils@1.6.0':
+ resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
- /@volar/source-map@2.2.0-alpha.7:
- resolution: {integrity: sha512-iIZM2EovdEnr6mMwlsnt4ciix4xz7HSGHyUSviRaY5cii5PMXGHeUU9UDeb+xzLCx8kdk3L5J4z+ts50AhkYcg==}
- dependencies:
- muggle-string: 0.4.1
- dev: true
+ '@volar/language-core@2.3.0':
+ resolution: {integrity: sha512-pvhL24WUh3VDnv7Yw5N1sjhPtdx7q9g+Wl3tggmnkMcyK8GcCNElF2zHiKznryn0DiUGk+eez/p2qQhz+puuHw==}
- /@volar/typescript@2.2.0-alpha.7:
- resolution: {integrity: sha512-qy04/hx4UbW1BdPlzaxlH60D4plubcyqdbYM6Y5vZiascZxFowtd6vE39Td9FYzDxwcKgzb/Crvf/ABhdHnuBA==}
- dependencies:
- '@volar/language-core': 2.2.0-alpha.7
- path-browserify: 1.0.1
- dev: true
+ '@volar/source-map@2.3.0':
+ resolution: {integrity: sha512-G/228aZjAOGhDjhlyZ++nDbKrS9uk+5DMaEstjvzglaAw7nqtDyhnQAsYzUg6BMP9BtwZ59RIw5HGePrutn00Q==}
- /@vue/babel-helper-vue-transform-on@1.1.5:
+ '@volar/typescript@2.3.0':
+ resolution: {integrity: sha512-PtUwMM87WsKVeLJN33GSTUjBexlKfKgouWlOUIv7pjrOnTwhXHZNSmpc312xgXdTjQPpToK6KXSIcKu9sBQ5LQ==}
+
+ '@vue/babel-helper-vue-transform-on@1.1.5':
resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
- dev: true
- /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.5):
+ '@vue/babel-helper-vue-transform-on@1.2.2':
+ resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
+
+ '@vue/babel-plugin-jsx@1.1.5':
resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.5)
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.5
- '@babel/types': 7.23.5
- '@vue/babel-helper-vue-transform-on': 1.1.5
- camelcase: 6.3.0
- html-tags: 3.3.1
- svg-tags: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@vue/compiler-core@3.4.21:
- resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
- dependencies:
- '@babel/parser': 7.23.9
- '@vue/shared': 3.4.21
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.0.2
+ '@vue/babel-plugin-jsx@1.2.2':
+ resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
- /@vue/compiler-dom@3.4.21:
- resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
- dependencies:
- '@vue/compiler-core': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/babel-plugin-resolve-type@1.2.2':
+ resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@vue/compiler-core@3.4.21':
+ resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
+
+ '@vue/compiler-core@3.4.29':
+ resolution: {integrity: sha512-TFKiRkKKsRCKvg/jTSSKK7mYLJEQdUiUfykbG49rubC9SfDyvT2JrzTReopWlz2MxqeLyxh9UZhvxEIBgAhtrg==}
+
+ '@vue/compiler-dom@3.4.21':
+ resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
+
+ '@vue/compiler-dom@3.4.29':
+ resolution: {integrity: sha512-A6+iZ2fKIEGnfPJejdB7b1FlJzgiD+Y/sxxKwJWg1EbJu6ZPgzaPQQ51ESGNv0CP6jm6Z7/pO6Ia8Ze6IKrX7w==}
- /@vue/compiler-sfc@3.4.21:
+ '@vue/compiler-sfc@3.4.21':
resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
- dependencies:
- '@babel/parser': 7.23.9
- '@vue/compiler-core': 3.4.21
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
- estree-walker: 2.0.2
- magic-string: 0.30.8
- postcss: 8.4.35
- source-map-js: 1.0.2
- /@vue/compiler-ssr@3.4.21:
+ '@vue/compiler-sfc@3.4.29':
+ resolution: {integrity: sha512-zygDcEtn8ZimDlrEQyLUovoWgKQic6aEQqRXce2WXBvSeHbEbcAsXyCk9oG33ZkyWH4sl9D3tkYc1idoOkdqZQ==}
+
+ '@vue/compiler-ssr@3.4.21':
resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
- dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
- /@vue/devtools-api@6.5.0:
+ '@vue/compiler-ssr@3.4.29':
+ resolution: {integrity: sha512-rFbwCmxJ16tDp3N8XCx5xSQzjhidYjXllvEcqX/lopkoznlNPz3jyy0WGJCyhAaVQK677WWFt3YO/WUEkMMUFQ==}
+
+ '@vue/devtools-api@6.5.0':
resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==}
- dev: false
- /@vue/devtools-api@6.6.1:
+ '@vue/devtools-api@6.6.1':
resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
- dev: false
- /@vue/devtools-core@7.0.27(vite@5.2.8)(vue@3.4.21):
+ '@vue/devtools-core@7.0.27':
resolution: {integrity: sha512-3rbtNGxFFFPfIObgTAPIw0h0rJy+y1PrbfgM9nXRf3/FIJkthfS19yj31pj9EWIqRsyiqK5u1Ni7SAJZ0vsQOA==}
- dependencies:
- '@vue/devtools-kit': 7.0.27(vue@3.4.21)
- '@vue/devtools-shared': 7.0.27
- mitt: 3.0.1
- nanoid: 3.3.7
- pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.2.8)
- transitivePeerDependencies:
- - vite
- - vue
- dev: true
- /@vue/devtools-kit@7.0.27(vue@3.4.21):
+ '@vue/devtools-core@7.3.1':
+ resolution: {integrity: sha512-5q+q4s3vop3HqSM0+sOVGhT4zEPlI9Cbo2u8sjjizWarBWM4r1FK+SRC2I2Yeg61xxcNViQ1+tOVF3QLNY7WuQ==}
+
+ '@vue/devtools-kit@7.0.27':
resolution: {integrity: sha512-/A5xM38pPCFX5Yhl/lRFAzjyK6VNsH670nww2WbjFKWqlu3I+lMxWKzQkCW6A1V8bduITgl2kHORfg2gTw6QaA==}
peerDependencies:
vue: ^3.0.0
- dependencies:
- '@vue/devtools-shared': 7.0.27
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- vue: 3.4.21(typescript@5.4.2)
- dev: true
- /@vue/devtools-shared@7.0.27:
+ '@vue/devtools-kit@7.3.1':
+ resolution: {integrity: sha512-O9LXPo0kC/PGFBRBMvT5PHiSXr6ZdJTshVuGQ1L2mnIZlIBdTjdtCRYQg/OMcEA5JDJPeJT8bnDYBBUbssGjoA==}
+ peerDependencies:
+ vue: ^3.0.0
+
+ '@vue/devtools-shared@7.0.27':
resolution: {integrity: sha512-4VxtmZ6yjhiSloqZZq2UYU0TBGxOJ8GxWvp5OlAH70zYqi0FIAyWGPkOhvfoZ7DKQyv2UU0mmKzFHjsEkelGyQ==}
- dependencies:
- rfdc: 1.3.1
- dev: true
- /@vue/eslint-config-prettier@9.0.0(eslint@8.57.0)(prettier@3.2.5):
+ '@vue/devtools-shared@7.3.1':
+ resolution: {integrity: sha512-TYbJLZwBy5+SliE095T+V0IMwRu+oP7I2KAsDuNtSsjHKITZvrhz2fNEvik9NsTLcEQBBoX81NvdgpoB29JAog==}
+
+ '@vue/eslint-config-prettier@9.0.0':
resolution: {integrity: sha512-z1ZIAAUS9pKzo/ANEfd2sO+v2IUalz7cM/cTLOZ7vRFOPk5/xuRKQteOu1DErFLAh/lYGXMVZ0IfYKlyInuDVg==}
peerDependencies:
eslint: '>= 8.0.0'
prettier: '>= 3.0.0'
- dependencies:
- eslint: 8.57.0
- eslint-config-prettier: 9.1.0(eslint@8.57.0)
- eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5)
- prettier: 3.2.5
- transitivePeerDependencies:
- - '@types/eslint'
- dev: true
- /@vue/language-core@2.0.12(typescript@5.4.2):
- resolution: {integrity: sha512-aIStDPt69SHOpiIckGTIIjEz/sXc6ZfCMS5uWYL1AcbcRMhzFCLZscGAVte1+ad+RRFepSpKBjGttyPcgKJ7ww==}
+ '@vue/language-core@2.0.21':
+ resolution: {integrity: sha512-vjs6KwnCK++kIXT+eI63BGpJHfHNVJcUCr3RnvJsccT3vbJnZV5IhHR2puEkoOkIbDdp0Gqi1wEnv3hEd3WsxQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@volar/language-core': 2.2.0-alpha.7
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
- computeds: 0.0.1
- minimatch: 9.0.3
- path-browserify: 1.0.1
- typescript: 5.4.2
- vue-template-compiler: 2.7.14
- dev: true
- /@vue/reactivity@3.4.21:
+ '@vue/reactivity@3.4.21':
resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==}
- dependencies:
- '@vue/shared': 3.4.21
- /@vue/runtime-core@3.4.21:
+ '@vue/reactivity@3.4.29':
+ resolution: {integrity: sha512-w8+KV+mb1a8ornnGQitnMdLfE0kXmteaxLdccm2XwdFxXst4q/Z7SEboCV5SqJNpZbKFeaRBBJBhW24aJyGINg==}
+
+ '@vue/runtime-core@3.4.21':
resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==}
- dependencies:
- '@vue/reactivity': 3.4.21
- '@vue/shared': 3.4.21
- /@vue/runtime-dom@3.4.21:
+ '@vue/runtime-core@3.4.29':
+ resolution: {integrity: sha512-s8fmX3YVR/Rk5ig0ic0NuzTNjK2M7iLuVSZyMmCzN/+Mjuqqif1JasCtEtmtoJWF32pAtUjyuT2ljNKNLeOmnQ==}
+
+ '@vue/runtime-dom@3.4.21':
resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==}
- dependencies:
- '@vue/runtime-core': 3.4.21
- '@vue/shared': 3.4.21
- csstype: 3.1.3
- /@vue/server-renderer@3.4.21(vue@3.4.21):
+ '@vue/runtime-dom@3.4.29':
+ resolution: {integrity: sha512-gI10atCrtOLf/2MPPMM+dpz3NGulo9ZZR9d1dWo4fYvm+xkfvRrw1ZmJ7mkWtiJVXSsdmPbcK1p5dZzOCKDN0g==}
+
+ '@vue/server-renderer@3.4.21':
resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==}
peerDependencies:
vue: 3.4.21
- dependencies:
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
- vue: 3.4.21(typescript@5.4.2)
- /@vue/shared@3.4.21:
+ '@vue/server-renderer@3.4.29':
+ resolution: {integrity: sha512-HMLCmPI2j/k8PVkSBysrA2RxcxC5DgBiCdj7n7H2QtR8bQQPqKAe8qoaxLcInzouBmzwJ+J0x20ygN/B5mYBng==}
+ peerDependencies:
+ vue: 3.4.29
+
+ '@vue/shared@3.4.21':
resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
- /@vue/test-utils@2.4.5:
- resolution: {integrity: sha512-oo2u7vktOyKUked36R93NB7mg2B+N7Plr8lxp2JBGwr18ch6EggFjixSCdIVVLkT6Qr0z359Xvnafc9dcKyDUg==}
- dependencies:
- js-beautify: 1.14.9
- vue-component-type-helpers: 2.0.6
- dev: true
+ '@vue/shared@3.4.29':
+ resolution: {integrity: sha512-hQ2gAQcBO/CDpC82DCrinJNgOHI2v+FA7BDW4lMSPeBpQ7sRe2OLHWe5cph1s7D8DUQAwRt18dBDfJJ220APEA==}
- /@vue/tsconfig@0.5.1:
+ '@vue/test-utils@2.4.6':
+ resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
+
+ '@vue/tsconfig@0.5.1':
resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
- dev: true
- /@wdio/logger@8.28.0:
+ '@wdio/logger@8.28.0':
resolution: {integrity: sha512-/s6zNCqwy1hoc+K4SJypis0Ud0dlJ+urOelJFO1x0G0rwDRWyFiUP6ijTaCcFxAm29jYEcEPWijl2xkVIHwOyA==}
engines: {node: ^16.13 || >=18}
- dependencies:
- chalk: 5.3.0
- loglevel: 1.8.1
- loglevel-plugin-prefix: 0.8.4
- strip-ansi: 7.1.0
- dev: true
- /abbrev@1.1.1:
+ '@zip.js/zip.js@2.7.45':
+ resolution: {integrity: sha512-Mm2EXF33DJQ/3GWWEWeP1UCqzpQ5+fiMvT3QWspsXY05DyqqxWu7a9awSzU4/spHMHVFrTjani1PR0vprgZpow==}
+ engines: {bun: '>=0.7.0', deno: '>=1.0.0', node: '>=16.5.0'}
+
+ abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
- dev: true
- /acorn-jsx@5.3.2(acorn@8.10.0):
+ acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 8.10.0
- dev: true
- /acorn-walk@8.3.1:
+ acorn-walk@8.3.1:
resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==}
engines: {node: '>=0.4.0'}
- dev: true
- /acorn-walk@8.3.2:
+ acorn-walk@8.3.2:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
- dev: true
- /acorn@8.10.0:
+ acorn@8.10.0:
resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /agent-base@7.1.0:
+ agent-base@7.1.0:
resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
engines: {node: '>= 14'}
- dependencies:
- debug: 4.3.4(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
- /aggregate-error@3.1.0:
+ aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
- dev: true
- /ajv@6.12.6:
+ ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- dependencies:
- fast-deep-equal: 3.1.3
- fast-json-stable-stringify: 2.1.0
- json-schema-traverse: 0.4.1
- uri-js: 4.4.1
- dev: true
- /ansi-align@3.0.1:
+ ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
- dependencies:
- string-width: 4.2.3
- dev: true
- /ansi-colors@4.1.1:
+ ansi-colors@4.1.1:
resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
engines: {node: '>=6'}
- dev: true
- /ansi-colors@4.1.3:
+ ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- dev: true
- /ansi-escapes@4.3.2:
+ ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- dependencies:
- type-fest: 0.21.3
- dev: true
- /ansi-regex@5.0.1:
+ ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- dev: true
- /ansi-regex@6.0.1:
+ ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- dev: true
- /ansi-styles@3.2.1:
+ ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
- dependencies:
- color-convert: 1.9.3
- dev: true
- /ansi-styles@4.3.0:
+ ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- dependencies:
- color-convert: 2.0.1
- dev: true
- /ansi-styles@5.2.0:
+ ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- dev: true
- /ansi-styles@6.2.1:
+ ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- dev: true
- /ansi-to-html@0.7.2:
+ ansi-to-html@0.7.2:
resolution: {integrity: sha512-v6MqmEpNlxF+POuyhKkidusCHWWkaLcGRURzivcU3I9tv7k4JVhFcnukrM5Rlk2rUywdZuzYAZ+kbZqWCnfN3g==}
engines: {node: '>=8.0.0'}
hasBin: true
- dependencies:
- entities: 2.2.0
- dev: true
- /anymatch@3.1.3:
+ anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
- dev: true
- /arch@2.2.0:
+ arch@2.2.0:
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
- dev: true
- /archiver-utils@2.1.0:
+ archiver-utils@2.1.0:
resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
engines: {node: '>= 6'}
- dependencies:
- glob: 7.2.3
- graceful-fs: 4.2.10
- lazystream: 1.0.1
- lodash.defaults: 4.2.0
- lodash.difference: 4.5.0
- lodash.flatten: 4.4.0
- lodash.isplainobject: 4.0.6
- lodash.union: 4.6.0
- normalize-path: 3.0.0
- readable-stream: 2.3.8
- dev: true
- /archiver@5.3.1:
+ archiver@5.3.1:
resolution: {integrity: sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==}
engines: {node: '>= 10'}
- dependencies:
- archiver-utils: 2.1.0
- async: 3.2.4
- buffer-crc32: 0.2.13
- readable-stream: 3.6.2
- readdir-glob: 1.1.3
- tar-stream: 2.2.0
- zip-stream: 4.1.0
- dev: true
- /arg@4.1.3:
+ arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
- dev: true
- /arg@5.0.2:
+ arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- dev: true
- /argparse@2.0.1:
+ argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: true
- /aria-query@5.1.3:
+ aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
- dependencies:
- deep-equal: 2.2.3
- dev: true
- /array-buffer-byte-length@1.0.0:
+ array-buffer-byte-length@1.0.0:
resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
- dependencies:
- call-bind: 1.0.5
- is-array-buffer: 3.0.2
- dev: true
- /asn1@0.2.6:
+ asn1@0.2.6:
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
- dependencies:
- safer-buffer: 2.1.2
- dev: true
- /assert-plus@1.0.0:
+ assert-plus@1.0.0:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
- dev: true
- /assertion-error@1.1.0:
+ assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- dev: true
- /ast-types@0.13.4:
+ ast-types@0.13.4:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
- dependencies:
- tslib: 2.6.2
- dev: true
- /astral-regex@2.0.0:
+ astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- dev: true
- /async@3.2.4:
+ async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
- dev: true
- /asynckit@0.4.0:
+ asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- dev: true
- /at-least-node@1.0.0:
+ at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- dev: true
- /available-typed-arrays@1.0.5:
+ available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- dev: true
- /aws-sign2@0.7.0:
+ aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
- dev: true
- /aws4@1.11.0:
+ aws4@1.11.0:
resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==}
- dev: true
- /axe-core@4.8.3:
+ axe-core@4.8.3:
resolution: {integrity: sha512-d5ZQHPSPkF9Tw+yfyDcRoUOc4g/8UloJJe5J8m4L5+c7AtDdjDLRxew/knnI4CxvtdxEUVgWz4x3OIQUIFiMfw==}
engines: {node: '>=4'}
- dev: true
- /axios@1.6.2(debug@4.3.4):
- resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
- dependencies:
- follow-redirects: 1.15.2(debug@4.3.4)
- form-data: 4.0.0
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: true
-
- /axios@1.6.7:
+ axios@1.6.7:
resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==}
- dependencies:
- follow-redirects: 1.15.5
- form-data: 4.0.0
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: true
- /b4a@1.6.4:
+ b4a@1.6.4:
resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
- dev: true
- /balanced-match@1.0.2:
+ balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- dev: true
- /bare-events@2.2.1:
+ bare-events@2.2.1:
resolution: {integrity: sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==}
- requiresBuild: true
- dev: true
- optional: true
- /bare-fs@2.2.1:
+ bare-fs@2.2.1:
resolution: {integrity: sha512-+CjmZANQDFZWy4PGbVdmALIwmt33aJg8qTkVjClU6X4WmZkTPBDxRHiBn7fpqEWEfF3AC2io++erpViAIQbSjg==}
- requiresBuild: true
- dependencies:
- bare-events: 2.2.1
- bare-os: 2.2.0
- bare-path: 2.1.0
- streamx: 2.15.0
- dev: true
- optional: true
- /bare-os@2.2.0:
+ bare-os@2.2.0:
resolution: {integrity: sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==}
- requiresBuild: true
- dev: true
- optional: true
- /bare-path@2.1.0:
+ bare-path@2.1.0:
resolution: {integrity: sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==}
- requiresBuild: true
- dependencies:
- bare-os: 2.2.0
- dev: true
- optional: true
- /base64-js@1.5.1:
+ base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- dev: true
- /basic-ftp@5.0.5:
+ basic-ftp@5.0.5:
resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
engines: {node: '>=10.0.0'}
- dev: true
- /bcrypt-pbkdf@1.0.2:
+ bcrypt-pbkdf@1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
- dependencies:
- tweetnacl: 0.14.5
- dev: true
- /bidi-js@1.0.3:
+ bidi-js@1.0.3:
resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
- dependencies:
- require-from-string: 2.0.2
- dev: true
-
- /big-integer@1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
- engines: {node: '>=0.6'}
- dev: true
- /binary-extensions@2.2.0:
+ binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- dev: true
- /binary@0.3.0:
- resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
- dependencies:
- buffers: 0.1.1
- chainsaw: 0.1.0
- dev: true
+ birpc@0.2.17:
+ resolution: {integrity: sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==}
- /bl@4.1.0:
+ bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
- dev: true
- /blob-util@2.0.2:
+ blob-util@2.0.2:
resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==}
- dev: true
-
- /bluebird@3.4.7:
- resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
- dev: true
- /bluebird@3.7.2:
+ bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- dev: true
- /boolbase@1.0.0:
+ boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- dev: true
- /boxen@5.1.2:
+ boxen@5.1.2:
resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
engines: {node: '>=10'}
- dependencies:
- ansi-align: 3.0.1
- camelcase: 6.3.0
- chalk: 4.1.2
- cli-boxes: 2.2.1
- string-width: 4.2.3
- type-fest: 0.20.2
- widest-line: 3.1.0
- wrap-ansi: 7.0.0
- dev: true
- /brace-expansion@1.1.11:
+ brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
- dependencies:
- balanced-match: 1.0.2
- concat-map: 0.0.1
- dev: true
- /brace-expansion@2.0.1:
+ brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- dependencies:
- balanced-match: 1.0.2
- dev: true
- /braces@3.0.2:
+ braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
- dependencies:
- fill-range: 7.0.1
- dev: true
- /browser-stdout@1.3.1:
+ browser-stdout@1.3.1:
resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
- dev: true
- /browserslist@4.21.10:
+ browserslist@4.21.10:
resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001521
- electron-to-chromium: 1.4.496
- node-releases: 2.0.13
- update-browserslist-db: 1.0.11(browserslist@4.21.10)
- dev: true
- /buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
- dev: true
+ browserslist@4.23.1:
+ resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
- /buffer-indexof-polyfill@1.0.2:
- resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
- engines: {node: '>=0.10'}
- dev: true
+ buffer-crc32@0.2.13:
+ resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
- /buffer@5.7.1:
+ buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- dev: true
-
- /buffers@0.1.1:
- resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
- engines: {node: '>=0.2.0'}
- dev: true
- /bundle-name@4.1.0:
+ bundle-name@4.1.0:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- dependencies:
- run-applescript: 7.0.0
- dev: true
- /cac@6.7.14:
+ cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- dev: true
- /cachedir@2.3.0:
+ cachedir@2.3.0:
resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==}
engines: {node: '>=6'}
- dev: true
- /call-bind@1.0.5:
+ call-bind@1.0.5:
resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
- dependencies:
- function-bind: 1.1.2
- get-intrinsic: 1.2.2
- set-function-length: 1.1.1
- dev: true
- /callsites@3.1.0:
+ callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- dev: true
- /camelcase@6.3.0:
+ camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- dev: true
- /caniuse-lite@1.0.30001521:
+ caniuse-lite@1.0.30001521:
resolution: {integrity: sha512-fnx1grfpEOvDGH+V17eccmNjucGUnCbP6KL+l5KqBIerp26WK/+RQ7CIDE37KGJjaPyqWXXlFUyKiWmvdNNKmQ==}
- dev: true
- /caseless@0.12.0:
+ caniuse-lite@1.0.30001636:
+ resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==}
+
+ caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
- dev: true
- /chai-nightwatch@0.5.3:
+ chai-nightwatch@0.5.3:
resolution: {integrity: sha512-38ixH/mqpY6IwnZkz6xPqx8aB5/KVR+j6VPugcir3EGOsphnWXrPH/mUt8Jp+ninL6ghY0AaJDQ10hSfCPGy/g==}
engines: {node: '>= 12.0.0'}
- dependencies:
- assertion-error: 1.1.0
- dev: true
- /chai@4.3.10:
+ chai@4.3.10:
resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
engines: {node: '>=4'}
- dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.3
- deep-eql: 4.1.3
- get-func-name: 2.0.2
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.0.8
- dev: true
-
- /chainsaw@0.1.0:
- resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
- dependencies:
- traverse: 0.3.9
- dev: true
- /chalk@2.4.2:
+ chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
- dev: true
- /chalk@4.1.2:
+ chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
- dev: true
- /chalk@5.3.0:
+ chalk@5.3.0:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- dev: true
- /check-error@1.0.2:
+ check-error@1.0.2:
resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
- dev: true
- /check-error@1.0.3:
+ check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
- dependencies:
- get-func-name: 2.0.2
- dev: true
- /check-more-types@2.24.0:
+ check-more-types@2.24.0:
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
engines: {node: '>= 0.8.0'}
- dev: true
- /chokidar@3.5.3:
+ chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.2
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
- /chromedriver@123.0.3:
- resolution: {integrity: sha512-35IeTqDLcVR0htF9nD/Lh+g24EG088WHVKXBXiFyWq+2lelnoM0B3tKTBiUEjLng0GnELI4QyQPFK7i97Fz1fQ==}
+ chromedriver@126.0.2:
+ resolution: {integrity: sha512-61R0w7C+uJVCykabdqWsvitne2rg3MTI8xOKJosk+YbKdyLeGHYiCCeU82ZsUY+v9qnN1p48THcthgKubxPRWQ==}
engines: {node: '>=18'}
hasBin: true
- requiresBuild: true
- dependencies:
- '@testim/chrome-version': 1.1.4
- axios: 1.6.7
- compare-versions: 6.1.0
- extract-zip: 2.0.1(supports-color@8.1.1)
- proxy-agent: 6.4.0
- proxy-from-env: 1.1.0
- tcp-port-used: 1.0.2
- transitivePeerDependencies:
- - debug
- - supports-color
- dev: true
- /ci-info@3.3.0:
+ ci-info@3.3.0:
resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==}
- dev: true
- /ci-info@3.5.0:
+ ci-info@3.5.0:
resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==}
- dev: true
- /clean-stack@2.2.0:
+ clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- dev: true
- /cli-boxes@2.2.1:
+ cli-boxes@2.2.1:
resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
engines: {node: '>=6'}
- dev: true
- /cli-cursor@3.1.0:
+ cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
- dependencies:
- restore-cursor: 3.1.0
- dev: true
- /cli-spinners@2.9.0:
+ cli-spinners@2.9.0:
resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
engines: {node: '>=6'}
- dev: true
- /cli-table3@0.6.3:
+ cli-table3@0.6.3:
resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
engines: {node: 10.* || >= 12.*}
- dependencies:
- string-width: 4.2.3
- optionalDependencies:
- '@colors/colors': 1.5.0
- dev: true
- /cli-truncate@2.1.0:
+ cli-truncate@2.1.0:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
engines: {node: '>=8'}
- dependencies:
- slice-ansi: 3.0.0
- string-width: 4.2.3
- dev: true
- /cliui@7.0.4:
+ cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
- dev: true
- /clone@1.0.4:
+ clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- dev: true
- /color-convert@1.9.3:
+ color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
- dependencies:
- color-name: 1.1.3
- dev: true
- /color-convert@2.0.1:
+ color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- dependencies:
- color-name: 1.1.4
- dev: true
- /color-name@1.1.3:
+ color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- dev: true
- /color-name@1.1.4:
+ color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- dev: true
- /colorette@2.0.19:
+ colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
- dev: true
- /combined-stream@1.0.8:
+ combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
- dependencies:
- delayed-stream: 1.0.0
- dev: true
- /commander@10.0.1:
+ commander@10.0.1:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
- dev: true
- /commander@6.2.1:
+ commander@6.2.1:
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
engines: {node: '>= 6'}
- dev: true
- /common-tags@1.8.2:
+ common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
- dev: true
- /compare-versions@6.1.0:
+ compare-versions@6.1.0:
resolution: {integrity: sha512-LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg==}
- dev: true
- /compress-commons@4.1.1:
+ compress-commons@4.1.1:
resolution: {integrity: sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==}
engines: {node: '>= 10'}
- dependencies:
- buffer-crc32: 0.2.13
- crc32-stream: 4.0.2
- normalize-path: 3.0.0
- readable-stream: 3.6.2
- dev: true
- /computeds@0.0.1:
+ computeds@0.0.1:
resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
- dev: true
- /concat-map@0.0.1:
+ concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- dev: true
- /config-chain@1.1.13:
+ config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- dependencies:
- ini: 1.3.8
- proto-list: 1.2.4
- dev: true
- /convert-source-map@2.0.0:
+ convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- dev: true
- /core-util-is@1.0.2:
+ copy-anything@3.0.5:
+ resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
+ engines: {node: '>=12.13'}
+
+ core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
- dev: true
- /crc-32@1.2.2:
+ crc-32@1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
engines: {node: '>=0.8'}
hasBin: true
- dev: true
- /crc32-stream@4.0.2:
+ crc32-stream@4.0.2:
resolution: {integrity: sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==}
engines: {node: '>= 10'}
- dependencies:
- crc-32: 1.2.2
- readable-stream: 3.6.2
- dev: true
- /create-require@1.1.1:
+ create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- dev: true
- /cross-spawn@7.0.3:
+ cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
- dev: true
- /css-tree@2.3.1:
+ css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.0.2
- dev: true
- /cssesc@3.0.0:
+ cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /cssstyle@4.0.1:
+ cssstyle@4.0.1:
resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
engines: {node: '>=18'}
- dependencies:
- rrweb-cssom: 0.6.0
- dev: true
- /csstype@3.1.3:
+ csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- /cypress@13.7.2:
- resolution: {integrity: sha512-FF5hFI5wlRIHY8urLZjJjj/YvfCBrRpglbZCLr/cYcL9MdDe0+5usa8kTIrDHthlEc9lwihbkb5dmwqBDNS2yw==}
+ cypress@13.12.0:
+ resolution: {integrity: sha512-udzS2JilmI9ApO/UuqurEwOvThclin5ntz7K0BtnHBs+tg2Bl9QShLISXpSEMDv/u8b6mqdoAdyKeZiSqKWL8g==}
engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
hasBin: true
- requiresBuild: true
- dependencies:
- '@cypress/request': 3.0.1
- '@cypress/xvfb': 1.2.4(supports-color@8.1.1)
- '@types/sinonjs__fake-timers': 8.1.1
- '@types/sizzle': 2.3.3
- arch: 2.2.0
- blob-util: 2.0.2
- bluebird: 3.7.2
- buffer: 5.7.1
- cachedir: 2.3.0
- chalk: 4.1.2
- check-more-types: 2.24.0
- cli-cursor: 3.1.0
- cli-table3: 0.6.3
- commander: 6.2.1
- common-tags: 1.8.2
- dayjs: 1.11.5
- debug: 4.3.4(supports-color@8.1.1)
- enquirer: 2.3.6
- eventemitter2: 6.4.7
- execa: 4.1.0
- executable: 4.1.1
- extract-zip: 2.0.1(supports-color@8.1.1)
- figures: 3.2.0
- fs-extra: 9.1.0
- getos: 3.2.1
- is-ci: 3.0.1
- is-installed-globally: 0.4.0
- lazy-ass: 1.6.0
- listr2: 3.14.0(enquirer@2.3.6)
- lodash: 4.17.21
- log-symbols: 4.1.0
- minimist: 1.2.8
- ospath: 1.2.2
- pretty-bytes: 5.6.0
- process: 0.11.10
- proxy-from-env: 1.0.0
- request-progress: 3.0.0
- semver: 7.6.0
- supports-color: 8.1.1
- tmp: 0.2.1
- untildify: 4.0.0
- yauzl: 2.10.0
- dev: true
- /dashdash@1.14.1:
+ dashdash@1.14.1:
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
- dependencies:
- assert-plus: 1.0.0
- dev: true
- /data-uri-to-buffer@4.0.1:
+ data-uri-to-buffer@4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
- dev: true
- /data-uri-to-buffer@6.0.2:
+ data-uri-to-buffer@6.0.2:
resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
engines: {node: '>= 14'}
- dev: true
- /data-urls@5.0.0:
+ data-urls@5.0.0:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
- dependencies:
- whatwg-mimetype: 4.0.0
- whatwg-url: 14.0.0
- dev: true
- /dayjs@1.11.5:
+ dayjs@1.11.5:
resolution: {integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==}
- dev: true
- /de-indent@1.0.2:
+ de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- dev: true
- /debug@3.2.7(supports-color@8.1.1):
+ debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.3
- supports-color: 8.1.1
- dev: true
- /debug@4.3.1:
+ debug@4.3.1:
resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -7949,11 +7202,8 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.2
- dev: true
- /debug@4.3.4(supports-color@8.1.1):
+ debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -7961,526 +7211,4430 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.2
- supports-color: 8.1.1
- dev: true
- /decamelize@4.0.0:
+ debug@4.3.5:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ decamelize@4.0.0:
resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
engines: {node: '>=10'}
- dev: true
- /decamelize@6.0.0:
+ decamelize@6.0.0:
resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
- /decimal.js@10.4.3:
+ decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- dev: true
- /deep-eql@4.0.1:
+ deep-eql@4.0.1:
resolution: {integrity: sha512-D/Oxqobjr+kxaHsgiQBZq9b6iAWdEj5W/JdJm8deNduAPc9CwXQ3BJJCuEqlrPXcy45iOMkGPZ0T81Dnz7UDCA==}
engines: {node: '>=6'}
- dependencies:
- type-detect: 4.0.8
- dev: true
- /deep-eql@4.1.3:
+ deep-eql@4.1.3:
resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
engines: {node: '>=6'}
- dependencies:
- type-detect: 4.0.8
- dev: true
- /deep-equal@2.2.3:
+ deep-equal@2.2.3:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.5
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.2
- is-arguments: 1.1.1
- is-array-buffer: 3.0.2
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- isarray: 2.0.5
- object-is: 1.1.5
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.1
- side-channel: 1.0.4
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.13
- dev: true
- /deep-is@0.1.4:
+ deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
- /default-browser-id@5.0.0:
+ default-browser-id@5.0.0:
resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
engines: {node: '>=18'}
- dev: true
- /default-browser@5.2.1:
+ default-browser@5.2.1:
resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
engines: {node: '>=18'}
- dependencies:
- bundle-name: 4.1.0
- default-browser-id: 5.0.0
- dev: true
- /defaults@1.0.4:
+ defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
- dependencies:
- clone: 1.0.4
- dev: true
- /define-data-property@1.1.1:
+ define-data-property@1.1.1:
resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.2
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
- dev: true
- /define-lazy-prop@2.0.0:
+ define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- dev: true
- /define-lazy-prop@3.0.0:
+ define-lazy-prop@3.0.0:
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
engines: {node: '>=12'}
- dev: true
- /define-properties@1.2.1:
+ define-properties@1.2.1:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.1
- has-property-descriptors: 1.0.1
- object-keys: 1.1.1
- dev: true
- /degenerator@5.0.1:
+ degenerator@5.0.1:
resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
engines: {node: '>= 14'}
- dependencies:
- ast-types: 0.13.4
- escodegen: 2.1.0
- esprima: 4.0.1
- dev: true
- /delayed-stream@1.0.0:
+ delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- dev: true
- /devtools-protocol@0.0.1025565:
+ devtools-protocol@0.0.1025565:
resolution: {integrity: sha512-0s5sbGQR/EfYQhd8EpZgphpndsv+CufTlaeUyA6vYXCA0H5kMAsHCS/cHtUFWoKJCO125hpoKicQCfpxRj4oqw==}
- dev: true
- /devtools-protocol@0.0.1140464:
+ devtools-protocol@0.0.1140464:
resolution: {integrity: sha512-I1jXnjpQh/6TBFyQ0A9dB2kXXk6DprpPFZoI8pUsxHtlNuOTQEdv9fUqYBsFtf8tOJCbdsZZyQrWeXu6GfK+Bw==}
- dev: true
- /didyoumean@1.2.2:
+ didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- dev: true
- /diff-sequences@29.6.3:
+ diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
- /diff@4.0.2:
+ diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
- dev: true
- /diff@5.0.0:
+ diff@5.0.0:
resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==}
engines: {node: '>=0.3.1'}
- dev: true
- /diff@5.1.0:
+ diff@5.1.0:
resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
engines: {node: '>=0.3.1'}
- dev: true
- /doctrine@3.0.0:
+ doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
- dependencies:
- esutils: 2.0.3
- dev: true
- /dotenv@16.3.1:
+ dotenv@16.3.1:
resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
engines: {node: '>=12'}
- dev: true
-
- /duplexer2@0.1.4:
- resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
- dependencies:
- readable-stream: 2.3.8
- dev: true
- /duplexer@0.1.2:
+ duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- dev: true
- /ecc-jsbn@0.1.2:
+ ecc-jsbn@0.1.2:
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
- dependencies:
- jsbn: 0.1.1
- safer-buffer: 2.1.2
- dev: true
- /editorconfig@1.0.4:
+ editorconfig@1.0.4:
resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
engines: {node: '>=14'}
hasBin: true
- dependencies:
- '@one-ini/wasm': 0.1.1
- commander: 10.0.1
- minimatch: 9.0.1
- semver: 7.5.4
- dev: true
- /ejs@3.1.8:
- resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==}
+ ejs@3.1.10:
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
engines: {node: '>=0.10.0'}
hasBin: true
- dependencies:
- jake: 10.8.7
- dev: true
- /electron-to-chromium@1.4.496:
+ electron-to-chromium@1.4.496:
resolution: {integrity: sha512-qeXC3Zbykq44RCrBa4kr8v/dWzYJA8rAwpyh9Qd+NKWoJfjG5vvJqy9XOJ9H4P/lqulZBCgUWAYi+FeK5AuJ8g==}
- dev: true
- /emoji-regex@8.0.0:
+ electron-to-chromium@1.4.806:
+ resolution: {integrity: sha512-nkoEX2QIB8kwCOtvtgwhXWy2IHVcOLQZu9Qo36uaGB835mdX/h8uLRlosL6QIhLVUnAiicXRW00PwaPZC74Nrg==}
+
+ emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- dev: true
- /end-of-stream@1.4.4:
+ end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- dependencies:
- once: 1.4.0
- dev: true
- /enquirer@2.3.6:
+ enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.3
- dev: true
- /entities@2.2.0:
+ entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- dev: true
-
- /entities@4.4.0:
- resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
- engines: {node: '>=0.12'}
- dev: true
- /entities@4.5.0:
+ entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- /envinfo@7.11.0:
+ envinfo@7.11.0:
resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /error-stack-parser-es@0.1.1:
+ error-stack-parser-es@0.1.1:
resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
- dev: true
- /es-get-iterator@1.1.3:
+ es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
- dev: true
- /esbuild-android-64@0.15.18:
+ esbuild-android-64@0.15.18:
resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-android-arm64@0.15.18:
+ esbuild-android-arm64@0.15.18:
resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-darwin-64@0.15.18:
+ esbuild-darwin-64@0.15.18:
resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-darwin-arm64@0.15.18:
+ esbuild-darwin-arm64@0.15.18:
resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-freebsd-64@0.15.18:
+ esbuild-freebsd-64@0.15.18:
resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-freebsd-arm64@0.15.18:
+ esbuild-freebsd-arm64@0.15.18:
resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-32@0.15.18:
+ esbuild-linux-32@0.15.18:
resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-64@0.15.18:
+ esbuild-linux-64@0.15.18:
resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-arm64@0.15.18:
+ esbuild-linux-arm64@0.15.18:
resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-arm@0.15.18:
+ esbuild-linux-arm@0.15.18:
resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-mips64le@0.15.18:
+ esbuild-linux-mips64le@0.15.18:
resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-ppc64le@0.15.18:
+ esbuild-linux-ppc64le@0.15.18:
resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-riscv64@0.15.18:
+ esbuild-linux-riscv64@0.15.18:
resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-linux-s390x@0.15.18:
+ esbuild-linux-s390x@0.15.18:
resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-netbsd-64@0.15.18:
+ esbuild-netbsd-64@0.15.18:
resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-openbsd-64@0.15.18:
+ esbuild-openbsd-64@0.15.18:
resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-sunos-64@0.15.18:
+ esbuild-sunos-64@0.15.18:
resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-windows-32@0.15.18:
+ esbuild-windows-32@0.15.18:
resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-windows-64@0.15.18:
+ esbuild-windows-64@0.15.18:
resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild-windows-arm64@0.15.18:
+ esbuild-windows-arm64@0.15.18:
resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /esbuild@0.15.18:
+ esbuild@0.15.18:
resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==}
engines: {node: '>=12'}
hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.15.18
- '@esbuild/linux-loong64': 0.15.18
- esbuild-android-64: 0.15.18
- esbuild-android-arm64: 0.15.18
- esbuild-darwin-64: 0.15.18
- esbuild-darwin-arm64: 0.15.18
- esbuild-freebsd-64: 0.15.18
- esbuild-freebsd-arm64: 0.15.18
- esbuild-linux-32: 0.15.18
- esbuild-linux-64: 0.15.18
- esbuild-linux-arm: 0.15.18
- esbuild-linux-arm64: 0.15.18
- esbuild-linux-mips64le: 0.15.18
- esbuild-linux-ppc64le: 0.15.18
- esbuild-linux-riscv64: 0.15.18
- esbuild-linux-s390x: 0.15.18
- esbuild-netbsd-64: 0.15.18
- esbuild-openbsd-64: 0.15.18
- esbuild-sunos-64: 0.15.18
- esbuild-windows-32: 0.15.18
- esbuild-windows-64: 0.15.18
- esbuild-windows-arm64: 0.15.18
- dev: true
- /esbuild@0.18.16:
+ esbuild@0.18.16:
resolution: {integrity: sha512-1xLsOXrDqwdHxyXb/x/SOyg59jpf/SH7YMvU5RNSU7z3TInaASNJWNFJ6iRvLvLETZMasF3d1DdZLg7sgRimRQ==}
engines: {node: '>=12'}
hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.18.16
- '@esbuild/android-arm64': 0.18.16
- '@esbuild/android-x64': 0.18.16
- '@esbuild/darwin-arm64': 0.18.16
- '@esbuild/darwin-x64': 0.18.16
- '@esbuild/freebsd-arm64': 0.18.16
- '@esbuild/freebsd-x64': 0.18.16
- '@esbuild/linux-arm': 0.18.16
- '@esbuild/linux-arm64': 0.18.16
- '@esbuild/linux-ia32': 0.18.16
- '@esbuild/linux-loong64': 0.18.16
- '@esbuild/linux-mips64el': 0.18.16
- '@esbuild/linux-ppc64': 0.18.16
- '@esbuild/linux-riscv64': 0.18.16
- '@esbuild/linux-s390x': 0.18.16
- '@esbuild/linux-x64': 0.18.16
- '@esbuild/netbsd-x64': 0.18.16
- '@esbuild/openbsd-x64': 0.18.16
- '@esbuild/sunos-x64': 0.18.16
- '@esbuild/win32-arm64': 0.18.16
- '@esbuild/win32-ia32': 0.18.16
- '@esbuild/win32-x64': 0.18.16
- dev: true
- /esbuild@0.20.2:
+ esbuild@0.20.2:
resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
+
+ esbuild@0.21.5:
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ escalade@3.1.1:
+ resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ engines: {node: '>=6'}
+
+ escalade@3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ engines: {node: '>=6'}
+
+ escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
+
+ escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+
+ escodegen@2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+
+ eslint-config-prettier@9.1.0:
+ resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+
+ eslint-plugin-prettier@5.1.3:
+ resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ '@types/eslint': '>=8.0.0'
+ eslint: '>=8.0.0'
+ eslint-config-prettier: '*'
+ prettier: '>=3.0.0'
+ peerDependenciesMeta:
+ '@types/eslint':
+ optional: true
+ eslint-config-prettier:
+ optional: true
+
+ eslint-plugin-vue@9.23.0:
+ resolution: {integrity: sha512-Bqd/b7hGYGrlV+wP/g77tjyFmp81lh5TMw0be9093X02SyelxRRfCI6/IsGq/J7Um0YwB9s0Ry0wlFyjPdmtUw==}
+ engines: {node: ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+
+ eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint@8.57.0:
+ resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+
+ espree@9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ esprima@4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ esquery@1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
+
+ esrecurse@4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+
+ estraverse@5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+
+ estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+
+ estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+
+ esutils@2.0.3:
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+
+ event-stream@3.3.4:
+ resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
+
+ eventemitter2@6.4.7:
+ resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==}
+
+ execa@4.1.0:
+ resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
+ engines: {node: '>=10'}
+
+ execa@5.1.1:
+ 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'}
+
+ executable@4.1.1:
+ resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
+ engines: {node: '>=4'}
+
+ extend@3.0.2:
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+
+ extract-zip@2.0.1:
+ resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
+ engines: {node: '>= 10.17.0'}
+ hasBin: true
+
+ extsprintf@1.3.0:
+ resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
+ engines: {'0': node >=0.6.0}
+
+ fast-deep-equal@3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+
+ fast-diff@1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+
+ fast-fifo@1.3.0:
+ resolution: {integrity: sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw==}
+
+ fast-json-stable-stringify@2.1.0:
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+
+ fast-levenshtein@2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+
+ fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+
+ fd-slicer@1.1.0:
+ resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+
+ fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+
+ figures@3.2.0:
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
+
+ file-entry-cache@6.0.1:
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+
+ filelist@1.0.4:
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+
+ fill-range@7.0.1:
+ resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ engines: {node: '>=8'}
+
+ find-up@5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+
+ flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+
+ flat@5.0.2:
+ resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
+ hasBin: true
+
+ flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+
+ follow-redirects@1.15.5:
+ resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+
+ for-each@0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+
+ forever-agent@0.6.1:
+ resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
+
+ form-data@2.3.3:
+ resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
+ engines: {node: '>= 0.12'}
+
+ form-data@4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ engines: {node: '>= 6'}
+
+ formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
+
+ from@0.1.7:
+ resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
+
+ fs-constants@1.0.0:
+ resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
+
+ fs-extra@11.2.0:
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ engines: {node: '>=14.14'}
+
+ fs-extra@9.1.0:
+ resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
+ engines: {node: '>=10'}
+
+ fs.realpath@1.0.0:
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+
+ fsevents@2.3.2:
+ resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+
+ functions-have-names@1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+
+ geckodriver@4.4.1:
+ resolution: {integrity: sha512-nnAdIrwLkMcDu4BitWXF23pEMeZZ0Cj7HaWWFdSpeedBP9z6ft150JYiGO2mwzw6UiR823Znk1JeIf07RyzloA==}
+ engines: {node: ^16.13 || >=18 || >=20}
+ hasBin: true
+
+ gensync@1.0.0-beta.2:
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
+
+ get-caller-file@2.0.5:
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+
+ get-func-name@2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
+
+ get-intrinsic@1.2.2:
+ resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+
+ get-port@5.1.1:
+ resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
+ engines: {node: '>=8'}
+
+ get-stream@5.2.0:
+ resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
+ engines: {node: '>=8'}
+
+ get-stream@6.0.1:
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
+
+ get-stream@8.0.1:
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
+
+ get-uri@6.0.3:
+ resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
+ engines: {node: '>= 14'}
+
+ getos@3.2.1:
+ resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
+
+ getpass@0.1.7:
+ resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+
+ glob-parent@5.1.2:
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
+
+ glob-parent@6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+
+ glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+
+ glob@8.1.0:
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+ engines: {node: '>=12'}
+ deprecated: Glob versions prior to v9 are no longer supported
+
+ global-dirs@3.0.0:
+ resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==}
+ engines: {node: '>=10'}
+
+ globals@11.12.0:
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
+ engines: {node: '>=4'}
+
+ globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
+ engines: {node: '>=8'}
+
+ gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+
+ graceful-fs@4.2.10:
+ resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
+
+ graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+
+ has-bigints@1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+
+ has-flag@3.0.0:
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
+
+ has-flag@4.0.0:
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+
+ has-property-descriptors@1.0.1:
+ resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+
+ has-proto@1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ engines: {node: '>= 0.4'}
+
+ has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
+
+ has-tostringtag@1.0.0:
+ resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
+ engines: {node: '>= 0.4'}
+
+ hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ engines: {node: '>= 0.4'}
+
+ he@1.2.0:
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+
+ hookable@5.5.3:
+ resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
+
+ html-encoding-sniffer@4.0.0:
+ 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'}
+
+ http-signature@1.3.6:
+ resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==}
+ engines: {node: '>=0.10'}
+
+ https-proxy-agent@7.0.4:
+ resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ engines: {node: '>= 14'}
+
+ human-signals@1.1.1:
+ resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
+ engines: {node: '>=8.12.0'}
+
+ human-signals@2.1.0:
+ 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'}
+
+ iconv-lite@0.6.3:
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
+
+ ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
+ ignore@5.3.1:
+ resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ engines: {node: '>= 4'}
+
+ immediate@3.0.6:
+ resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
+
+ import-fresh@3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
+
+ imurmurhash@0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+
+ indent-string@4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+
+ inflight@1.0.6:
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+
+ inherits@2.0.4:
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+
+ ini@1.3.8:
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+
+ ini@2.0.0:
+ resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
+ engines: {node: '>=10'}
+
+ internal-slot@1.0.6:
+ resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
+ engines: {node: '>= 0.4'}
+
+ ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
+
+ ip-regex@4.3.0:
+ resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==}
+ engines: {node: '>=8'}
+
+ is-arguments@1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+
+ is-array-buffer@3.0.2:
+ resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+
+ is-bigint@1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+
+ is-binary-path@2.1.0:
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
+
+ is-boolean-object@1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ engines: {node: '>= 0.4'}
+
+ is-callable@1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
+
+ is-ci@3.0.1:
+ resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
+ hasBin: true
+
+ is-date-object@1.0.5:
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ engines: {node: '>= 0.4'}
+
+ is-docker@2.2.1:
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
+ engines: {node: '>=8'}
+ hasBin: true
+
+ is-docker@3.0.0:
+ resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ hasBin: true
+
+ is-extglob@2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+
+ is-glob@4.0.3:
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
+
+ is-inside-container@1.0.0:
+ resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
+ engines: {node: '>=14.16'}
+ hasBin: true
+
+ is-installed-globally@0.4.0:
+ resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
+ engines: {node: '>=10'}
+
+ is-interactive@1.0.0:
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
+
+ is-map@2.0.2:
+ resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
+
+ is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
+
+ is-number@7.0.0:
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
+
+ is-path-inside@3.0.3:
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
+
+ is-plain-obj@2.1.0:
+ resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
+ engines: {node: '>=8'}
+
+ is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+
+ is-regex@1.1.4:
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ engines: {node: '>= 0.4'}
+
+ is-set@2.0.2:
+ resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
+
+ is-shared-array-buffer@1.0.2:
+ resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+
+ is-stream@2.0.1:
+ 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-string@1.0.7:
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ engines: {node: '>= 0.4'}
+
+ is-symbol@1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
+
+ is-typed-array@1.1.12:
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ engines: {node: '>= 0.4'}
+
+ is-typedarray@1.0.0:
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+
+ is-unicode-supported@0.1.0:
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
+
+ is-url@1.2.4:
+ resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
+
+ is-weakmap@2.0.1:
+ resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+
+ is-weakset@2.0.2:
+ resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+
+ is-what@4.1.16:
+ resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
+ engines: {node: '>=12.13'}
+
+ is-wsl@2.2.0:
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
+ engines: {node: '>=8'}
+
+ is-wsl@3.1.0:
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ engines: {node: '>=16'}
+
+ is2@2.0.9:
+ resolution: {integrity: sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==}
+ engines: {node: '>=v0.10.0'}
+
+ isarray@1.0.0:
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+
+ isarray@2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+
+ isexe@2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+ isexe@3.1.1:
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
+
+ isstream@0.1.2:
+ resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
+
+ jake@10.8.7:
+ resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ joi@17.11.0:
+ resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
+
+ js-beautify@1.14.9:
+ resolution: {integrity: sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ js-tokens@4.0.0:
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+ js-tokens@8.0.3:
+ resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
+
+ js-yaml@4.1.0:
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ hasBin: true
+
+ jsbn@0.1.1:
+ resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
+
+ jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+
+ jsdom@23.2.0:
+ resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^2.11.2
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
+ jsdom@24.1.0:
+ resolution: {integrity: sha512-6gpM7pRXCwIOKxX47cgOyvyQDN/Eh0f1MeKySBV2xGdKtqJBLj8P25eY3EVCWo2mglDDzozR2r2MW4T+JiNUZA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ canvas: ^2.11.2
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
+ jsesc@2.5.2:
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
+ json-parse-even-better-errors@3.0.0:
+ resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ json-schema-traverse@0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+
+ json-schema@0.4.0:
+ resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+
+ json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+
+ json-stringify-safe@5.0.1:
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+
+ json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ jsonc-parser@3.2.0:
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+
+ jsonfile@6.1.0:
+ resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+
+ jsprim@2.0.2:
+ resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==}
+ engines: {'0': node >=0.6.0}
+
+ jszip@3.10.1:
+ resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
+
+ just-extend@6.2.0:
+ resolution: {integrity: sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==}
+
+ keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+
+ kolorist@1.8.0:
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
+
+ lazy-ass@1.6.0:
+ resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
+ engines: {node: '> 0.8'}
+
+ lazystream@1.0.1:
+ resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
+ engines: {node: '>= 0.6.3'}
+
+ levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+
+ lie@3.3.0:
+ resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
+
+ listr2@3.14.0:
+ resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ enquirer: '>= 2.3.0 < 3'
+ peerDependenciesMeta:
+ enquirer:
+ optional: true
+
+ local-pkg@0.5.0:
+ resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ engines: {node: '>=14'}
+
+ locate-path@6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+
+ lodash.defaults@4.2.0:
+ resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
+
+ lodash.difference@4.5.0:
+ resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
+
+ lodash.flatten@4.4.0:
+ resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
+
+ lodash.get@4.4.2:
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
+
+ lodash.isplainobject@4.0.6:
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
+
+ lodash.merge@4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+ lodash.mergewith@4.6.2:
+ resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
+
+ lodash.once@4.1.1:
+ resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
+
+ lodash.union@4.6.0:
+ resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
+
+ lodash@4.17.21:
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+
+ log-symbols@4.1.0:
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
+
+ log-update@4.0.0:
+ resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
+ engines: {node: '>=10'}
+
+ loglevel-plugin-prefix@0.8.4:
+ resolution: {integrity: sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==}
+
+ loglevel@1.8.1:
+ resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
+ engines: {node: '>= 0.6.0'}
+
+ loupe@2.3.7:
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+
+ lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+
+ lru-cache@6.0.0:
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
+
+ lru-cache@7.18.3:
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
+
+ magic-string@0.30.10:
+ resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+
+ magic-string@0.30.8:
+ resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
+ engines: {node: '>=12'}
+
+ make-error@1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+
+ map-stream@0.1.0:
+ resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
+
+ mdn-data@2.0.30:
+ resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+
+ memorystream@0.3.1:
+ resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
+ engines: {node: '>= 0.10.0'}
+
+ merge-stream@2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+
+ mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+
+ mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+
+ mimic-fn@2.1.0:
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
+
+ mimic-fn@4.0.0:
+ resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
+ engines: {node: '>=12'}
+
+ minimatch@3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+
+ minimatch@5.0.1:
+ resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==}
+ engines: {node: '>=10'}
+
+ minimatch@5.1.0:
+ resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
+ engines: {node: '>=10'}
+
+ minimatch@9.0.1:
+ resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ minimatch@9.0.3:
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ minimist@1.2.6:
+ resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
+
+ minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+
+ mitt@3.0.1:
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
+
+ mkdirp@2.1.6:
+ resolution: {integrity: sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ mlly@1.4.2:
+ resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
+
+ mocha@10.3.0:
+ resolution: {integrity: sha512-uF2XJs+7xSLsrmIvn37i/wnc91nw7XjOQB8ccyx5aEgdnohr7n+rEiZP23WkCYHjilR6+EboEnbq/ZQDz4LSbg==}
+ engines: {node: '>= 14.0.0'}
+ hasBin: true
+
+ mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
+ engines: {node: '>=10'}
+
+ ms@2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+
+ ms@2.1.3:
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+ muggle-string@0.4.1:
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+
+ nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
+ natural-compare@1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+
+ netmask@2.0.2:
+ resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
+ engines: {node: '>= 0.4.0'}
+
+ nice-napi@1.0.2:
+ resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==}
+ os: ['!win32']
+
+ nightwatch-axe-verbose@2.3.0:
+ resolution: {integrity: sha512-IC29PLvYrbbKRdIU/NJaxk/UvTmQ5EiNN08UnCWyImpzV0Y7tE1CYchrvFTaHXBZkkZTQC3uHTeHF/41mvK8eQ==}
+
+ nightwatch@3.6.3:
+ resolution: {integrity: sha512-Md+Tz9SBNZ8cVzaRyhzzfKf06t/qE5609QMQ2vEciLwDiDkQPsTU6XZGypwldMxx05wu4UcPvDZnP7NZXlZilw==}
+ engines: {node: '>= 16'}
+ hasBin: true
+ peerDependencies:
+ '@cucumber/cucumber': '*'
+ chromedriver: '*'
+ geckodriver: '*'
+ peerDependenciesMeta:
+ '@cucumber/cucumber':
+ optional: true
+ chromedriver:
+ optional: true
+ geckodriver:
+ optional: true
+
+ nise@5.1.7:
+ resolution: {integrity: sha512-wWtNUhkT7k58uvWTB/Gy26eA/EJKtPZFVAhEilN5UYVmmGRYOURbejRUyKm0Uu9XVEW7K5nBOZfR8VMB4QR2RQ==}
+
+ node-addon-api@3.2.1:
+ resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
+
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
+
+ node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ node-gyp-build@4.6.0:
+ resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==}
+ hasBin: true
+
+ node-releases@2.0.13:
+ resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+
+ node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+
+ nopt@6.0.0:
+ resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ hasBin: true
+
+ normalize-path@3.0.0:
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
+
+ npm-normalize-package-bin@3.0.1:
+ resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ npm-run-all2@6.2.0:
+ resolution: {integrity: sha512-wA7yVIkthe6qJBfiJ2g6aweaaRlw72itsFGF6HuwCHKwtwAx/4BY1vVpk6bw6lS8RLMsexoasOkd0aYOmsFG7Q==}
+ engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
+ hasBin: true
+
+ npm-run-path@4.0.1:
+ resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
+ engines: {node: '>=8'}
+
+ npm-run-path@5.1.0:
+ resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+
+ nwsapi@2.2.10:
+ resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
+
+ object-inspect@1.12.2:
+ resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
+
+ object-is@1.1.5:
+ resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ engines: {node: '>= 0.4'}
+
+ object-keys@1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+
+ object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
+
+ once@1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
+ onetime@5.1.2:
+ 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'}
+
+ open@10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ engines: {node: '>=18'}
+
+ open@8.4.2:
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
+
+ optionator@0.9.3:
+ resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ engines: {node: '>= 0.8.0'}
+
+ ora@5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
+
+ ospath@1.2.2:
+ resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
+
+ p-limit@3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
+
+ p-limit@5.0.0:
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
+
+ p-locate@5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+
+ p-map@4.0.0:
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
+
+ pac-proxy-agent@7.0.1:
+ resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==}
+ engines: {node: '>= 14'}
+
+ pac-resolver@7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
+ engines: {node: '>= 14'}
+
+ pako@1.0.11:
+ resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
+
+ parent-module@1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+
+ parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+
+ path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+
+ path-exists@4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+
+ path-is-absolute@1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
+
+ path-key@3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
+
+ path-key@4.0.0:
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
+
+ path-to-regexp@6.2.1:
+ resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
+
+ pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+
+ pathval@1.1.1:
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+
+ pause-stream@0.0.11:
+ resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
+
+ pend@1.2.0:
+ resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+
+ perfect-debounce@1.0.0:
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+
+ performance-now@2.1.0:
+ resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
+
+ picocolors@1.0.0:
+ resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+
+ picocolors@1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+
+ picomatch@2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
+
+ pidtree@0.6.0:
+ resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+
+ pify@2.3.0:
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
+
+ pinia@2.1.7:
+ resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
+ peerDependencies:
+ '@vue/composition-api': ^1.4.0
+ typescript: '>=4.4.4'
+ vue: ^2.6.14 || ^3.3.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+ typescript:
+ optional: true
+
+ piscina@4.4.0:
+ resolution: {integrity: sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==}
+
+ pkg-types@1.0.3:
+ resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+
+ playwright-core@1.44.1:
+ resolution: {integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ playwright@1.44.1:
+ resolution: {integrity: sha512-qr/0UJ5CFAtloI3avF95Y0L1xQo6r3LQArLIg/z/PoGJ6xa+EwzrwO5lpNr/09STxdHuUoP2mvuELJS+hLdtgg==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ postcss-selector-parser@6.0.16:
+ resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ engines: {node: '>=4'}
+
+ postcss@8.4.35:
+ resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ postcss@8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ prelude-ls@1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+
+ prettier-linter-helpers@1.0.0:
+ resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+ engines: {node: '>=6.0.0'}
+
+ prettier@3.2.5:
+ resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ engines: {node: '>=14'}
+ hasBin: true
+
+ pretty-bytes@5.6.0:
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
+ engines: {node: '>=6'}
+
+ pretty-format@29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ process-nextick-args@2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+
+ process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
+ proto-list@1.2.4:
+ resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
+
+ proxy-agent@6.4.0:
+ resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
+ engines: {node: '>= 14'}
+
+ proxy-from-env@1.0.0:
+ resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==}
+
+ proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+
+ ps-tree@1.2.0:
+ resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
+ engines: {node: '>= 0.10'}
+ hasBin: true
+
+ psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+
+ pump@3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+
+ qs@6.10.4:
+ resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==}
+ engines: {node: '>=0.6'}
+
+ querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+
+ queue-microtask@1.2.3:
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
+ queue-tick@1.0.1:
+ resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+
+ randombytes@2.1.0:
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
+
+ react-is@18.2.0:
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+
+ read-package-json-fast@3.0.2:
+ resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+
+ readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+
+ readdir-glob@1.1.3:
+ resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
+
+ readdirp@3.6.0:
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
+
+ regexp.prototype.flags@1.5.1:
+ resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ engines: {node: '>= 0.4'}
+
+ request-progress@3.0.0:
+ resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==}
+
+ require-directory@2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
+
+ require-from-string@2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
+
+ requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+
+ resolve-from@4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+
+ restore-cursor@3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
+
+ reusify@1.0.4:
+ resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ rfdc@1.3.1:
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+
+ rimraf@3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ hasBin: true
+
+ rollup@3.28.0:
+ resolution: {integrity: sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rollup@4.14.1:
+ resolution: {integrity: sha512-4LnHSdd3QK2pa1J6dFbfm1HN0D7vSK/ZuZTsdyUAlA6Rr1yTouUTL13HaDOGJVgby461AhrNGBS7sCGXXtT+SA==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rrweb-cssom@0.6.0:
+ resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+
+ rrweb-cssom@0.7.1:
+ resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==}
+
+ run-applescript@7.0.0:
+ resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ engines: {node: '>=18'}
+
+ run-parallel@1.2.0:
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+
+ rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+
+ safe-buffer@5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+
+ safe-buffer@5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+
+ safer-buffer@2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+
+ selenium-webdriver@4.21.0:
+ resolution: {integrity: sha512-WaEJHZjOWNth1QG5FEpxpREER0qptZBMonFU6GtAqdCNLJVxbtC3E7oS/I/+Q1sf1W032Wg0Ebk+m46lANOXyQ==}
+ engines: {node: '>= 14.21.0'}
+
+ semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+
+ semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ semver@7.6.0:
+ resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ serialize-javascript@6.0.0:
+ resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
+
+ set-function-length@1.1.1:
+ resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
+ engines: {node: '>= 0.4'}
+
+ set-function-name@2.0.1:
+ resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ engines: {node: '>= 0.4'}
+
+ setimmediate@1.0.5:
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
+
+ shebang-command@2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
+
+ shebang-regex@3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
+
+ shell-quote@1.7.3:
+ resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
+
+ side-channel@1.0.4:
+ resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+
+ siginfo@2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+
+ signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+
+ signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+
+ sinon@17.0.1:
+ resolution: {integrity: sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==}
+
+ sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
+ engines: {node: '>= 10'}
+
+ slice-ansi@3.0.0:
+ resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
+ engines: {node: '>=8'}
+
+ slice-ansi@4.0.0:
+ resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
+ engines: {node: '>=10'}
+
+ smart-buffer@4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+
+ socks-proxy-agent@8.0.2:
+ resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ engines: {node: '>= 14'}
+
+ socks@2.8.1:
+ resolution: {integrity: sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+
+ source-map-js@1.0.2:
+ resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
+ engines: {node: '>=0.10.0'}
+
+ source-map-js@1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ engines: {node: '>=0.10.0'}
+
+ source-map@0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+
+ speakingurl@14.0.1:
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
+ engines: {node: '>=0.10.0'}
+
+ split@0.3.3:
+ resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
+
+ sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+
+ sshpk@1.17.0:
+ resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+
+ stackback@0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+
+ stacktrace-parser@0.1.10:
+ resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ engines: {node: '>=6'}
+
+ start-server-and-test@2.0.4:
+ resolution: {integrity: sha512-CKNeBTcP0hVqIlNismHMudb9q3lLdAjcVPO13/7gfI66fcJpeIb/o4NzQd1JK/CD+lfWVqr10ZH9Y14+OwlJuw==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ std-env@3.6.0:
+ resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
+
+ stop-iteration-iterator@1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+
+ stream-combiner@0.0.4:
+ resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
+
+ streamx@2.15.0:
+ resolution: {integrity: sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==}
+
+ string-width@4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+
+ string_decoder@1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+
+ string_decoder@1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+
+ strip-ansi@6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+
+ strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ engines: {node: '>=12'}
+
+ strip-final-newline@2.0.0:
+ resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
+ engines: {node: '>=6'}
+
+ strip-final-newline@3.0.0:
+ resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+ engines: {node: '>=12'}
+
+ strip-json-comments@3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+
+ strip-literal@2.0.0:
+ resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
+
+ superjson@2.2.1:
+ resolution: {integrity: sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==}
+ engines: {node: '>=16'}
+
+ supports-color@5.5.0:
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
+
+ supports-color@7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
+
+ supports-color@8.1.1:
+ 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==}
+
+ synckit@0.8.8:
+ resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+
+ tar-fs@3.0.6:
+ resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==}
+
+ tar-stream@2.2.0:
+ resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
+ engines: {node: '>=6'}
+
+ tar-stream@3.1.6:
+ resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+
+ tcp-port-used@1.0.2:
+ resolution: {integrity: sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==}
+
+ text-table@0.2.0:
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+
+ throttleit@1.0.0:
+ resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==}
+
+ through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+
+ tinybench@2.5.1:
+ resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
+
+ tinypool@0.8.4:
+ resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
+ engines: {node: '>=14.0.0'}
+
+ tinyspy@2.2.0:
+ resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
+ engines: {node: '>=14.0.0'}
+
+ tmp@0.2.1:
+ resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
+ engines: {node: '>=8.17.0'}
+
+ tmp@0.2.3:
+ resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
+ engines: {node: '>=14.14'}
+
+ to-fast-properties@2.0.0:
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ engines: {node: '>=4'}
+
+ to-regex-range@5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
+
+ totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+
+ tough-cookie@4.1.3:
+ resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
+ engines: {node: '>=6'}
+
+ tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
+
+ tr46@5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
+
+ ts-node@10.9.2:
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
+
+ tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+
+ tunnel-agent@0.6.0:
+ resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+
+ tweetnacl@0.14.5:
+ resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
+
+ type-check@0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+
+ type-detect@4.0.8:
+ resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ engines: {node: '>=4'}
+
+ type-fest@0.20.2:
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
+
+ type-fest@0.21.3:
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
+
+ type-fest@0.7.1:
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
+
+ typescript@5.4.2:
+ resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ ufo@1.3.2:
+ resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
+
+ undici-types@5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+
+ universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+
+ universalify@2.0.0:
+ resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ engines: {node: '>= 10.0.0'}
+
+ untildify@4.0.0:
+ resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
+ engines: {node: '>=8'}
+
+ update-browserslist-db@1.0.11:
+ resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
+ update-browserslist-db@1.0.16:
+ resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
+ uri-js@4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+ url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+
+ util-deprecate@1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+
+ uuid@8.3.2:
+ resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ hasBin: true
+
+ v8-compile-cache-lib@3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+
+ verror@1.10.0:
+ resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
+ engines: {'0': node >=0.6.0}
+
+ vite-hot-client@0.2.3:
+ resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
+
+ vite-node@1.6.0:
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+
+ vite-plugin-inspect@0.8.3:
+ resolution: {integrity: sha512-SBVzOIdP/kwe6hjkt7LSW4D0+REqqe58AumcnCfRNw4Kt3mbS9pEBkch+nupu2PBxv2tQi69EQHQ1ZA1vgB/Og==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
+
+ vite-plugin-inspect@0.8.4:
+ resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
+
+ vite-plugin-nightwatch@0.4.6:
+ resolution: {integrity: sha512-7mxANgh3KA2c/xGJU35T8z1Xj9akWQ4FuyB1PN3nwinqxqYBAx44sW9Z87a2x6efj5TD4lU0Tbuvvgous6F1+Q==}
+
+ vite-plugin-vue-devtools@7.0.27:
+ resolution: {integrity: sha512-sb4B3ZGYueIiqQvQGCEDBsC8Byr4VnlUbbDS44DhYfcIEDChTSO0yRmJ3IJeESJQQMhEh3wS0cgQglL8A9lCuw==}
+ engines: {node: '>=v14.21.3'}
+ peerDependencies:
+ vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
+
+ vite-plugin-vue-devtools@7.3.1:
+ resolution: {integrity: sha512-KuksceHlb5QZtb5gRB4wuRiquZRX74//i0X5jzvy5QzY11qwK44goyVrhPupZbsNfqwmZWNi3CQAe0RhLBUylg==}
+ engines: {node: '>=v14.21.3'}
+ peerDependencies:
+ vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
+
+ vite-plugin-vue-inspector@4.0.2:
+ resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==}
+ peerDependencies:
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
+
+ vite-plugin-vue-inspector@5.1.2:
+ resolution: {integrity: sha512-M+yH2LlQtVNzJAljQM+61CqDXBvHim8dU5ImGaQuwlo13tMDHue5D7IC20YwDJuWDODiYc/cZBUYspVlyPf2vQ==}
+ peerDependencies:
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
+
+ vite@4.5.0:
+ resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
+ vite@5.2.8:
+ resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
+ vite@5.3.1:
+ resolution: {integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
+ vitest@1.6.0:
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+
+ vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+
+ vue-component-type-helpers@2.0.6:
+ resolution: {integrity: sha512-qdGXCtoBrwqk1BT6r2+1Wcvl583ZVkuSZ3or7Y1O2w5AvWtlvvxwjGhmz5DdPJS9xqRdDlgTJ/38ehWnEi0tFA==}
+
+ vue-demi@0.14.5:
+ resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ peerDependencies:
+ '@vue/composition-api': ^1.0.0-rc.1
+ vue: ^3.0.0-0 || ^2.6.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+
+ vue-eslint-parser@9.4.2:
+ resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}
+ engines: {node: ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '>=6.0.0'
+
+ vue-router@4.3.3:
+ resolution: {integrity: sha512-8Q+u+WP4N2SXY38FDcF2H1dUEbYVHVPtPCPZj/GTZx8RCbiB8AtJP9+YIxn4Vs0svMTNQcLIzka4GH7Utkx9xQ==}
+ peerDependencies:
+ vue: ^3.2.0
+
+ vue-template-compiler@2.7.14:
+ resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
+
+ vue-tsc@2.0.21:
+ resolution: {integrity: sha512-E6x1p1HaHES6Doy8pqtm7kQern79zRtIewkf9fiv7Y43Zo4AFDS5hKi+iHi2RwEhqRmuiwliB1LCEFEGwvxQnw==}
+ hasBin: true
+ peerDependencies:
+ typescript: '*'
+
+ vue@3.4.21:
+ resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ vue@3.4.29:
+ resolution: {integrity: sha512-8QUYfRcYzNlYuzKPfge1UWC6nF9ym0lx7mpGVPJYNhddxEf3DD0+kU07NTL0sXuiT2HuJuKr/iEO8WvXvT0RSQ==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
+
+ wait-on@7.2.0:
+ resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
+
+ wcwidth@1.0.1:
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+
+ web-streams-polyfill@3.2.1:
+ resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
+ engines: {node: '>= 8'}
+
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
+ whatwg-url@14.0.0:
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ engines: {node: '>=18'}
+
+ which-boxed-primitive@1.0.2:
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+
+ which-collection@1.0.1:
+ resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+
+ which-typed-array@1.1.13:
+ resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
+ engines: {node: '>= 0.4'}
+
+ which@2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
+
+ which@4.0.0:
+ resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
+ engines: {node: ^16.13.0 || >=18.0.0}
+ hasBin: true
+
+ why-is-node-running@2.2.2:
+ resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ engines: {node: '>=8'}
+ hasBin: true
+
+ widest-line@3.1.0:
+ resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
+ engines: {node: '>=8'}
+
+ workerpool@6.2.1:
+ resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==}
+
+ wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+
+ wrap-ansi@7.0.0:
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
+
+ wrappy@1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+
+ ws@8.14.2:
+ resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ ws@8.17.1:
+ resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ xml-name-validator@4.0.0:
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
+ engines: {node: '>=12'}
+
+ xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+
+ xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+
+ y18n@5.0.8:
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
+
+ yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
+ yallist@4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+
+ yargs-parser@20.2.4:
+ resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
+ engines: {node: '>=10'}
+
+ yargs-unparser@2.0.0:
+ resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
+ engines: {node: '>=10'}
+
+ yargs@16.2.0:
+ resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+ engines: {node: '>=10'}
+
+ yauzl@2.10.0:
+ resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+
+ yn@3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+
+ yocto-queue@0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+
+ yocto-queue@1.0.0:
+ resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ engines: {node: '>=12.20'}
+
+ zip-stream@4.1.0:
+ resolution: {integrity: sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==}
+ engines: {node: '>= 10'}
+
+snapshots:
+
+ '@aashutoshrathi/word-wrap@1.2.6': {}
+
+ '@ampproject/remapping@2.2.0':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.1.1
+ '@jridgewell/trace-mapping': 0.3.18
+
+ '@antfu/utils@0.7.7': {}
+
+ '@asamuzakjp/dom-selector@2.0.2':
+ dependencies:
+ bidi-js: 1.0.3
+ css-tree: 2.3.1
+ is-potential-custom-element-name: 1.0.1
+
+ '@babel/code-frame@7.23.5':
+ dependencies:
+ '@babel/highlight': 7.23.4
+ chalk: 2.4.2
+
+ '@babel/code-frame@7.24.7':
+ dependencies:
+ '@babel/highlight': 7.24.7
+ picocolors: 1.0.0
+
+ '@babel/compat-data@7.22.9': {}
+
+ '@babel/compat-data@7.24.7': {}
+
+ '@babel/core@7.23.5':
+ dependencies:
+ '@ampproject/remapping': 2.2.0
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.5
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
+ '@babel/helpers': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.5
+ '@babel/types': 7.23.5
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.24.7':
+ dependencies:
+ '@ampproject/remapping': 2.2.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ convert-source-map: 2.0.0
+ debug: 4.3.4(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.23.5':
+ dependencies:
+ '@babel/types': 7.23.5
+ '@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.18
+ jsesc: 2.5.2
+
+ '@babel/generator@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+
+ '@babel/helper-annotate-as-pure@7.22.5':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-annotate-as-pure@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
+ '@babel/helper-compilation-targets@7.22.15':
+ dependencies:
+ '@babel/compat-data': 7.22.9
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.21.10
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-compilation-targets@7.24.7':
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ browserslist: 4.23.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
+
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-environment-visitor@7.22.20': {}
+
+ '@babel/helper-environment-visitor@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
+ '@babel/helper-function-name@7.23.0':
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.5
+
+ '@babel/helper-function-name@7.24.7':
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+
+ '@babel/helper-hoist-variables@7.22.5':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-hoist-variables@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
+ '@babel/helper-member-expression-to-functions@7.23.0':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-member-expression-to-functions@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-imports@7.22.15':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-module-imports@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
+
+ '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-optimise-call-expression@7.22.5':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-optimise-call-expression@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
+ '@babel/helper-plugin-utils@7.24.0': {}
+
+ '@babel/helper-plugin-utils@7.24.7': {}
+
+ '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-simple-access@7.22.5':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-simple-access@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-split-export-declaration@7.22.6':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/helper-split-export-declaration@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
+ '@babel/helper-string-parser@7.23.4': {}
+
+ '@babel/helper-string-parser@7.24.7': {}
+
+ '@babel/helper-validator-identifier@7.22.20': {}
+
+ '@babel/helper-validator-identifier@7.24.7': {}
+
+ '@babel/helper-validator-option@7.23.5': {}
+
+ '@babel/helper-validator-option@7.24.7': {}
+
+ '@babel/helpers@7.23.5':
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.5
+ '@babel/types': 7.23.5
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helpers@7.24.7':
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+
+ '@babel/highlight@7.23.4':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+
+ '@babel/highlight@7.24.7':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.24.7
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.0
+
+ '@babel/parser@7.23.9':
+ dependencies:
+ '@babel/types': 7.23.5
+
+ '@babel/parser@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
+ '@babel/plugin-proposal-decorators@7.24.0(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.23.5)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.23.5)
+
+ '@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-plugin-utils': 7.24.0
+
+ '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-plugin-utils': 7.24.0
+
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-plugin-utils': 7.24.0
+
+ '@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-plugin-utils': 7.24.0
+
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-plugin-utils': 7.24.0
+
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.23.5)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5)
+
+ '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/template@7.22.15':
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.5
+
+ '@babel/template@7.24.7':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+
+ '@babel/traverse@7.23.5':
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.5
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/traverse@7.24.7':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/types@7.23.5':
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+
+ '@babel/types@7.24.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+
+ '@colors/colors@1.5.0':
+ optional: true
+
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+
+ '@cypress/request@3.0.1':
+ dependencies:
+ aws-sign2: 0.7.0
+ aws4: 1.11.0
+ caseless: 0.12.0
+ combined-stream: 1.0.8
+ extend: 3.0.2
+ forever-agent: 0.6.1
+ form-data: 2.3.3
+ http-signature: 1.3.6
+ is-typedarray: 1.0.0
+ isstream: 0.1.2
+ json-stringify-safe: 5.0.1
+ mime-types: 2.1.35
+ performance-now: 2.1.0
+ qs: 6.10.4
+ safe-buffer: 5.2.1
+ tough-cookie: 4.1.3
+ tunnel-agent: 0.6.0
+ uuid: 8.3.2
+
+ '@cypress/xvfb@1.2.4(supports-color@8.1.1)':
+ dependencies:
+ debug: 3.2.7(supports-color@8.1.1)
+ lodash.once: 4.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@esbuild/aix-ppc64@0.20.2':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.21.5':
+ optional: true
+
+ '@esbuild/android-arm64@0.18.16':
+ optional: true
+
+ '@esbuild/android-arm64@0.20.2':
+ optional: true
+
+ '@esbuild/android-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/android-arm@0.15.18':
+ optional: true
+
+ '@esbuild/android-arm@0.17.19':
+ optional: true
+
+ '@esbuild/android-arm@0.18.16':
+ optional: true
+
+ '@esbuild/android-arm@0.20.2':
+ optional: true
+
+ '@esbuild/android-arm@0.21.5':
+ optional: true
+
+ '@esbuild/android-x64@0.18.16':
+ optional: true
+
+ '@esbuild/android-x64@0.20.2':
+ optional: true
+
+ '@esbuild/android-x64@0.21.5':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.18.16':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.20.2':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/darwin-x64@0.18.16':
+ optional: true
+
+ '@esbuild/darwin-x64@0.20.2':
+ optional: true
+
+ '@esbuild/darwin-x64@0.21.5':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.18.16':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.20.2':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.18.16':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.20.2':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-arm64@0.18.16':
+ optional: true
+
+ '@esbuild/linux-arm64@0.20.2':
+ optional: true
+
+ '@esbuild/linux-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-arm@0.18.16':
+ optional: true
+
+ '@esbuild/linux-arm@0.20.2':
+ optional: true
+
+ '@esbuild/linux-arm@0.21.5':
+ optional: true
+
+ '@esbuild/linux-ia32@0.18.16':
+ optional: true
+
+ '@esbuild/linux-ia32@0.20.2':
+ optional: true
+
+ '@esbuild/linux-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/linux-loong64@0.15.18':
+ optional: true
+
+ '@esbuild/linux-loong64@0.18.16':
+ optional: true
+
+ '@esbuild/linux-loong64@0.20.2':
+ optional: true
+
+ '@esbuild/linux-loong64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.18.16':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.20.2':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.21.5':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.18.16':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.20.2':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.18.16':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.20.2':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-s390x@0.18.16':
+ optional: true
+
+ '@esbuild/linux-s390x@0.20.2':
+ optional: true
+
+ '@esbuild/linux-s390x@0.21.5':
+ optional: true
+
+ '@esbuild/linux-x64@0.18.16':
+ optional: true
+
+ '@esbuild/linux-x64@0.20.2':
+ optional: true
+
+ '@esbuild/linux-x64@0.21.5':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.18.16':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.20.2':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.18.16':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.20.2':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/sunos-x64@0.18.16':
+ optional: true
+
+ '@esbuild/sunos-x64@0.20.2':
+ optional: true
+
+ '@esbuild/sunos-x64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-arm64@0.18.16':
+ optional: true
+
+ '@esbuild/win32-arm64@0.20.2':
+ optional: true
+
+ '@esbuild/win32-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-ia32@0.18.16':
+ optional: true
+
+ '@esbuild/win32-ia32@0.20.2':
+ optional: true
+
+ '@esbuild/win32-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/win32-x64@0.18.16':
+ optional: true
+
+ '@esbuild/win32-x64@0.20.2':
+ optional: true
+
+ '@esbuild/win32-x64@0.21.5':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
+ dependencies:
+ eslint: 8.57.0
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/regexpp@4.10.0': {}
+
+ '@eslint/eslintrc@2.1.4':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4(supports-color@8.1.1)
+ espree: 9.6.1
+ globals: 13.24.0
+ ignore: 5.3.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/js@8.57.0': {}
+
+ '@hapi/hoek@9.3.0': {}
+
+ '@hapi/topo@5.1.0':
+ dependencies:
+ '@hapi/hoek': 9.3.0
+
+ '@humanwhocodes/config-array@0.11.14':
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.2
+ debug: 4.3.4(supports-color@8.1.1)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@humanwhocodes/module-importer@1.0.1': {}
+
+ '@humanwhocodes/object-schema@2.0.2': {}
+
+ '@jest/schemas@29.6.3':
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+
+ '@jridgewell/gen-mapping@0.1.1':
+ dependencies:
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+
+ '@jridgewell/gen-mapping@0.3.2':
+ dependencies:
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.18
+
+ '@jridgewell/gen-mapping@0.3.5':
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
+
+ '@jridgewell/resolve-uri@3.1.0': {}
+
+ '@jridgewell/set-array@1.1.2': {}
+
+ '@jridgewell/set-array@1.2.1': {}
+
+ '@jridgewell/sourcemap-codec@1.4.14': {}
+
+ '@jridgewell/sourcemap-codec@1.4.15': {}
+
+ '@jridgewell/trace-mapping@0.3.18':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.14
+
+ '@jridgewell/trace-mapping@0.3.25':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.15
+
+ '@jridgewell/trace-mapping@0.3.9':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.15
+
+ '@nightwatch/chai@5.0.3':
+ dependencies:
+ assertion-error: 1.1.0
+ check-error: 1.0.2
+ deep-eql: 4.0.1
+ loupe: 2.3.7
+ pathval: 1.1.1
+ type-detect: 4.0.8
+
+ '@nightwatch/esbuild-utils@0.2.1':
+ dependencies:
+ '@babel/core': 7.23.5
+ esbuild: 0.15.18
+ lodash.merge: 4.6.2
+ lodash.mergewith: 4.6.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@nightwatch/html-reporter-template@0.3.0': {}
+
+ '@nightwatch/nightwatch-inspector@1.0.1':
+ dependencies:
+ archiver: 5.3.1
+
+ '@nightwatch/vue@3.1.1(@types/node@20.14.5)(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ '@nightwatch/esbuild-utils': 0.2.1
+ '@vitejs/plugin-vue': 4.5.2(vite@4.5.0(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
+ get-port: 5.1.1
+ vite: 4.5.0(@types/node@20.14.5)
+ vite-plugin-nightwatch: 0.4.6
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.19
+ transitivePeerDependencies:
+ - '@types/node'
+ - bufferutil
+ - less
+ - lightningcss
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - utf-8-validate
+ - vue
+
+ '@nodelib/fs.scandir@2.1.5':
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ '@nodelib/fs.stat@2.0.5': {}
+
+ '@nodelib/fs.walk@1.2.8':
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.17.1
+
+ '@one-ini/wasm@0.1.1': {}
+
+ '@pkgr/core@0.1.1': {}
+
+ '@playwright/test@1.44.1':
+ dependencies:
+ playwright: 1.44.1
+
+ '@polka/url@1.0.0-next.25': {}
+
+ '@rollup/pluginutils@5.1.0(rollup@4.14.1)':
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 4.14.1
+
+ '@rollup/rollup-android-arm-eabi@4.14.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.14.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.14.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.14.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.14.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.14.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.14.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.14.1':
+ optional: true
+
+ '@rushstack/eslint-patch@1.10.2': {}
+
+ '@sideway/address@4.1.4':
+ dependencies:
+ '@hapi/hoek': 9.3.0
+
+ '@sideway/formula@3.0.1': {}
+
+ '@sideway/pinpoint@2.0.0': {}
+
+ '@sinclair/typebox@0.27.8': {}
+
+ '@sinonjs/commons@2.0.0':
+ dependencies:
+ type-detect: 4.0.8
+
+ '@sinonjs/commons@3.0.0':
+ dependencies:
+ type-detect: 4.0.8
+
+ '@sinonjs/fake-timers@11.2.2':
+ dependencies:
+ '@sinonjs/commons': 3.0.0
+
+ '@sinonjs/samsam@8.0.0':
+ dependencies:
+ '@sinonjs/commons': 2.0.0
+ lodash.get: 4.4.2
+ type-detect: 4.0.8
+
+ '@sinonjs/text-encoding@0.7.2': {}
+
+ '@testim/chrome-version@1.1.4': {}
+
+ '@tootallnate/quickjs-emscripten@0.23.0': {}
+
+ '@tsconfig/node10@1.0.9': {}
+
+ '@tsconfig/node12@1.0.11': {}
+
+ '@tsconfig/node14@1.0.3': {}
+
+ '@tsconfig/node16@1.0.4': {}
+
+ '@tsconfig/node20@20.1.4': {}
+
+ '@types/chai@4.3.5': {}
+
+ '@types/estree@1.0.5': {}
+
+ '@types/jsdom@21.1.7':
+ dependencies:
+ '@types/node': 20.14.5
+ '@types/tough-cookie': 4.0.2
+ parse5: 7.1.2
+
+ '@types/nightwatch@2.3.30':
+ dependencies:
+ '@types/chai': 4.3.5
+ '@types/selenium-webdriver': 4.1.15
+ devtools-protocol: 0.0.1025565
+
+ '@types/node@20.14.5':
+ dependencies:
+ undici-types: 5.26.5
+
+ '@types/selenium-webdriver@4.1.15':
+ dependencies:
+ '@types/ws': 8.5.5
+
+ '@types/sinonjs__fake-timers@8.1.1': {}
+
+ '@types/sizzle@2.3.3': {}
+
+ '@types/tough-cookie@4.0.2': {}
+
+ '@types/ws@8.5.5':
+ dependencies:
+ '@types/node': 20.14.5
+
+ '@types/yauzl@2.10.0':
+ dependencies:
+ '@types/node': 20.14.5
+ optional: true
+
+ '@ungap/structured-clone@1.2.0': {}
+
+ '@vitejs/plugin-vue-jsx@4.0.0(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.7)
+ vite: 5.3.1(@types/node@20.14.5)
+ vue: 3.4.29(typescript@5.4.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitejs/plugin-vue@4.5.2(vite@4.5.0(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ vite: 4.5.0(@types/node@20.14.5)
+ vue: 3.4.29(typescript@5.4.2)
+
+ '@vitejs/plugin-vue@5.0.4(vite@5.2.8(@types/node@20.14.5))(vue@3.4.21(typescript@5.4.2))':
+ dependencies:
+ vite: 5.2.8(@types/node@20.14.5)
+ vue: 3.4.21(typescript@5.4.2)
+
+ '@vitejs/plugin-vue@5.0.5(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ vite: 5.3.1(@types/node@20.14.5)
+ vue: 3.4.29(typescript@5.4.2)
+
+ '@vitest/expect@1.6.0':
+ dependencies:
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
+ chai: 4.3.10
+
+ '@vitest/runner@1.6.0':
+ dependencies:
+ '@vitest/utils': 1.6.0
+ p-limit: 5.0.0
+ pathe: 1.1.2
+
+ '@vitest/snapshot@1.6.0':
+ dependencies:
+ magic-string: 0.30.8
+ pathe: 1.1.2
+ pretty-format: 29.7.0
+
+ '@vitest/spy@1.6.0':
+ dependencies:
+ tinyspy: 2.2.0
+
+ '@vitest/utils@1.6.0':
+ dependencies:
+ diff-sequences: 29.6.3
+ estree-walker: 3.0.3
+ loupe: 2.3.7
+ pretty-format: 29.7.0
+
+ '@volar/language-core@2.3.0':
+ dependencies:
+ '@volar/source-map': 2.3.0
+
+ '@volar/source-map@2.3.0':
+ dependencies:
+ muggle-string: 0.4.1
+
+ '@volar/typescript@2.3.0':
+ dependencies:
+ '@volar/language-core': 2.3.0
+ path-browserify: 1.0.1
+ vscode-uri: 3.0.8
+
+ '@vue/babel-helper-vue-transform-on@1.1.5': {}
+
+ '@vue/babel-helper-vue-transform-on@1.2.2': {}
+
+ '@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.5)':
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.5)
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.5
+ '@babel/types': 7.23.5
+ '@vue/babel-helper-vue-transform-on': 1.1.5
+ camelcase: 6.3.0
+ html-tags: 3.3.1
+ svg-tags: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ '@vue/babel-helper-vue-transform-on': 1.2.2
+ '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.7)
+ camelcase: 6.3.0
+ html-tags: 3.3.1
+ svg-tags: 1.0.0
+ optionalDependencies:
+ '@babel/core': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/parser': 7.23.9
+ '@vue/compiler-sfc': 3.4.21
+
+ '@vue/compiler-core@3.4.21':
+ dependencies:
+ '@babel/parser': 7.23.9
+ '@vue/shared': 3.4.21
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.0.2
+
+ '@vue/compiler-core@3.4.29':
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@vue/shared': 3.4.29
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.0
+
+ '@vue/compiler-dom@3.4.21':
+ dependencies:
+ '@vue/compiler-core': 3.4.21
+ '@vue/shared': 3.4.21
+
+ '@vue/compiler-dom@3.4.29':
+ dependencies:
+ '@vue/compiler-core': 3.4.29
+ '@vue/shared': 3.4.29
+
+ '@vue/compiler-sfc@3.4.21':
+ dependencies:
+ '@babel/parser': 7.23.9
+ '@vue/compiler-core': 3.4.21
+ '@vue/compiler-dom': 3.4.21
+ '@vue/compiler-ssr': 3.4.21
+ '@vue/shared': 3.4.21
+ estree-walker: 2.0.2
+ magic-string: 0.30.8
+ postcss: 8.4.35
+ source-map-js: 1.0.2
+
+ '@vue/compiler-sfc@3.4.29':
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@vue/compiler-core': 3.4.29
+ '@vue/compiler-dom': 3.4.29
+ '@vue/compiler-ssr': 3.4.29
+ '@vue/shared': 3.4.29
+ estree-walker: 2.0.2
+ magic-string: 0.30.10
+ postcss: 8.4.38
+ source-map-js: 1.2.0
+
+ '@vue/compiler-ssr@3.4.21':
+ dependencies:
+ '@vue/compiler-dom': 3.4.21
+ '@vue/shared': 3.4.21
+
+ '@vue/compiler-ssr@3.4.29':
+ dependencies:
+ '@vue/compiler-dom': 3.4.29
+ '@vue/shared': 3.4.29
+
+ '@vue/devtools-api@6.5.0': {}
+
+ '@vue/devtools-api@6.6.1': {}
+
+ '@vue/devtools-core@7.0.27(vite@5.2.8(@types/node@20.14.5))(vue@3.4.21(typescript@5.4.2))':
+ dependencies:
+ '@vue/devtools-kit': 7.0.27(vue@3.4.21(typescript@5.4.2))
+ '@vue/devtools-shared': 7.0.27
+ mitt: 3.0.1
+ nanoid: 3.3.7
+ pathe: 1.1.2
+ vite-hot-client: 0.2.3(vite@5.2.8(@types/node@20.14.5))
+ transitivePeerDependencies:
+ - vite
+ - vue
+
+ '@vue/devtools-core@7.3.1(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ '@vue/devtools-kit': 7.3.1(vue@3.4.29(typescript@5.4.2))
+ '@vue/devtools-shared': 7.3.1
+ mitt: 3.0.1
+ nanoid: 3.3.7
+ pathe: 1.1.2
+ vite-hot-client: 0.2.3(vite@5.3.1(@types/node@20.14.5))
+ transitivePeerDependencies:
+ - vite
+ - vue
+
+ '@vue/devtools-kit@7.0.27(vue@3.4.21(typescript@5.4.2))':
+ dependencies:
+ '@vue/devtools-shared': 7.0.27
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ vue: 3.4.21(typescript@5.4.2)
+
+ '@vue/devtools-kit@7.3.1(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ '@vue/devtools-shared': 7.3.1
+ birpc: 0.2.17
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.1
+ vue: 3.4.29(typescript@5.4.2)
+
+ '@vue/devtools-shared@7.0.27':
+ dependencies:
+ rfdc: 1.3.1
+
+ '@vue/devtools-shared@7.3.1':
+ dependencies:
+ rfdc: 1.3.1
+
+ '@vue/eslint-config-prettier@9.0.0(eslint@8.57.0)(prettier@3.2.5)':
+ dependencies:
+ eslint: 8.57.0
+ eslint-config-prettier: 9.1.0(eslint@8.57.0)
+ eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.2.5)
+ prettier: 3.2.5
+ transitivePeerDependencies:
+ - '@types/eslint'
+
+ '@vue/language-core@2.0.21(typescript@5.4.2)':
+ dependencies:
+ '@volar/language-core': 2.3.0
+ '@vue/compiler-dom': 3.4.21
+ '@vue/shared': 3.4.21
+ computeds: 0.0.1
+ minimatch: 9.0.3
+ path-browserify: 1.0.1
+ vue-template-compiler: 2.7.14
+ optionalDependencies:
+ typescript: 5.4.2
+
+ '@vue/reactivity@3.4.21':
+ dependencies:
+ '@vue/shared': 3.4.21
+
+ '@vue/reactivity@3.4.29':
+ dependencies:
+ '@vue/shared': 3.4.29
+
+ '@vue/runtime-core@3.4.21':
+ dependencies:
+ '@vue/reactivity': 3.4.21
+ '@vue/shared': 3.4.21
+
+ '@vue/runtime-core@3.4.29':
+ dependencies:
+ '@vue/reactivity': 3.4.29
+ '@vue/shared': 3.4.29
+
+ '@vue/runtime-dom@3.4.21':
+ dependencies:
+ '@vue/runtime-core': 3.4.21
+ '@vue/shared': 3.4.21
+ csstype: 3.1.3
+
+ '@vue/runtime-dom@3.4.29':
+ dependencies:
+ '@vue/reactivity': 3.4.29
+ '@vue/runtime-core': 3.4.29
+ '@vue/shared': 3.4.29
+ csstype: 3.1.3
+
+ '@vue/server-renderer@3.4.21(vue@3.4.21(typescript@5.4.2))':
+ dependencies:
+ '@vue/compiler-ssr': 3.4.21
+ '@vue/shared': 3.4.21
+ vue: 3.4.21(typescript@5.4.2)
+
+ '@vue/server-renderer@3.4.29(vue@3.4.29(typescript@5.4.2))':
+ dependencies:
+ '@vue/compiler-ssr': 3.4.29
+ '@vue/shared': 3.4.29
+ vue: 3.4.29(typescript@5.4.2)
+
+ '@vue/shared@3.4.21': {}
+
+ '@vue/shared@3.4.29': {}
+
+ '@vue/test-utils@2.4.6':
+ dependencies:
+ js-beautify: 1.14.9
+ vue-component-type-helpers: 2.0.6
+
+ '@vue/tsconfig@0.5.1': {}
+
+ '@wdio/logger@8.28.0':
+ dependencies:
+ chalk: 5.3.0
+ loglevel: 1.8.1
+ loglevel-plugin-prefix: 0.8.4
+ strip-ansi: 7.1.0
+
+ '@zip.js/zip.js@2.7.45': {}
+
+ abbrev@1.1.1: {}
+
+ acorn-jsx@5.3.2(acorn@8.10.0):
+ dependencies:
+ acorn: 8.10.0
+
+ acorn-walk@8.3.1: {}
+
+ acorn-walk@8.3.2: {}
+
+ acorn@8.10.0: {}
+
+ agent-base@7.1.0:
+ dependencies:
+ debug: 4.3.4(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ aggregate-error@3.1.0:
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+
+ ajv@6.12.6:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+
+ ansi-align@3.0.1:
+ dependencies:
+ string-width: 4.2.3
+
+ ansi-colors@4.1.1: {}
+
+ ansi-colors@4.1.3: {}
+
+ ansi-escapes@4.3.2:
+ dependencies:
+ type-fest: 0.21.3
+
+ ansi-regex@5.0.1: {}
+
+ ansi-regex@6.0.1: {}
+
+ ansi-styles@3.2.1:
+ dependencies:
+ color-convert: 1.9.3
+
+ ansi-styles@4.3.0:
+ dependencies:
+ color-convert: 2.0.1
+
+ ansi-styles@5.2.0: {}
+
+ ansi-styles@6.2.1: {}
+
+ ansi-to-html@0.7.2:
+ dependencies:
+ entities: 2.2.0
+
+ anymatch@3.1.3:
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+
+ arch@2.2.0: {}
+
+ archiver-utils@2.1.0:
+ dependencies:
+ glob: 7.2.3
+ graceful-fs: 4.2.10
+ lazystream: 1.0.1
+ lodash.defaults: 4.2.0
+ lodash.difference: 4.5.0
+ lodash.flatten: 4.4.0
+ lodash.isplainobject: 4.0.6
+ lodash.union: 4.6.0
+ normalize-path: 3.0.0
+ readable-stream: 2.3.8
+
+ archiver@5.3.1:
+ dependencies:
+ archiver-utils: 2.1.0
+ async: 3.2.4
+ buffer-crc32: 0.2.13
+ readable-stream: 3.6.2
+ readdir-glob: 1.1.3
+ tar-stream: 2.2.0
+ zip-stream: 4.1.0
+
+ arg@4.1.3: {}
+
+ arg@5.0.2: {}
+
+ argparse@2.0.1: {}
+
+ aria-query@5.1.3:
+ dependencies:
+ deep-equal: 2.2.3
+
+ array-buffer-byte-length@1.0.0:
+ dependencies:
+ call-bind: 1.0.5
+ is-array-buffer: 3.0.2
+
+ asn1@0.2.6:
+ dependencies:
+ safer-buffer: 2.1.2
+
+ assert-plus@1.0.0: {}
+
+ assertion-error@1.1.0: {}
+
+ ast-types@0.13.4:
+ dependencies:
+ tslib: 2.6.2
+
+ astral-regex@2.0.0: {}
+
+ async@3.2.4: {}
+
+ asynckit@0.4.0: {}
+
+ at-least-node@1.0.0: {}
+
+ available-typed-arrays@1.0.5: {}
+
+ aws-sign2@0.7.0: {}
+
+ aws4@1.11.0: {}
+
+ axe-core@4.8.3: {}
+
+ axios@1.6.7(debug@4.3.5):
+ dependencies:
+ follow-redirects: 1.15.5(debug@4.3.5)
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
+ b4a@1.6.4: {}
+
+ balanced-match@1.0.2: {}
+
+ bare-events@2.2.1:
+ optional: true
+
+ bare-fs@2.2.1:
+ dependencies:
+ bare-events: 2.2.1
+ bare-os: 2.2.0
+ bare-path: 2.1.0
+ streamx: 2.15.0
+ optional: true
+
+ bare-os@2.2.0:
+ optional: true
+
+ bare-path@2.1.0:
+ dependencies:
+ bare-os: 2.2.0
+ optional: true
+
+ base64-js@1.5.1: {}
+
+ basic-ftp@5.0.5: {}
+
+ bcrypt-pbkdf@1.0.2:
+ dependencies:
+ tweetnacl: 0.14.5
+
+ bidi-js@1.0.3:
+ dependencies:
+ require-from-string: 2.0.2
+
+ binary-extensions@2.2.0: {}
+
+ birpc@0.2.17: {}
+
+ bl@4.1.0:
+ dependencies:
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+
+ blob-util@2.0.2: {}
+
+ bluebird@3.7.2: {}
+
+ boolbase@1.0.0: {}
+
+ boxen@5.1.2:
+ dependencies:
+ ansi-align: 3.0.1
+ camelcase: 6.3.0
+ chalk: 4.1.2
+ cli-boxes: 2.2.1
+ string-width: 4.2.3
+ type-fest: 0.20.2
+ widest-line: 3.1.0
+ wrap-ansi: 7.0.0
+
+ brace-expansion@1.1.11:
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+
+ brace-expansion@2.0.1:
+ dependencies:
+ balanced-match: 1.0.2
+
+ braces@3.0.2:
+ dependencies:
+ fill-range: 7.0.1
+
+ browser-stdout@1.3.1: {}
+
+ browserslist@4.21.10:
+ dependencies:
+ caniuse-lite: 1.0.30001521
+ electron-to-chromium: 1.4.496
+ node-releases: 2.0.13
+ update-browserslist-db: 1.0.11(browserslist@4.21.10)
+
+ browserslist@4.23.1:
+ dependencies:
+ caniuse-lite: 1.0.30001636
+ electron-to-chromium: 1.4.806
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.16(browserslist@4.23.1)
+
+ buffer-crc32@0.2.13: {}
+
+ buffer@5.7.1:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
+ bundle-name@4.1.0:
+ dependencies:
+ run-applescript: 7.0.0
+
+ cac@6.7.14: {}
+
+ cachedir@2.3.0: {}
+
+ call-bind@1.0.5:
+ dependencies:
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ set-function-length: 1.1.1
+
+ callsites@3.1.0: {}
+
+ camelcase@6.3.0: {}
+
+ caniuse-lite@1.0.30001521: {}
+
+ caniuse-lite@1.0.30001636: {}
+
+ caseless@0.12.0: {}
+
+ chai-nightwatch@0.5.3:
+ dependencies:
+ assertion-error: 1.1.0
+
+ chai@4.3.10:
+ dependencies:
+ assertion-error: 1.1.0
+ check-error: 1.0.3
+ deep-eql: 4.1.3
+ get-func-name: 2.0.2
+ loupe: 2.3.7
+ pathval: 1.1.1
+ type-detect: 4.0.8
+
+ chalk@2.4.2:
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+
+ chalk@4.1.2:
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+
+ chalk@5.3.0: {}
+
+ check-error@1.0.2: {}
+
+ check-error@1.0.3:
+ dependencies:
+ get-func-name: 2.0.2
+
+ check-more-types@2.24.0: {}
+
+ chokidar@3.5.3:
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ chromedriver@126.0.2:
+ dependencies:
+ '@testim/chrome-version': 1.1.4
+ axios: 1.6.7(debug@4.3.5)
+ compare-versions: 6.1.0
+ extract-zip: 2.0.1(supports-color@8.1.1)
+ proxy-agent: 6.4.0
+ proxy-from-env: 1.1.0
+ tcp-port-used: 1.0.2
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+
+ ci-info@3.3.0: {}
+
+ ci-info@3.5.0: {}
+
+ clean-stack@2.2.0: {}
+
+ cli-boxes@2.2.1: {}
+
+ cli-cursor@3.1.0:
+ dependencies:
+ restore-cursor: 3.1.0
+
+ cli-spinners@2.9.0: {}
+
+ cli-table3@0.6.3:
+ dependencies:
+ string-width: 4.2.3
+ optionalDependencies:
+ '@colors/colors': 1.5.0
+
+ cli-truncate@2.1.0:
+ dependencies:
+ slice-ansi: 3.0.0
+ string-width: 4.2.3
+
+ cliui@7.0.4:
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
+
+ clone@1.0.4: {}
+
+ color-convert@1.9.3:
+ dependencies:
+ color-name: 1.1.3
+
+ color-convert@2.0.1:
+ dependencies:
+ color-name: 1.1.4
+
+ color-name@1.1.3: {}
+
+ color-name@1.1.4: {}
+
+ colorette@2.0.19: {}
+
+ combined-stream@1.0.8:
+ dependencies:
+ delayed-stream: 1.0.0
+
+ commander@10.0.1: {}
+
+ commander@6.2.1: {}
+
+ common-tags@1.8.2: {}
+
+ compare-versions@6.1.0: {}
+
+ compress-commons@4.1.1:
+ dependencies:
+ buffer-crc32: 0.2.13
+ crc32-stream: 4.0.2
+ normalize-path: 3.0.0
+ readable-stream: 3.6.2
+
+ computeds@0.0.1: {}
+
+ concat-map@0.0.1: {}
+
+ config-chain@1.1.13:
+ dependencies:
+ ini: 1.3.8
+ proto-list: 1.2.4
+
+ convert-source-map@2.0.0: {}
+
+ copy-anything@3.0.5:
+ dependencies:
+ is-what: 4.1.16
+
+ core-util-is@1.0.2: {}
+
+ crc-32@1.2.2: {}
+
+ crc32-stream@4.0.2:
+ dependencies:
+ crc-32: 1.2.2
+ readable-stream: 3.6.2
+
+ create-require@1.1.1: {}
+
+ cross-spawn@7.0.3:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
+ css-tree@2.3.1:
+ dependencies:
+ mdn-data: 2.0.30
+ source-map-js: 1.2.0
+
+ cssesc@3.0.0: {}
+
+ cssstyle@4.0.1:
+ dependencies:
+ rrweb-cssom: 0.6.0
+
+ csstype@3.1.3: {}
+
+ cypress@13.12.0:
+ dependencies:
+ '@cypress/request': 3.0.1
+ '@cypress/xvfb': 1.2.4(supports-color@8.1.1)
+ '@types/sinonjs__fake-timers': 8.1.1
+ '@types/sizzle': 2.3.3
+ arch: 2.2.0
+ blob-util: 2.0.2
+ bluebird: 3.7.2
+ buffer: 5.7.1
+ cachedir: 2.3.0
+ chalk: 4.1.2
+ check-more-types: 2.24.0
+ cli-cursor: 3.1.0
+ cli-table3: 0.6.3
+ commander: 6.2.1
+ common-tags: 1.8.2
+ dayjs: 1.11.5
+ debug: 4.3.4(supports-color@8.1.1)
+ enquirer: 2.3.6
+ eventemitter2: 6.4.7
+ execa: 4.1.0
+ executable: 4.1.1
+ extract-zip: 2.0.1(supports-color@8.1.1)
+ figures: 3.2.0
+ fs-extra: 9.1.0
+ getos: 3.2.1
+ is-ci: 3.0.1
+ is-installed-globally: 0.4.0
+ lazy-ass: 1.6.0
+ listr2: 3.14.0(enquirer@2.3.6)
+ lodash: 4.17.21
+ log-symbols: 4.1.0
+ minimist: 1.2.8
+ ospath: 1.2.2
+ pretty-bytes: 5.6.0
+ process: 0.11.10
+ proxy-from-env: 1.0.0
+ request-progress: 3.0.0
+ semver: 7.6.0
+ supports-color: 8.1.1
+ tmp: 0.2.1
+ untildify: 4.0.0
+ yauzl: 2.10.0
+
+ dashdash@1.14.1:
+ dependencies:
+ assert-plus: 1.0.0
+
+ data-uri-to-buffer@4.0.1: {}
+
+ data-uri-to-buffer@6.0.2: {}
+
+ data-urls@5.0.0:
+ dependencies:
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.0.0
+
+ dayjs@1.11.5: {}
+
+ de-indent@1.0.2: {}
+
+ debug@3.2.7(supports-color@8.1.1):
+ dependencies:
+ ms: 2.1.3
+ optionalDependencies:
+ supports-color: 8.1.1
+
+ debug@4.3.1:
+ dependencies:
+ ms: 2.1.2
+
+ debug@4.3.4(supports-color@8.1.1):
+ dependencies:
+ ms: 2.1.2
+ optionalDependencies:
+ supports-color: 8.1.1
+
+ debug@4.3.5:
+ dependencies:
+ ms: 2.1.2
+
+ decamelize@4.0.0: {}
+
+ decamelize@6.0.0: {}
+
+ decimal.js@10.4.3: {}
+
+ deep-eql@4.0.1:
+ dependencies:
+ type-detect: 4.0.8
+
+ deep-eql@4.1.3:
+ dependencies:
+ type-detect: 4.0.8
+
+ deep-equal@2.2.3:
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.5
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.2.2
+ is-arguments: 1.1.1
+ is-array-buffer: 3.0.2
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ isarray: 2.0.5
+ object-is: 1.1.5
+ object-keys: 1.1.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.1
+ side-channel: 1.0.4
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.1
+ which-typed-array: 1.1.13
+
+ deep-is@0.1.4: {}
+
+ default-browser-id@5.0.0: {}
+
+ default-browser@5.2.1:
+ dependencies:
+ bundle-name: 4.1.0
+ default-browser-id: 5.0.0
+
+ defaults@1.0.4:
+ dependencies:
+ clone: 1.0.4
+
+ define-data-property@1.1.1:
+ dependencies:
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+
+ define-lazy-prop@2.0.0: {}
+
+ define-lazy-prop@3.0.0: {}
+
+ define-properties@1.2.1:
+ dependencies:
+ define-data-property: 1.1.1
+ has-property-descriptors: 1.0.1
+ object-keys: 1.1.1
+
+ degenerator@5.0.1:
+ dependencies:
+ ast-types: 0.13.4
+ escodegen: 2.1.0
+ esprima: 4.0.1
+
+ delayed-stream@1.0.0: {}
+
+ devtools-protocol@0.0.1025565: {}
+
+ devtools-protocol@0.0.1140464: {}
+
+ didyoumean@1.2.2: {}
+
+ diff-sequences@29.6.3: {}
+
+ diff@4.0.2: {}
+
+ diff@5.0.0: {}
+
+ diff@5.1.0: {}
+
+ doctrine@3.0.0:
+ dependencies:
+ esutils: 2.0.3
+
+ dotenv@16.3.1: {}
+
+ duplexer@0.1.2: {}
+
+ ecc-jsbn@0.1.2:
+ dependencies:
+ jsbn: 0.1.1
+ safer-buffer: 2.1.2
+
+ editorconfig@1.0.4:
+ dependencies:
+ '@one-ini/wasm': 0.1.1
+ commander: 10.0.1
+ minimatch: 9.0.1
+ semver: 7.6.0
+
+ ejs@3.1.10:
+ dependencies:
+ jake: 10.8.7
+
+ electron-to-chromium@1.4.496: {}
+
+ electron-to-chromium@1.4.806: {}
+
+ emoji-regex@8.0.0: {}
+
+ end-of-stream@1.4.4:
+ dependencies:
+ once: 1.4.0
+
+ enquirer@2.3.6:
+ dependencies:
+ ansi-colors: 4.1.3
+
+ entities@2.2.0: {}
+
+ entities@4.5.0: {}
+
+ envinfo@7.11.0: {}
+
+ error-stack-parser-es@0.1.1: {}
+
+ es-get-iterator@1.1.3:
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ has-symbols: 1.0.3
+ is-arguments: 1.1.1
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-string: 1.0.7
+ isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
+
+ esbuild-android-64@0.15.18:
+ optional: true
+
+ esbuild-android-arm64@0.15.18:
+ optional: true
+
+ esbuild-darwin-64@0.15.18:
+ optional: true
+
+ esbuild-darwin-arm64@0.15.18:
+ optional: true
+
+ esbuild-freebsd-64@0.15.18:
+ optional: true
+
+ esbuild-freebsd-arm64@0.15.18:
+ optional: true
+
+ esbuild-linux-32@0.15.18:
+ optional: true
+
+ esbuild-linux-64@0.15.18:
+ optional: true
+
+ esbuild-linux-arm64@0.15.18:
+ optional: true
+
+ esbuild-linux-arm@0.15.18:
+ optional: true
+
+ esbuild-linux-mips64le@0.15.18:
+ optional: true
+
+ esbuild-linux-ppc64le@0.15.18:
+ optional: true
+
+ esbuild-linux-riscv64@0.15.18:
+ optional: true
+
+ esbuild-linux-s390x@0.15.18:
+ optional: true
+
+ esbuild-netbsd-64@0.15.18:
+ optional: true
+
+ esbuild-openbsd-64@0.15.18:
+ optional: true
+
+ esbuild-sunos-64@0.15.18:
+ optional: true
+
+ esbuild-windows-32@0.15.18:
+ optional: true
+
+ esbuild-windows-64@0.15.18:
+ optional: true
+
+ esbuild-windows-arm64@0.15.18:
+ optional: true
+
+ esbuild@0.15.18:
+ optionalDependencies:
+ '@esbuild/android-arm': 0.15.18
+ '@esbuild/linux-loong64': 0.15.18
+ esbuild-android-64: 0.15.18
+ esbuild-android-arm64: 0.15.18
+ esbuild-darwin-64: 0.15.18
+ esbuild-darwin-arm64: 0.15.18
+ esbuild-freebsd-64: 0.15.18
+ esbuild-freebsd-arm64: 0.15.18
+ esbuild-linux-32: 0.15.18
+ esbuild-linux-64: 0.15.18
+ esbuild-linux-arm: 0.15.18
+ esbuild-linux-arm64: 0.15.18
+ esbuild-linux-mips64le: 0.15.18
+ esbuild-linux-ppc64le: 0.15.18
+ esbuild-linux-riscv64: 0.15.18
+ esbuild-linux-s390x: 0.15.18
+ esbuild-netbsd-64: 0.15.18
+ esbuild-openbsd-64: 0.15.18
+ esbuild-sunos-64: 0.15.18
+ esbuild-windows-32: 0.15.18
+ esbuild-windows-64: 0.15.18
+ esbuild-windows-arm64: 0.15.18
+
+ esbuild@0.18.16:
+ optionalDependencies:
+ '@esbuild/android-arm': 0.18.16
+ '@esbuild/android-arm64': 0.18.16
+ '@esbuild/android-x64': 0.18.16
+ '@esbuild/darwin-arm64': 0.18.16
+ '@esbuild/darwin-x64': 0.18.16
+ '@esbuild/freebsd-arm64': 0.18.16
+ '@esbuild/freebsd-x64': 0.18.16
+ '@esbuild/linux-arm': 0.18.16
+ '@esbuild/linux-arm64': 0.18.16
+ '@esbuild/linux-ia32': 0.18.16
+ '@esbuild/linux-loong64': 0.18.16
+ '@esbuild/linux-mips64el': 0.18.16
+ '@esbuild/linux-ppc64': 0.18.16
+ '@esbuild/linux-riscv64': 0.18.16
+ '@esbuild/linux-s390x': 0.18.16
+ '@esbuild/linux-x64': 0.18.16
+ '@esbuild/netbsd-x64': 0.18.16
+ '@esbuild/openbsd-x64': 0.18.16
+ '@esbuild/sunos-x64': 0.18.16
+ '@esbuild/win32-arm64': 0.18.16
+ '@esbuild/win32-ia32': 0.18.16
+ '@esbuild/win32-x64': 0.18.16
+
+ esbuild@0.20.2:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
'@esbuild/linux-riscv64': 0.20.2
'@esbuild/linux-s390x': 0.20.2
'@esbuild/linux-x64': 0.20.2
@@ -8490,70 +11644,63 @@ packages:
'@esbuild/win32-arm64': 0.20.2
'@esbuild/win32-ia32': 0.20.2
'@esbuild/win32-x64': 0.20.2
- dev: true
-
- /escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
- engines: {node: '>=6'}
- dev: true
-
- /escape-string-regexp@1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
- dev: true
- /escape-string-regexp@4.0.0:
- resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
- engines: {node: '>=10'}
- dev: true
-
- /escodegen@2.1.0:
- resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
- engines: {node: '>=6.0'}
- hasBin: true
+ esbuild@0.21.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
+
+ escalade@3.1.1: {}
+
+ escalade@3.1.2: {}
+
+ escape-string-regexp@1.0.5: {}
+
+ escape-string-regexp@4.0.0: {}
+
+ escodegen@2.1.0:
dependencies:
esprima: 4.0.1
estraverse: 5.3.0
esutils: 2.0.3
optionalDependencies:
source-map: 0.6.1
- dev: true
- /eslint-config-prettier@9.1.0(eslint@8.57.0):
- resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
+ eslint-config-prettier@9.1.0(eslint@8.57.0):
dependencies:
eslint: 8.57.0
- dev: true
- /eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5):
- resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- '@types/eslint': '>=8.0.0'
- eslint: '>=8.0.0'
- eslint-config-prettier: '*'
- prettier: '>=3.0.0'
- peerDependenciesMeta:
- '@types/eslint':
- optional: true
- eslint-config-prettier:
- optional: true
+ eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.2.5):
dependencies:
eslint: 8.57.0
- eslint-config-prettier: 9.1.0(eslint@8.57.0)
prettier: 3.2.5
prettier-linter-helpers: 1.0.0
synckit: 0.8.8
- dev: true
+ optionalDependencies:
+ eslint-config-prettier: 9.1.0(eslint@8.57.0)
- /eslint-plugin-vue@9.23.0(eslint@8.57.0):
- resolution: {integrity: sha512-Bqd/b7hGYGrlV+wP/g77tjyFmp81lh5TMw0be9093X02SyelxRRfCI6/IsGq/J7Um0YwB9s0Ry0wlFyjPdmtUw==}
- engines: {node: ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ eslint-plugin-vue@9.23.0(eslint@8.57.0):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
eslint: 8.57.0
@@ -8565,25 +11712,15 @@ packages:
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
- dev: true
- /eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-scope@7.2.2:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- dev: true
- /eslint-visitor-keys@3.4.3:
- resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
+ eslint-visitor-keys@3.4.3: {}
- /eslint@8.57.0:
- resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- hasBin: true
+ eslint@8.57.0:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@eslint-community/regexpp': 4.10.0
@@ -8625,58 +11762,34 @@ packages:
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
- dev: true
- /espree@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ espree@9.6.1:
dependencies:
acorn: 8.10.0
acorn-jsx: 5.3.2(acorn@8.10.0)
eslint-visitor-keys: 3.4.3
- dev: true
- /esprima@4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
+ esprima@4.0.1: {}
- /esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
- engines: {node: '>=0.10'}
+ esquery@1.5.0:
dependencies:
estraverse: 5.3.0
- dev: true
- /esrecurse@4.3.0:
- resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
- engines: {node: '>=4.0'}
+ esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
- dev: true
- /estraverse@5.3.0:
- resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
- engines: {node: '>=4.0'}
- dev: true
+ estraverse@5.3.0: {}
- /estree-walker@2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ estree-walker@2.0.2: {}
- /estree-walker@3.0.3:
- resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+ estree-walker@3.0.3:
dependencies:
'@types/estree': 1.0.5
- dev: true
- /esutils@2.0.3:
- resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
- engines: {node: '>=0.10.0'}
- dev: true
+ esutils@2.0.3: {}
- /event-stream@3.3.4:
- resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
+ event-stream@3.3.4:
dependencies:
duplexer: 0.1.2
from: 0.1.7
@@ -8685,15 +11798,10 @@ packages:
split: 0.3.3
stream-combiner: 0.0.4
through: 2.3.8
- dev: true
- /eventemitter2@6.4.7:
- resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==}
- dev: true
+ eventemitter2@6.4.7: {}
- /execa@4.1.0:
- resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
- engines: {node: '>=10'}
+ execa@4.1.0:
dependencies:
cross-spawn: 7.0.3
get-stream: 5.2.0
@@ -8704,11 +11812,8 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- dev: true
- /execa@5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
+ execa@5.1.1:
dependencies:
cross-spawn: 7.0.3
get-stream: 6.0.1
@@ -8719,11 +11824,8 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- dev: true
- /execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
+ execa@8.0.1:
dependencies:
cross-spawn: 7.0.3
get-stream: 8.0.1
@@ -8734,23 +11836,14 @@ packages:
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- dev: true
- /executable@4.1.1:
- resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
- engines: {node: '>=4'}
+ executable@4.1.1:
dependencies:
pify: 2.3.0
- dev: true
- /extend@3.0.2:
- resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- dev: true
+ extend@3.0.2: {}
- /extract-zip@2.0.1(supports-color@8.1.1):
- resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
- engines: {node: '>= 10.17.0'}
- hasBin: true
+ extract-zip@2.0.1(supports-color@8.1.1):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
get-stream: 5.2.0
@@ -8759,294 +11852,155 @@ packages:
'@types/yauzl': 2.10.0
transitivePeerDependencies:
- supports-color
- dev: true
- /extsprintf@1.3.0:
- resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
- engines: {'0': node >=0.6.0}
- dev: true
+ extsprintf@1.3.0: {}
- /fast-deep-equal@3.1.3:
- resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- dev: true
+ fast-deep-equal@3.1.3: {}
- /fast-diff@1.3.0:
- resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
- dev: true
+ fast-diff@1.3.0: {}
- /fast-fifo@1.3.0:
- resolution: {integrity: sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw==}
- dev: true
+ fast-fifo@1.3.0: {}
- /fast-json-stable-stringify@2.1.0:
- resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- dev: true
+ fast-json-stable-stringify@2.1.0: {}
- /fast-levenshtein@2.0.6:
- resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- dev: true
+ fast-levenshtein@2.0.6: {}
- /fastq@1.17.1:
- resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+ fastq@1.17.1:
dependencies:
reusify: 1.0.4
- dev: true
- /fd-slicer@1.1.0:
- resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+ fd-slicer@1.1.0:
dependencies:
pend: 1.2.0
- dev: true
- /fetch-blob@3.2.0:
- resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
- engines: {node: ^12.20 || >= 14.13}
+ fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
web-streams-polyfill: 3.2.1
- dev: true
- /figures@3.2.0:
- resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
- engines: {node: '>=8'}
+ figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
- dev: true
- /file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
- dev: true
- /filelist@1.0.4:
- resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+ filelist@1.0.4:
dependencies:
minimatch: 5.1.0
- dev: true
- /fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
- engines: {node: '>=8'}
+ fill-range@7.0.1:
dependencies:
to-regex-range: 5.0.1
- dev: true
- /find-up@5.0.0:
- resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
- engines: {node: '>=10'}
+ find-up@5.0.0:
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
- dev: true
- /flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ flat-cache@3.2.0:
dependencies:
flatted: 3.3.1
- keyv: 4.5.4
- rimraf: 3.0.2
- dev: true
-
- /flat@5.0.2:
- resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
- hasBin: true
- dev: true
-
- /flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- dev: true
-
- /follow-redirects@1.15.2(debug@4.3.4):
- resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dependencies:
- debug: 4.3.4(supports-color@8.1.1)
- dev: true
+ keyv: 4.5.4
+ rimraf: 3.0.2
- /follow-redirects@1.15.5:
- resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: true
+ flat@5.0.2: {}
- /for-each@0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ flatted@3.3.1: {}
+
+ follow-redirects@1.15.5(debug@4.3.5):
+ optionalDependencies:
+ debug: 4.3.5
+
+ for-each@0.3.3:
dependencies:
is-callable: 1.2.7
- dev: true
- /forever-agent@0.6.1:
- resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
- dev: true
+ forever-agent@0.6.1: {}
- /form-data@2.3.3:
- resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
- engines: {node: '>= 0.12'}
+ form-data@2.3.3:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: true
- /form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
- engines: {node: '>= 6'}
+ form-data@4.0.0:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: true
- /formdata-polyfill@4.0.10:
- resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
- engines: {node: '>=12.20.0'}
+ formdata-polyfill@4.0.10:
dependencies:
fetch-blob: 3.2.0
- dev: true
- /from@0.1.7:
- resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
- dev: true
+ from@0.1.7: {}
- /fs-constants@1.0.0:
- resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- dev: true
+ fs-constants@1.0.0: {}
- /fs-extra@11.2.0:
- resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
- engines: {node: '>=14.14'}
+ fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.10
jsonfile: 6.1.0
universalify: 2.0.0
- dev: true
- /fs-extra@9.1.0:
- resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
- engines: {node: '>=10'}
+ fs-extra@9.1.0:
dependencies:
at-least-node: 1.0.0
graceful-fs: 4.2.10
jsonfile: 6.1.0
universalify: 2.0.0
- dev: true
- /fs.realpath@1.0.0:
- resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- dev: true
+ fs.realpath@1.0.0: {}
- /fsevents@2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
- requiresBuild: true
- dev: true
+ fsevents@2.3.2:
optional: true
- /fsevents@2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
- requiresBuild: true
- dev: true
+ fsevents@2.3.3:
optional: true
- /fstream@1.0.12:
- resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
- engines: {node: '>=0.6'}
- dependencies:
- graceful-fs: 4.2.10
- inherits: 2.0.4
- mkdirp: 0.5.6
- rimraf: 2.7.1
- dev: true
-
- /function-bind@1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- dev: true
+ function-bind@1.1.2: {}
- /functions-have-names@1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- dev: true
+ functions-have-names@1.2.3: {}
- /geckodriver@4.3.3:
- resolution: {integrity: sha512-we2c2COgxFkLVuoknJNx+ioP+7VDq0sr6SCqWHTzlA4kzIbzR0EQ1Pps34s8WrsOnQqPC8a4sZV9dRPROOrkSg==}
- engines: {node: ^16.13 || >=18 || >=20}
- hasBin: true
- requiresBuild: true
+ geckodriver@4.4.1:
dependencies:
'@wdio/logger': 8.28.0
+ '@zip.js/zip.js': 2.7.45
decamelize: 6.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.4
node-fetch: 3.3.2
- tar-fs: 3.0.5
- unzipper: 0.10.14
+ tar-fs: 3.0.6
which: 4.0.0
transitivePeerDependencies:
- supports-color
- dev: true
- /gensync@1.0.0-beta.2:
- resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
- engines: {node: '>=6.9.0'}
- dev: true
+ gensync@1.0.0-beta.2: {}
- /get-caller-file@2.0.5:
- resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
- engines: {node: 6.* || 8.* || >= 10.*}
- dev: true
+ get-caller-file@2.0.5: {}
- /get-func-name@2.0.2:
- resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- dev: true
+ get-func-name@2.0.2: {}
- /get-intrinsic@1.2.2:
- resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ get-intrinsic@1.2.2:
dependencies:
function-bind: 1.1.2
has-proto: 1.0.1
has-symbols: 1.0.3
hasown: 2.0.0
- dev: true
- /get-port@5.1.1:
- resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
- engines: {node: '>=8'}
- dev: true
+ get-port@5.1.1: {}
- /get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
+ get-stream@5.2.0:
dependencies:
pump: 3.0.0
- dev: true
- /get-stream@6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
- dev: true
+ get-stream@6.0.1: {}
- /get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
- dev: true
+ get-stream@8.0.1: {}
- /get-uri@6.0.3:
- resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
- engines: {node: '>= 14'}
+ get-uri@6.0.3:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
@@ -9054,36 +12008,24 @@ packages:
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
- dev: true
- /getos@3.2.1:
- resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
+ getos@3.2.1:
dependencies:
async: 3.2.4
- dev: true
- /getpass@0.1.7:
- resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+ getpass@0.1.7:
dependencies:
assert-plus: 1.0.0
- dev: true
- /glob-parent@5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
- engines: {node: '>= 6'}
+ glob-parent@5.1.2:
dependencies:
is-glob: 4.0.3
- dev: true
- /glob-parent@6.0.2:
- resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
- engines: {node: '>=10.13.0'}
+ glob-parent@6.0.2:
dependencies:
is-glob: 4.0.3
- dev: true
- /glob@7.2.0:
- resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
+ glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -9091,588 +12033,306 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- dev: true
- /glob@7.2.3:
- resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
- dev: true
-
- /glob@8.1.0:
- resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
- engines: {node: '>=12'}
+ glob@8.1.0:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
minimatch: 5.1.0
once: 1.4.0
- dev: true
- /global-dirs@3.0.0:
- resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==}
- engines: {node: '>=10'}
+ global-dirs@3.0.0:
dependencies:
ini: 2.0.0
- dev: true
- /globals@11.12.0:
- resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
- engines: {node: '>=4'}
- dev: true
+ globals@11.12.0: {}
- /globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
+ globals@13.24.0:
dependencies:
type-fest: 0.20.2
- dev: true
- /gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.0.1:
dependencies:
get-intrinsic: 1.2.2
- dev: true
- /graceful-fs@4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
- dev: true
+ graceful-fs@4.2.10: {}
- /graphemer@1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- dev: true
+ graphemer@1.4.0: {}
- /has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: true
+ has-bigints@1.0.2: {}
- /has-flag@3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
- engines: {node: '>=4'}
- dev: true
+ has-flag@3.0.0: {}
- /has-flag@4.0.0:
- resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
- engines: {node: '>=8'}
- dev: true
+ has-flag@4.0.0: {}
- /has-property-descriptors@1.0.1:
- resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ has-property-descriptors@1.0.1:
dependencies:
get-intrinsic: 1.2.2
- dev: true
- /has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
- dev: true
+ has-proto@1.0.1: {}
- /has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
- dev: true
+ has-symbols@1.0.3: {}
- /has-tostringtag@1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
- engines: {node: '>= 0.4'}
+ has-tostringtag@1.0.0:
dependencies:
has-symbols: 1.0.3
- dev: true
- /hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
- engines: {node: '>= 0.4'}
+ hasown@2.0.0:
dependencies:
function-bind: 1.1.2
- dev: true
- /he@1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
- dev: true
+ he@1.2.0: {}
- /hookable@5.5.3:
- resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- dev: true
+ hookable@5.5.3: {}
- /html-encoding-sniffer@4.0.0:
- resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
- engines: {node: '>=18'}
+ html-encoding-sniffer@4.0.0:
dependencies:
whatwg-encoding: 3.1.1
- dev: true
-
- /html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
- dev: true
- /http-proxy-agent@7.0.0:
- resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
- engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.0
- debug: 4.3.4(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
+ html-tags@3.3.1: {}
- /http-proxy-agent@7.0.2:
- resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
- engines: {node: '>= 14'}
+ http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.0
debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- dev: true
- /http-signature@1.3.6:
- resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==}
- engines: {node: '>=0.10'}
+ http-signature@1.3.6:
dependencies:
assert-plus: 1.0.0
jsprim: 2.0.2
sshpk: 1.17.0
- dev: true
-
- /https-proxy-agent@7.0.2:
- resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
- engines: {node: '>= 14'}
- dependencies:
- agent-base: 7.1.0
- debug: 4.3.4(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
- dev: true
- /https-proxy-agent@7.0.4:
- resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
- engines: {node: '>= 14'}
+ https-proxy-agent@7.0.4:
dependencies:
agent-base: 7.1.0
debug: 4.3.4(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- dev: true
- /human-signals@1.1.1:
- resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
- engines: {node: '>=8.12.0'}
- dev: true
+ human-signals@1.1.1: {}
- /human-signals@2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
- dev: true
+ human-signals@2.1.0: {}
- /human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
- dev: true
+ human-signals@5.0.0: {}
- /iconv-lite@0.6.3:
- resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
- engines: {node: '>=0.10.0'}
+ iconv-lite@0.6.3:
dependencies:
safer-buffer: 2.1.2
- dev: true
- /ieee754@1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- dev: true
+ ieee754@1.2.1: {}
- /ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
- engines: {node: '>= 4'}
- dev: true
+ ignore@5.3.1: {}
- /immediate@3.0.6:
- resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
- dev: true
+ immediate@3.0.6: {}
- /import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
- engines: {node: '>=6'}
+ import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- dev: true
- /imurmurhash@0.1.4:
- resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
- engines: {node: '>=0.8.19'}
- dev: true
+ imurmurhash@0.1.4: {}
- /indent-string@4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
- dev: true
+ indent-string@4.0.0: {}
- /inflight@1.0.6:
- resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ inflight@1.0.6:
dependencies:
once: 1.4.0
wrappy: 1.0.2
- dev: true
- /inherits@2.0.4:
- resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- dev: true
+ inherits@2.0.4: {}
- /ini@1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- dev: true
+ ini@1.3.8: {}
- /ini@2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
- dev: true
+ ini@2.0.0: {}
- /internal-slot@1.0.6:
- resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
- engines: {node: '>= 0.4'}
+ internal-slot@1.0.6:
dependencies:
get-intrinsic: 1.2.2
hasown: 2.0.0
side-channel: 1.0.4
- dev: true
- /ip-address@9.0.5:
- resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
- engines: {node: '>= 12'}
+ ip-address@9.0.5:
dependencies:
jsbn: 1.1.0
sprintf-js: 1.1.3
- dev: true
- /ip-regex@4.3.0:
- resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==}
- engines: {node: '>=8'}
- dev: true
+ ip-regex@4.3.0: {}
- /is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
+ is-arguments@1.1.1:
dependencies:
call-bind: 1.0.5
has-tostringtag: 1.0.0
- dev: true
- /is-array-buffer@3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ is-array-buffer@3.0.2:
dependencies:
call-bind: 1.0.5
get-intrinsic: 1.2.2
is-typed-array: 1.1.12
- dev: true
- /is-bigint@1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
- dev: true
- /is-binary-path@2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
+ is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.2.0
- dev: true
- /is-boolean-object@1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
- engines: {node: '>= 0.4'}
+ is-boolean-object@1.1.2:
dependencies:
call-bind: 1.0.5
has-tostringtag: 1.0.0
- dev: true
- /is-callable@1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
- engines: {node: '>= 0.4'}
- dev: true
+ is-callable@1.2.7: {}
- /is-ci@3.0.1:
- resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
- hasBin: true
+ is-ci@3.0.1:
dependencies:
ci-info: 3.5.0
- dev: true
- /is-date-object@1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
+ is-date-object@1.0.5:
dependencies:
has-tostringtag: 1.0.0
- dev: true
- /is-docker@2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
- hasBin: true
- dev: true
+ is-docker@2.2.1: {}
- /is-docker@3.0.0:
- resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- hasBin: true
- dev: true
+ is-docker@3.0.0: {}
- /is-extglob@2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
- engines: {node: '>=0.10.0'}
- dev: true
+ is-extglob@2.1.1: {}
- /is-fullwidth-code-point@3.0.0:
- resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
- engines: {node: '>=8'}
- dev: true
+ is-fullwidth-code-point@3.0.0: {}
- /is-glob@4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
- engines: {node: '>=0.10.0'}
+ is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
- dev: true
- /is-inside-container@1.0.0:
- resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
- engines: {node: '>=14.16'}
- hasBin: true
+ is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
- dev: true
- /is-installed-globally@0.4.0:
- resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
- engines: {node: '>=10'}
+ is-installed-globally@0.4.0:
dependencies:
global-dirs: 3.0.0
is-path-inside: 3.0.3
- dev: true
- /is-interactive@1.0.0:
- resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
- engines: {node: '>=8'}
- dev: true
+ is-interactive@1.0.0: {}
- /is-map@2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
- dev: true
+ is-map@2.0.2: {}
- /is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
+ is-number-object@1.0.7:
dependencies:
has-tostringtag: 1.0.0
- dev: true
- /is-number@7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
- engines: {node: '>=0.12.0'}
- dev: true
+ is-number@7.0.0: {}
- /is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
- dev: true
+ is-path-inside@3.0.3: {}
- /is-plain-obj@2.1.0:
- resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
- engines: {node: '>=8'}
- dev: true
+ is-plain-obj@2.1.0: {}
- /is-potential-custom-element-name@1.0.1:
- resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- dev: true
+ is-potential-custom-element-name@1.0.1: {}
- /is-regex@1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
- engines: {node: '>= 0.4'}
+ is-regex@1.1.4:
dependencies:
call-bind: 1.0.5
has-tostringtag: 1.0.0
- dev: true
- /is-set@2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- dev: true
+ is-set@2.0.2: {}
- /is-shared-array-buffer@1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ is-shared-array-buffer@1.0.2:
dependencies:
call-bind: 1.0.5
- dev: true
- /is-stream@2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
- dev: true
+ is-stream@2.0.1: {}
- /is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
+ is-stream@3.0.0: {}
- /is-string@1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
+ is-string@1.0.7:
dependencies:
has-tostringtag: 1.0.0
- dev: true
- /is-symbol@1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
+ is-symbol@1.0.4:
dependencies:
has-symbols: 1.0.3
- dev: true
- /is-typed-array@1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
- engines: {node: '>= 0.4'}
+ is-typed-array@1.1.12:
dependencies:
which-typed-array: 1.1.13
- dev: true
- /is-typedarray@1.0.0:
- resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
- dev: true
+ is-typedarray@1.0.0: {}
- /is-unicode-supported@0.1.0:
- resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
- engines: {node: '>=10'}
- dev: true
+ is-unicode-supported@0.1.0: {}
- /is-url@1.2.4:
- resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
- dev: true
+ is-url@1.2.4: {}
- /is-weakmap@2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
- dev: true
+ is-weakmap@2.0.1: {}
- /is-weakset@2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ is-weakset@2.0.2:
dependencies:
call-bind: 1.0.5
get-intrinsic: 1.2.2
- dev: true
- /is-wsl@2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
+ is-what@4.1.16: {}
+
+ is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
- dev: true
- /is-wsl@3.1.0:
- resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
- engines: {node: '>=16'}
+ is-wsl@3.1.0:
dependencies:
is-inside-container: 1.0.0
- dev: true
- /is2@2.0.9:
- resolution: {integrity: sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==}
- engines: {node: '>=v0.10.0'}
+ is2@2.0.9:
dependencies:
deep-is: 0.1.4
ip-regex: 4.3.0
is-url: 1.2.4
- dev: true
- /isarray@1.0.0:
- resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- dev: true
+ isarray@1.0.0: {}
- /isarray@2.0.5:
- resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- dev: true
+ isarray@2.0.5: {}
- /isexe@2.0.0:
- resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
+ isexe@2.0.0: {}
- /isexe@3.1.1:
- resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
- engines: {node: '>=16'}
- dev: true
+ isexe@3.1.1: {}
- /isstream@0.1.2:
- resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
- dev: true
+ isstream@0.1.2: {}
- /jake@10.8.7:
- resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
- engines: {node: '>=10'}
- hasBin: true
+ jake@10.8.7:
dependencies:
async: 3.2.4
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
- dev: true
- /joi@17.11.0:
- resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
+ joi@17.11.0:
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
'@sideway/address': 4.1.4
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- dev: true
- /js-beautify@1.14.9:
- resolution: {integrity: sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==}
- engines: {node: '>=12'}
- hasBin: true
+ js-beautify@1.14.9:
dependencies:
config-chain: 1.1.13
editorconfig: 1.0.4
glob: 8.1.0
nopt: 6.0.0
- dev: true
- /js-tokens@4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- dev: true
+ js-tokens@4.0.0: {}
- /js-tokens@8.0.3:
- resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
- dev: true
+ js-tokens@8.0.3: {}
- /js-yaml@4.1.0:
- resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
- hasBin: true
+ js-yaml@4.1.0:
dependencies:
argparse: 2.0.1
- dev: true
- /jsbn@0.1.1:
- resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
- dev: true
+ jsbn@0.1.1: {}
- /jsbn@1.1.0:
- resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
- dev: true
+ jsbn@1.1.0: {}
- /jsdom@23.2.0:
- resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==}
- engines: {node: '>=18'}
- peerDependencies:
- canvas: ^2.11.2
- peerDependenciesMeta:
- canvas:
- optional: true
+ jsdom@23.2.0:
dependencies:
'@asamuzakjp/dom-selector': 2.0.2
cssstyle: 4.0.1
@@ -9699,403 +12359,232 @@ packages:
- bufferutil
- supports-color
- utf-8-validate
- dev: true
- /jsdom@24.0.0:
- resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==}
- engines: {node: '>=18'}
- peerDependencies:
- canvas: ^2.11.2
- peerDependenciesMeta:
- canvas:
- optional: true
+ jsdom@24.1.0:
dependencies:
cssstyle: 4.0.1
data-urls: 5.0.0
decimal.js: 10.4.3
form-data: 4.0.0
html-encoding-sniffer: 4.0.0
- http-proxy-agent: 7.0.0
- https-proxy-agent: 7.0.2
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.7
+ nwsapi: 2.2.10
parse5: 7.1.2
- rrweb-cssom: 0.6.0
+ rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.3
+ tough-cookie: 4.1.4
w3c-xmlserializer: 5.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.0.0
- ws: 8.16.0
+ ws: 8.17.1
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- dev: true
- /jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
+ jsesc@2.5.2: {}
- /json-buffer@3.0.1:
- resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- dev: true
+ json-buffer@3.0.1: {}
- /json-parse-even-better-errors@3.0.0:
- resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
+ json-parse-even-better-errors@3.0.0: {}
- /json-schema-traverse@0.4.1:
- resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- dev: true
+ json-schema-traverse@0.4.1: {}
- /json-schema@0.4.0:
- resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
- dev: true
+ json-schema@0.4.0: {}
- /json-stable-stringify-without-jsonify@1.0.1:
- resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- dev: true
+ json-stable-stringify-without-jsonify@1.0.1: {}
- /json-stringify-safe@5.0.1:
- resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
- dev: true
+ json-stringify-safe@5.0.1: {}
- /json5@2.2.3:
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
- engines: {node: '>=6'}
- hasBin: true
- dev: true
+ json5@2.2.3: {}
- /jsonc-parser@3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
- dev: true
+ jsonc-parser@3.2.0: {}
- /jsonfile@6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+ jsonfile@6.1.0:
dependencies:
universalify: 2.0.0
optionalDependencies:
graceful-fs: 4.2.10
- dev: true
- /jsprim@2.0.2:
- resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==}
- engines: {'0': node >=0.6.0}
+ jsprim@2.0.2:
dependencies:
assert-plus: 1.0.0
extsprintf: 1.3.0
json-schema: 0.4.0
verror: 1.10.0
- dev: true
- /jszip@3.10.1:
- resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
+ jszip@3.10.1:
dependencies:
lie: 3.3.0
pako: 1.0.11
readable-stream: 2.3.8
setimmediate: 1.0.5
- dev: true
- /just-extend@6.2.0:
- resolution: {integrity: sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==}
- dev: true
+ just-extend@6.2.0: {}
- /keyv@4.5.4:
- resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
- dev: true
- /kolorist@1.8.0:
- resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- dev: true
+ kolorist@1.8.0: {}
- /lazy-ass@1.6.0:
- resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
- engines: {node: '> 0.8'}
- dev: true
+ lazy-ass@1.6.0: {}
- /lazystream@1.0.1:
- resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
- engines: {node: '>= 0.6.3'}
+ lazystream@1.0.1:
dependencies:
readable-stream: 2.3.8
- dev: true
- /levn@0.4.1:
- resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
- engines: {node: '>= 0.8.0'}
+ levn@0.4.1:
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
- /lie@3.3.0:
- resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
+ lie@3.3.0:
dependencies:
immediate: 3.0.6
- dev: true
-
- /listenercount@1.0.1:
- resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
- dev: true
- /listr2@3.14.0(enquirer@2.3.6):
- resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- enquirer: '>= 2.3.0 < 3'
- peerDependenciesMeta:
- enquirer:
- optional: true
+ listr2@3.14.0(enquirer@2.3.6):
dependencies:
cli-truncate: 2.1.0
colorette: 2.0.19
- enquirer: 2.3.6
log-update: 4.0.0
p-map: 4.0.0
rfdc: 1.3.1
rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
- dev: true
+ optionalDependencies:
+ enquirer: 2.3.6
- /local-pkg@0.5.0:
- resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
- engines: {node: '>=14'}
+ local-pkg@0.5.0:
dependencies:
mlly: 1.4.2
pkg-types: 1.0.3
- dev: true
- /locate-path@6.0.0:
- resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
- engines: {node: '>=10'}
+ locate-path@6.0.0:
dependencies:
p-locate: 5.0.0
- dev: true
- /lodash.defaults@4.2.0:
- resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
- dev: true
+ lodash.defaults@4.2.0: {}
- /lodash.difference@4.5.0:
- resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
- dev: true
+ lodash.difference@4.5.0: {}
- /lodash.flatten@4.4.0:
- resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
- dev: true
+ lodash.flatten@4.4.0: {}
- /lodash.get@4.4.2:
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
- dev: true
+ lodash.get@4.4.2: {}
- /lodash.isplainobject@4.0.6:
- resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
- dev: true
+ lodash.isplainobject@4.0.6: {}
- /lodash.merge@4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
+ lodash.merge@4.6.2: {}
- /lodash.mergewith@4.6.2:
- resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
- dev: true
+ lodash.mergewith@4.6.2: {}
- /lodash.once@4.1.1:
- resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
- dev: true
+ lodash.once@4.1.1: {}
- /lodash.union@4.6.0:
- resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
- dev: true
+ lodash.union@4.6.0: {}
- /lodash@4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- dev: true
+ lodash@4.17.21: {}
- /log-symbols@4.1.0:
- resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
- engines: {node: '>=10'}
+ log-symbols@4.1.0:
dependencies:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- dev: true
- /log-update@4.0.0:
- resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
- engines: {node: '>=10'}
+ log-update@4.0.0:
dependencies:
ansi-escapes: 4.3.2
cli-cursor: 3.1.0
slice-ansi: 4.0.0
wrap-ansi: 6.2.0
- dev: true
- /loglevel-plugin-prefix@0.8.4:
- resolution: {integrity: sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==}
- dev: true
+ loglevel-plugin-prefix@0.8.4: {}
- /loglevel@1.8.1:
- resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
- engines: {node: '>= 0.6.0'}
- dev: true
+ loglevel@1.8.1: {}
- /loupe@2.3.7:
- resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ loupe@2.3.7:
dependencies:
get-func-name: 2.0.2
- dev: true
- /lru-cache@5.1.1:
- resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- dev: true
- /lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
+ lru-cache@6.0.0:
dependencies:
yallist: 4.0.0
- dev: true
- /lru-cache@7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
- dev: true
+ lru-cache@7.18.3: {}
- /magic-string@0.30.8:
- resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
- engines: {node: '>=12'}
+ magic-string@0.30.10:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
- /make-error@1.3.6:
- resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- dev: true
+ magic-string@0.30.8:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.4.15
- /map-stream@0.1.0:
- resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
- dev: true
+ make-error@1.3.6: {}
- /mdn-data@2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- dev: true
+ map-stream@0.1.0: {}
- /memorystream@0.3.1:
- resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
- engines: {node: '>= 0.10.0'}
- dev: true
+ mdn-data@2.0.30: {}
- /merge-stream@2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: true
+ memorystream@0.3.1: {}
- /mime-db@1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
- engines: {node: '>= 0.6'}
- dev: true
+ merge-stream@2.0.0: {}
- /mime-types@2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
- engines: {node: '>= 0.6'}
+ mime-db@1.52.0: {}
+
+ mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
- dev: true
- /mimic-fn@2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
- dev: true
+ mimic-fn@2.1.0: {}
- /mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
- dev: true
+ mimic-fn@4.0.0: {}
- /minimatch@3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
- dev: true
- /minimatch@5.0.1:
- resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==}
- engines: {node: '>=10'}
+ minimatch@5.0.1:
dependencies:
brace-expansion: 2.0.1
- dev: true
- /minimatch@5.1.0:
- resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
- engines: {node: '>=10'}
+ minimatch@5.1.0:
dependencies:
brace-expansion: 2.0.1
- dev: true
- /minimatch@9.0.1:
- resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
- engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.1:
dependencies:
brace-expansion: 2.0.1
- dev: true
- /minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
- engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.3:
dependencies:
brace-expansion: 2.0.1
- dev: true
-
- /minimist@1.2.6:
- resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
- dev: true
- /minimist@1.2.8:
- resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- dev: true
+ minimist@1.2.6: {}
- /mitt@3.0.1:
- resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- dev: true
+ minimist@1.2.8: {}
- /mkdirp@0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
- hasBin: true
- dependencies:
- minimist: 1.2.8
- dev: true
+ mitt@3.0.1: {}
- /mkdirp@2.1.6:
- resolution: {integrity: sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==}
- engines: {node: '>=10'}
- hasBin: true
- dev: true
+ mkdirp@2.1.6: {}
- /mlly@1.4.2:
- resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
+ mlly@1.4.2:
dependencies:
acorn: 8.10.0
pathe: 1.1.2
pkg-types: 1.0.3
ufo: 1.3.2
- dev: true
- /mocha@10.2.0:
- resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==}
- engines: {node: '>= 14.0.0'}
- hasBin: true
+ mocha@10.3.0:
dependencies:
ansi-colors: 4.1.1
browser-stdout: 1.3.1
@@ -10104,13 +12593,12 @@ packages:
diff: 5.0.0
escape-string-regexp: 4.0.0
find-up: 5.0.0
- glob: 7.2.0
+ glob: 8.1.0
he: 1.2.0
js-yaml: 4.1.0
log-symbols: 4.1.0
minimatch: 5.0.1
ms: 2.1.3
- nanoid: 3.3.3
serialize-javascript: 6.0.0
strip-json-comments: 3.1.1
supports-color: 8.1.1
@@ -10118,76 +12606,32 @@ packages:
yargs: 16.2.0
yargs-parser: 20.2.4
yargs-unparser: 2.0.0
- dev: true
-
- /mrmime@2.0.0:
- resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
- engines: {node: '>=10'}
- dev: true
- /ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- dev: true
+ mrmime@2.0.0: {}
- /ms@2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- dev: true
+ ms@2.1.2: {}
- /muggle-string@0.4.1:
- resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- dev: true
+ ms@2.1.3: {}
- /nanoid@3.3.3:
- resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
- dev: true
+ muggle-string@0.4.1: {}
- /nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
+ nanoid@3.3.7: {}
- /natural-compare@1.4.0:
- resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- dev: true
+ natural-compare@1.4.0: {}
- /netmask@2.0.2:
- resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
- engines: {node: '>= 0.4.0'}
- dev: true
+ netmask@2.0.2: {}
- /nice-napi@1.0.2:
- resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==}
- os: ['!win32']
- requiresBuild: true
+ nice-napi@1.0.2:
dependencies:
node-addon-api: 3.2.1
node-gyp-build: 4.6.0
- dev: true
optional: true
- /nightwatch-axe-verbose@2.3.0:
- resolution: {integrity: sha512-IC29PLvYrbbKRdIU/NJaxk/UvTmQ5EiNN08UnCWyImpzV0Y7tE1CYchrvFTaHXBZkkZTQC3uHTeHF/41mvK8eQ==}
+ nightwatch-axe-verbose@2.3.0:
dependencies:
axe-core: 4.8.3
- dev: true
- /nightwatch@3.6.0(chromedriver@123.0.3)(geckodriver@4.3.3):
- resolution: {integrity: sha512-sKadzS9wRSiYpeAmDRlSZFgI9V0VSVtfwe0knk5pWaiQev0AsKw0RTn53JFdkgaH87tPhqmFZVKerrcZDVS49A==}
- engines: {node: '>= 16'}
- hasBin: true
- peerDependencies:
- '@cucumber/cucumber': '*'
- chromedriver: '*'
- geckodriver: '*'
- peerDependenciesMeta:
- '@cucumber/cucumber':
- optional: true
- chromedriver:
- optional: true
- geckodriver:
- optional: true
+ nightwatch@3.6.3(chromedriver@126.0.2)(geckodriver@4.4.1):
dependencies:
'@nightwatch/chai': 5.0.3
'@nightwatch/html-reporter-template': 0.3.0
@@ -10200,101 +12644,73 @@ packages:
boxen: 5.1.2
chai-nightwatch: 0.5.3
chalk: 4.1.2
- chromedriver: 123.0.3
ci-info: 3.3.0
cli-table3: 0.6.3
devtools-protocol: 0.0.1140464
didyoumean: 1.2.2
dotenv: 16.3.1
- ejs: 3.1.8
+ ejs: 3.1.10
envinfo: 7.11.0
- geckodriver: 4.3.3
glob: 7.2.3
jsdom: 23.2.0
lodash: 4.17.21
minimatch: 3.1.2
minimist: 1.2.6
- mocha: 10.2.0
+ mocha: 10.3.0
nightwatch-axe-verbose: 2.3.0
open: 8.4.2
ora: 5.4.1
piscina: 4.4.0
- selenium-webdriver: 4.16.0
+ selenium-webdriver: 4.21.0
semver: 7.5.4
stacktrace-parser: 0.1.10
strip-ansi: 6.0.1
untildify: 4.0.0
uuid: 8.3.2
+ optionalDependencies:
+ chromedriver: 126.0.2
+ geckodriver: 4.4.1
transitivePeerDependencies:
- bufferutil
- canvas
- supports-color
- utf-8-validate
- dev: true
- /nise@5.1.7:
- resolution: {integrity: sha512-wWtNUhkT7k58uvWTB/Gy26eA/EJKtPZFVAhEilN5UYVmmGRYOURbejRUyKm0Uu9XVEW7K5nBOZfR8VMB4QR2RQ==}
+ nise@5.1.7:
dependencies:
'@sinonjs/commons': 3.0.0
'@sinonjs/fake-timers': 11.2.2
'@sinonjs/text-encoding': 0.7.2
just-extend: 6.2.0
path-to-regexp: 6.2.1
- dev: true
- /node-addon-api@3.2.1:
- resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
- requiresBuild: true
- dev: true
+ node-addon-api@3.2.1:
optional: true
- /node-domexception@1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
- dev: true
+ node-domexception@1.0.0: {}
- /node-fetch@3.3.2:
- resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ node-fetch@3.3.2:
dependencies:
data-uri-to-buffer: 4.0.1
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- dev: true
- /node-gyp-build@4.6.0:
- resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==}
- hasBin: true
- requiresBuild: true
- dev: true
+ node-gyp-build@4.6.0:
optional: true
- /node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
- dev: true
+ node-releases@2.0.13: {}
- /nopt@6.0.0:
- resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- hasBin: true
+ node-releases@2.0.14: {}
+
+ nopt@6.0.0:
dependencies:
abbrev: 1.1.1
- dev: true
- /normalize-path@3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
- dev: true
+ normalize-path@3.0.0: {}
- /npm-normalize-package-bin@3.0.1:
- resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
+ npm-normalize-package-bin@3.0.1: {}
- /npm-run-all2@6.1.2:
- resolution: {integrity: sha512-WwwnS8Ft+RpXve6T2EIEVpFLSqN+ORHRvgNk3H9N62SZXjmzKoRhMFg3I17TK3oMaAEr+XFbRirWS2Fn3BCPSg==}
- engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
- hasBin: true
+ npm-run-all2@6.2.0:
dependencies:
ansi-styles: 6.2.1
cross-spawn: 7.0.3
@@ -10303,101 +12719,63 @@ packages:
pidtree: 0.6.0
read-package-json-fast: 3.0.2
shell-quote: 1.7.3
- dev: true
- /npm-run-path@4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
+ npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
- dev: true
- /npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ npm-run-path@5.1.0:
dependencies:
path-key: 4.0.0
- dev: true
- /nth-check@2.1.1:
- resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
- dev: true
- /nwsapi@2.2.7:
- resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
- dev: true
+ nwsapi@2.2.10: {}
- /object-inspect@1.12.2:
- resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
- dev: true
+ object-inspect@1.12.2: {}
- /object-is@1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
+ object-is@1.1.5:
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
- dev: true
- /object-keys@1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
- dev: true
+ object-keys@1.1.1: {}
- /object.assign@4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
- engines: {node: '>= 0.4'}
+ object.assign@4.1.5:
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
- dev: true
- /once@1.4.0:
- resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+ once@1.4.0:
dependencies:
wrappy: 1.0.2
- dev: true
- /onetime@5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
+ onetime@5.1.2:
dependencies:
mimic-fn: 2.1.0
- dev: true
- /onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
+ onetime@6.0.0:
dependencies:
mimic-fn: 4.0.0
- dev: true
- /open@10.1.0:
- resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
- engines: {node: '>=18'}
+ open@10.1.0:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
is-wsl: 3.1.0
- dev: true
- /open@8.4.2:
- resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
- engines: {node: '>=12'}
+ open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
- dev: true
- /optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
- engines: {node: '>= 0.8.0'}
+ optionator@0.9.3:
dependencies:
'@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
@@ -10405,11 +12783,8 @@ packages:
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
- /ora@5.4.1:
- resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
- engines: {node: '>=10'}
+ ora@5.4.1:
dependencies:
bl: 4.1.0
chalk: 4.1.2
@@ -10420,43 +12795,26 @@ packages:
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
- dev: true
- /ospath@1.2.2:
- resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
- dev: true
+ ospath@1.2.2: {}
- /p-limit@3.1.0:
- resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
- engines: {node: '>=10'}
+ p-limit@3.1.0:
dependencies:
yocto-queue: 0.1.0
- dev: true
- /p-limit@5.0.0:
- resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
- engines: {node: '>=18'}
+ p-limit@5.0.0:
dependencies:
yocto-queue: 1.0.0
- dev: true
- /p-locate@5.0.0:
- resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
- engines: {node: '>=10'}
+ p-locate@5.0.0:
dependencies:
p-limit: 3.1.0
- dev: true
- /p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
+ p-map@4.0.0:
dependencies:
aggregate-error: 3.1.0
- dev: true
- /pac-proxy-agent@7.0.1:
- resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==}
- engines: {node: '>= 14'}
+ pac-proxy-agent@7.0.1:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.0
@@ -10468,227 +12826,124 @@ packages:
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
- dev: true
- /pac-resolver@7.0.1:
- resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
- engines: {node: '>= 14'}
+ pac-resolver@7.0.1:
dependencies:
degenerator: 5.0.1
netmask: 2.0.2
- dev: true
- /pako@1.0.11:
- resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
- dev: true
+ pako@1.0.11: {}
- /parent-module@1.0.1:
- resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
- engines: {node: '>=6'}
+ parent-module@1.0.1:
dependencies:
callsites: 3.1.0
- dev: true
- /parse5@7.1.2:
- resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ parse5@7.1.2:
dependencies:
- entities: 4.4.0
- dev: true
+ entities: 4.5.0
- /path-browserify@1.0.1:
- resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- dev: true
+ path-browserify@1.0.1: {}
- /path-exists@4.0.0:
- resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
- engines: {node: '>=8'}
- dev: true
+ path-exists@4.0.0: {}
- /path-is-absolute@1.0.1:
- resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
- engines: {node: '>=0.10.0'}
- dev: true
+ path-is-absolute@1.0.1: {}
- /path-key@3.1.1:
- resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
- engines: {node: '>=8'}
- dev: true
+ path-key@3.1.1: {}
- /path-key@4.0.0:
- resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
- engines: {node: '>=12'}
- dev: true
+ path-key@4.0.0: {}
- /path-to-regexp@6.2.1:
- resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
- dev: true
+ path-to-regexp@6.2.1: {}
- /pathe@1.1.2:
- resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
- dev: true
+ pathe@1.1.2: {}
- /pathval@1.1.1:
- resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
- dev: true
+ pathval@1.1.1: {}
- /pause-stream@0.0.11:
- resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
+ pause-stream@0.0.11:
dependencies:
through: 2.3.8
- dev: true
- /pend@1.2.0:
- resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- dev: true
+ pend@1.2.0: {}
- /perfect-debounce@1.0.0:
- resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- dev: true
+ perfect-debounce@1.0.0: {}
- /performance-now@2.1.0:
- resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
- dev: true
+ performance-now@2.1.0: {}
- /picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ picocolors@1.0.0: {}
- /picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
- engines: {node: '>=8.6'}
- dev: true
+ picocolors@1.0.1: {}
- /pidtree@0.6.0:
- resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
- engines: {node: '>=0.10'}
- hasBin: true
- dev: true
+ picomatch@2.3.1: {}
- /pify@2.3.0:
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
- engines: {node: '>=0.10.0'}
- dev: true
+ pidtree@0.6.0: {}
- /pinia@2.1.7(typescript@5.4.2)(vue@3.4.21):
- resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
- peerDependencies:
- '@vue/composition-api': ^1.4.0
- typescript: '>=4.4.4'
- vue: ^2.6.14 || ^3.3.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- typescript:
- optional: true
+ pify@2.3.0: {}
+
+ pinia@2.1.7(typescript@5.4.2)(vue@3.4.29(typescript@5.4.2)):
dependencies:
'@vue/devtools-api': 6.5.0
+ vue: 3.4.29(typescript@5.4.2)
+ vue-demi: 0.14.5(vue@3.4.29(typescript@5.4.2))
+ optionalDependencies:
typescript: 5.4.2
- vue: 3.4.21(typescript@5.4.2)
- vue-demi: 0.14.5(vue@3.4.21)
- dev: false
- /piscina@4.4.0:
- resolution: {integrity: sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==}
+ piscina@4.4.0:
optionalDependencies:
nice-napi: 1.0.2
- dev: true
- /pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+ pkg-types@1.0.3:
dependencies:
jsonc-parser: 3.2.0
mlly: 1.4.2
pathe: 1.1.2
- dev: true
- /playwright-core@1.43.0:
- resolution: {integrity: sha512-iWFjyBUH97+pUFiyTqSLd8cDMMOS0r2ZYz2qEsPjH8/bX++sbIJT35MSwKnp1r/OQBAqC5XO99xFbJ9XClhf4w==}
- engines: {node: '>=16'}
- hasBin: true
- dev: true
+ playwright-core@1.44.1: {}
- /playwright@1.43.0:
- resolution: {integrity: sha512-SiOKHbVjTSf6wHuGCbqrEyzlm6qvXcv7mENP+OZon1I07brfZLGdfWV0l/efAzVx7TF3Z45ov1gPEkku9q25YQ==}
- engines: {node: '>=16'}
- hasBin: true
+ playwright@1.44.1:
dependencies:
- playwright-core: 1.43.0
+ playwright-core: 1.44.1
optionalDependencies:
fsevents: 2.3.2
- dev: true
- /postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
- engines: {node: '>=4'}
+ postcss-selector-parser@6.0.16:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- dev: true
- /postcss@8.4.35:
- resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
- engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.35:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
-
- /postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
- engines: {node: ^10 || ^12 || >=14}
+
+ postcss@8.4.38:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.2.0
- dev: true
- /prelude-ls@1.2.1:
- resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
- engines: {node: '>= 0.8.0'}
- dev: true
+ prelude-ls@1.2.1: {}
- /prettier-linter-helpers@1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
+ prettier-linter-helpers@1.0.0:
dependencies:
fast-diff: 1.3.0
- dev: true
- /prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
- engines: {node: '>=14'}
- hasBin: true
- dev: true
+ prettier@3.2.5: {}
- /pretty-bytes@5.6.0:
- resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
- engines: {node: '>=6'}
- dev: true
+ pretty-bytes@5.6.0: {}
- /pretty-format@29.7.0:
- resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ pretty-format@29.7.0:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.2.0
- dev: true
- /process-nextick-args@2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- dev: true
+ process-nextick-args@2.0.1: {}
- /process@0.11.10:
- resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
- engines: {node: '>= 0.6.0'}
- dev: true
+ process@0.11.10: {}
- /proto-list@1.2.4:
- resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- dev: true
+ proto-list@1.2.4: {}
- /proxy-agent@6.4.0:
- resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
- engines: {node: '>= 14'}
+ proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.0
debug: 4.3.4(supports-color@8.1.1)
@@ -10700,79 +12955,46 @@ packages:
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
- dev: true
- /proxy-from-env@1.0.0:
- resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==}
- dev: true
+ proxy-from-env@1.0.0: {}
- /proxy-from-env@1.1.0:
- resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- dev: true
+ proxy-from-env@1.1.0: {}
- /ps-tree@1.2.0:
- resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
- engines: {node: '>= 0.10'}
- hasBin: true
+ ps-tree@1.2.0:
dependencies:
event-stream: 3.3.4
- dev: true
- /psl@1.9.0:
- resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
- dev: true
+ psl@1.9.0: {}
- /pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ pump@3.0.0:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- dev: true
- /punycode@2.3.1:
- resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
- engines: {node: '>=6'}
- dev: true
+ punycode@2.3.1: {}
- /qs@6.10.4:
- resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==}
- engines: {node: '>=0.6'}
+ qs@6.10.4:
dependencies:
side-channel: 1.0.4
- dev: true
- /querystringify@2.2.0:
- resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
- dev: true
+ querystringify@2.2.0: {}
- /queue-microtask@1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- dev: true
+ queue-microtask@1.2.3: {}
- /queue-tick@1.0.1:
- resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
- dev: true
+ queue-tick@1.0.1: {}
- /randombytes@2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
+ randombytes@2.1.0:
dependencies:
safe-buffer: 5.2.1
- dev: true
- /react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- dev: true
+ react-is@18.2.0: {}
- /read-package-json-fast@3.0.2:
- resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ read-package-json-fast@3.0.2:
dependencies:
json-parse-even-better-errors: 3.0.0
npm-normalize-package-bin: 3.0.1
- dev: true
- /readable-stream@2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+ readable-stream@2.3.8:
dependencies:
core-util-is: 1.0.2
inherits: 2.0.4
@@ -10781,107 +13003,57 @@ packages:
safe-buffer: 5.1.2
string_decoder: 1.1.1
util-deprecate: 1.0.2
- dev: true
- /readable-stream@3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
+ readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- dev: true
- /readdir-glob@1.1.3:
- resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
+ readdir-glob@1.1.3:
dependencies:
minimatch: 5.1.0
- dev: true
- /readdirp@3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
+ readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
- dev: true
- /regexp.prototype.flags@1.5.1:
- resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
- engines: {node: '>= 0.4'}
+ regexp.prototype.flags@1.5.1:
dependencies:
call-bind: 1.0.5
define-properties: 1.2.1
set-function-name: 2.0.1
- dev: true
- /request-progress@3.0.0:
- resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==}
+ request-progress@3.0.0:
dependencies:
throttleit: 1.0.0
- dev: true
- /require-directory@2.1.1:
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
- engines: {node: '>=0.10.0'}
- dev: true
+ require-directory@2.1.1: {}
- /require-from-string@2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
- dev: true
+ require-from-string@2.0.2: {}
- /requires-port@1.0.0:
- resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- dev: true
+ requires-port@1.0.0: {}
- /resolve-from@4.0.0:
- resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
- engines: {node: '>=4'}
- dev: true
+ resolve-from@4.0.0: {}
- /restore-cursor@3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
+ restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
- dev: true
-
- /reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- dev: true
- /rfdc@1.3.1:
- resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
- dev: true
+ reusify@1.0.4: {}
- /rimraf@2.7.1:
- resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
- hasBin: true
- dependencies:
- glob: 7.2.3
- dev: true
+ rfdc@1.3.1: {}
- /rimraf@3.0.2:
- resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
- hasBin: true
+ rimraf@3.0.2:
dependencies:
glob: 7.2.3
- dev: true
- /rollup@3.28.0:
- resolution: {integrity: sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
+ rollup@3.28.0:
optionalDependencies:
fsevents: 2.3.3
- dev: true
- /rollup@4.14.1:
- resolution: {integrity: sha512-4LnHSdd3QK2pa1J6dFbfm1HN0D7vSK/ZuZTsdyUAlA6Rr1yTouUTL13HaDOGJVgby461AhrNGBS7sCGXXtT+SA==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
+ rollup@4.14.1:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
@@ -10901,149 +13073,90 @@ packages:
'@rollup/rollup-win32-ia32-msvc': 4.14.1
'@rollup/rollup-win32-x64-msvc': 4.14.1
fsevents: 2.3.3
- dev: true
- /rrweb-cssom@0.6.0:
- resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
- dev: true
+ rrweb-cssom@0.6.0: {}
- /run-applescript@7.0.0:
- resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
- engines: {node: '>=18'}
- dev: true
+ rrweb-cssom@0.7.1: {}
- /run-parallel@1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ run-applescript@7.0.0: {}
+
+ run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- dev: true
- /rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ rxjs@7.8.1:
dependencies:
- tslib: 2.4.0
- dev: true
+ tslib: 2.6.2
- /safe-buffer@5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- dev: true
+ safe-buffer@5.1.2: {}
- /safe-buffer@5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: true
+ safe-buffer@5.2.1: {}
- /safer-buffer@2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- dev: true
+ safer-buffer@2.1.2: {}
- /saxes@6.0.0:
- resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
- engines: {node: '>=v12.22.7'}
+ saxes@6.0.0:
dependencies:
xmlchars: 2.2.0
- dev: true
- /selenium-webdriver@4.16.0:
- resolution: {integrity: sha512-IbqpRpfGE7JDGgXHJeWuCqT/tUqnLvZ14csSwt+S8o4nJo3RtQoE9VR4jB47tP/A8ArkYsh/THuMY6kyRP6kuA==}
- engines: {node: '>= 14.20.0'}
+ selenium-webdriver@4.21.0:
dependencies:
jszip: 3.10.1
- tmp: 0.2.1
+ tmp: 0.2.3
ws: 8.16.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- dev: true
- /semver@6.3.1:
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
- hasBin: true
- dev: true
+ semver@6.3.1: {}
- /semver@7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
- engines: {node: '>=10'}
- hasBin: true
+ semver@7.5.4:
dependencies:
lru-cache: 6.0.0
- dev: true
- /semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
- engines: {node: '>=10'}
- hasBin: true
+ semver@7.6.0:
dependencies:
lru-cache: 6.0.0
- dev: true
- /serialize-javascript@6.0.0:
- resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
+ serialize-javascript@6.0.0:
dependencies:
randombytes: 2.1.0
- dev: true
- /set-function-length@1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
- engines: {node: '>= 0.4'}
+ set-function-length@1.1.1:
dependencies:
define-data-property: 1.1.1
get-intrinsic: 1.2.2
gopd: 1.0.1
has-property-descriptors: 1.0.1
- dev: true
- /set-function-name@2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
- engines: {node: '>= 0.4'}
+ set-function-name@2.0.1:
dependencies:
define-data-property: 1.1.1
functions-have-names: 1.2.3
has-property-descriptors: 1.0.1
- dev: true
- /setimmediate@1.0.5:
- resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
- dev: true
+ setimmediate@1.0.5: {}
- /shebang-command@2.0.0:
- resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
- engines: {node: '>=8'}
+ shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
- dev: true
- /shebang-regex@3.0.0:
- resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
- engines: {node: '>=8'}
- dev: true
+ shebang-regex@3.0.0: {}
- /shell-quote@1.7.3:
- resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
- dev: true
+ shell-quote@1.7.3: {}
- /side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ side-channel@1.0.4:
dependencies:
call-bind: 1.0.5
get-intrinsic: 1.2.2
object-inspect: 1.12.2
- dev: true
- /siginfo@2.0.0:
- resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
- dev: true
+ siginfo@2.0.0: {}
- /signal-exit@3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- dev: true
+ signal-exit@3.0.7: {}
- /signal-exit@4.1.0:
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
- engines: {node: '>=14'}
- dev: true
+ signal-exit@4.1.0: {}
- /sinon@17.0.1:
- resolution: {integrity: sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==}
+ sinon@17.0.1:
dependencies:
'@sinonjs/commons': 3.0.0
'@sinonjs/fake-timers': 11.2.2
@@ -11051,94 +13164,56 @@ packages:
diff: 5.1.0
nise: 5.1.7
supports-color: 7.2.0
- dev: true
- /sirv@2.0.4:
- resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
- engines: {node: '>= 10'}
+ sirv@2.0.4:
dependencies:
'@polka/url': 1.0.0-next.25
mrmime: 2.0.0
totalist: 3.0.1
- dev: true
- /slice-ansi@3.0.0:
- resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
- engines: {node: '>=8'}
+ slice-ansi@3.0.0:
dependencies:
ansi-styles: 4.3.0
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- dev: true
- /slice-ansi@4.0.0:
- resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
- engines: {node: '>=10'}
+ slice-ansi@4.0.0:
dependencies:
ansi-styles: 4.3.0
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- dev: true
- /smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- dev: true
+ smart-buffer@4.2.0: {}
- /socks-proxy-agent@8.0.2:
- resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
- engines: {node: '>= 14'}
+ socks-proxy-agent@8.0.2:
dependencies:
agent-base: 7.1.0
debug: 4.3.4(supports-color@8.1.1)
socks: 2.8.1
transitivePeerDependencies:
- supports-color
- dev: true
- /socks@2.8.1:
- resolution: {integrity: sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+ socks@2.8.1:
dependencies:
ip-address: 9.0.5
smart-buffer: 4.2.0
- dev: true
- /source-map-js@1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
- engines: {node: '>=0.10.0'}
+ source-map-js@1.0.2: {}
- /source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
- engines: {node: '>=0.10.0'}
- dev: true
+ source-map-js@1.2.0: {}
- /source-map@0.6.1:
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
- engines: {node: '>=0.10.0'}
- requiresBuild: true
- dev: true
+ source-map@0.6.1:
optional: true
- /speakingurl@14.0.1:
- resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
- engines: {node: '>=0.10.0'}
- dev: true
+ speakingurl@14.0.1: {}
- /split@0.3.3:
- resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
+ split@0.3.3:
dependencies:
through: 2.3.8
- dev: true
- /sprintf-js@1.1.3:
- resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
- dev: true
+ sprintf-js@1.1.3: {}
- /sshpk@1.17.0:
- resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==}
- engines: {node: '>=0.10.0'}
- hasBin: true
+ sshpk@1.17.0:
dependencies:
asn1: 0.2.6
assert-plus: 1.0.0
@@ -11149,281 +13224,179 @@ packages:
jsbn: 0.1.1
safer-buffer: 2.1.2
tweetnacl: 0.14.5
- dev: true
- /stackback@0.0.2:
- resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
- dev: true
+ stackback@0.0.2: {}
- /stacktrace-parser@0.1.10:
- resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
- engines: {node: '>=6'}
+ stacktrace-parser@0.1.10:
dependencies:
type-fest: 0.7.1
- dev: true
- /start-server-and-test@2.0.3:
- resolution: {integrity: sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==}
- engines: {node: '>=16'}
- hasBin: true
+ start-server-and-test@2.0.4:
dependencies:
arg: 5.0.2
bluebird: 3.7.2
check-more-types: 2.24.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.5
execa: 5.1.1
lazy-ass: 1.6.0
ps-tree: 1.2.0
- wait-on: 7.2.0(debug@4.3.4)
+ wait-on: 7.2.0(debug@4.3.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /std-env@3.6.0:
- resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
- dev: true
+ std-env@3.6.0: {}
- /stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
+ stop-iteration-iterator@1.0.0:
dependencies:
internal-slot: 1.0.6
- dev: true
- /stream-combiner@0.0.4:
- resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
+ stream-combiner@0.0.4:
dependencies:
duplexer: 0.1.2
- dev: true
- /streamx@2.15.0:
- resolution: {integrity: sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==}
+ streamx@2.15.0:
dependencies:
fast-fifo: 1.3.0
queue-tick: 1.0.1
- dev: true
- /string-width@4.2.3:
- resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
- engines: {node: '>=8'}
+ string-width@4.2.3:
dependencies:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- dev: true
- /string_decoder@1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+ string_decoder@1.1.1:
dependencies:
safe-buffer: 5.1.2
- dev: true
- /string_decoder@1.3.0:
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+ string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
- dev: true
- /strip-ansi@6.0.1:
- resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
- engines: {node: '>=8'}
+ strip-ansi@6.0.1:
dependencies:
ansi-regex: 5.0.1
- dev: true
- /strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
- engines: {node: '>=12'}
+ strip-ansi@7.1.0:
dependencies:
ansi-regex: 6.0.1
- dev: true
- /strip-final-newline@2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
- dev: true
+ strip-final-newline@2.0.0: {}
- /strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
- dev: true
+ strip-final-newline@3.0.0: {}
- /strip-json-comments@3.1.1:
- resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
- engines: {node: '>=8'}
- dev: true
+ strip-json-comments@3.1.1: {}
- /strip-literal@2.0.0:
- resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
+ strip-literal@2.0.0:
dependencies:
js-tokens: 8.0.3
- dev: true
- /supports-color@5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
+ superjson@2.2.1:
+ dependencies:
+ copy-anything: 3.0.5
+
+ supports-color@5.5.0:
dependencies:
has-flag: 3.0.0
- dev: true
- /supports-color@7.2.0:
- resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
- engines: {node: '>=8'}
+ supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
- dev: true
- /supports-color@8.1.1:
- resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
- engines: {node: '>=10'}
+ supports-color@8.1.1:
dependencies:
has-flag: 4.0.0
- dev: true
- /svg-tags@1.0.0:
- resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
- dev: true
+ svg-tags@1.0.0: {}
- /symbol-tree@3.2.4:
- resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- dev: true
+ symbol-tree@3.2.4: {}
- /synckit@0.8.8:
- resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ synckit@0.8.8:
dependencies:
'@pkgr/core': 0.1.1
tslib: 2.6.2
- dev: true
- /tar-fs@3.0.5:
- resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
+ tar-fs@3.0.6:
dependencies:
pump: 3.0.0
tar-stream: 3.1.6
optionalDependencies:
bare-fs: 2.2.1
bare-path: 2.1.0
- dev: true
- /tar-stream@2.2.0:
- resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
- engines: {node: '>=6'}
+ tar-stream@2.2.0:
dependencies:
bl: 4.1.0
end-of-stream: 1.4.4
fs-constants: 1.0.0
inherits: 2.0.4
readable-stream: 3.6.2
- dev: true
- /tar-stream@3.1.6:
- resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ tar-stream@3.1.6:
dependencies:
b4a: 1.6.4
fast-fifo: 1.3.0
streamx: 2.15.0
- dev: true
- /tcp-port-used@1.0.2:
- resolution: {integrity: sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==}
+ tcp-port-used@1.0.2:
dependencies:
debug: 4.3.1
is2: 2.0.9
transitivePeerDependencies:
- supports-color
- dev: true
- /text-table@0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- dev: true
+ text-table@0.2.0: {}
- /throttleit@1.0.0:
- resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==}
- dev: true
+ throttleit@1.0.0: {}
- /through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- dev: true
+ through@2.3.8: {}
- /tinybench@2.5.1:
- resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
- dev: true
+ tinybench@2.5.1: {}
- /tinypool@0.8.2:
- resolution: {integrity: sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==}
- engines: {node: '>=14.0.0'}
- dev: true
+ tinypool@0.8.4: {}
- /tinyspy@2.2.0:
- resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
- engines: {node: '>=14.0.0'}
- dev: true
+ tinyspy@2.2.0: {}
- /tmp@0.2.1:
- resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
- engines: {node: '>=8.17.0'}
+ tmp@0.2.1:
dependencies:
rimraf: 3.0.2
- dev: true
- /to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
+ tmp@0.2.3: {}
- /to-regex-range@5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
- engines: {node: '>=8.0'}
+ to-fast-properties@2.0.0: {}
+
+ to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
- dev: true
- /totalist@3.0.1:
- resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
- engines: {node: '>=6'}
- dev: true
+ totalist@3.0.1: {}
- /tough-cookie@4.1.3:
- resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
- engines: {node: '>=6'}
+ tough-cookie@4.1.3:
dependencies:
psl: 1.9.0
punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
- dev: true
- /tr46@5.0.0:
- resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
- engines: {node: '>=18'}
+ tough-cookie@4.1.4:
dependencies:
+ psl: 1.9.0
punycode: 2.3.1
- dev: true
+ universalify: 0.2.0
+ url-parse: 1.5.10
- /traverse@0.3.9:
- resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
- dev: true
+ tr46@5.0.0:
+ dependencies:
+ punycode: 2.3.1
- /ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.2):
- resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
- hasBin: true
- peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
- optional: true
+ ts-node@10.9.2(@types/node@20.14.5)(typescript@5.4.2):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.12.7
+ '@types/node': 20.14.5
acorn: 8.10.0
acorn-walk: 8.3.1
arg: 4.1.3
@@ -11433,160 +13406,87 @@ packages:
typescript: 5.4.2
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- dev: true
-
- /tslib@2.4.0:
- resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- dev: true
- /tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- dev: true
+ tslib@2.6.2: {}
- /tunnel-agent@0.6.0:
- resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+ tunnel-agent@0.6.0:
dependencies:
safe-buffer: 5.2.1
- dev: true
- /tweetnacl@0.14.5:
- resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
- dev: true
+ tweetnacl@0.14.5: {}
- /type-check@0.4.0:
- resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
- engines: {node: '>= 0.8.0'}
+ type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- dev: true
-
- /type-detect@4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
- engines: {node: '>=4'}
- dev: true
- /type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
- dev: true
+ type-detect@4.0.8: {}
- /type-fest@0.21.3:
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
- engines: {node: '>=10'}
- dev: true
+ type-fest@0.20.2: {}
- /type-fest@0.7.1:
- resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
- engines: {node: '>=8'}
- dev: true
+ type-fest@0.21.3: {}
- /typescript@5.4.2:
- resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
- engines: {node: '>=14.17'}
- hasBin: true
+ type-fest@0.7.1: {}
- /ufo@1.3.2:
- resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==}
- dev: true
+ typescript@5.4.2: {}
- /undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- dev: true
+ ufo@1.3.2: {}
- /universalify@0.2.0:
- resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
- engines: {node: '>= 4.0.0'}
- dev: true
+ undici-types@5.26.5: {}
- /universalify@2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
- engines: {node: '>= 10.0.0'}
- dev: true
+ universalify@0.2.0: {}
- /untildify@4.0.0:
- resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
- engines: {node: '>=8'}
- dev: true
+ universalify@2.0.0: {}
- /unzipper@0.10.14:
- resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
- dependencies:
- big-integer: 1.6.51
- binary: 0.3.0
- bluebird: 3.4.7
- buffer-indexof-polyfill: 1.0.2
- duplexer2: 0.1.4
- fstream: 1.0.12
- graceful-fs: 4.2.10
- listenercount: 1.0.1
- readable-stream: 2.3.8
- setimmediate: 1.0.5
- dev: true
+ untildify@4.0.0: {}
- /update-browserslist-db@1.0.11(browserslist@4.21.10):
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
+ update-browserslist-db@1.0.11(browserslist@4.21.10):
dependencies:
browserslist: 4.21.10
escalade: 3.1.1
picocolors: 1.0.0
- dev: true
- /uri-js@4.4.1:
- resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ update-browserslist-db@1.0.16(browserslist@4.23.1):
+ dependencies:
+ browserslist: 4.23.1
+ escalade: 3.1.2
+ picocolors: 1.0.1
+
+ uri-js@4.4.1:
dependencies:
punycode: 2.3.1
- dev: true
- /url-parse@1.5.10:
- resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ url-parse@1.5.10:
dependencies:
querystringify: 2.2.0
requires-port: 1.0.0
- dev: true
-
- /util-deprecate@1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- dev: true
- /uuid@8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- hasBin: true
- dev: true
+ util-deprecate@1.0.2: {}
- /v8-compile-cache-lib@3.0.1:
- resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- dev: true
+ uuid@8.3.2: {}
- /verror@1.10.0:
- resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
- engines: {'0': node >=0.6.0}
+ v8-compile-cache-lib@3.0.1: {}
+
+ verror@1.10.0:
dependencies:
assert-plus: 1.0.0
core-util-is: 1.0.2
extsprintf: 1.3.0
- dev: true
- /vite-hot-client@0.2.3(vite@5.2.8):
- resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
- peerDependencies:
- vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
+ vite-hot-client@0.2.3(vite@5.2.8(@types/node@20.14.5)):
dependencies:
- vite: 5.2.8(@types/node@20.12.7)
- dev: true
+ vite: 5.2.8(@types/node@20.14.5)
- /vite-node@1.4.0(@types/node@20.12.7):
- resolution: {integrity: sha512-VZDAseqjrHgNd4Kh8icYHWzTKSCZMhia7GyHfhtzLW33fZlG9SwsB6CEhgyVOWkJfJ2pFLrp/Gj1FSfAiqH9Lw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
+ vite-hot-client@0.2.3(vite@5.3.1(@types/node@20.14.5)):
+ dependencies:
+ vite: 5.3.1(@types/node@20.14.5)
+
+ vite-node@1.6.0(@types/node@20.14.5):
dependencies:
cac: 6.7.14
debug: 4.3.4(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.2.8(@types/node@20.12.7)
+ vite: 5.3.1(@types/node@20.14.5)
transitivePeerDependencies:
- '@types/node'
- less
@@ -11596,20 +13496,11 @@ packages:
- sugarss
- supports-color
- terser
- dev: true
- /vite-plugin-inspect@0.8.3(vite@5.2.8):
- resolution: {integrity: sha512-SBVzOIdP/kwe6hjkt7LSW4D0+REqqe58AumcnCfRNw4Kt3mbS9pEBkch+nupu2PBxv2tQi69EQHQ1ZA1vgB/Og==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
+ vite-plugin-inspect@0.8.3(rollup@4.14.1)(vite@5.2.8(@types/node@20.14.5)):
dependencies:
'@antfu/utils': 0.7.7
- '@rollup/pluginutils': 5.1.0
+ '@rollup/pluginutils': 5.1.0(rollup@4.14.1)
debug: 4.3.4(supports-color@8.1.1)
error-stack-parser-es: 0.1.1
fs-extra: 11.2.0
@@ -11617,18 +13508,32 @@ packages:
perfect-debounce: 1.0.0
picocolors: 1.0.0
sirv: 2.0.4
- vite: 5.2.8(@types/node@20.12.7)
+ vite: 5.2.8(@types/node@20.14.5)
transitivePeerDependencies:
- rollup
- supports-color
- dev: true
- /vite-plugin-nightwatch@0.4.6:
- resolution: {integrity: sha512-7mxANgh3KA2c/xGJU35T8z1Xj9akWQ4FuyB1PN3nwinqxqYBAx44sW9Z87a2x6efj5TD4lU0Tbuvvgous6F1+Q==}
+ vite-plugin-inspect@0.8.4(rollup@4.14.1)(vite@5.3.1(@types/node@20.14.5)):
+ dependencies:
+ '@antfu/utils': 0.7.7
+ '@rollup/pluginutils': 5.1.0(rollup@4.14.1)
+ debug: 4.3.4(supports-color@8.1.1)
+ error-stack-parser-es: 0.1.1
+ fs-extra: 11.2.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ picocolors: 1.0.0
+ sirv: 2.0.4
+ vite: 5.3.1(@types/node@20.14.5)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+
+ vite-plugin-nightwatch@0.4.6:
dependencies:
'@nightwatch/esbuild-utils': 0.2.1
'@types/nightwatch': 2.3.30
- '@vue/test-utils': 2.4.5
+ '@vue/test-utils': 2.4.6
assertion-error: 1.1.0
mkdirp: 2.1.6
sinon: 17.0.1
@@ -11637,33 +13542,40 @@ packages:
- bufferutil
- supports-color
- utf-8-validate
- dev: true
- /vite-plugin-vue-devtools@7.0.27(vite@5.2.8)(vue@3.4.21):
- resolution: {integrity: sha512-sb4B3ZGYueIiqQvQGCEDBsC8Byr4VnlUbbDS44DhYfcIEDChTSO0yRmJ3IJeESJQQMhEh3wS0cgQglL8A9lCuw==}
- engines: {node: '>=v14.21.3'}
- peerDependencies:
- vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
+ vite-plugin-vue-devtools@7.0.27(rollup@4.14.1)(vite@5.2.8(@types/node@20.14.5))(vue@3.4.21(typescript@5.4.2)):
dependencies:
- '@vue/devtools-core': 7.0.27(vite@5.2.8)(vue@3.4.21)
- '@vue/devtools-kit': 7.0.27(vue@3.4.21)
+ '@vue/devtools-core': 7.0.27(vite@5.2.8(@types/node@20.14.5))(vue@3.4.21(typescript@5.4.2))
+ '@vue/devtools-kit': 7.0.27(vue@3.4.21(typescript@5.4.2))
'@vue/devtools-shared': 7.0.27
execa: 8.0.1
sirv: 2.0.4
- vite: 5.2.8(@types/node@20.12.7)
- vite-plugin-inspect: 0.8.3(vite@5.2.8)
- vite-plugin-vue-inspector: 4.0.2(vite@5.2.8)
+ vite: 5.2.8(@types/node@20.14.5)
+ vite-plugin-inspect: 0.8.3(rollup@4.14.1)(vite@5.2.8(@types/node@20.14.5))
+ vite-plugin-vue-inspector: 4.0.2(vite@5.2.8(@types/node@20.14.5))
transitivePeerDependencies:
- '@nuxt/kit'
- rollup
- supports-color
- vue
- dev: true
- /vite-plugin-vue-inspector@4.0.2(vite@5.2.8):
- resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==}
- peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
+ vite-plugin-vue-devtools@7.3.1(rollup@4.14.1)(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2)):
+ dependencies:
+ '@vue/devtools-core': 7.3.1(vite@5.3.1(@types/node@20.14.5))(vue@3.4.29(typescript@5.4.2))
+ '@vue/devtools-kit': 7.3.1(vue@3.4.29(typescript@5.4.2))
+ '@vue/devtools-shared': 7.3.1
+ execa: 8.0.1
+ sirv: 2.0.4
+ vite: 5.3.1(@types/node@20.14.5)
+ vite-plugin-inspect: 0.8.4(rollup@4.14.1)(vite@5.3.1(@types/node@20.14.5))
+ vite-plugin-vue-inspector: 5.1.2(vite@5.3.1(@types/node@20.14.5))
+ transitivePeerDependencies:
+ - '@nuxt/kit'
+ - rollup
+ - supports-color
+ - vue
+
+ vite-plugin-vue-inspector@4.0.2(vite@5.2.8(@types/node@20.14.5)):
dependencies:
'@babel/core': 7.23.5
'@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.23.5)
@@ -11674,119 +13586,63 @@ packages:
'@vue/compiler-dom': 3.4.21
kolorist: 1.8.0
magic-string: 0.30.8
- vite: 5.2.8(@types/node@20.12.7)
+ vite: 5.2.8(@types/node@20.14.5)
transitivePeerDependencies:
- supports-color
- dev: true
- /vite@4.5.0(@types/node@20.12.7):
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
+ vite-plugin-vue-inspector@5.1.2(vite@5.3.1(@types/node@20.14.5)):
+ dependencies:
+ '@babel/core': 7.23.5
+ '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.23.5)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
+ '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
+ '@vue/compiler-dom': 3.4.21
+ kolorist: 1.8.0
+ magic-string: 0.30.8
+ vite: 5.3.1(@types/node@20.14.5)
+ transitivePeerDependencies:
+ - supports-color
+
+ vite@4.5.0(@types/node@20.14.5):
dependencies:
- '@types/node': 20.12.7
esbuild: 0.18.16
- postcss: 8.4.35
+ postcss: 8.4.38
rollup: 3.28.0
optionalDependencies:
+ '@types/node': 20.14.5
fsevents: 2.3.3
- dev: true
- /vite@5.2.8(@types/node@20.12.7):
- resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
+ vite@5.2.8(@types/node@20.14.5):
dependencies:
- '@types/node': 20.12.7
esbuild: 0.20.2
postcss: 8.4.38
rollup: 4.14.1
optionalDependencies:
+ '@types/node': 20.14.5
fsevents: 2.3.3
- dev: true
- /vitest@1.4.0(@types/node@20.12.7)(jsdom@24.0.0):
- resolution: {integrity: sha512-gujzn0g7fmwf83/WzrDTnncZt2UiXP41mHuFYFrdwaLRVQ6JYQEiME2IfEjU3vcFL3VKa75XhI3lFgn+hfVsQw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.4.0
- '@vitest/ui': 1.4.0
- happy-dom: '*'
- jsdom: '*'
- peerDependenciesMeta:
- '@edge-runtime/vm':
- optional: true
- '@types/node':
- optional: true
- '@vitest/browser':
- optional: true
- '@vitest/ui':
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
+ vite@5.3.1(@types/node@20.14.5):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.38
+ rollup: 4.14.1
+ optionalDependencies:
+ '@types/node': 20.14.5
+ fsevents: 2.3.3
+
+ vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0):
dependencies:
- '@types/node': 20.12.7
- '@vitest/expect': 1.4.0
- '@vitest/runner': 1.4.0
- '@vitest/snapshot': 1.4.0
- '@vitest/spy': 1.4.0
- '@vitest/utils': 1.4.0
+ '@vitest/expect': 1.6.0
+ '@vitest/runner': 1.6.0
+ '@vitest/snapshot': 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
acorn-walk: 8.3.2
chai: 4.3.10
debug: 4.3.4(supports-color@8.1.1)
execa: 8.0.1
- jsdom: 24.0.0
local-pkg: 0.5.0
magic-string: 0.30.8
pathe: 1.1.2
@@ -11794,10 +13650,13 @@ packages:
std-env: 3.6.0
strip-literal: 2.0.0
tinybench: 2.5.1
- tinypool: 0.8.2
- vite: 5.2.8(@types/node@20.12.7)
- vite-node: 1.4.0(@types/node@20.12.7)
+ tinypool: 0.8.4
+ vite: 5.3.1(@types/node@20.14.5)
+ vite-node: 1.6.0(@types/node@20.14.5)
why-is-node-running: 2.2.2
+ optionalDependencies:
+ '@types/node': 20.14.5
+ jsdom: 24.1.0
transitivePeerDependencies:
- less
- lightningcss
@@ -11806,32 +13665,16 @@ packages:
- sugarss
- supports-color
- terser
- dev: true
- /vue-component-type-helpers@2.0.6:
- resolution: {integrity: sha512-qdGXCtoBrwqk1BT6r2+1Wcvl583ZVkuSZ3or7Y1O2w5AvWtlvvxwjGhmz5DdPJS9xqRdDlgTJ/38ehWnEi0tFA==}
- dev: true
+ vscode-uri@3.0.8: {}
- /vue-demi@0.14.5(vue@3.4.21):
- resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
+ vue-component-type-helpers@2.0.6: {}
+
+ vue-demi@0.14.5(vue@3.4.29(typescript@5.4.2)):
dependencies:
- vue: 3.4.21(typescript@5.4.2)
- dev: false
+ vue: 3.4.29(typescript@5.4.2)
- /vue-eslint-parser@9.4.2(eslint@8.57.0):
- resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}
- engines: {node: ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '>=6.0.0'
+ vue-eslint-parser@9.4.2(eslint@8.57.0):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.0
@@ -11843,267 +13686,161 @@ packages:
semver: 7.6.0
transitivePeerDependencies:
- supports-color
- dev: true
- /vue-router@4.3.0(vue@3.4.21):
- resolution: {integrity: sha512-dqUcs8tUeG+ssgWhcPbjHvazML16Oga5w34uCUmsk7i0BcnskoLGwjpa15fqMr2Fa5JgVBrdL2MEgqz6XZ/6IQ==}
- peerDependencies:
- vue: ^3.2.0
+ vue-router@4.3.3(vue@3.4.29(typescript@5.4.2)):
dependencies:
'@vue/devtools-api': 6.6.1
- vue: 3.4.21(typescript@5.4.2)
- dev: false
+ vue: 3.4.29(typescript@5.4.2)
- /vue-template-compiler@2.7.14:
- resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
+ vue-template-compiler@2.7.14:
dependencies:
de-indent: 1.0.2
he: 1.2.0
- dev: true
- /vue-tsc@2.0.12(typescript@5.4.2):
- resolution: {integrity: sha512-thlBBWlPYrNdba535oDdxz7PRUufZgRZRVP5Aql5wBVpGSWSeqou4EzFXeKVoZr59lp9hJROubDVzlhACmcEhg==}
- hasBin: true
- peerDependencies:
- typescript: '*'
+ vue-tsc@2.0.21(typescript@5.4.2):
dependencies:
- '@volar/typescript': 2.2.0-alpha.7
- '@vue/language-core': 2.0.12(typescript@5.4.2)
+ '@volar/typescript': 2.3.0
+ '@vue/language-core': 2.0.21(typescript@5.4.2)
semver: 7.6.0
typescript: 5.4.2
- dev: true
- /vue@3.4.21(typescript@5.4.2):
- resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ vue@3.4.21(typescript@5.4.2):
dependencies:
'@vue/compiler-dom': 3.4.21
'@vue/compiler-sfc': 3.4.21
'@vue/runtime-dom': 3.4.21
- '@vue/server-renderer': 3.4.21(vue@3.4.21)
+ '@vue/server-renderer': 3.4.21(vue@3.4.21(typescript@5.4.2))
'@vue/shared': 3.4.21
+ optionalDependencies:
typescript: 5.4.2
- /w3c-xmlserializer@5.0.0:
- resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
- engines: {node: '>=18'}
+ vue@3.4.29(typescript@5.4.2):
+ dependencies:
+ '@vue/compiler-dom': 3.4.29
+ '@vue/compiler-sfc': 3.4.29
+ '@vue/runtime-dom': 3.4.29
+ '@vue/server-renderer': 3.4.29(vue@3.4.29(typescript@5.4.2))
+ '@vue/shared': 3.4.29
+ optionalDependencies:
+ typescript: 5.4.2
+
+ w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
- dev: true
- /wait-on@7.2.0(debug@4.3.4):
- resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==}
- engines: {node: '>=12.0.0'}
- hasBin: true
+ wait-on@7.2.0(debug@4.3.5):
dependencies:
- axios: 1.6.2(debug@4.3.4)
+ axios: 1.6.7(debug@4.3.5)
joi: 17.11.0
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
transitivePeerDependencies:
- debug
- dev: true
- /wcwidth@1.0.1:
- resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- dev: true
- /web-streams-polyfill@3.2.1:
- resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
- engines: {node: '>= 8'}
- dev: true
+ web-streams-polyfill@3.2.1: {}
- /webidl-conversions@7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
- dev: true
+ webidl-conversions@7.0.0: {}
- /whatwg-encoding@3.1.1:
- resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
- engines: {node: '>=18'}
+ whatwg-encoding@3.1.1:
dependencies:
iconv-lite: 0.6.3
- dev: true
- /whatwg-mimetype@4.0.0:
- resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
- engines: {node: '>=18'}
- dev: true
+ whatwg-mimetype@4.0.0: {}
- /whatwg-url@14.0.0:
- resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
- engines: {node: '>=18'}
+ whatwg-url@14.0.0:
dependencies:
tr46: 5.0.0
webidl-conversions: 7.0.0
- dev: true
- /which-boxed-primitive@1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ which-boxed-primitive@1.0.2:
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
is-number-object: 1.0.7
is-string: 1.0.7
is-symbol: 1.0.4
- dev: true
- /which-collection@1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+ which-collection@1.0.1:
dependencies:
is-map: 2.0.2
is-set: 2.0.2
is-weakmap: 2.0.1
is-weakset: 2.0.2
- dev: true
- /which-typed-array@1.1.13:
- resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
- engines: {node: '>= 0.4'}
+ which-typed-array@1.1.13:
dependencies:
available-typed-arrays: 1.0.5
call-bind: 1.0.5
for-each: 0.3.3
gopd: 1.0.1
has-tostringtag: 1.0.0
- dev: true
- /which@2.0.2:
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
- engines: {node: '>= 8'}
- hasBin: true
+ which@2.0.2:
dependencies:
isexe: 2.0.0
- dev: true
- /which@4.0.0:
- resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
- engines: {node: ^16.13.0 || >=18.0.0}
- hasBin: true
+ which@4.0.0:
dependencies:
isexe: 3.1.1
- dev: true
- /why-is-node-running@2.2.2:
- resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
- engines: {node: '>=8'}
- hasBin: true
+ why-is-node-running@2.2.2:
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
- dev: true
- /widest-line@3.1.0:
- resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
- engines: {node: '>=8'}
+ widest-line@3.1.0:
dependencies:
string-width: 4.2.3
- dev: true
- /workerpool@6.2.1:
- resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==}
- dev: true
+ workerpool@6.2.1: {}
- /wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
+ wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
- /wrap-ansi@7.0.0:
- resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
- engines: {node: '>=10'}
+ wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
- /wrappy@1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- dev: true
+ wrappy@1.0.2: {}
- /ws@8.14.2:
- resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
+ ws@8.14.2: {}
- /ws@8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
+ ws@8.16.0: {}
- /xml-name-validator@4.0.0:
- resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
- engines: {node: '>=12'}
- dev: true
+ ws@8.17.1: {}
- /xml-name-validator@5.0.0:
- resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
- engines: {node: '>=18'}
- dev: true
+ xml-name-validator@4.0.0: {}
- /xmlchars@2.2.0:
- resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
- dev: true
+ xml-name-validator@5.0.0: {}
- /y18n@5.0.8:
- resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
- engines: {node: '>=10'}
- dev: true
+ xmlchars@2.2.0: {}
- /yallist@3.1.1:
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- dev: true
+ y18n@5.0.8: {}
- /yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- dev: true
+ yallist@3.1.1: {}
- /yargs-parser@20.2.4:
- resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
- engines: {node: '>=10'}
- dev: true
+ yallist@4.0.0: {}
- /yargs-unparser@2.0.0:
- resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
- engines: {node: '>=10'}
+ yargs-parser@20.2.4: {}
+
+ yargs-unparser@2.0.0:
dependencies:
camelcase: 6.3.0
decamelize: 4.0.0
flat: 5.0.2
is-plain-obj: 2.1.0
- dev: true
- /yargs@16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
+ yargs@16.2.0:
dependencies:
cliui: 7.0.4
escalade: 3.1.1
@@ -12112,35 +13849,20 @@ packages:
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 20.2.4
- dev: true
- /yauzl@2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+ yauzl@2.10.0:
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
- dev: true
- /yn@3.1.1:
- resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
- engines: {node: '>=6'}
- dev: true
+ yn@3.1.1: {}
- /yocto-queue@0.1.0:
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
- engines: {node: '>=10'}
- dev: true
+ yocto-queue@0.1.0: {}
- /yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
- engines: {node: '>=12.20'}
- dev: true
+ yocto-queue@1.0.0: {}
- /zip-stream@4.1.0:
- resolution: {integrity: sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==}
- engines: {node: '>= 10'}
+ zip-stream@4.1.0:
dependencies:
archiver-utils: 2.1.0
compress-commons: 4.1.1
readable-stream: 3.6.2
- dev: true
diff --git a/router-cypress/package.json b/router-cypress/package.json
index fd96250f..d8a1fcff 100644
--- a/router-cypress/package.json
+++ b/router-cypress/package.json
@@ -13,13 +13,13 @@
"test:unit:dev": "cypress open --component"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/router-nightwatch/package.json b/router-nightwatch/package.json
index 6b3a7f54..62c21faf 100644
--- a/router-nightwatch/package.json
+++ b/router-nightwatch/package.json
@@ -11,18 +11,18 @@
"test:unit": "nightwatch src/**/__tests__/*"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/router-pinia-cypress/package.json b/router-pinia-cypress/package.json
index a8bb3c02..62b810ab 100644
--- a/router-pinia-cypress/package.json
+++ b/router-pinia-cypress/package.json
@@ -14,13 +14,13 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "cypress": "^13.7.2",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "cypress": "^13.12.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1"
}
}
diff --git a/router-pinia-nightwatch/package.json b/router-pinia-nightwatch/package.json
index b6133c9a..c7955145 100644
--- a/router-pinia-nightwatch/package.json
+++ b/router-pinia-nightwatch/package.json
@@ -12,18 +12,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6"
}
}
diff --git a/router-pinia-playwright/package.json b/router-pinia-playwright/package.json
index 1739b486..32859538 100644
--- a/router-pinia-playwright/package.json
+++ b/router-pinia-playwright/package.json
@@ -11,12 +11,12 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/router-pinia-vitest-cypress/package.json b/router-pinia-vitest-cypress/package.json
index 5fe83a0f..f9eb174d 100644
--- a/router-pinia-vitest-cypress/package.json
+++ b/router-pinia-vitest-cypress/package.json
@@ -13,16 +13,16 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/router-pinia-vitest-nightwatch/package.json b/router-pinia-vitest-nightwatch/package.json
index f4543006..3e0bc6e2 100644
--- a/router-pinia-vitest-nightwatch/package.json
+++ b/router-pinia-vitest-nightwatch/package.json
@@ -12,20 +12,20 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/router-pinia-vitest-playwright/package.json b/router-pinia-vitest-playwright/package.json
index b00bd264..6623b01d 100644
--- a/router-pinia-vitest-playwright/package.json
+++ b/router-pinia-vitest-playwright/package.json
@@ -12,15 +12,15 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/router-pinia-vitest/package.json b/router-pinia-vitest/package.json
index c000218a..ce6eb330 100644
--- a/router-pinia-vitest/package.json
+++ b/router-pinia-vitest/package.json
@@ -11,14 +11,14 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/router-pinia-with-tests/package.json b/router-pinia-with-tests/package.json
index 6062da2e..cfa98cd1 100644
--- a/router-pinia-with-tests/package.json
+++ b/router-pinia-with-tests/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/router-pinia/package.json b/router-pinia/package.json
index 3aa1b326..67e9a51a 100644
--- a/router-pinia/package.json
+++ b/router-pinia/package.json
@@ -10,11 +10,11 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/router-playwright/package.json b/router-playwright/package.json
index 0f3d661b..c6214616 100644
--- a/router-playwright/package.json
+++ b/router-playwright/package.json
@@ -10,12 +10,12 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/router-vitest-cypress/package.json b/router-vitest-cypress/package.json
index 0ed01376..087e1042 100644
--- a/router-vitest-cypress/package.json
+++ b/router-vitest-cypress/package.json
@@ -12,16 +12,16 @@
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/router-vitest-nightwatch/package.json b/router-vitest-nightwatch/package.json
index 531f202c..582d687d 100644
--- a/router-vitest-nightwatch/package.json
+++ b/router-vitest-nightwatch/package.json
@@ -11,20 +11,20 @@
"test:e2e": "nightwatch tests/e2e/*"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/router-vitest-playwright/package.json b/router-vitest-playwright/package.json
index 02e80919..5df279d4 100644
--- a/router-vitest-playwright/package.json
+++ b/router-vitest-playwright/package.json
@@ -11,15 +11,15 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/router-vitest/package.json b/router-vitest/package.json
index 721c9844..b213aa9c 100644
--- a/router-vitest/package.json
+++ b/router-vitest/package.json
@@ -10,14 +10,14 @@
"test:unit": "vitest"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/router-with-tests/package.json b/router-with-tests/package.json
index 96b87d78..f92035d0 100644
--- a/router-with-tests/package.json
+++ b/router-with-tests/package.json
@@ -9,11 +9,11 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/router/package.json b/router/package.json
index 512e2880..968d9701 100644
--- a/router/package.json
+++ b/router/package.json
@@ -9,11 +9,11 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}
diff --git a/typescript-cypress/cypress/e2e/tsconfig.json b/typescript-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-cypress/package.json b/typescript-cypress/package.json
index f3a4e02d..8863c406 100644
--- a/typescript-cypress/package.json
+++ b/typescript-cypress/package.json
@@ -15,18 +15,18 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-cypress/package.json b/typescript-jsx-cypress/package.json
index b46e8612..f54b78e2 100644
--- a/typescript-jsx-cypress/package.json
+++ b/typescript-jsx-cypress/package.json
@@ -15,19 +15,19 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-nightwatch/package.json b/typescript-jsx-nightwatch/package.json
index 869bf6cf..54fa2500 100644
--- a/typescript-jsx-nightwatch/package.json
+++ b/typescript-jsx-nightwatch/package.json
@@ -13,24 +13,24 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-pinia-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-pinia-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-pinia-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-pinia-cypress/package.json b/typescript-jsx-pinia-cypress/package.json
index a6572ac4..7bb68ef0 100644
--- a/typescript-jsx-pinia-cypress/package.json
+++ b/typescript-jsx-pinia-cypress/package.json
@@ -16,19 +16,19 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-nightwatch/package.json b/typescript-jsx-pinia-nightwatch/package.json
index c5cdd965..ef3fc7ce 100644
--- a/typescript-jsx-pinia-nightwatch/package.json
+++ b/typescript-jsx-pinia-nightwatch/package.json
@@ -14,24 +14,24 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-playwright/package.json b/typescript-jsx-pinia-playwright/package.json
index 2ee2a604..369eb78c 100644
--- a/typescript-jsx-pinia-playwright/package.json
+++ b/typescript-jsx-pinia-playwright/package.json
@@ -13,18 +13,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-pinia-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-pinia-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-pinia-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-pinia-vitest-cypress/package.json b/typescript-jsx-pinia-vitest-cypress/package.json
index 702173fd..c24341a0 100644
--- a/typescript-jsx-pinia-vitest-cypress/package.json
+++ b/typescript-jsx-pinia-vitest-cypress/package.json
@@ -15,23 +15,23 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-vitest-nightwatch/package.json b/typescript-jsx-pinia-vitest-nightwatch/package.json
index d404acf7..903265f5 100644
--- a/typescript-jsx-pinia-vitest-nightwatch/package.json
+++ b/typescript-jsx-pinia-vitest-nightwatch/package.json
@@ -14,27 +14,27 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-vitest-playwright/package.json b/typescript-jsx-pinia-vitest-playwright/package.json
index db03d3a0..78d088c0 100644
--- a/typescript-jsx-pinia-vitest-playwright/package.json
+++ b/typescript-jsx-pinia-vitest-playwright/package.json
@@ -14,22 +14,22 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-vitest/package.json b/typescript-jsx-pinia-vitest/package.json
index d5e9b98b..03459572 100644
--- a/typescript-jsx-pinia-vitest/package.json
+++ b/typescript-jsx-pinia-vitest/package.json
@@ -13,21 +13,21 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia-with-tests/package.json b/typescript-jsx-pinia-with-tests/package.json
index b12863a0..c54b35ca 100644
--- a/typescript-jsx-pinia-with-tests/package.json
+++ b/typescript-jsx-pinia-with-tests/package.json
@@ -12,17 +12,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-pinia/package.json b/typescript-jsx-pinia/package.json
index 03511220..63d7c8d1 100644
--- a/typescript-jsx-pinia/package.json
+++ b/typescript-jsx-pinia/package.json
@@ -12,17 +12,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-playwright/package.json b/typescript-jsx-playwright/package.json
index 9521c161..9795bbdc 100644
--- a/typescript-jsx-playwright/package.json
+++ b/typescript-jsx-playwright/package.json
@@ -12,18 +12,18 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-router-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-router-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-router-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-router-cypress/package.json b/typescript-jsx-router-cypress/package.json
index 63eb7d1b..c6a7d701 100644
--- a/typescript-jsx-router-cypress/package.json
+++ b/typescript-jsx-router-cypress/package.json
@@ -15,20 +15,20 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-nightwatch/package.json b/typescript-jsx-router-nightwatch/package.json
index 886746e3..b9bb6f30 100644
--- a/typescript-jsx-router-nightwatch/package.json
+++ b/typescript-jsx-router-nightwatch/package.json
@@ -13,25 +13,25 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-router-pinia-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-router-pinia-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-router-pinia-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-router-pinia-cypress/package.json b/typescript-jsx-router-pinia-cypress/package.json
index a0be97fd..b7dbd57b 100644
--- a/typescript-jsx-router-pinia-cypress/package.json
+++ b/typescript-jsx-router-pinia-cypress/package.json
@@ -16,20 +16,20 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-nightwatch/package.json b/typescript-jsx-router-pinia-nightwatch/package.json
index 2371ddd5..b02b6a89 100644
--- a/typescript-jsx-router-pinia-nightwatch/package.json
+++ b/typescript-jsx-router-pinia-nightwatch/package.json
@@ -14,25 +14,25 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-playwright/package.json b/typescript-jsx-router-pinia-playwright/package.json
index 8ad4df88..db83b074 100644
--- a/typescript-jsx-router-pinia-playwright/package.json
+++ b/typescript-jsx-router-pinia-playwright/package.json
@@ -13,19 +13,19 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-router-pinia-vitest-cypress/package.json b/typescript-jsx-router-pinia-vitest-cypress/package.json
index 757ca411..5cedd507 100644
--- a/typescript-jsx-router-pinia-vitest-cypress/package.json
+++ b/typescript-jsx-router-pinia-vitest-cypress/package.json
@@ -15,24 +15,24 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-vitest-nightwatch/package.json b/typescript-jsx-router-pinia-vitest-nightwatch/package.json
index 5c9b2152..0a66c689 100644
--- a/typescript-jsx-router-pinia-vitest-nightwatch/package.json
+++ b/typescript-jsx-router-pinia-vitest-nightwatch/package.json
@@ -14,28 +14,28 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-vitest-playwright/package.json b/typescript-jsx-router-pinia-vitest-playwright/package.json
index e7ed787b..42e1da52 100644
--- a/typescript-jsx-router-pinia-vitest-playwright/package.json
+++ b/typescript-jsx-router-pinia-vitest-playwright/package.json
@@ -14,23 +14,23 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-vitest/package.json b/typescript-jsx-router-pinia-vitest/package.json
index 6726e919..58076c2b 100644
--- a/typescript-jsx-router-pinia-vitest/package.json
+++ b/typescript-jsx-router-pinia-vitest/package.json
@@ -13,22 +13,22 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia-with-tests/package.json b/typescript-jsx-router-pinia-with-tests/package.json
index 12342aa5..4b0d2cf7 100644
--- a/typescript-jsx-router-pinia-with-tests/package.json
+++ b/typescript-jsx-router-pinia-with-tests/package.json
@@ -12,18 +12,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-pinia/package.json b/typescript-jsx-router-pinia/package.json
index ac36880a..dc78dd86 100644
--- a/typescript-jsx-router-pinia/package.json
+++ b/typescript-jsx-router-pinia/package.json
@@ -12,18 +12,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-playwright/package.json b/typescript-jsx-router-playwright/package.json
index 09378127..35495220 100644
--- a/typescript-jsx-router-playwright/package.json
+++ b/typescript-jsx-router-playwright/package.json
@@ -12,19 +12,19 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-router-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-router-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-router-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-router-vitest-cypress/package.json b/typescript-jsx-router-vitest-cypress/package.json
index af8073da..fa9e2df4 100644
--- a/typescript-jsx-router-vitest-cypress/package.json
+++ b/typescript-jsx-router-vitest-cypress/package.json
@@ -14,24 +14,24 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-vitest-nightwatch/package.json b/typescript-jsx-router-vitest-nightwatch/package.json
index 5e42e0a7..c0976cf8 100644
--- a/typescript-jsx-router-vitest-nightwatch/package.json
+++ b/typescript-jsx-router-vitest-nightwatch/package.json
@@ -13,28 +13,28 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-vitest-playwright/package.json b/typescript-jsx-router-vitest-playwright/package.json
index 922f9c30..ec0730f4 100644
--- a/typescript-jsx-router-vitest-playwright/package.json
+++ b/typescript-jsx-router-vitest-playwright/package.json
@@ -13,23 +13,23 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-vitest/package.json b/typescript-jsx-router-vitest/package.json
index c8f4dade..c19f4bee 100644
--- a/typescript-jsx-router-vitest/package.json
+++ b/typescript-jsx-router-vitest/package.json
@@ -12,22 +12,22 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router-with-tests/package.json b/typescript-jsx-router-with-tests/package.json
index 8a74041a..0331a6e1 100644
--- a/typescript-jsx-router-with-tests/package.json
+++ b/typescript-jsx-router-with-tests/package.json
@@ -11,18 +11,18 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-router/package.json b/typescript-jsx-router/package.json
index 0ebe4b87..30b74e4e 100644
--- a/typescript-jsx-router/package.json
+++ b/typescript-jsx-router/package.json
@@ -11,18 +11,18 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-jsx-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-jsx-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-jsx-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-jsx-vitest-cypress/package.json b/typescript-jsx-vitest-cypress/package.json
index 00ffb8c7..eead3a63 100644
--- a/typescript-jsx-vitest-cypress/package.json
+++ b/typescript-jsx-vitest-cypress/package.json
@@ -14,23 +14,23 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-vitest-nightwatch/package.json b/typescript-jsx-vitest-nightwatch/package.json
index 3b76a97d..1b331329 100644
--- a/typescript-jsx-vitest-nightwatch/package.json
+++ b/typescript-jsx-vitest-nightwatch/package.json
@@ -13,27 +13,27 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-vitest-playwright/package.json b/typescript-jsx-vitest-playwright/package.json
index 4380fe4e..c63a5306 100644
--- a/typescript-jsx-vitest-playwright/package.json
+++ b/typescript-jsx-vitest-playwright/package.json
@@ -13,22 +13,22 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-vitest/package.json b/typescript-jsx-vitest/package.json
index 5fcad27a..6872375b 100644
--- a/typescript-jsx-vitest/package.json
+++ b/typescript-jsx-vitest/package.json
@@ -12,21 +12,21 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx-with-tests/package.json b/typescript-jsx-with-tests/package.json
index ff848a8f..568019a4 100644
--- a/typescript-jsx-with-tests/package.json
+++ b/typescript-jsx-with-tests/package.json
@@ -11,17 +11,17 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-jsx/package.json b/typescript-jsx/package.json
index e3ef817c..f85efd45 100644
--- a/typescript-jsx/package.json
+++ b/typescript-jsx/package.json
@@ -11,17 +11,17 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-nightwatch/package.json b/typescript-nightwatch/package.json
index 766643b5..3df3a92a 100644
--- a/typescript-nightwatch/package.json
+++ b/typescript-nightwatch/package.json
@@ -13,23 +13,23 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-cypress/cypress/e2e/tsconfig.json b/typescript-pinia-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-pinia-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-pinia-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-pinia-cypress/package.json b/typescript-pinia-cypress/package.json
index 0d46c508..6f7d6e5d 100644
--- a/typescript-pinia-cypress/package.json
+++ b/typescript-pinia-cypress/package.json
@@ -16,18 +16,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-nightwatch/package.json b/typescript-pinia-nightwatch/package.json
index e1386b75..30b50b2b 100644
--- a/typescript-pinia-nightwatch/package.json
+++ b/typescript-pinia-nightwatch/package.json
@@ -14,23 +14,23 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-playwright/package.json b/typescript-pinia-playwright/package.json
index ca01d26e..2eb5ce81 100644
--- a/typescript-pinia-playwright/package.json
+++ b/typescript-pinia-playwright/package.json
@@ -13,17 +13,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-pinia-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-pinia-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-pinia-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-pinia-vitest-cypress/package.json b/typescript-pinia-vitest-cypress/package.json
index d99760c0..915e2341 100644
--- a/typescript-pinia-vitest-cypress/package.json
+++ b/typescript-pinia-vitest-cypress/package.json
@@ -15,22 +15,22 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-vitest-nightwatch/package.json b/typescript-pinia-vitest-nightwatch/package.json
index 344bdea8..8d35d5cf 100644
--- a/typescript-pinia-vitest-nightwatch/package.json
+++ b/typescript-pinia-vitest-nightwatch/package.json
@@ -14,26 +14,26 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-vitest-playwright/package.json b/typescript-pinia-vitest-playwright/package.json
index a8df7fb9..cd2e2cde 100644
--- a/typescript-pinia-vitest-playwright/package.json
+++ b/typescript-pinia-vitest-playwright/package.json
@@ -14,21 +14,21 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-vitest/package.json b/typescript-pinia-vitest/package.json
index 3385fee0..be20db60 100644
--- a/typescript-pinia-vitest/package.json
+++ b/typescript-pinia-vitest/package.json
@@ -13,20 +13,20 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia-with-tests/package.json b/typescript-pinia-with-tests/package.json
index 703b8f3b..7d121a01 100644
--- a/typescript-pinia-with-tests/package.json
+++ b/typescript-pinia-with-tests/package.json
@@ -12,16 +12,16 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-pinia/package.json b/typescript-pinia/package.json
index a7dba3e6..5e70e1b1 100644
--- a/typescript-pinia/package.json
+++ b/typescript-pinia/package.json
@@ -12,16 +12,16 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-playwright/package.json b/typescript-playwright/package.json
index 37d6f980..8c0ff9c5 100644
--- a/typescript-playwright/package.json
+++ b/typescript-playwright/package.json
@@ -12,17 +12,17 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-cypress/cypress/e2e/tsconfig.json b/typescript-router-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-router-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-router-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-router-cypress/package.json b/typescript-router-cypress/package.json
index 9386a42b..a3bb5fdc 100644
--- a/typescript-router-cypress/package.json
+++ b/typescript-router-cypress/package.json
@@ -15,19 +15,19 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-nightwatch/package.json b/typescript-router-nightwatch/package.json
index 731add2c..db55162d 100644
--- a/typescript-router-nightwatch/package.json
+++ b/typescript-router-nightwatch/package.json
@@ -13,24 +13,24 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-cypress/cypress/e2e/tsconfig.json b/typescript-router-pinia-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-router-pinia-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-router-pinia-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-router-pinia-cypress/package.json b/typescript-router-pinia-cypress/package.json
index a0c37aae..8117d7e9 100644
--- a/typescript-router-pinia-cypress/package.json
+++ b/typescript-router-pinia-cypress/package.json
@@ -16,19 +16,19 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-nightwatch/package.json b/typescript-router-pinia-nightwatch/package.json
index f715bec0..a5fdabd6 100644
--- a/typescript-router-pinia-nightwatch/package.json
+++ b/typescript-router-pinia-nightwatch/package.json
@@ -14,24 +14,24 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vue-tsc": "^2.0.11"
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-playwright/package.json b/typescript-router-pinia-playwright/package.json
index d2db1c2b..1fe8e923 100644
--- a/typescript-router-pinia-playwright/package.json
+++ b/typescript-router-pinia-playwright/package.json
@@ -13,18 +13,18 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-router-pinia-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-router-pinia-vitest-cypress/package.json b/typescript-router-pinia-vitest-cypress/package.json
index e4067918..c4d24140 100644
--- a/typescript-router-pinia-vitest-cypress/package.json
+++ b/typescript-router-pinia-vitest-cypress/package.json
@@ -15,23 +15,23 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-vitest-nightwatch/package.json b/typescript-router-pinia-vitest-nightwatch/package.json
index e030b4f3..48445867 100644
--- a/typescript-router-pinia-vitest-nightwatch/package.json
+++ b/typescript-router-pinia-vitest-nightwatch/package.json
@@ -14,27 +14,27 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-vitest-playwright/package.json b/typescript-router-pinia-vitest-playwright/package.json
index a81550cd..39c99d30 100644
--- a/typescript-router-pinia-vitest-playwright/package.json
+++ b/typescript-router-pinia-vitest-playwright/package.json
@@ -14,22 +14,22 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-vitest/package.json b/typescript-router-pinia-vitest/package.json
index 1c50cb34..cc1403e8 100644
--- a/typescript-router-pinia-vitest/package.json
+++ b/typescript-router-pinia-vitest/package.json
@@ -13,21 +13,21 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia-with-tests/package.json b/typescript-router-pinia-with-tests/package.json
index acd5d380..f2e193de 100644
--- a/typescript-router-pinia-with-tests/package.json
+++ b/typescript-router-pinia-with-tests/package.json
@@ -12,17 +12,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-pinia/package.json b/typescript-router-pinia/package.json
index 3545a1d5..3dbb1c5d 100644
--- a/typescript-router-pinia/package.json
+++ b/typescript-router-pinia/package.json
@@ -12,17 +12,17 @@
},
"dependencies": {
"pinia": "^2.1.7",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-playwright/package.json b/typescript-router-playwright/package.json
index f0954ea5..5d102a15 100644
--- a/typescript-router-playwright/package.json
+++ b/typescript-router-playwright/package.json
@@ -12,18 +12,18 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-router-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-router-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-router-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-router-vitest-cypress/package.json b/typescript-router-vitest-cypress/package.json
index db1b5d90..376093ba 100644
--- a/typescript-router-vitest-cypress/package.json
+++ b/typescript-router-vitest-cypress/package.json
@@ -14,23 +14,23 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-vitest-nightwatch/package.json b/typescript-router-vitest-nightwatch/package.json
index 760026aa..d91b6345 100644
--- a/typescript-router-vitest-nightwatch/package.json
+++ b/typescript-router-vitest-nightwatch/package.json
@@ -13,27 +13,27 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-vitest-playwright/package.json b/typescript-router-vitest-playwright/package.json
index f2818fd0..f3353ce9 100644
--- a/typescript-router-vitest-playwright/package.json
+++ b/typescript-router-vitest-playwright/package.json
@@ -13,22 +13,22 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-vitest/package.json b/typescript-router-vitest/package.json
index bb8fd39f..49a1cea6 100644
--- a/typescript-router-vitest/package.json
+++ b/typescript-router-vitest/package.json
@@ -12,21 +12,21 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router-with-tests/package.json b/typescript-router-with-tests/package.json
index 4ed10ec3..65af5ba6 100644
--- a/typescript-router-with-tests/package.json
+++ b/typescript-router-with-tests/package.json
@@ -11,17 +11,17 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-router/package.json b/typescript-router/package.json
index aca1b8aa..1f170ff6 100644
--- a/typescript-router/package.json
+++ b/typescript-router/package.json
@@ -11,17 +11,17 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "vue": "^3.4.29",
+ "vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-vitest-cypress/cypress/e2e/tsconfig.json b/typescript-vitest-cypress/cypress/e2e/tsconfig.json
index 37748feb..c94f1d49 100644
--- a/typescript-vitest-cypress/cypress/e2e/tsconfig.json
+++ b/typescript-vitest-cypress/cypress/e2e/tsconfig.json
@@ -3,8 +3,6 @@
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
- "target": "es5",
- "lib": ["es5", "dom"],
"types": ["cypress"]
}
}
diff --git a/typescript-vitest-cypress/package.json b/typescript-vitest-cypress/package.json
index d0ab5e00..35b3a24c 100644
--- a/typescript-vitest-cypress/package.json
+++ b/typescript-vitest-cypress/package.json
@@ -14,22 +14,22 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
- "start-server-and-test": "^2.0.3",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
+ "start-server-and-test": "^2.0.4",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-vitest-nightwatch/package.json b/typescript-vitest-nightwatch/package.json
index 0d2a24fe..af472be2 100644
--- a/typescript-vitest-nightwatch/package.json
+++ b/typescript-vitest-nightwatch/package.json
@@ -13,26 +13,26 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
+ "@nightwatch/vue": "^3.1.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
- "npm-run-all2": "^6.1.2",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
+ "npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-vitest-playwright/package.json b/typescript-vitest-playwright/package.json
index 6bae0fbd..7a35184d 100644
--- a/typescript-vitest-playwright/package.json
+++ b/typescript-vitest-playwright/package.json
@@ -13,21 +13,21 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
+ "@playwright/test": "^1.44.1",
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-vitest/package.json b/typescript-vitest/package.json
index 4755c1fc..589d731a 100644
--- a/typescript-vitest/package.json
+++ b/typescript-vitest/package.json
@@ -12,20 +12,20 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/jsdom": "^21.1.6",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
+ "@types/jsdom": "^21.1.7",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
- "jsdom": "^24.0.0",
- "npm-run-all2": "^6.1.2",
+ "jsdom": "^24.1.0",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript-with-tests/package.json b/typescript-with-tests/package.json
index 77e4c463..f086f6f8 100644
--- a/typescript-with-tests/package.json
+++ b/typescript-with-tests/package.json
@@ -11,16 +11,16 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/typescript/package.json b/typescript/package.json
index 3d20f098..8ec926c7 100644
--- a/typescript/package.json
+++ b/typescript/package.json
@@ -11,16 +11,16 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
- "@types/node": "^20.12.5",
- "@vitejs/plugin-vue": "^5.0.4",
+ "@types/node": "^20.14.5",
+ "@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
- "npm-run-all2": "^6.1.2",
+ "npm-run-all2": "^6.2.0",
"typescript": "~5.4.0",
- "vite": "^5.2.8",
- "vue-tsc": "^2.0.11"
+ "vite": "^5.3.1",
+ "vue-tsc": "^2.0.21"
}
}
diff --git a/vitest-cypress/package.json b/vitest-cypress/package.json
index d0ac7b3f..6f4fd8c8 100644
--- a/vitest-cypress/package.json
+++ b/vitest-cypress/package.json
@@ -12,15 +12,15 @@
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "cypress": "^13.7.2",
- "jsdom": "^24.0.0",
- "start-server-and-test": "^2.0.3",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "cypress": "^13.12.0",
+ "jsdom": "^24.1.0",
+ "start-server-and-test": "^2.0.4",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/vitest-nightwatch/package.json b/vitest-nightwatch/package.json
index 77d2e953..246156e0 100644
--- a/vitest-nightwatch/package.json
+++ b/vitest-nightwatch/package.json
@@ -11,19 +11,19 @@
"test:e2e": "nightwatch tests/e2e/*"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@nightwatch/vue": "^3.1.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "chromedriver": "^123.0.1",
- "geckodriver": "^4.3.3",
- "jsdom": "^24.0.0",
- "nightwatch": "^3.6.0",
+ "@nightwatch/vue": "^3.1.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "chromedriver": "^126.0.2",
+ "geckodriver": "^4.4.1",
+ "jsdom": "^24.1.0",
+ "nightwatch": "^3.6.3",
"ts-node": "^10.9.2",
- "vite": "^5.2.8",
+ "vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
- "vitest": "^1.4.0"
+ "vitest": "^1.6.0"
}
}
diff --git a/vitest-playwright/package.json b/vitest-playwright/package.json
index 3828d3ec..044951c9 100644
--- a/vitest-playwright/package.json
+++ b/vitest-playwright/package.json
@@ -11,14 +11,14 @@
"test:e2e": "playwright test"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@playwright/test": "^1.43.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@playwright/test": "^1.44.1",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/vitest/package.json b/vitest/package.json
index eba978d1..7987c13c 100644
--- a/vitest/package.json
+++ b/vitest/package.json
@@ -10,13 +10,13 @@
"test:unit": "vitest"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/test-utils": "^2.4.5",
- "jsdom": "^24.0.0",
- "vite": "^5.2.8",
- "vitest": "^1.4.0"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "@vue/test-utils": "^2.4.6",
+ "jsdom": "^24.1.0",
+ "vite": "^5.3.1",
+ "vitest": "^1.6.0"
}
}
diff --git a/with-tests/package.json b/with-tests/package.json
index a6ffe895..a6766230 100644
--- a/with-tests/package.json
+++ b/with-tests/package.json
@@ -9,10 +9,10 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.4.21"
+ "vue": "^3.4.29"
},
"devDependencies": {
- "@vitejs/plugin-vue": "^5.0.4",
- "vite": "^5.2.8"
+ "@vitejs/plugin-vue": "^5.0.5",
+ "vite": "^5.3.1"
}
}