diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1282a58..983b400 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -48,7 +48,7 @@ jobs:
run: nr build
- name: Relase Edge
- if: github.event_name == 'push'
+ if: github.event_name == 'push' || github.actor == 'flowko'
run: |
chmod +x ./scripts/release-edge.sh
./scripts/release-edge.sh
diff --git a/client/emails/code-components.vue b/client/emails/code-components.vue
new file mode 100644
index 0000000..bad6cd4
--- /dev/null
+++ b/client/emails/code-components.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+ @vue-email/nuxt
+
+
+
+
+
diff --git a/package.json b/package.json
index c735814..1620fd3 100644
--- a/package.json
+++ b/package.json
@@ -37,10 +37,10 @@
"build:module": "nuxt-module-build build",
"build:client": "nuxi generate client",
"build:play": "nuxi build playground",
+ "preview:play": "nuxi preview playground",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:client": "nuxi dev client",
- "dev:build": "nuxi build playground",
"dev:prepare": "pnpm stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare client",
"lint": "eslint .",
"test": "vitest run",
@@ -48,23 +48,23 @@
"release": "bumpp"
},
"dependencies": {
- "@nuxt/kit": "^3.8.2",
- "defu": "^6.1.3",
- "vue-email": "^0.8.5",
- "@vue-email/compiler": "^0.8.7",
- "sirv": "^2.0.3"
+ "@nuxt/kit": "^3.9.3",
+ "defu": "^6.1.4",
+ "vue-email": "^0.8.6",
+ "@vue-email/compiler": "^0.8.8",
+ "sirv": "^2.0.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
- "@nuxt/module-builder": "^0.5.4",
- "@nuxt/schema": "^3.8.2",
- "@nuxt/test-utils": "^3.8.1",
- "@types/node": "^20.10.3",
- "eslint": "^8.55.0",
- "bumpp": "^9.2.1",
+ "@nuxt/module-builder": "^0.5.5",
+ "@nuxt/schema": "^3.9.3",
+ "@nuxt/test-utils": "^3.10.0",
+ "@types/node": "^20.11.5",
+ "eslint": "^8.56.0",
+ "bumpp": "^9.3.0",
"jiti": "^1.21.0",
- "nuxt": "^3.8.2",
- "vitest": "^1.0.4"
+ "nuxt": "^3.9.3",
+ "vitest": "^1.2.1"
}
}
diff --git a/playground/nuxt-layer/emails/TestEmail.vue b/playground/nuxt-layer/emails/TestEmail.vue
new file mode 100644
index 0000000..a87bce8
--- /dev/null
+++ b/playground/nuxt-layer/emails/TestEmail.vue
@@ -0,0 +1,156 @@
+
+
+
+
+
+ You're now ready to make live transactions with Stripe!
+
+
+
+
+
+
+ Thanks for submitting your account information. You're now ready to make live transactions with Stripe!
+
+
+ You can view your payments and a variety of other information about your account right from your dashboard.
+
+
+ View your Stripe Dashboard
+
+
+
+ If you haven't finished your integration, you might find our
+
+ docs
+
+ handy.
+
+
+
+ Once you're ready to start accepting payments, you'll just need to use your live
+
+ API keys
+
+ instead of your test API keys. Your account can simultaneously be used for both test and live requests, so you can continue testing while accepting live payments. Check
+ out our
+
+ tutorial about account basics
+
+ .
+
+
+ Finally, we've put together a
+
+ quick checklist
+
+ to ensure your website conforms to card network standards.
+
+
+ We'll be here to help you with any step along the way. You can find answers to most questions and get in touch with us on our
+
+ support site
+
+ .
+
+
+ — The Stripe team
+
+
+
+ Stripe, 354 Oyster Point Blvd, South San Francisco, CA 94080
+
+
+
+
+
+
diff --git a/playground/nuxt-layer/emails/github-access-token.vue b/playground/nuxt-layer/emails/github-access-token.vue
deleted file mode 100644
index cc62fac..0000000
--- a/playground/nuxt-layer/emails/github-access-token.vue
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
-
-
- body {
- background-color: #f6f8fa;
- }
-
-
- A fine-grained personal access token has been added to your account
-
-
-
-
- @{{ username }}, a personal access was created on your account.
-
-
-
-
- Hey {{ username }}!
-
-
- {{ $t('title') }}
-
-
- A fine-grained personal access token (
- resend
- ) was recently added to your account.
-
-
-
- View your token
-
-
-
-
- Your security audit log
-
- ・
-
- Contact support
-
-
-
-
- GitHub, Inc. ・88 Colin P Kelly Jr Street ・San Francisco, CA 94107
-
-
-
-
-
diff --git a/playground/server/api/test.get.ts b/playground/server/api/test.get.ts
index e86a44f..41eb8d5 100644
--- a/playground/server/api/test.get.ts
+++ b/playground/server/api/test.get.ts
@@ -2,7 +2,7 @@ import { useCompiler } from '#vue-email'
export default defineEventHandler(async () => {
try {
- const template = await useCompiler('github-access-token.vue', {
+ const template = await useCompiler('TestEmail.vue', {
props: {
username: 'Flowko',
},
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ac68153..c62001f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,54 +9,54 @@ importers:
.:
dependencies:
'@nuxt/kit':
- specifier: ^3.8.2
- version: 3.8.2(rollup@3.29.4)
+ specifier: ^3.9.3
+ version: 3.9.3(rollup@3.29.4)
'@vue-email/compiler':
- specifier: ^0.8.7
- version: 0.8.7(typescript@5.3.3)(vue@3.3.11)
+ specifier: ^0.8.8
+ version: 0.8.8(typescript@5.3.3)(vue@3.4.15)
defu:
- specifier: ^6.1.3
- version: 6.1.3
+ specifier: ^6.1.4
+ version: 6.1.4
sirv:
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
vue-email:
- specifier: ^0.8.5
- version: 0.8.5(typescript@5.3.3)(vue@3.3.11)
+ specifier: ^0.8.6
+ version: 0.8.6(typescript@5.3.3)(vue@3.4.15)
devDependencies:
'@nuxt/devtools':
specifier: latest
- version: 1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.9)
+ version: 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/eslint-config':
specifier: ^0.2.0
- version: 0.2.0(eslint@8.55.0)
+ version: 0.2.0(eslint@8.56.0)
'@nuxt/module-builder':
- specifier: ^0.5.4
- version: 0.5.4(@nuxt/kit@3.8.2)(nuxi@3.10.0)(typescript@5.3.3)
+ specifier: ^0.5.5
+ version: 0.5.5(@nuxt/kit@3.9.3)(nuxi@3.10.0)(typescript@5.3.3)
'@nuxt/schema':
- specifier: ^3.8.2
- version: 3.8.2(rollup@3.29.4)
+ specifier: ^3.9.3
+ version: 3.9.3(rollup@3.29.4)
'@nuxt/test-utils':
- specifier: ^3.8.1
- version: 3.8.1(rollup@3.29.4)(vitest@1.0.4)(vue@3.3.11)
+ specifier: ^3.10.0
+ version: 3.10.0(h3@1.10.0)(rollup@3.29.4)(vite@5.0.11)(vitest@1.2.1)(vue-router@4.2.5)(vue@3.4.15)
'@types/node':
- specifier: ^20.10.3
- version: 20.10.4
+ specifier: ^20.11.5
+ version: 20.11.5
bumpp:
- specifier: ^9.2.1
- version: 9.2.1
+ specifier: ^9.3.0
+ version: 9.3.0
eslint:
- specifier: ^8.55.0
- version: 8.55.0
+ specifier: ^8.56.0
+ version: 8.56.0
jiti:
specifier: ^1.21.0
version: 1.21.0
nuxt:
- specifier: ^3.8.2
- version: 3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
+ specifier: ^3.9.3
+ version: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
vitest:
- specifier: ^1.0.4
- version: 1.0.4(@types/node@20.10.4)
+ specifier: ^1.2.1
+ version: 1.2.1(@types/node@20.11.5)
client:
devDependencies:
@@ -77,10 +77,10 @@ importers:
version: 1.1.15
'@nuxt/devtools':
specifier: latest
- version: 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)
+ version: 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/ui':
specifier: ^2.12.3
- version: 2.12.3(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)(vue@3.3.11)
+ version: 2.12.3(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)(vue@3.4.15)
'@nuxtjs/fontaine':
specifier: ^0.4.1
version: 0.4.1(rollup@3.29.4)
@@ -98,16 +98,16 @@ importers:
version: 2.2.6
'@vueuse/core':
specifier: ^10.7.2
- version: 10.7.2(vue@3.3.11)
+ version: 10.7.2(vue@3.4.15)
'@vueuse/nuxt':
specifier: ^10.7.2
- version: 10.7.2(nuxt@3.9.3)(rollup@3.29.4)(vue@3.3.11)
+ version: 10.7.2(nuxt@3.9.3)(rollup@3.29.4)(vue@3.4.15)
html-to-text:
specifier: ^9.0.5
version: 9.0.5
nuxt:
specifier: ^3.9.3
- version: 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
+ version: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
pretty:
specifier: ^2.0.0
version: 2.0.0
@@ -125,7 +125,7 @@ importers:
devDependencies:
nuxt:
specifier: latest
- version: 3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
+ version: 3.8.2(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
packages:
@@ -156,6 +156,14 @@ packages:
resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
dev: true
+ /@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: false
+
/@babel/code-frame@7.23.5:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
@@ -1163,13 +1171,13 @@ packages:
dev: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.55.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.56.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.55.0
+ eslint: 8.56.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -1195,8 +1203,8 @@ packages:
- supports-color
dev: true
- /@eslint/js@8.55.0:
- resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==}
+ /@eslint/js@8.56.0:
+ resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -1214,13 +1222,13 @@ packages:
tailwindcss: 3.4.1
dev: true
- /@headlessui/vue@1.7.16(vue@3.3.11):
+ /@headlessui/vue@1.7.16(vue@3.4.15):
resolution: {integrity: sha512-nKT+nf/q6x198SsyK54mSszaQl/z+QxtASmgMEJtpxSX2Q0OPJX0upS/9daDyiECpeAsvjkoOrm2O/6PyBQ+Qg==}
engines: {node: '>=10'}
peerDependencies:
vue: ^3.2.0
dependencies:
- vue: 3.3.11(typescript@5.3.3)
+ vue: 3.4.15(typescript@5.3.3)
dev: true
/@humanwhocodes/config-array@0.11.13:
@@ -1302,33 +1310,33 @@ packages:
- supports-color
dev: true
- /@iconify/vue@4.1.1(vue@3.3.11):
+ /@iconify/vue@4.1.1(vue@3.4.15):
resolution: {integrity: sha512-RL85Bm/DAe8y6rT6pux7D2FJSiUEM/TPfyK7GrbAOfTSwrhvwJW+S5yijdGcmtXouA8MtuH9C7l4hiSE4mLMjg==}
peerDependencies:
vue: '>=3'
dependencies:
'@iconify/types': 2.0.0
- vue: 3.3.11(typescript@5.3.3)
+ vue: 3.4.15(typescript@5.3.3)
dev: true
- /@intlify/core-base@9.8.0:
- resolution: {integrity: sha512-UxaSZVZ1DwqC/CltUZrWZNaWNhfmKtfyV4BJSt/Zt4Or/fZs1iFj0B+OekYk1+MRHfIOe3+x00uXGQI4PbO/9g==}
+ /@intlify/core-base@9.9.0:
+ resolution: {integrity: sha512-C7UXPymDIOlMGSNjAhNLtKgzITc/8BjINK5gNKXg8GiWCTwL6n3MWr55czksxn8RM5wTMz0qcLOFT+adtaVQaA==}
engines: {node: '>= 16'}
dependencies:
- '@intlify/message-compiler': 9.8.0
- '@intlify/shared': 9.8.0
+ '@intlify/message-compiler': 9.9.0
+ '@intlify/shared': 9.9.0
dev: false
- /@intlify/message-compiler@9.8.0:
- resolution: {integrity: sha512-McnYWhcoYmDJvssVu6QGR0shqlkJuL1HHdi5lK7fNqvQqRYaQ4lSLjYmZxwc8tRNMdIe9/KUKfyPxU9M6yCtNQ==}
+ /@intlify/message-compiler@9.9.0:
+ resolution: {integrity: sha512-yDU/jdUm9KuhEzYfS+wuyja209yXgdl1XFhMlKtXEgSFTxz4COZQCRXXbbH8JrAjMsaJ7bdoPSLsKlY6mXG2iA==}
engines: {node: '>= 16'}
dependencies:
- '@intlify/shared': 9.8.0
+ '@intlify/shared': 9.9.0
source-map-js: 1.0.2
dev: false
- /@intlify/shared@9.8.0:
- resolution: {integrity: sha512-TmgR0RCLjzrSo+W3wT0ALf9851iFMlVI9EYNGeWvZFUQTAJx0bvfsMlPdgVtV1tDNRiAfhkFsMKu6jtUY1ZLKQ==}
+ /@intlify/shared@9.9.0:
+ resolution: {integrity: sha512-1ECUyAHRrzOJbOizyGufYP2yukqGrWXtkmTu4PcswVnWbkcjzk3YQGmJ0bLkM7JZ0ZYAaohLGdYvBYnTOGYJ9g==}
engines: {node: '>= 16'}
dev: false
@@ -1553,39 +1561,39 @@ packages:
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
dev: true
- /@nuxt/devtools-kit@1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.9):
+ /@nuxt/devtools-kit@1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-CUSE++NRTIwvBWbLsPzLZIDMpXr6oyllaWm8tOR3Wgr/04jW31uyWbXjU/fxRuDotQwZfcTe19uunRoCoBnk1Q==}
peerDependencies:
nuxt: ^3.8.2
vite: '*'
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- '@nuxt/schema': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.9.3(rollup@3.29.4)
+ '@nuxt/schema': 3.9.3(rollup@3.29.4)
execa: 7.2.0
- nuxt: 3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
- vite: 5.0.9(@types/node@20.10.4)
+ nuxt: 3.8.2(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/devtools-kit@1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9):
+ /@nuxt/devtools-kit@1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-CUSE++NRTIwvBWbLsPzLZIDMpXr6oyllaWm8tOR3Wgr/04jW31uyWbXjU/fxRuDotQwZfcTe19uunRoCoBnk1Q==}
peerDependencies:
nuxt: ^3.8.2
vite: '*'
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
- '@nuxt/schema': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.9.3(rollup@3.29.4)
+ '@nuxt/schema': 3.9.3(rollup@3.29.4)
execa: 7.2.0
- nuxt: 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
- vite: 5.0.9(@types/node@20.10.4)
+ nuxt: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/devtools-kit@1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9):
+ /@nuxt/devtools-kit@1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-j7bNZmoAXQ1a8qv6j6zk4c/aekrxYqYVQM21o/Hy4XHCUq4fajSgpoc8mjyWJSTfpkOmuLyEzMexpDWiIVSr6A==}
peerDependencies:
nuxt: ^3.9.0
@@ -1594,8 +1602,8 @@ packages:
'@nuxt/kit': 3.9.3(rollup@3.29.4)
'@nuxt/schema': 3.9.3(rollup@3.29.4)
execa: 7.2.0
- nuxt: 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
- vite: 5.0.9(@types/node@20.10.4)
+ nuxt: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- rollup
- supports-color
@@ -1633,7 +1641,7 @@ packages:
semver: 7.5.4
dev: true
- /@nuxt/devtools@1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.9):
+ /@nuxt/devtools@1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-3P914IHBvKl2aYSrwaCAU9E1ndVNnGJR0Jn0XKUFktsbjU5kGlwLGrtRKXAw4Yz1VNiSZPrapVrFOQWbXRGRvg==}
hasBin: true
peerDependencies:
@@ -1641,9 +1649,9 @@ packages:
vite: '*'
dependencies:
'@antfu/utils': 0.7.7
- '@nuxt/devtools-kit': 1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.9)
+ '@nuxt/devtools-kit': 1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/devtools-wizard': 1.0.6
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.9.3(rollup@3.29.4)
birpc: 0.2.14
consola: 3.2.3
destr: 2.0.2
@@ -1660,7 +1668,7 @@ packages:
local-pkg: 0.5.0
magicast: 0.3.2
nitropack: 2.8.1
- nuxt: 3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
+ nuxt: 3.8.2(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
nypm: 0.3.3
ofetch: 1.3.3
ohash: 1.1.3
@@ -1672,11 +1680,11 @@ packages:
scule: 1.2.0
semver: 7.5.4
simple-git: 3.21.0
- sirv: 2.0.3
+ sirv: 2.0.4
unimport: 3.6.1(rollup@3.29.4)
- vite: 5.0.9(@types/node@20.10.4)
- vite-plugin-inspect: 0.8.1(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@5.0.9)
- vite-plugin-vue-inspector: 4.0.2(vite@5.0.9)
+ vite: 5.0.11(@types/node@20.11.5)
+ vite-plugin-inspect: 0.8.1(@nuxt/kit@3.9.3)(rollup@3.29.4)(vite@5.0.11)
+ vite-plugin-vue-inspector: 4.0.2(vite@5.0.11)
which: 3.0.1
ws: 8.15.1
transitivePeerDependencies:
@@ -1701,7 +1709,7 @@ packages:
- xml2js
dev: true
- /@nuxt/devtools@1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9):
+ /@nuxt/devtools@1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-3P914IHBvKl2aYSrwaCAU9E1ndVNnGJR0Jn0XKUFktsbjU5kGlwLGrtRKXAw4Yz1VNiSZPrapVrFOQWbXRGRvg==}
hasBin: true
peerDependencies:
@@ -1709,7 +1717,7 @@ packages:
vite: '*'
dependencies:
'@antfu/utils': 0.7.7
- '@nuxt/devtools-kit': 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)
+ '@nuxt/devtools-kit': 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/devtools-wizard': 1.0.6
'@nuxt/kit': 3.8.2(rollup@3.29.4)
birpc: 0.2.14
@@ -1728,7 +1736,7 @@ packages:
local-pkg: 0.5.0
magicast: 0.3.2
nitropack: 2.8.1
- nuxt: 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
+ nuxt: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
nypm: 0.3.3
ofetch: 1.3.3
ohash: 1.1.3
@@ -1742,9 +1750,9 @@ packages:
simple-git: 3.21.0
sirv: 2.0.3
unimport: 3.6.1(rollup@3.29.4)
- vite: 5.0.9(@types/node@20.10.4)
- vite-plugin-inspect: 0.8.1(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@5.0.9)
- vite-plugin-vue-inspector: 4.0.2(vite@5.0.9)
+ vite: 5.0.11(@types/node@20.11.5)
+ vite-plugin-inspect: 0.8.1(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@5.0.11)
+ vite-plugin-vue-inspector: 4.0.2(vite@5.0.11)
which: 3.0.1
ws: 8.15.1
transitivePeerDependencies:
@@ -1769,7 +1777,7 @@ packages:
- xml2js
dev: true
- /@nuxt/devtools@1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9):
+ /@nuxt/devtools@1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-o6aBFEBxc8OgVHV4OPe2g0q9tFIe9HiTxRiJnlTJ+jHvOQsBLS651ArdVtwLChf9UdMouFlpLLJ1HteZqTbtsQ==}
hasBin: true
peerDependencies:
@@ -1777,7 +1785,7 @@ packages:
vite: '*'
dependencies:
'@antfu/utils': 0.7.7
- '@nuxt/devtools-kit': 1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)
+ '@nuxt/devtools-kit': 1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/devtools-wizard': 1.0.8
'@nuxt/kit': 3.9.3(rollup@3.29.4)
birpc: 0.2.14
@@ -1794,7 +1802,7 @@ packages:
launch-editor: 2.6.1
local-pkg: 0.5.0
magicast: 0.3.2
- nuxt: 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
+ nuxt: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
nypm: 0.3.4
ohash: 1.1.3
pacote: 17.0.5
@@ -1807,9 +1815,9 @@ packages:
simple-git: 3.22.0
sirv: 2.0.4
unimport: 3.7.1(rollup@3.29.4)
- vite: 5.0.9(@types/node@20.10.4)
- vite-plugin-inspect: 0.8.1(@nuxt/kit@3.9.3)(rollup@3.29.4)(vite@5.0.9)
- vite-plugin-vue-inspector: 4.0.2(vite@5.0.9)
+ vite: 5.0.11(@types/node@20.11.5)
+ vite-plugin-inspect: 0.8.1(@nuxt/kit@3.9.3)(rollup@3.29.4)(vite@5.0.11)
+ vite-plugin-vue-inspector: 4.0.2(vite@5.0.11)
which: 3.0.1
ws: 8.16.0
transitivePeerDependencies:
@@ -1820,48 +1828,21 @@ packages:
- utf-8-validate
dev: true
- /@nuxt/eslint-config@0.2.0(eslint@8.55.0):
+ /@nuxt/eslint-config@0.2.0(eslint@8.56.0):
resolution: {integrity: sha512-NeJX8TLcnNAjQFiDs3XhP+9CHKK8jaKsP7eUyCSrQdgY7nqWe7VJx64lwzx5FTT4cW3RHMEyH+Y0qzLGYYoa/A==}
peerDependencies:
eslint: ^8.48.0
dependencies:
'@rushstack/eslint-patch': 1.6.0
- '@typescript-eslint/eslint-plugin': 6.14.0(@typescript-eslint/parser@6.14.0)(eslint@8.55.0)(typescript@5.3.3)
- '@typescript-eslint/parser': 6.14.0(eslint@8.55.0)(typescript@5.3.3)
- eslint: 8.55.0
- eslint-plugin-vue: 9.19.2(eslint@8.55.0)
+ '@typescript-eslint/eslint-plugin': 6.14.0(@typescript-eslint/parser@6.14.0)(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
+ eslint: 8.56.0
+ eslint-plugin-vue: 9.19.2(eslint@8.56.0)
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@nuxt/kit@3.8.1(rollup@3.29.4):
- resolution: {integrity: sha512-DrhG1Z85iH68QOTkgfb0HVfM2g7+CfcMWrFWMDwck9ofyM2RXQUZyfmvMedwBnui1AjjpgpLO9078yZM+RqNUg==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/schema': 3.8.1(rollup@3.29.4)
- c12: 1.5.1
- consola: 3.2.3
- defu: 6.1.3
- globby: 13.2.2
- hash-sum: 2.0.0
- ignore: 5.3.0
- jiti: 1.21.0
- knitwork: 1.0.0
- mlly: 1.4.2
- pathe: 1.1.1
- pkg-types: 1.0.3
- scule: 1.2.0
- semver: 7.5.4
- ufo: 1.3.2
- unctx: 2.3.1
- unimport: 3.6.1(rollup@3.29.4)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
-
/@nuxt/kit@3.8.2(rollup@3.29.4):
resolution: {integrity: sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -1869,7 +1850,7 @@ packages:
'@nuxt/schema': 3.8.2(rollup@3.29.4)
c12: 1.5.1
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
globby: 14.0.0
hash-sum: 2.0.0
ignore: 5.3.0
@@ -1887,6 +1868,7 @@ packages:
transitivePeerDependencies:
- rollup
- supports-color
+ dev: true
/@nuxt/kit@3.9.3(rollup@3.29.4):
resolution: {integrity: sha512-bHGXpTB6E+YJCC1L9tTwrP7txgLZzyuFes/tgy1ZM4dlfrCsGqLK/K4mddROMdC3D81scnH84u7yQsN0JRgoTg==}
@@ -1913,21 +1895,20 @@ packages:
transitivePeerDependencies:
- rollup
- supports-color
- dev: true
- /@nuxt/module-builder@0.5.4(@nuxt/kit@3.8.2)(nuxi@3.10.0)(typescript@5.3.3):
- resolution: {integrity: sha512-lCPh8s8LSfYqHgIMMsctDhz+AX1z6TnATkUes/GXc/No4kApC0zmJkQWrbtDRjmsWjElwl1kE7l7OzYdYc3d4w==}
+ /@nuxt/module-builder@0.5.5(@nuxt/kit@3.9.3)(nuxi@3.10.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-ifFfwA1rbSXSae25RmqA2kAbV3xoShZNrq1yK8VXB/EnIcDn4WiaYR1PytaSxIt5zsvWPn92BJXiIUBiMQZ0hw==}
hasBin: true
peerDependencies:
- '@nuxt/kit': ^3.8.1
- nuxi: ^3.9.1
+ '@nuxt/kit': ^3.8.2
+ nuxi: ^3.10.0
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/kit': 3.9.3(rollup@3.29.4)
citty: 0.1.5
consola: 3.2.3
- mlly: 1.4.2
+ mlly: 1.5.0
nuxi: 3.10.0
- pathe: 1.1.1
+ pathe: 1.1.2
unbuild: 2.0.0(typescript@5.3.3)
transitivePeerDependencies:
- sass
@@ -1935,43 +1916,25 @@ packages:
- typescript
dev: true
- /@nuxt/schema@3.8.1(rollup@3.29.4):
- resolution: {integrity: sha512-fSaWRcI/2mUskfTZTGSnH6Ny0x05CRzylbVn6WFV0d6UEKIVy42Qd6n+h7yoFfp4cq4nji6u16PT4SqS1DEhsw==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/ui-templates': 1.3.1
- consola: 3.2.3
- defu: 6.1.3
- hookable: 5.5.3
- pathe: 1.1.1
- pkg-types: 1.0.3
- std-env: 3.6.0
- ufo: 1.3.2
- unimport: 3.6.1(rollup@3.29.4)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
-
/@nuxt/schema@3.8.2(rollup@3.29.4):
resolution: {integrity: sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
'@nuxt/ui-templates': 1.3.1
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
hookable: 5.5.3
- pathe: 1.1.1
+ pathe: 1.1.2
pkg-types: 1.0.3
scule: 1.2.0
- std-env: 3.6.0
+ std-env: 3.7.0
ufo: 1.3.2
- unimport: 3.6.1(rollup@3.29.4)
+ unimport: 3.7.1(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
- supports-color
+ dev: true
/@nuxt/schema@3.9.3(rollup@3.29.4):
resolution: {integrity: sha512-pchkGBYdEJ9TAOoC5DKnLuAaFPjzgn2k0OUTr31QwbtHdTR3Q2Ua/oKsS1g9CPU7KRzSE5Vkf7ECE8zVydqF5A==}
@@ -1991,7 +1954,6 @@ packages:
transitivePeerDependencies:
- rollup
- supports-color
- dev: true
/@nuxt/telemetry@2.5.3(rollup@3.29.4):
resolution: {integrity: sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==}
@@ -2019,33 +1981,71 @@ packages:
- supports-color
dev: true
- /@nuxt/test-utils@3.8.1(rollup@3.29.4)(vitest@1.0.4)(vue@3.3.11):
- resolution: {integrity: sha512-8ZQ+OZ7z5Sc5KG2aCvk0piheYSpGb2UQJMCWr8ORwEyZIw4awrkkwGzUY06e344E4StvJB8zxN122MEcFNOkow==}
+ /@nuxt/test-utils@3.10.0(h3@1.10.0)(rollup@3.29.4)(vite@5.0.11)(vitest@1.2.1)(vue-router@4.2.5)(vue@3.4.15):
+ resolution: {integrity: sha512-9ZKKrccCUyZP0P9/BdTNHWwTRvIbBnrmDvqvO0dQpTiUhgDVeO1vdG40o4e4olw7sbzUP51C8uA0OkRur/zBvQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
+ '@cucumber/cucumber': ^10.3.1
'@jest/globals': ^29.5.0
+ '@testing-library/vue': ^7.0.0 || ^8.0.1
+ '@vitest/ui': ^0.34.6 || ^1.0.0
+ '@vue/test-utils': ^2.4.2
+ h3: '*'
+ happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0
+ jsdom: ^22.0.0 || ^23.0.0
playwright-core: ^1.34.3
- vitest: ^0.30.0 || ^0.31.0 || ^0.32.0 || ^0.33.0
+ vite: '*'
+ vitest: ^0.34.6 || ^1.0.0
vue: ^3.3.4
+ vue-router: ^4.0.0
peerDependenciesMeta:
+ '@cucumber/cucumber':
+ optional: true
'@jest/globals':
optional: true
+ '@testing-library/vue':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ '@vue/test-utils':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
playwright-core:
optional: true
vitest:
optional: true
dependencies:
- '@nuxt/kit': 3.8.1(rollup@3.29.4)
- '@nuxt/schema': 3.8.1(rollup@3.29.4)
+ '@nuxt/kit': 3.9.3(rollup@3.29.4)
+ '@nuxt/schema': 3.9.3(rollup@3.29.4)
+ c12: 1.6.1
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
+ destr: 2.0.2
+ estree-walker: 3.0.3
execa: 8.0.1
- get-port-please: 3.1.1
+ fake-indexeddb: 5.0.2
+ get-port-please: 3.1.2
+ h3: 1.10.0
+ local-pkg: 0.5.0
+ magic-string: 0.30.5
+ node-fetch-native: 1.6.1
ofetch: 1.3.3
- pathe: 1.1.1
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ radix3: 1.1.0
+ scule: 1.2.0
+ std-env: 3.7.0
ufo: 1.3.2
- vitest: 1.0.4(@types/node@20.10.4)
- vue: 3.3.11(typescript@5.3.3)
+ unenv: 1.9.0
+ unplugin: 1.6.0
+ vite: 5.0.11(@types/node@20.11.5)
+ vitest: 1.2.1(@types/node@20.11.5)
+ vitest-environment-nuxt: 1.0.0(h3@1.10.0)(rollup@3.29.4)(vite@5.0.11)(vitest@1.2.1)(vue-router@4.2.5)(vue@3.4.15)
+ vue: 3.4.15(typescript@5.3.3)
+ vue-router: 4.2.5(vue@3.4.15)
transitivePeerDependencies:
- rollup
- supports-color
@@ -2054,13 +2054,13 @@ packages:
/@nuxt/ui-templates@1.3.1:
resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
- /@nuxt/ui@2.12.3(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)(vue@3.3.11):
+ /@nuxt/ui@2.12.3(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)(vue@3.4.15):
resolution: {integrity: sha512-F/eoqU8pTBVCdJ1QHvWKZjXHVNNV6Q1SCgPRWJyNnfbnIi97a50/aiHVJZfvr0zp3FQKa/ogWTITF5Vxss5TtA==}
engines: {node: '>=v16.20.2'}
dependencies:
'@egoist/tailwindcss-icons': 1.7.2(tailwindcss@3.4.1)
'@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.1)
- '@headlessui/vue': 1.7.16(vue@3.3.11)
+ '@headlessui/vue': 1.7.16(vue@3.4.15)
'@iconify-json/heroicons': 1.1.19
'@nuxt/kit': 3.9.3(rollup@3.29.4)
'@nuxtjs/color-mode': 3.3.2(rollup@3.29.4)
@@ -2070,12 +2070,12 @@ packages:
'@tailwindcss/container-queries': 0.1.1(tailwindcss@3.4.1)
'@tailwindcss/forms': 0.5.7(tailwindcss@3.4.1)
'@tailwindcss/typography': 0.5.10(tailwindcss@3.4.1)
- '@vueuse/core': 10.7.2(vue@3.3.11)
- '@vueuse/integrations': 10.7.2(fuse.js@6.6.2)(vue@3.3.11)
- '@vueuse/math': 10.7.2(vue@3.3.11)
+ '@vueuse/core': 10.7.2(vue@3.4.15)
+ '@vueuse/integrations': 10.7.2(fuse.js@6.6.2)(vue@3.4.15)
+ '@vueuse/math': 10.7.2(vue@3.4.15)
defu: 6.1.4
fuse.js: 6.6.2
- nuxt-icon: 0.6.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)(vue@3.3.11)
+ nuxt-icon: 0.6.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)(vue@3.4.15)
ohash: 1.1.3
pathe: 1.1.2
scule: 1.2.0
@@ -2102,7 +2102,7 @@ packages:
- vue
dev: true
- /@nuxt/vite-builder@3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.3.11):
+ /@nuxt/vite-builder@3.8.2(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.3.11):
resolution: {integrity: sha512-l/lzDDTbd3M89BpmWqjhVLgLVRqfkKp0tyYgV5seJQjj3SX+IeqI7k6k8+dMEifdeO34jUajVWptNpITXQryyg==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
@@ -2116,7 +2116,7 @@ packages:
clear: 0.1.0
consola: 3.2.3
cssnano: 6.0.2(postcss@8.4.32)
- defu: 6.1.3
+ defu: 6.1.4
esbuild: 0.19.9
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
@@ -2137,9 +2137,9 @@ packages:
strip-literal: 1.3.0
ufo: 1.3.2
unplugin: 1.5.1
- vite: 4.5.1(@types/node@20.10.4)
- vite-node: 0.33.0(@types/node@20.10.4)
- vite-plugin-checker: 0.6.2(eslint@8.55.0)(typescript@5.3.3)(vite@4.5.1)
+ vite: 4.5.1(@types/node@20.11.5)
+ vite-node: 0.33.0(@types/node@20.11.5)
+ vite-plugin-checker: 0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@4.5.1)
vue: 3.3.11(typescript@5.3.3)
vue-bundle-renderer: 2.0.0
transitivePeerDependencies:
@@ -2162,7 +2162,7 @@ packages:
- vue-tsc
dev: true
- /@nuxt/vite-builder@3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.4.15):
+ /@nuxt/vite-builder@3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.4.15):
resolution: {integrity: sha512-HruOrxn0g6TS31j3jycJvGZ7pt3JNEbcXNByVh7YJwQx6ToFX8kPWRu4LPeMhrLYvZzeUr2w3iELBECFxbDmvw==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
@@ -2197,9 +2197,9 @@ packages:
strip-literal: 2.0.0
ufo: 1.3.2
unplugin: 1.6.0
- vite: 5.0.11(@types/node@20.10.4)
- vite-node: 1.2.1(@types/node@20.10.4)
- vite-plugin-checker: 0.6.2(eslint@8.55.0)(typescript@5.3.3)(vite@5.0.11)
+ vite: 5.0.11(@types/node@20.11.5)
+ vite-node: 1.2.1(@types/node@20.11.5)
+ vite-plugin-checker: 0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@5.0.11)
vue: 3.4.15(typescript@5.3.3)
vue-bundle-renderer: 2.0.0
transitivePeerDependencies:
@@ -2919,15 +2919,15 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 20.10.4
+ '@types/node': 20.11.5
dev: true
/@types/json-schema@7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
dev: true
- /@types/node@20.10.4:
- resolution: {integrity: sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==}
+ /@types/node@20.11.5:
+ resolution: {integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==}
dependencies:
undici-types: 5.26.5
dev: true
@@ -2958,7 +2958,7 @@ packages:
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
dev: true
- /@typescript-eslint/eslint-plugin@6.14.0(@typescript-eslint/parser@6.14.0)(eslint@8.55.0)(typescript@5.3.3):
+ /@typescript-eslint/eslint-plugin@6.14.0(@typescript-eslint/parser@6.14.0)(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-1ZJBykBCXaSHG94vMMKmiHoL0MhNHKSVlcHVYZNw+BKxufhqQVTOawNpwwI1P5nIFZ/4jLVop0mcY6mJJDFNaw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -2970,13 +2970,13 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.14.0(eslint@8.55.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/scope-manager': 6.14.0
- '@typescript-eslint/type-utils': 6.14.0(eslint@8.55.0)(typescript@5.3.3)
- '@typescript-eslint/utils': 6.14.0(eslint@8.55.0)(typescript@5.3.3)
+ '@typescript-eslint/type-utils': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.14.0
debug: 4.3.4
- eslint: 8.55.0
+ eslint: 8.56.0
graphemer: 1.4.0
ignore: 5.3.0
natural-compare: 1.4.0
@@ -2987,7 +2987,7 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.14.0(eslint@8.55.0)(typescript@5.3.3):
+ /@typescript-eslint/parser@6.14.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-QjToC14CKacd4Pa7JK4GeB/vHmWFJckec49FR4hmIRf97+KXole0T97xxu9IFiPxVQ1DBWrQ5wreLwAGwWAVQA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3002,7 +3002,7 @@ packages:
'@typescript-eslint/typescript-estree': 6.14.0(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.14.0
debug: 4.3.4
- eslint: 8.55.0
+ eslint: 8.56.0
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
@@ -3016,7 +3016,7 @@ packages:
'@typescript-eslint/visitor-keys': 6.14.0
dev: true
- /@typescript-eslint/type-utils@6.14.0(eslint@8.55.0)(typescript@5.3.3):
+ /@typescript-eslint/type-utils@6.14.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-x6OC9Q7HfYKqjnuNu5a7kffIYs3No30isapRBJl1iCHLitD8O0lFbRcVGiOcuyN837fqXzPZ1NS10maQzZMKqw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3027,9 +3027,9 @@ packages:
optional: true
dependencies:
'@typescript-eslint/typescript-estree': 6.14.0(typescript@5.3.3)
- '@typescript-eslint/utils': 6.14.0(eslint@8.55.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
debug: 4.3.4
- eslint: 8.55.0
+ eslint: 8.56.0
ts-api-utils: 1.0.3(typescript@5.3.3)
typescript: 5.3.3
transitivePeerDependencies:
@@ -3062,19 +3062,19 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@6.14.0(eslint@8.55.0)(typescript@5.3.3):
+ /@typescript-eslint/utils@6.14.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-XwRTnbvRr7Ey9a1NT6jqdKX8y/atWG+8fAIu3z73HSP8h06i3r/ClMhmaF/RGWGW1tHJEwij1uEg2GbEmPYvYg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 6.14.0
'@typescript-eslint/types': 6.14.0
'@typescript-eslint/typescript-estree': 6.14.0(typescript@5.3.3)
- eslint: 8.55.0
+ eslint: 8.56.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -3202,7 +3202,7 @@ packages:
'@babel/core': 7.23.6
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.6)
- vite: 4.5.1(@types/node@20.10.4)
+ vite: 4.5.1(@types/node@20.11.5)
vue: 3.3.11(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
@@ -3218,7 +3218,7 @@ packages:
'@babel/core': 7.23.6
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.6)
- vite: 5.0.11(@types/node@20.10.4)
+ vite: 5.0.11(@types/node@20.11.5)
vue: 3.4.15(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
@@ -3231,7 +3231,7 @@ packages:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 4.5.1(@types/node@20.10.4)
+ vite: 4.5.1(@types/node@20.11.5)
vue: 3.3.11(typescript@5.3.3)
dev: true
@@ -3242,53 +3242,54 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 5.0.11(@types/node@20.10.4)
+ vite: 5.0.11(@types/node@20.11.5)
vue: 3.4.15(typescript@5.3.3)
dev: true
- /@vitest/expect@1.0.4:
- resolution: {integrity: sha512-/NRN9N88qjg3dkhmFcCBwhn/Ie4h064pY3iv7WLRsDJW7dXnEgeoa8W9zy7gIPluhz6CkgqiB3HmpIXgmEY5dQ==}
+ /@vitest/expect@1.2.1:
+ resolution: {integrity: sha512-/bqGXcHfyKgFWYwIgFr1QYDaR9e64pRKxgBNWNXPefPFRhgm+K3+a/dS0cUGEreWngets3dlr8w8SBRw2fCfFQ==}
dependencies:
- '@vitest/spy': 1.0.4
- '@vitest/utils': 1.0.4
+ '@vitest/spy': 1.2.1
+ '@vitest/utils': 1.2.1
chai: 4.3.10
dev: true
- /@vitest/runner@1.0.4:
- resolution: {integrity: sha512-rhOQ9FZTEkV41JWXozFM8YgOqaG9zA7QXbhg5gy6mFOVqh4PcupirIJ+wN7QjeJt8S8nJRYuZH1OjJjsbxAXTQ==}
+ /@vitest/runner@1.2.1:
+ resolution: {integrity: sha512-zc2dP5LQpzNzbpaBt7OeYAvmIsRS1KpZQw4G3WM/yqSV1cQKNKwLGmnm79GyZZjMhQGlRcSFMImLjZaUQvNVZQ==}
dependencies:
- '@vitest/utils': 1.0.4
+ '@vitest/utils': 1.2.1
p-limit: 5.0.0
- pathe: 1.1.1
+ pathe: 1.1.2
dev: true
- /@vitest/snapshot@1.0.4:
- resolution: {integrity: sha512-vkfXUrNyNRA/Gzsp2lpyJxh94vU2OHT1amoD6WuvUAA12n32xeVZQ0KjjQIf8F6u7bcq2A2k969fMVxEsxeKYA==}
+ /@vitest/snapshot@1.2.1:
+ resolution: {integrity: sha512-Tmp/IcYEemKaqAYCS08sh0vORLJkMr0NRV76Gl8sHGxXT5151cITJCET20063wk0Yr/1koQ6dnmP6eEqezmd/Q==}
dependencies:
magic-string: 0.30.5
- pathe: 1.1.1
+ pathe: 1.1.2
pretty-format: 29.7.0
dev: true
- /@vitest/spy@1.0.4:
- resolution: {integrity: sha512-9ojTFRL1AJVh0hvfzAQpm0QS6xIS+1HFIw94kl/1ucTfGCaj1LV/iuJU4Y6cdR03EzPDygxTHwE1JOm+5RCcvA==}
+ /@vitest/spy@1.2.1:
+ resolution: {integrity: sha512-vG3a/b7INKH7L49Lbp0IWrG6sw9j4waWAucwnksPB1r1FTJgV7nkBByd9ufzu6VWya/QTvQW4V9FShZbZIB2UQ==}
dependencies:
tinyspy: 2.2.0
dev: true
- /@vitest/utils@1.0.4:
- resolution: {integrity: sha512-gsswWDXxtt0QvtK/y/LWukN7sGMYmnCcv1qv05CsY6cU/Y1zpGX1QuvLs+GO1inczpE6Owixeel3ShkjhYtGfA==}
+ /@vitest/utils@1.2.1:
+ resolution: {integrity: sha512-bsH6WVZYe/J2v3+81M5LDU8kW76xWObKIURpPrOXm2pjBniBu2MERI/XP60GpS4PHU3jyK50LUutOwrx4CyHUg==}
dependencies:
diff-sequences: 29.6.3
+ estree-walker: 3.0.3
loupe: 2.3.7
pretty-format: 29.7.0
dev: true
- /@vue-email/cli@0.0.9(typescript@5.3.3)(vue@3.3.11):
+ /@vue-email/cli@0.0.9(typescript@5.3.3)(vue@3.4.15):
resolution: {integrity: sha512-cpowdprs+KPkpChboy27vIdDPVaM/k94OdufO9ldMnLiKTNDx2j89wCwv+J00IKwFaz1KrfgJrkDiCOoPO2pHA==}
hasBin: true
dependencies:
- '@vue-email/compiler': 0.8.7(typescript@5.3.3)(vue@3.3.11)
+ '@vue-email/compiler': 0.8.8(typescript@5.3.3)(vue@3.4.15)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -3299,16 +3300,16 @@ packages:
- vue
dev: false
- /@vue-email/compiler@0.8.7(typescript@5.3.3)(vue@3.3.11):
- resolution: {integrity: sha512-tBeJqDyiiBXvvSx38GJMv9eZo+ZNknP2JKEGm6UztWTH8slljnceRx8Z4Sr3gBlcGBZcyKqVgdY/eTT4mfgyag==}
+ /@vue-email/compiler@0.8.8(typescript@5.3.3)(vue@3.4.15):
+ resolution: {integrity: sha512-oYYFxps8c7KJ1/pg72JfoBAhzq0PJCRx+YsUhv++t062G281vrPcMn36MfDtPPejn3cafBWU5H2P6d2HvrBY1g==}
peerDependencies:
vue: ^3.3.8
dependencies:
- import-string: 0.1.0(typescript@5.3.3)
+ import-string: 0.1.2(typescript@5.3.3)
kolorist: 1.8.0
scule: 1.2.0
- vue: 3.3.11(typescript@5.3.3)
- vue-email: 0.8.5(typescript@5.3.3)(vue@3.3.11)
+ vue: 3.4.15(typescript@5.3.3)
+ vue-email: 0.8.6(typescript@5.3.3)(vue@3.4.15)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -3322,9 +3323,9 @@ packages:
resolution: {integrity: sha512-+t3yC1ym2fwa2KexOvdMDgB1Thpj3dcmMEztjSj6fa2tcuWmj/fTn+5yskzjtrokyqtc4dAqe7Da7uj1/j+dww==}
engines: {node: '>=18.0.0'}
dependencies:
- postcss: 8.4.32
- postcss-css-variables: 0.19.0(postcss@8.4.32)
- tailwindcss: 3.3.6
+ postcss: 8.4.33
+ postcss-css-variables: 0.19.0(postcss@8.4.33)
+ tailwindcss: 3.4.1
transitivePeerDependencies:
- ts-node
dev: false
@@ -3399,6 +3400,7 @@ packages:
'@vue/shared': 3.3.11
estree-walker: 2.0.2
source-map-js: 1.0.2
+ dev: true
/@vue/compiler-core@3.4.15:
resolution: {integrity: sha512-XcJQVOaxTKCnth1vCxEChteGuwG6wqnUHxAm1DO3gCz0+uXKaJNx8/digSz4dLALCy8n2lKq24jSUs8segoqIw==}
@@ -3408,20 +3410,19 @@ packages:
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
- dev: true
/@vue/compiler-dom@3.3.11:
resolution: {integrity: sha512-zoAiUIqSKqAJ81WhfPXYmFGwDRuO+loqLxvXmfUdR5fOitPoUiIeFI9cTTyv9MU5O1+ZZglJVTusWzy+wfk5hw==}
dependencies:
'@vue/compiler-core': 3.3.11
'@vue/shared': 3.3.11
+ dev: true
/@vue/compiler-dom@3.4.15:
resolution: {integrity: sha512-wox0aasVV74zoXyblarOM3AZQz/Z+OunYcIHe1OsGclCHt8RsRm04DObjefaI82u6XDzv+qGWZ24tIsRAIi5MQ==}
dependencies:
'@vue/compiler-core': 3.4.15
'@vue/shared': 3.4.15
- dev: true
/@vue/compiler-sfc@2.7.15:
resolution: {integrity: sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==}
@@ -3444,6 +3445,7 @@ packages:
magic-string: 0.30.5
postcss: 8.4.32
source-map-js: 1.0.2
+ dev: true
/@vue/compiler-sfc@3.4.15:
resolution: {integrity: sha512-LCn5M6QpkpFsh3GQvs2mJUOAlBQcCco8D60Bcqmf3O3w5a+KWS5GvYbrrJBkgvL1BDnTp+e8q0lXCLgHhKguBA==}
@@ -3457,20 +3459,19 @@ packages:
magic-string: 0.30.5
postcss: 8.4.33
source-map-js: 1.0.2
- dev: true
/@vue/compiler-ssr@3.3.11:
resolution: {integrity: sha512-Zd66ZwMvndxRTgVPdo+muV4Rv9n9DwQ4SSgWWKWkPFebHQfVYRrVjeygmmDmPewsHyznCNvJ2P2d6iOOhdv8Qg==}
dependencies:
'@vue/compiler-dom': 3.3.11
'@vue/shared': 3.3.11
+ dev: true
/@vue/compiler-ssr@3.4.15:
resolution: {integrity: sha512-1jdeQyiGznr8gjFDadVmOJqZiLNSsMa5ZgqavkPZ8O2wjHv0tVuAEsw5hTdUoUW4232vpBbL/wJhzVW/JwY1Uw==}
dependencies:
'@vue/compiler-dom': 3.4.15
'@vue/shared': 3.4.15
- dev: true
/@vue/devtools-api@6.5.1:
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
@@ -3483,30 +3484,31 @@ packages:
'@vue/shared': 3.3.11
estree-walker: 2.0.2
magic-string: 0.30.5
+ dev: true
/@vue/reactivity@3.3.11:
resolution: {integrity: sha512-D5tcw091f0nuu+hXq5XANofD0OXnBmaRqMYl5B3fCR+mX+cXJIGNw/VNawBqkjLNWETrFW0i+xH9NvDbTPVh7g==}
dependencies:
'@vue/shared': 3.3.11
+ dev: true
/@vue/reactivity@3.4.15:
resolution: {integrity: sha512-55yJh2bsff20K5O84MxSvXKPHHt17I2EomHznvFiJCAZpJTNW8IuLj1xZWMLELRhBK3kkFV/1ErZGHJfah7i7w==}
dependencies:
'@vue/shared': 3.4.15
- dev: true
/@vue/runtime-core@3.3.11:
resolution: {integrity: sha512-g9ztHGwEbS5RyWaOpXuyIVFTschclnwhqEbdy5AwGhYOgc7m/q3NFwr50MirZwTTzX55JY8pSkeib9BX04NIpw==}
dependencies:
'@vue/reactivity': 3.3.11
'@vue/shared': 3.3.11
+ dev: true
/@vue/runtime-core@3.4.15:
resolution: {integrity: sha512-6E3by5m6v1AkW0McCeAyhHTw+3y17YCOKG0U0HDKDscV4Hs0kgNT5G+GCHak16jKgcCDHpI9xe5NKb8sdLCLdw==}
dependencies:
'@vue/reactivity': 3.4.15
'@vue/shared': 3.4.15
- dev: true
/@vue/runtime-dom@3.3.11:
resolution: {integrity: sha512-OlhtV1PVpbgk+I2zl+Y5rQtDNcCDs12rsRg71XwaA2/Rbllw6mBLMi57VOn8G0AjOJ4Mdb4k56V37+g8ukShpQ==}
@@ -3514,6 +3516,7 @@ packages:
'@vue/runtime-core': 3.3.11
'@vue/shared': 3.3.11
csstype: 3.1.3
+ dev: true
/@vue/runtime-dom@3.4.15:
resolution: {integrity: sha512-EVW8D6vfFVq3V/yDKNPBFkZKGMFSvZrUQmx196o/v2tHKdwWdiZjYUBS+0Ez3+ohRyF8Njwy/6FH5gYJ75liUw==}
@@ -3521,7 +3524,6 @@ packages:
'@vue/runtime-core': 3.4.15
'@vue/shared': 3.4.15
csstype: 3.1.3
- dev: true
/@vue/server-renderer@3.3.11(vue@3.3.11):
resolution: {integrity: sha512-AIWk0VwwxCAm4wqtJyxBylRTXSy1wCLOKbWxHaHiu14wjsNYtiRCSgVuqEPVuDpErOlRdNnuRgipQfXRLjLN5A==}
@@ -3531,6 +3533,7 @@ packages:
'@vue/compiler-ssr': 3.3.11
'@vue/shared': 3.3.11
vue: 3.3.11(typescript@5.3.3)
+ dev: true
/@vue/server-renderer@3.4.15(vue@3.4.15):
resolution: {integrity: sha512-3HYzaidu9cHjrT+qGUuDhFYvF/j643bHC6uUN9BgM11DVy+pM6ATsG6uPBLnkwOgs7BpJABReLmpL3ZPAsUaqw==}
@@ -3540,28 +3543,27 @@ packages:
'@vue/compiler-ssr': 3.4.15
'@vue/shared': 3.4.15
vue: 3.4.15(typescript@5.3.3)
- dev: true
/@vue/shared@3.3.11:
resolution: {integrity: sha512-u2G8ZQ9IhMWTMXaWqZycnK4UthG1fA238CD+DP4Dm4WJi5hdUKKLg0RMRaRpDPNMdkTwIDkp7WtD0Rd9BH9fLw==}
+ dev: true
/@vue/shared@3.4.15:
resolution: {integrity: sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==}
- dev: true
- /@vueuse/core@10.7.2(vue@3.3.11):
+ /@vueuse/core@10.7.2(vue@3.4.15):
resolution: {integrity: sha512-AOyAL2rK0By62Hm+iqQn6Rbu8bfmbgaIMXcE3TSr7BdQ42wnSFlwIdPjInO62onYsEMK/yDMU8C6oGfDAtZ2qQ==}
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.7.2
- '@vueuse/shared': 10.7.2(vue@3.3.11)
- vue-demi: 0.14.6(vue@3.3.11)
+ '@vueuse/shared': 10.7.2(vue@3.4.15)
+ vue-demi: 0.14.6(vue@3.4.15)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@vueuse/integrations@10.7.2(fuse.js@6.6.2)(vue@3.3.11):
+ /@vueuse/integrations@10.7.2(fuse.js@6.6.2)(vue@3.4.15):
resolution: {integrity: sha512-+u3RLPFedjASs5EKPc69Ge49WNgqeMfSxFn+qrQTzblPXZg6+EFzhjarS5edj2qAf6xQ93f95TUxRwKStXj/sQ==}
peerDependencies:
async-validator: '*'
@@ -3602,20 +3604,20 @@ packages:
universal-cookie:
optional: true
dependencies:
- '@vueuse/core': 10.7.2(vue@3.3.11)
- '@vueuse/shared': 10.7.2(vue@3.3.11)
+ '@vueuse/core': 10.7.2(vue@3.4.15)
+ '@vueuse/shared': 10.7.2(vue@3.4.15)
fuse.js: 6.6.2
- vue-demi: 0.14.6(vue@3.3.11)
+ vue-demi: 0.14.6(vue@3.4.15)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@vueuse/math@10.7.2(vue@3.3.11):
+ /@vueuse/math@10.7.2(vue@3.4.15):
resolution: {integrity: sha512-Z1h/kdW5f4c/v/QOpWFFaEx4UaIt7xQTxoDnxQAx1gHGHpGYTtBlQHm80zrRodCz0auyBZMkALkCgKinzGggXw==}
dependencies:
- '@vueuse/shared': 10.7.2(vue@3.3.11)
- vue-demi: 0.14.6(vue@3.3.11)
+ '@vueuse/shared': 10.7.2(vue@3.4.15)
+ vue-demi: 0.14.6(vue@3.4.15)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -3625,17 +3627,17 @@ packages:
resolution: {integrity: sha512-kCWPb4J2KGrwLtn1eJwaJD742u1k5h6v/St5wFe8Quih90+k2a0JP8BS4Zp34XUuJqS2AxFYMb1wjUL8HfhWsQ==}
dev: true
- /@vueuse/nuxt@10.7.2(nuxt@3.9.3)(rollup@3.29.4)(vue@3.3.11):
+ /@vueuse/nuxt@10.7.2(nuxt@3.9.3)(rollup@3.29.4)(vue@3.4.15):
resolution: {integrity: sha512-yv2hY4AiRoSqg9ELNpN6gOkDWxGuLiKE/bEbuTAAuUBhS5OeEDf5aB/kY0e/V6ZXj5XiU4LX3nE8YV8c+UKfmQ==}
peerDependencies:
nuxt: ^3.0.0
dependencies:
'@nuxt/kit': 3.9.3(rollup@3.29.4)
- '@vueuse/core': 10.7.2(vue@3.3.11)
+ '@vueuse/core': 10.7.2(vue@3.4.15)
'@vueuse/metadata': 10.7.2
local-pkg: 0.5.0
- nuxt: 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9)
- vue-demi: 0.14.6(vue@3.3.11)
+ nuxt: 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11)
+ vue-demi: 0.14.6(vue@3.4.15)
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
@@ -3643,10 +3645,10 @@ packages:
- vue
dev: true
- /@vueuse/shared@10.7.2(vue@3.3.11):
+ /@vueuse/shared@10.7.2(vue@3.4.15):
resolution: {integrity: sha512-qFbXoxS44pi2FkgFjPvF4h7c9oMDutpyBdcJdMYIMg9XyXli2meFMuaKn+UMgsClo//Th6+beeCgqweT/79BVA==}
dependencies:
- vue-demi: 0.14.6(vue@3.3.11)
+ vue-demi: 0.14.6(vue@3.4.15)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -3677,8 +3679,8 @@ packages:
acorn: 8.11.2
dev: true
- /acorn-walk@8.3.1:
- resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==}
+ /acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
dev: true
@@ -3691,7 +3693,6 @@ packages:
resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
/agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
@@ -3937,6 +3938,12 @@ packages:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
dev: true
+ /bidi-js@1.0.3:
+ resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
+ dependencies:
+ require-from-string: 2.0.2
+ dev: false
+
/big-integer@1.6.52:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
@@ -4024,19 +4031,18 @@ packages:
semver: 7.5.4
dev: true
- /bumpp@9.2.1:
- resolution: {integrity: sha512-mq6/e8+bnIsOMy1VceTLC49WucMIZqd2nYn0e7Et5LhTO3yYQ8OWJsTl/B+uJDs5eywZmJ4Yt1WTEd2HCI35pw==}
+ /bumpp@9.3.0:
+ resolution: {integrity: sha512-P46VikoEZadYCqx7mbClKlaJnOyvc+JfRJPRf1YwlOjwqeYmutgFe1w9hvfXe819VhpU0N0TNXtxyVAUlAgaNA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
'@jsdevtools/ez-spawn': 3.0.4
- c12: 1.5.1
+ c12: 1.6.1
cac: 6.7.14
fast-glob: 3.3.2
+ js-yaml: 4.1.0
prompts: 2.4.2
semver: 7.5.4
- transitivePeerDependencies:
- - supports-color
dev: true
/bundle-name@3.0.0:
@@ -4050,7 +4056,7 @@ packages:
resolution: {integrity: sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==}
dependencies:
chokidar: 3.5.3
- defu: 6.1.3
+ defu: 6.1.4
dotenv: 16.3.1
giget: 1.1.3
jiti: 1.21.0
@@ -4062,6 +4068,7 @@ packages:
rc9: 2.1.1
transitivePeerDependencies:
- supports-color
+ dev: true
/c12@1.6.1:
resolution: {integrity: sha512-fAZOi3INDvIbmjuwAVVggusyRTxwNdTAnwLay8IsXwhFzDwPPGzFxzrx6L55CPFGPulUSZI0eyFUvRDXveoE3g==}
@@ -4077,7 +4084,6 @@ packages:
perfect-debounce: 1.0.0
pkg-types: 1.0.3
rc9: 2.1.1
- dev: true
/cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
@@ -4207,7 +4213,6 @@ packages:
resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==}
dependencies:
consola: 3.2.3
- dev: true
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
@@ -4289,6 +4294,7 @@ packages:
/colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ dev: true
/combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
@@ -4430,7 +4436,6 @@ packages:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- dev: true
/css-declaration-sorter@7.1.1(postcss@8.4.32):
resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==}
@@ -4474,7 +4479,6 @@ packages:
dependencies:
mdn-data: 2.0.30
source-map-js: 1.0.2
- dev: true
/css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
@@ -4609,9 +4613,9 @@ packages:
css-tree: 2.2.1
dev: true
- /cssstyle@3.0.0:
- resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==}
- engines: {node: '>=14'}
+ /cssstyle@4.0.1:
+ resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
+ engines: {node: '>=18'}
dependencies:
rrweb-cssom: 0.6.0
dev: false
@@ -4714,10 +4718,10 @@ packages:
/defu@6.1.3:
resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
+ dev: true
/defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- dev: true
/delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -4819,8 +4823,8 @@ packages:
domelementtype: 2.3.0
dev: true
- /dompurify@3.0.6:
- resolution: {integrity: sha512-ilkD8YEnnGh1zJ240uJsW7AzE+2qpbOUYjacomn3AvJ6J4JhKGSZ2nh4wUIXPZrEPppaCLx5jFe8T89Rk8tQ7w==}
+ /dompurify@3.0.8:
+ resolution: {integrity: sha512-b7uwreMYL2eZhrSCRC4ahLTeZcPZxSmYfmcQGXGkXiZSNW1X85v+SDM5KsWcpivIiUBH47Ji7NtyUdpLeF5JZQ==}
dev: false
/domutils@3.1.0:
@@ -5236,19 +5240,19 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- /eslint-plugin-vue@9.19.2(eslint@8.55.0):
+ /eslint-plugin-vue@9.19.2(eslint@8.56.0):
resolution: {integrity: sha512-CPDqTOG2K4Ni2o4J5wixkLVNwgctKXFu6oBpVJlpNq7f38lh9I80pRTouZSJ2MAebPJlINU/KTFSXyQfBUlymA==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0)
- eslint: 8.55.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ eslint: 8.56.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.0.13
semver: 7.5.4
- vue-eslint-parser: 9.3.2(eslint@8.55.0)
+ vue-eslint-parser: 9.3.2(eslint@8.56.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -5267,15 +5271,15 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint@8.55.0:
- resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==}
+ /eslint@8.56.0:
+ resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
'@eslint-community/regexpp': 4.10.0
'@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.55.0
+ '@eslint/js': 8.56.0
'@humanwhocodes/config-array': 0.11.13
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
@@ -5403,7 +5407,6 @@ packages:
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- dev: true
/exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
@@ -5429,6 +5432,11 @@ packages:
ufo: 1.3.2
dev: true
+ /fake-indexeddb@5.0.2:
+ resolution: {integrity: sha512-cB507r5T3D55DfclY01GLkninZLfU7HXV/mhVRTnTRm5k2u+fY7Fof2dBkr80p5t7G7dlA/G5dI87QiMdPpMCQ==}
+ engines: {node: '>=18'}
+ dev: true
+
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
@@ -5650,21 +5658,21 @@ packages:
/get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- dev: true
/giget@1.1.3:
resolution: {integrity: sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==}
hasBin: true
dependencies:
colorette: 2.0.20
- defu: 6.1.3
+ defu: 6.1.4
https-proxy-agent: 7.0.2
mri: 1.2.0
- node-fetch-native: 1.4.1
- pathe: 1.1.1
+ node-fetch-native: 1.6.1
+ pathe: 1.1.2
tar: 6.2.0
transitivePeerDependencies:
- supports-color
+ dev: true
/giget@1.2.1:
resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
@@ -5678,7 +5686,6 @@ packages:
ohash: 1.1.3
pathe: 1.1.2
tar: 6.2.0
- dev: true
/git-config-path@2.0.0:
resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
@@ -5847,7 +5854,7 @@ packages:
resolution: {integrity: sha512-+F3ZqrNV/CFXXfZ2lXBINHi+rM4Xw3CDC5z2CDK3NMPocjonKipGLLDSkrqY9DOrioZNPTIdDMWfQKm//3X2DA==}
dependencies:
cookie-es: 1.0.0
- defu: 6.1.3
+ defu: 6.1.4
destr: 2.0.2
iron-webcrypto: 1.0.0
radix3: 1.1.0
@@ -6026,7 +6033,6 @@ packages:
/human-signals@5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- dev: true
/iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
@@ -6057,8 +6063,8 @@ packages:
resolve-from: 4.0.0
dev: true
- /import-string@0.1.0(typescript@5.3.3):
- resolution: {integrity: sha512-T65Iwz31bzXlp5xP+uxwRSZDefyH/7cBw0SquWuNksdetqrGIOWIAoPo3m5pYXgrw8Jj850jLTxNJJyw1wweXw==}
+ /import-string@0.1.2(typescript@5.3.3):
+ resolution: {integrity: sha512-tOL7q/mHqoibjr5cm+S5yJv51t6YXVyBCBC5/q6zIbkPiKlvlOEUfpSze5CQX5ygqTIXpjyfFsOJoxe6PqiCVQ==}
peerDependencies:
typescript: ^5.0.0
dependencies:
@@ -6256,7 +6262,6 @@ packages:
/is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
/is-whitespace@0.3.0:
resolution: {integrity: sha512-RydPhl4S6JwAyj0JJjshWJEFG6hNye3pZFBRZaTUfZFwGHxzppNaNOVgQuS/E/SlhrApuMXrpnK1EEIXfdo3Dg==}
@@ -6276,20 +6281,19 @@ packages:
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
/isexe@3.1.1:
resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
engines: {node: '>=16'}
dev: true
- /isomorphic-dompurify@1.12.0:
- resolution: {integrity: sha512-E/3IKMkFt5qWeWD6RC7caDfS0NroDfCsn6OYvUtJGAQwSteR13m9IardqFCHMJG12uR/nFcuTjULgGW2w3bw3g==}
+ /isomorphic-dompurify@2.2.0:
+ resolution: {integrity: sha512-r+pTGOcmnWm1qGdB6OzAk6zM4kfb7jVHXFliJOTlnRw5G3+LOR2mSWllE2Um1V23njAluToqOeRqp1jMsMFT0A==}
engines: {node: '>=18'}
dependencies:
'@types/dompurify': 3.0.5
- dompurify: 3.0.6
- jsdom: 23.0.1
+ dompurify: 3.0.8
+ jsdom: 23.2.0
transitivePeerDependencies:
- bufferutil
- canvas
@@ -6335,8 +6339,8 @@ packages:
argparse: 2.0.1
dev: true
- /jsdom@23.0.1:
- resolution: {integrity: sha512-2i27vgvlUsGEBO9+/kJQRbtqtm+191b5zAZrU/UezVmnC2dlDAFLgDYJvAEi94T4kjsRKkezEtLQTgsNEsW2lQ==}
+ /jsdom@23.2.0:
+ resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==}
engines: {node: '>=18'}
peerDependencies:
canvas: ^2.11.2
@@ -6344,7 +6348,8 @@ packages:
canvas:
optional: true
dependencies:
- cssstyle: 3.0.0
+ '@asamuzakjp/dom-selector': 2.0.2
+ cssstyle: 4.0.1
data-urls: 5.0.0
decimal.js: 10.4.3
form-data: 4.0.0
@@ -6352,7 +6357,6 @@ packages:
http-proxy-agent: 7.0.0
https-proxy-agent: 7.0.2
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.7
parse5: 7.1.2
rrweb-cssom: 0.6.0
saxes: 6.0.0
@@ -6363,7 +6367,7 @@ packages:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.0.0
- ws: 8.15.1
+ ws: 8.16.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -6560,15 +6564,15 @@ packages:
citty: 0.1.5
clipboardy: 3.0.0
consola: 3.2.3
- defu: 6.1.3
- get-port-please: 3.1.1
+ defu: 6.1.4
+ get-port-please: 3.1.2
h3: 1.9.0
http-shutdown: 1.2.2
jiti: 1.21.0
- mlly: 1.4.2
+ mlly: 1.5.0
node-forge: 1.3.1
- pathe: 1.1.1
- std-env: 3.6.0
+ pathe: 1.1.2
+ std-env: 3.7.0
ufo: 1.3.2
untun: 0.1.2
uqr: 0.1.2
@@ -6736,7 +6740,6 @@ packages:
/mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- dev: true
/media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
@@ -6745,7 +6748,6 @@ packages:
/merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: true
/merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
@@ -6793,7 +6795,6 @@ packages:
/mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- dev: true
/mini-svg-data-uri@1.4.4:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
@@ -6922,19 +6923,19 @@ packages:
typescript:
optional: true
dependencies:
- autoprefixer: 10.4.16(postcss@8.4.32)
+ autoprefixer: 10.4.16(postcss@8.4.33)
citty: 0.1.5
- cssnano: 6.0.2(postcss@8.4.32)
- defu: 6.1.3
- esbuild: 0.19.9
+ cssnano: 6.0.3(postcss@8.4.33)
+ defu: 6.1.4
+ esbuild: 0.19.11
fs-extra: 11.2.0
globby: 13.2.2
jiti: 1.21.0
- mlly: 1.4.2
+ mlly: 1.5.0
mri: 1.2.0
- pathe: 1.1.1
- postcss: 8.4.32
- postcss-nested: 6.0.1(postcss@8.4.32)
+ pathe: 1.1.2
+ postcss: 8.4.33
+ postcss-nested: 6.0.1(postcss@8.4.33)
typescript: 5.3.3
dev: true
@@ -6953,7 +6954,6 @@ packages:
pathe: 1.1.2
pkg-types: 1.0.3
ufo: 1.3.2
- dev: true
/module-from-string@3.3.0:
resolution: {integrity: sha512-VsjwtQtXZloDF7ZpBXON53U4Zz02K1/njJmfZcK+QDlYKgdL0ETq8/FeuU0G9EHxdG5XiTaITcGaldDAqJpGXA==}
@@ -6970,11 +6970,11 @@ packages:
/mrmime@1.0.1:
resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
engines: {node: '>=10'}
+ dev: true
/mrmime@2.0.0:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
- dev: true
/ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -7048,7 +7048,7 @@ packages:
citty: 0.1.5
consola: 3.2.3
cookie-es: 1.0.0
- defu: 6.1.3
+ defu: 6.1.4
destr: 2.0.2
dot-prop: 8.0.2
esbuild: 0.19.9
@@ -7115,10 +7115,10 @@ packages:
/node-fetch-native@1.4.1:
resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==}
+ dev: true
/node-fetch-native@1.6.1:
resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
- dev: true
/node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
@@ -7272,7 +7272,6 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
- dev: true
/npmlog@5.0.1:
resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
@@ -7297,12 +7296,12 @@ packages:
fsevents: 2.3.3
dev: true
- /nuxt-icon@0.6.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)(vue@3.3.11):
+ /nuxt-icon@0.6.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)(vue@3.4.15):
resolution: {integrity: sha512-6eWlNOb6Uvp63uXFdhcmsB1JlubDv76Pot/VwmIu0yJxDYhwytbnv3WAjw2khl2l7W/65V4eMGIEeX9C5Ahxng==}
dependencies:
'@iconify/collections': 1.0.383
- '@iconify/vue': 4.1.1(vue@3.3.11)
- '@nuxt/devtools-kit': 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)
+ '@iconify/vue': 4.1.1(vue@3.4.15)
+ '@nuxt/devtools-kit': 1.0.6(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/kit': 3.9.3(rollup@3.29.4)
transitivePeerDependencies:
- nuxt
@@ -7312,7 +7311,7 @@ packages:
- vue
dev: true
- /nuxt@3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9):
+ /nuxt@3.8.2(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11):
resolution: {integrity: sha512-HUAyifmqTs2zcQBGvcby3KNs2pBAk+l7ZbLjD1oCNqQQ+wBuZ1qgLC4Ebu++y4g3o3Y8WAWSvpafbKRLQZziPw==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -7326,13 +7325,13 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.9)
+ '@nuxt/devtools': 1.0.6(nuxt@3.8.2)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/kit': 3.8.2(rollup@3.29.4)
'@nuxt/schema': 3.8.2(rollup@3.29.4)
'@nuxt/telemetry': 2.5.3(rollup@3.29.4)
'@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.8.2(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.3.11)
- '@types/node': 20.10.4
+ '@nuxt/vite-builder': 3.8.2(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.3.11)
+ '@types/node': 20.11.5
'@unhead/dom': 1.8.9
'@unhead/ssr': 1.8.9
'@unhead/vue': 1.8.9(vue@3.3.11)
@@ -7418,7 +7417,7 @@ packages:
- xml2js
dev: true
- /nuxt@3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.9):
+ /nuxt@3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@5.0.11):
resolution: {integrity: sha512-IzBJAJImqCGfspVZzvznrALnFIJ5rPe+VJvY8OiccwRzWT8sEygVRjh3Mc64yWV6P59rz497wp9RBBBhuV2MVA==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -7432,13 +7431,13 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.9)
+ '@nuxt/devtools': 1.0.8(nuxt@3.9.3)(rollup@3.29.4)(vite@5.0.11)
'@nuxt/kit': 3.9.3(rollup@3.29.4)
'@nuxt/schema': 3.9.3(rollup@3.29.4)
'@nuxt/telemetry': 2.5.3(rollup@3.29.4)
'@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.9.3(@types/node@20.10.4)(eslint@8.55.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.4.15)
- '@types/node': 20.10.4
+ '@nuxt/vite-builder': 3.9.3(@types/node@20.11.5)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.4.15)
+ '@types/node': 20.11.5
'@unhead/dom': 1.8.10
'@unhead/ssr': 1.8.10
'@unhead/vue': 1.8.10(vue@3.4.15)
@@ -7524,10 +7523,6 @@ packages:
- xml2js
dev: true
- /nwsapi@2.2.7:
- resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
- dev: false
-
/nypm@0.3.3:
resolution: {integrity: sha512-FHoxtTscAE723e80d2M9cJRb4YVjL82Ra+ZV+YqC6rfNZUWahi+ZhPF+krnR+bdMvibsfHCtgKXnZf5R6kmEPA==}
engines: {node: ^14.16.0 || >=16.10.0}
@@ -7548,7 +7543,6 @@ packages:
execa: 8.0.1
pathe: 1.1.2
ufo: 1.3.2
- dev: true
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -7593,7 +7587,6 @@ packages:
engines: {node: '>=12'}
dependencies:
mimic-fn: 4.0.0
- dev: true
/only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
@@ -7774,12 +7767,10 @@ packages:
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- dev: true
/path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
- dev: true
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
@@ -7810,7 +7801,6 @@ packages:
/pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
- dev: true
/pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
@@ -7926,7 +7916,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-css-variables@0.19.0(postcss@8.4.32):
+ /postcss-css-variables@0.19.0(postcss@8.4.33):
resolution: {integrity: sha512-Hr0WEYKLK9VCrY15anHXOd4RCvJy/xRvCnWdplGBeLInwEj6Z14hgzTb2W/39dYTCnS8hnHUfU4/F1zxX0IZuQ==}
peerDependencies:
postcss: ^8.2.6
@@ -7934,7 +7924,7 @@ packages:
balanced-match: 1.0.2
escape-string-regexp: 1.0.5
extend: 3.0.2
- postcss: 8.4.32
+ postcss: 8.4.33
dev: false
/postcss-custom-properties@13.3.4(postcss@8.4.33):
@@ -8203,6 +8193,16 @@ packages:
postcss: 8.4.32
postcss-selector-parser: 6.0.13
+ /postcss-nested@6.0.1(postcss@8.4.33):
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.2.14
+ dependencies:
+ postcss: 8.4.33
+ postcss-selector-parser: 6.0.13
+ dev: true
+
/postcss-nesting@12.0.2(postcss@8.4.33):
resolution: {integrity: sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==}
engines: {node: ^14 || ^16 || >=18}
@@ -8541,7 +8541,6 @@ packages:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: true
/prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -8650,7 +8649,7 @@ packages:
/rc9@2.1.1:
resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
dependencies:
- defu: 6.1.3
+ defu: 6.1.4
destr: 2.0.2
flat: 5.0.2
@@ -8745,6 +8744,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /require-from-string@2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
dev: false
@@ -8973,7 +8977,7 @@ packages:
/serve-placeholder@2.0.1:
resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==}
dependencies:
- defu: 6.1.3
+ defu: 6.1.4
dev: true
/serve-static@1.15.0:
@@ -9005,21 +9009,29 @@ packages:
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- dev: true
/shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- dev: true
/shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
dev: true
+ /shikiji-core@0.10.0-beta.9:
+ resolution: {integrity: sha512-7dgwTyN9PeKyc4KJeyKo/qW8gi8XbR//c1CO+0B5GaeozWexNTpEL/tSohyIKkj0Z+7spfm2REmAaS39NlC4Lw==}
+ dev: false
+
/shikiji-core@0.9.19:
resolution: {integrity: sha512-AFJu/vcNT21t0e6YrfadZ+9q86gvPum6iywRyt1OtIPjPFe25RQnYJyxHQPMLKCCWA992TPxmEmbNcOZCAJclw==}
dev: true
+ /shikiji@0.10.0-beta.9:
+ resolution: {integrity: sha512-I+sv642n9M7/FK/dVcXp9vMv7v5Wa8gU2UuKwkIWKQFvyo+qKB8eV1zNNtRYas+jC7BLwdAaflc5BFUozAonFQ==}
+ dependencies:
+ shikiji-core: 0.10.0-beta.9
+ dev: false
+
/shikiji@0.9.19:
resolution: {integrity: sha512-Kw2NHWktdcdypCj1GkKpXH4o6Vxz8B8TykPlPuLHOGSV8VkhoCLcFOH4k19K4LXAQYRQmxg+0X/eM+m2sLhAkg==}
dependencies:
@@ -9037,7 +9049,6 @@ packages:
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- dev: true
/sigstore@2.1.0:
resolution: {integrity: sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==}
@@ -9078,6 +9089,7 @@ packages:
'@polka/url': 1.0.0-next.24
mrmime: 1.0.1
totalist: 3.0.1
+ dev: true
/sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
@@ -9086,7 +9098,6 @@ packages:
'@polka/url': 1.0.0-next.24
mrmime: 2.0.0
totalist: 3.0.1
- dev: true
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -9208,10 +9219,10 @@ packages:
/std-env@3.6.0:
resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
+ dev: true
/std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
- dev: true
/streamx@2.15.6:
resolution: {integrity: sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==}
@@ -9277,7 +9288,6 @@ packages:
/strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
- dev: true
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
@@ -9414,37 +9424,6 @@ packages:
'@babel/runtime': 7.23.8
dev: true
- /tailwindcss@3.3.6:
- resolution: {integrity: sha512-AKjF7qbbLvLaPieoKeTjG1+FyNZT6KaJMJPFeQyLfIp7l82ggH1fbHJSsYIvnbTFQOlkh+gBYpyby5GT1LIdLw==}
- engines: {node: '>=14.0.0'}
- hasBin: true
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.5.3
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.0
- lilconfig: 2.1.0
- micromatch: 4.0.5
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.32
- postcss-import: 15.1.0(postcss@8.4.32)
- postcss-js: 4.0.1(postcss@8.4.32)
- postcss-load-config: 4.0.2(postcss@8.4.32)
- postcss-nested: 6.0.1(postcss@8.4.32)
- postcss-selector-parser: 6.0.13
- resolve: 1.22.8
- sucrase: 3.34.0
- transitivePeerDependencies:
- - ts-node
- dev: false
-
/tailwindcss@3.4.1:
resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==}
engines: {node: '>=14.0.0'}
@@ -9474,7 +9453,6 @@ packages:
sucrase: 3.34.0
transitivePeerDependencies:
- ts-node
- dev: true
/tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
@@ -9694,15 +9672,15 @@ packages:
chalk: 5.3.0
citty: 0.1.5
consola: 3.2.3
- defu: 6.1.3
- esbuild: 0.19.9
+ defu: 6.1.4
+ esbuild: 0.19.11
globby: 13.2.2
hookable: 5.5.3
jiti: 1.21.0
magic-string: 0.30.5
mkdist: 1.4.0(typescript@5.3.3)
- mlly: 1.4.2
- pathe: 1.1.1
+ mlly: 1.5.0
+ pathe: 1.1.2
pkg-types: 1.0.3
pretty-bytes: 6.1.1
rollup: 3.29.4
@@ -9742,7 +9720,7 @@ packages:
resolution: {integrity: sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==}
dependencies:
consola: 3.2.3
- defu: 6.1.3
+ defu: 6.1.4
mime: 3.0.0
node-fetch-native: 1.4.1
pathe: 1.1.1
@@ -9802,14 +9780,15 @@ packages:
fast-glob: 3.3.2
local-pkg: 0.5.0
magic-string: 0.30.5
- mlly: 1.4.2
- pathe: 1.1.1
+ mlly: 1.5.0
+ pathe: 1.1.2
pkg-types: 1.0.3
scule: 1.2.0
strip-literal: 1.3.0
- unplugin: 1.5.1
+ unplugin: 1.6.0
transitivePeerDependencies:
- rollup
+ dev: true
/unimport@3.6.1(rollup@4.9.0):
resolution: {integrity: sha512-zKzbp8AQ+l8QK3XrONtUBdgBbMI8TkGh8hBYF77ZkVqMLLIAHwGSwJRFolPQMBx/5pezeRKvmu2gzlqnxRZeqQ==}
@@ -9819,12 +9798,12 @@ packages:
fast-glob: 3.3.2
local-pkg: 0.5.0
magic-string: 0.30.5
- mlly: 1.4.2
- pathe: 1.1.1
+ mlly: 1.5.0
+ pathe: 1.1.2
pkg-types: 1.0.3
scule: 1.2.0
strip-literal: 1.3.0
- unplugin: 1.5.1
+ unplugin: 1.6.0
transitivePeerDependencies:
- rollup
dev: true
@@ -9847,7 +9826,6 @@ packages:
unplugin: 1.6.0
transitivePeerDependencies:
- rollup
- dev: true
/unique-filename@3.0.0:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
@@ -9889,10 +9867,10 @@ packages:
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.4.3
- mlly: 1.4.2
- pathe: 1.1.1
+ mlly: 1.5.0
+ pathe: 1.1.2
scule: 1.2.0
- unplugin: 1.5.1
+ unplugin: 1.6.0
vue-router: 4.2.5(vue@3.3.11)
yaml: 2.3.4
transitivePeerDependencies:
@@ -9942,7 +9920,6 @@ packages:
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
- dev: true
/unstorage@1.10.1:
resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
@@ -9993,7 +9970,7 @@ packages:
listhen: 1.5.5
lru-cache: 10.1.0
mri: 1.2.0
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
ofetch: 1.3.3
ufo: 1.3.2
transitivePeerDependencies:
@@ -10011,7 +9988,7 @@ packages:
dependencies:
citty: 0.1.5
consola: 3.2.3
- pathe: 1.1.1
+ pathe: 1.1.2
dev: true
/untyped@1.4.0:
@@ -10021,7 +9998,7 @@ packages:
'@babel/core': 7.23.6
'@babel/standalone': 7.23.6
'@babel/types': 7.23.6
- defu: 6.1.3
+ defu: 6.1.4
jiti: 1.21.0
mri: 1.2.0
scule: 1.2.0
@@ -10081,38 +10058,17 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /vite-node@0.33.0(@types/node@20.10.4):
+ /vite-node@0.33.0(@types/node@20.11.5):
resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==}
engines: {node: '>=v14.18.0'}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- mlly: 1.4.2
- pathe: 1.1.1
- picocolors: 1.0.0
- vite: 4.5.1(@types/node@20.10.4)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
- /vite-node@1.0.4(@types/node@20.10.4):
- resolution: {integrity: sha512-9xQQtHdsz5Qn8hqbV7UKqkm8YkJhzT/zr41Dmt5N7AlD8hJXw/Z7y0QiD5I8lnTthV9Rvcvi0QW7PI0Fq83ZPg==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- dependencies:
- cac: 6.7.14
- debug: 4.3.4
- pathe: 1.1.1
+ mlly: 1.5.0
+ pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.0.9(@types/node@20.10.4)
+ vite: 4.5.1(@types/node@20.11.5)
transitivePeerDependencies:
- '@types/node'
- less
@@ -10124,7 +10080,7 @@ packages:
- terser
dev: true
- /vite-node@1.2.1(@types/node@20.10.4):
+ /vite-node@1.2.1(@types/node@20.11.5):
resolution: {integrity: sha512-fNzHmQUSOY+y30naohBvSW7pPn/xn3Ib/uqm+5wAJQJiqQsU0NBR78XdRJb04l4bOFKjpTWld0XAfkKlrDbySg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -10133,7 +10089,7 @@ packages:
debug: 4.3.4
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.0.11(@types/node@20.10.4)
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- '@types/node'
- less
@@ -10145,7 +10101,7 @@ packages:
- terser
dev: true
- /vite-plugin-checker@0.6.2(eslint@8.55.0)(typescript@5.3.3)(vite@4.5.1):
+ /vite-plugin-checker@0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@4.5.1):
resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
engines: {node: '>=14.16'}
peerDependencies:
@@ -10181,7 +10137,7 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
commander: 8.3.0
- eslint: 8.55.0
+ eslint: 8.56.0
fast-glob: 3.3.2
fs-extra: 11.2.0
lodash.debounce: 4.0.8
@@ -10191,14 +10147,14 @@ packages:
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
typescript: 5.3.3
- vite: 4.5.1(@types/node@20.10.4)
+ vite: 4.5.1(@types/node@20.11.5)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
dev: true
- /vite-plugin-checker@0.6.2(eslint@8.55.0)(typescript@5.3.3)(vite@5.0.11):
+ /vite-plugin-checker@0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@5.0.11):
resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
engines: {node: '>=14.16'}
peerDependencies:
@@ -10234,7 +10190,7 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
commander: 8.3.0
- eslint: 8.55.0
+ eslint: 8.56.0
fast-glob: 3.3.2
fs-extra: 11.2.0
lodash.debounce: 4.0.8
@@ -10244,14 +10200,14 @@ packages:
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
typescript: 5.3.3
- vite: 5.0.11(@types/node@20.10.4)
+ vite: 5.0.11(@types/node@20.11.5)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
dev: true
- /vite-plugin-inspect@0.8.1(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@5.0.9):
+ /vite-plugin-inspect@0.8.1(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-oPBPVGp6tBd5KdY/qY6lrbLXqrbHRG0hZLvEaJfiZ/GQfDB+szRuLHblQh1oi1Hhh8GeLit/50l4xfs2SA+TCA==}
engines: {node: '>=14'}
peerDependencies:
@@ -10269,14 +10225,14 @@ packages:
fs-extra: 11.2.0
open: 9.1.0
picocolors: 1.0.0
- sirv: 2.0.3
- vite: 5.0.9(@types/node@20.10.4)
+ sirv: 2.0.4
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /vite-plugin-inspect@0.8.1(@nuxt/kit@3.9.3)(rollup@3.29.4)(vite@5.0.9):
+ /vite-plugin-inspect@0.8.1(@nuxt/kit@3.9.3)(rollup@3.29.4)(vite@5.0.11):
resolution: {integrity: sha512-oPBPVGp6tBd5KdY/qY6lrbLXqrbHRG0hZLvEaJfiZ/GQfDB+szRuLHblQh1oi1Hhh8GeLit/50l4xfs2SA+TCA==}
engines: {node: '>=14'}
peerDependencies:
@@ -10294,14 +10250,14 @@ packages:
fs-extra: 11.2.0
open: 9.1.0
picocolors: 1.0.0
- sirv: 2.0.3
- vite: 5.0.9(@types/node@20.10.4)
+ sirv: 2.0.4
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /vite-plugin-vue-inspector@4.0.2(vite@5.0.9):
+ /vite-plugin-vue-inspector@4.0.2(vite@5.0.11):
resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==}
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
@@ -10315,12 +10271,12 @@ packages:
'@vue/compiler-dom': 3.3.11
kolorist: 1.8.0
magic-string: 0.30.5
- vite: 5.0.9(@types/node@20.10.4)
+ vite: 5.0.11(@types/node@20.11.5)
transitivePeerDependencies:
- supports-color
dev: true
- /vite@4.5.1(@types/node@20.10.4):
+ /vite@4.5.1(@types/node@20.11.5):
resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -10348,7 +10304,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.10.4
+ '@types/node': 20.11.5
esbuild: 0.18.20
postcss: 8.4.32
rollup: 3.29.4
@@ -10356,7 +10312,7 @@ packages:
fsevents: 2.3.3
dev: true
- /vite@5.0.11(@types/node@20.10.4):
+ /vite@5.0.11(@types/node@20.11.5):
resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -10384,7 +10340,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.10.4
+ '@types/node': 20.11.5
esbuild: 0.19.11
postcss: 8.4.33
rollup: 4.9.0
@@ -10392,44 +10348,30 @@ packages:
fsevents: 2.3.3
dev: true
- /vite@5.0.9(@types/node@20.10.4):
- resolution: {integrity: sha512-wVqMd5kp28QWGgfYPDfrj771VyHTJ4UDlCteLH7bJDGDEamaz5hV8IX6h1brSGgnnyf9lI2RnzXq/JmD0c2wwg==}
- 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-environment-nuxt@1.0.0(h3@1.10.0)(rollup@3.29.4)(vite@5.0.11)(vitest@1.2.1)(vue-router@4.2.5)(vue@3.4.15):
+ resolution: {integrity: sha512-AWMO9h4HdbaFdPWZw34gALFI8gbBiOpvfbyeZwHIPfh4kWg/TwElYHvYMQ61WPUlCGaS5LebfHkaI0WPyb//Iw==}
dependencies:
- '@types/node': 20.10.4
- esbuild: 0.19.9
- postcss: 8.4.32
- rollup: 4.9.0
- optionalDependencies:
- fsevents: 2.3.3
+ '@nuxt/test-utils': 3.10.0(h3@1.10.0)(rollup@3.29.4)(vite@5.0.11)(vitest@1.2.1)(vue-router@4.2.5)(vue@3.4.15)
+ transitivePeerDependencies:
+ - '@cucumber/cucumber'
+ - '@jest/globals'
+ - '@testing-library/vue'
+ - '@vitest/ui'
+ - '@vue/test-utils'
+ - h3
+ - happy-dom
+ - jsdom
+ - playwright-core
+ - rollup
+ - supports-color
+ - vite
+ - vitest
+ - vue
+ - vue-router
dev: true
- /vitest@1.0.4(@types/node@20.10.4):
- resolution: {integrity: sha512-s1GQHp/UOeWEo4+aXDOeFBJwFzL6mjycbQwwKWX2QcYfh/7tIerS59hWQ20mxzupTJluA2SdwiBuWwQHH67ckg==}
+ /vitest@1.2.1(@types/node@20.11.5):
+ resolution: {integrity: sha512-TRph8N8rnSDa5M2wKWJCMnztCZS9cDcgVTQ6tsTFTG/odHJ4l5yNVqvbeDJYJRZ6is3uxaEpFs8LL6QM+YFSdA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -10453,27 +10395,27 @@ packages:
jsdom:
optional: true
dependencies:
- '@types/node': 20.10.4
- '@vitest/expect': 1.0.4
- '@vitest/runner': 1.0.4
- '@vitest/snapshot': 1.0.4
- '@vitest/spy': 1.0.4
- '@vitest/utils': 1.0.4
- acorn-walk: 8.3.1
+ '@types/node': 20.11.5
+ '@vitest/expect': 1.2.1
+ '@vitest/runner': 1.2.1
+ '@vitest/snapshot': 1.2.1
+ '@vitest/spy': 1.2.1
+ '@vitest/utils': 1.2.1
+ acorn-walk: 8.3.2
cac: 6.7.14
chai: 4.3.10
debug: 4.3.4
execa: 8.0.1
local-pkg: 0.5.0
magic-string: 0.30.5
- pathe: 1.1.1
+ pathe: 1.1.2
picocolors: 1.0.0
- std-env: 3.6.0
+ std-env: 3.7.0
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.8.1
- vite: 5.0.9(@types/node@20.10.4)
- vite-node: 1.0.4(@types/node@20.10.4)
+ vite: 5.0.11(@types/node@20.11.5)
+ vite-node: 1.2.1(@types/node@20.11.5)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -10531,7 +10473,7 @@ packages:
ufo: 1.3.2
dev: true
- /vue-demi@0.14.6(vue@3.3.11):
+ /vue-demi@0.14.6(vue@3.4.15):
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
engines: {node: '>=12'}
hasBin: true
@@ -10543,25 +10485,26 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.3.11(typescript@5.3.3)
+ vue: 3.4.15(typescript@5.3.3)
dev: true
/vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
dev: true
- /vue-email@0.8.5(typescript@5.3.3)(vue@3.3.11):
- resolution: {integrity: sha512-NE3o2H6jcZNFdQJvtYlsCWxfNDRQl2xNdBcVhpLI9K7IkLMhhrbbMmeIGdPbx4ChncQjA1z8Oe/a4+8VYzcIRw==}
+ /vue-email@0.8.6(typescript@5.3.3)(vue@3.4.15):
+ resolution: {integrity: sha512-1U7xUdBcBn0ava2hz5gXPe7/6vL3Zts/8XBIVzhjfG9nuNYMKOvfRacLSeQ5lIfUvNhXvdv6NSQNOELLkdoMAQ==}
hasBin: true
peerDependencies:
vue: ^3.3.8
dependencies:
- '@vue-email/cli': 0.0.9(typescript@5.3.3)(vue@3.3.11)
+ '@vue-email/cli': 0.0.9(typescript@5.3.3)(vue@3.4.15)
'@vue-email/tailwind': 0.0.6
- isomorphic-dompurify: 1.12.0
+ isomorphic-dompurify: 2.2.0
+ shikiji: 0.10.0-beta.9
ufo: 1.3.2
- vue: 3.3.11(typescript@5.3.3)
- vue-i18n: 9.8.0(vue@3.3.11)
+ vue: 3.4.15(typescript@5.3.3)
+ vue-i18n: 9.9.0(vue@3.4.15)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -10571,14 +10514,14 @@ packages:
- utf-8-validate
dev: false
- /vue-eslint-parser@9.3.2(eslint@8.55.0):
+ /vue-eslint-parser@9.3.2(eslint@8.56.0):
resolution: {integrity: sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.55.0
+ eslint: 8.56.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -10589,16 +10532,16 @@ packages:
- supports-color
dev: true
- /vue-i18n@9.8.0(vue@3.3.11):
- resolution: {integrity: sha512-Izho+6PYjejsTq2mzjcRdBZ5VLRQoSuuexvR8029h5CpN03FYqiqBrShMyf2I1DKkN6kw/xmujcbvC+4QybpsQ==}
+ /vue-i18n@9.9.0(vue@3.4.15):
+ resolution: {integrity: sha512-xQ5SxszUAqK5n84N+uUyHH/PiQl9xZ24FOxyAaNonmOQgXeN+rD9z/6DStOpOxNFQn4Cgcquot05gZc+CdOujA==}
engines: {node: '>= 16'}
peerDependencies:
vue: ^3.0.0
dependencies:
- '@intlify/core-base': 9.8.0
- '@intlify/shared': 9.8.0
+ '@intlify/core-base': 9.9.0
+ '@intlify/shared': 9.9.0
'@vue/devtools-api': 6.5.1
- vue: 3.3.11(typescript@5.3.3)
+ vue: 3.4.15(typescript@5.3.3)
dev: false
/vue-router@4.2.5(vue@3.3.11):
@@ -10640,6 +10583,7 @@ packages:
'@vue/server-renderer': 3.3.11(vue@3.3.11)
'@vue/shared': 3.3.11
typescript: 5.3.3
+ dev: true
/vue@3.4.15(typescript@5.3.3):
resolution: {integrity: sha512-jC0GH4KkWLWJOEQjOpkqU1bQsBwf4R1rsFtw5GQJbjHVKWDzO6P0nWWBTmjp1xSemAioDFj1jdaK1qa3DnMQoQ==}
@@ -10655,7 +10599,6 @@ packages:
'@vue/server-renderer': 3.4.15(vue@3.4.15)
'@vue/shared': 3.4.15
typescript: 5.3.3
- dev: true
/w3c-xmlserializer@5.0.0:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
@@ -10713,7 +10656,6 @@ packages:
hasBin: true
dependencies:
isexe: 2.0.0
- dev: true
/which@3.0.1:
resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
@@ -10778,6 +10720,7 @@ packages:
optional: true
utf-8-validate:
optional: true
+ dev: true
/ws@8.16.0:
resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
@@ -10790,7 +10733,6 @@ packages:
optional: true
utf-8-validate:
optional: true
- dev: true
/xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}