diff --git a/apps/app/pages/code.vue b/apps/app/pages/code.vue
index 6f3a9de..68e4119 100644
--- a/apps/app/pages/code.vue
+++ b/apps/app/pages/code.vue
@@ -23,8 +23,9 @@ async function sendCode() {
await signUpStore.attemptEmailAddressVerification({
code: code.join(""),
});
- await sessionStore.refreshSession();
userStore.setUser();
+ await sessionStore.refreshSession();
+
router.push("/");
} catch (e) {
toast?.error("Código incorreto ou expirado.");
diff --git a/apps/app/pages/sign-in.vue b/apps/app/pages/sign-in.vue
index 8be4f37..9a42be7 100644
--- a/apps/app/pages/sign-in.vue
+++ b/apps/app/pages/sign-in.vue
@@ -100,7 +100,7 @@ async function clerkOAuth({ strategy }: { strategy: string }) {
/>
({
@@ -23,13 +25,23 @@ export const useSessionStore = defineStore("session", {
},
async refreshSession() {
const clientSession = this.$clerk?.client?.sessions[0];
- await this.$clerk.setSession(clientSession);
+ if (!clientSession) return;
+ try {
+ await this.$clerk.setSession(clientSession);
+ } catch (e) {
+ const clerkError: { errors: ClerkAPIError[] } | any = e;
+ if (clerkError.errors[0].code === "authentication_invalid") {
+ this.$router.push("/sign-out");
+ }
+
+ throw new Error((e as Error).message);
+ }
},
async signOut() {
- const clerkToken = useCookie("__session");
- const userCookie = useCookie("m-user");
- userCookie.value = null;
- clerkToken.value = null;
+ const clerkToken = useCookies([]);
+ const userCookie = useCookies([]);
+ userCookie.remove("m-user");
+ clerkToken.remove("__session");
this.cleared = true;
await this.$clerk.signOut();
diff --git a/apps/app/stores/clerk/user.ts b/apps/app/stores/clerk/user.ts
index ef6b827..df43c15 100644
--- a/apps/app/stores/clerk/user.ts
+++ b/apps/app/stores/clerk/user.ts
@@ -1,5 +1,6 @@
import { defineStore } from "pinia";
import type { UpdateUserParams, SetProfileImageParams } from "@clerk/types";
+import { useCookies } from "@vueuse/integrations/useCookies";
export type user = {
profileImageUrl: string;
@@ -35,11 +36,12 @@ export const useUserStore = defineStore("user", {
const userData = this.$clerk.user
? this.$clerk.user
: this.$clerk.client.sessions[0]?.user;
+
if (!userData) return;
this.user = userData;
- const userCookie = useCookie("m-user");
- userCookie.value = userData;
+ const userCookie = useCookies([]);
+ userCookie.set("m-user", userData);
},
async updateUser() {
await this.$clerk.user.update({
diff --git a/apps/www/package.json b/apps/www/package.json
index bc85f87..d5c38dd 100644
--- a/apps/www/package.json
+++ b/apps/www/package.json
@@ -12,7 +12,7 @@
"devDependencies": {
"@nuxtjs/fontaine": "^0.2.5",
"@types/node": "^20.4.6",
- "nuxt": "^3.6.5",
+ "nuxt": "^3.7.3",
"nuxt-schema-org": "^2.2.0",
"nuxt-simple-robots": "^3.1.0",
"nuxt-simple-sitemap": "^3.1.4",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6e5c6c5..bf77ae0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,10 +10,10 @@ importers:
devDependencies:
dotenv-cli:
specifier: ^7.2.1
- version: 7.3.0
+ version: 7.2.1
turbo:
specifier: ^1.10.12
- version: 1.10.14
+ version: 1.10.12
apps/app:
dependencies:
@@ -22,7 +22,7 @@ importers:
version: 4.44.0(@babel/core@7.22.20)(react-dom@18.2.0)(react@18.2.0)
'@clerk/types':
specifier: ^3.49.0
- version: 3.52.0
+ version: 3.49.0
'@fortawesome/fontawesome-svg-core':
specifier: ^6.4.2
version: 6.4.2
@@ -43,10 +43,13 @@ importers:
version: 1.0.0-rc.2-28246613.7d120ca
'@pinia/nuxt':
specifier: ^0.4.11
- version: 0.4.11(typescript@5.2.2)(vue@3.3.4)
- '@vueuse/nuxt':
+ version: 0.4.11(typescript@5.1.6)(vue@3.3.4)
+ '@vueuse/core':
+ specifier: ^10.3.0
+ version: 10.3.0(vue@3.3.4)
+ '@vueuse/integrations':
specifier: ^10.3.0
- version: 10.4.1(nuxt@3.5.3)(vue@3.3.4)
+ version: 10.3.0(universal-cookie@4.0.4)(vue@3.3.4)
eslint-config-custom:
specifier: workspace:*
version: link:../../packages/eslint-config-custom
@@ -55,41 +58,41 @@ importers:
version: 2.0.0-beta.24(vue@3.3.4)
nuxt-simple-sitemap:
specifier: ^3.1.4
- version: 3.3.4(nuxt@3.5.3)(vite@4.4.9)
+ version: 3.1.4(nuxt@3.7.3)(vite@4.4.9)
nuxt-umami:
specifier: ^2.5.2
- version: 2.5.4(vue@3.3.4)
+ version: 2.5.2(vue@3.3.4)
pinia:
specifier: ^2.1.6
- version: 2.1.6(typescript@5.2.2)(vue@3.3.4)
+ version: 2.1.6(typescript@5.1.6)(vue@3.3.4)
splitpanes:
specifier: ^3.1.5
version: 3.1.5
tailwind-config:
specifier: workspace:*
version: link:../../packages/tailwind-config
- unstorage:
- specifier: ^1.8.0
- version: 1.9.0
+ universal-cookie:
+ specifier: ^4.0.4
+ version: 4.0.4
devDependencies:
'@nuxt/content':
- specifier: ^2.7.2
- version: 2.8.2(vue@3.3.4)
+ specifier: npm:@nuxt/content-edge@latest
+ version: /@nuxt/content-edge@2.8.2-28257873.469c259(vue@3.3.4)
'@nuxtjs/fontaine':
specifier: ^0.2.5
version: 0.2.5
'@types/node':
specifier: ^20.4.6
- version: 20.6.3
+ version: 20.4.6
nuxt:
- specifier: 3.5.3
- version: 3.5.3(@types/node@20.6.3)(typescript@5.2.2)
+ specifier: ^3.7.3
+ version: 3.7.3(@types/node@20.4.6)(typescript@5.1.6)
nuxt-schema-org:
specifier: ^2.1.3
version: 2.2.0(@unhead/vue@1.7.4)
typescript:
specifier: ^5.1.6
- version: 5.2.2
+ version: 5.1.6
apps/email:
dependencies:
@@ -126,7 +129,7 @@ importers:
version: 1.0.0-rc.1-28180077.d51e794
'@vueuse/nuxt':
specifier: ^10.3.0
- version: 10.4.1(nuxt@3.7.3)(vue@3.3.4)
+ version: 10.3.0(nuxt@3.7.3)(vue@3.3.4)
eslint-config-custom:
specifier: workspace:*
version: link:../../packages/eslint-config-custom
@@ -135,7 +138,7 @@ importers:
version: 2.0.1
nuxt-umami:
specifier: ^2.5.2
- version: 2.5.4(vue@3.3.4)
+ version: 2.5.2(vue@3.3.4)
tailwind-config:
specifier: workspace:*
version: link:../../packages/tailwind-config
@@ -145,22 +148,22 @@ importers:
version: 0.2.5
'@types/node':
specifier: ^20.4.6
- version: 20.6.3
+ version: 20.4.6
nuxt:
- specifier: ^3.6.5
- version: 3.7.3(@types/node@20.6.3)(typescript@5.2.2)
+ specifier: ^3.7.3
+ version: 3.7.3(@types/node@20.4.6)(typescript@5.1.6)
nuxt-schema-org:
specifier: ^2.2.0
version: 2.2.0(@unhead/vue@1.7.4)
nuxt-simple-robots:
specifier: ^3.1.0
- version: 3.1.5
+ version: 3.1.0
nuxt-simple-sitemap:
specifier: ^3.1.4
- version: 3.3.4(nuxt@3.7.3)(vite@4.4.9)
+ version: 3.1.4(nuxt@3.7.3)(vite@4.4.9)
typescript:
specifier: ^5.1.6
- version: 5.2.2
+ version: 5.1.6
packages/assets:
dependencies:
@@ -178,16 +181,16 @@ importers:
dependencies:
'@rushstack/eslint-patch':
specifier: ^1.3.2
- version: 1.4.0
+ version: 1.3.2
'@typescript-eslint/parser':
specifier: ^5.62.0
- version: 5.62.0(eslint@8.49.0)(typescript@5.2.2)
+ version: 5.62.0(eslint@8.46.0)(typescript@5.1.6)
'@vue/eslint-config-prettier':
specifier: ^7.1.0
- version: 7.1.0(eslint@8.49.0)(prettier@2.8.8)
+ version: 7.1.0(eslint@8.46.0)(prettier@2.8.8)
eslint:
specifier: ^8.46.0
- version: 8.49.0
+ version: 8.46.0
eslint-plugin-json:
specifier: ^3.1.0
version: 3.1.0
@@ -196,7 +199,7 @@ importers:
version: 3.13.0(tailwindcss@3.3.3)
eslint-plugin-vue:
specifier: ^9.16.1
- version: 9.17.0(eslint@8.49.0)
+ version: 9.16.1(eslint@8.46.0)
prettier:
specifier: ^2.8.8
version: 2.8.8
@@ -205,25 +208,25 @@ importers:
version: 0.3.0(prettier@2.8.8)
typescript:
specifier: ^5.1.6
- version: 5.2.2
+ version: 5.1.6
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.49.0)(vite@4.4.9)
+ version: 1.8.1(eslint@8.46.0)(vite@4.4.9)
vue-eslint-parser:
specifier: ^9.3.1
- version: 9.3.1(eslint@8.49.0)
+ version: 9.3.1(eslint@8.46.0)
packages/tailwind-config:
dependencies:
autoprefixer:
specifier: ^10.4.14
- version: 10.4.16(postcss@8.4.30)
+ version: 10.4.14(postcss@8.4.27)
eslint-config-custom:
specifier: workspace:*
version: link:../eslint-config-custom
postcss:
specifier: ^8.4.27
- version: 8.4.30
+ version: 8.4.27
tailwindcss:
specifier: ^3.3.3
version: 3.3.3
@@ -550,7 +553,7 @@ packages:
dependencies:
'@clerk/localizations': 1.26.0(react@18.2.0)
'@clerk/shared': 0.17.2(react@18.2.0)
- '@clerk/types': 3.52.0
+ '@clerk/types': 3.49.0
'@emotion/cache': 11.10.5
'@emotion/react': 11.10.5(@babel/core@7.22.20)(react@18.2.0)
'@floating-ui/react': 0.19.0(react-dom@18.2.0)(react@18.2.0)
@@ -587,6 +590,13 @@ packages:
react: 18.2.0
dev: false
+ /@clerk/types@3.49.0:
+ resolution: {integrity: sha512-vAx5R/iYfsgIaIDMiDr6ZKQnAneAmRrUVYz6KCtPG6/hnEAnRYhwXpEUi89e5G0BFmuUfSxe/N/Anfc1PNteXQ==}
+ engines: {node: '>=14'}
+ dependencies:
+ csstype: 3.1.1
+ dev: false
+
/@clerk/types@3.52.0:
resolution: {integrity: sha512-AzPFyTcVdmMAEmP0Of2DzQ7M/XyBIYL5cNNKYaEZ+0f0T2xxFC4HIDIQqY1GjwDs6MBiHl2nPf2C06pQpOVWbQ==}
engines: {node: '>=14'}
@@ -708,14 +718,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-arm64@0.17.19:
- resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
-
/@esbuild/android-arm64@0.18.20:
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
@@ -741,14 +743,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-arm@0.17.19:
- resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
-
/@esbuild/android-arm@0.18.20:
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
engines: {node: '>=12'}
@@ -774,14 +768,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-x64@0.17.19:
- resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
-
/@esbuild/android-x64@0.18.20:
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
@@ -807,14 +793,6 @@ packages:
dev: false
optional: true
- /@esbuild/darwin-arm64@0.17.19:
- resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
/@esbuild/darwin-arm64@0.18.20:
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
@@ -840,14 +818,6 @@ packages:
dev: false
optional: true
- /@esbuild/darwin-x64@0.17.19:
- resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
/@esbuild/darwin-x64@0.18.20:
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
@@ -873,14 +843,6 @@ packages:
dev: false
optional: true
- /@esbuild/freebsd-arm64@0.17.19:
- resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
/@esbuild/freebsd-arm64@0.18.20:
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
@@ -906,14 +868,6 @@ packages:
dev: false
optional: true
- /@esbuild/freebsd-x64@0.17.19:
- resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
/@esbuild/freebsd-x64@0.18.20:
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
@@ -939,14 +893,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-arm64@0.17.19:
- resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-arm64@0.18.20:
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
@@ -972,14 +918,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-arm@0.17.19:
- resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-arm@0.18.20:
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
@@ -1005,14 +943,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-ia32@0.17.19:
- resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-ia32@0.18.20:
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
@@ -1038,14 +968,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-loong64@0.17.19:
- resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-loong64@0.18.20:
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
engines: {node: '>=12'}
@@ -1071,14 +993,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-mips64el@0.17.19:
- resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-mips64el@0.18.20:
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
engines: {node: '>=12'}
@@ -1104,14 +1018,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-ppc64@0.17.19:
- resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-ppc64@0.18.20:
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
engines: {node: '>=12'}
@@ -1137,14 +1043,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-riscv64@0.17.19:
- resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-riscv64@0.18.20:
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
engines: {node: '>=12'}
@@ -1170,14 +1068,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-s390x@0.17.19:
- resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-s390x@0.18.20:
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
engines: {node: '>=12'}
@@ -1203,14 +1093,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-x64@0.17.19:
- resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
/@esbuild/linux-x64@0.18.20:
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
engines: {node: '>=12'}
@@ -1236,14 +1118,6 @@ packages:
dev: false
optional: true
- /@esbuild/netbsd-x64@0.17.19:
- resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
-
/@esbuild/netbsd-x64@0.18.20:
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
engines: {node: '>=12'}
@@ -1269,14 +1143,6 @@ packages:
dev: false
optional: true
- /@esbuild/openbsd-x64@0.17.19:
- resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
-
/@esbuild/openbsd-x64@0.18.20:
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
engines: {node: '>=12'}
@@ -1302,14 +1168,6 @@ packages:
dev: false
optional: true
- /@esbuild/sunos-x64@0.17.19:
- resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
-
/@esbuild/sunos-x64@0.18.20:
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
engines: {node: '>=12'}
@@ -1335,14 +1193,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-arm64@0.17.19:
- resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
-
/@esbuild/win32-arm64@0.18.20:
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
@@ -1368,14 +1218,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-ia32@0.17.19:
- resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
-
/@esbuild/win32-ia32@0.18.20:
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
engines: {node: '>=12'}
@@ -1401,14 +1243,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-x64@0.17.19:
- resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
-
/@esbuild/win32-x64@0.18.20:
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
engines: {node: '>=12'}
@@ -1425,13 +1259,13 @@ packages:
requiresBuild: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.46.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.49.0
+ eslint: 8.46.0
eslint-visitor-keys: 3.4.3
dev: false
@@ -1457,15 +1291,14 @@ packages:
- supports-color
dev: false
- /@eslint/js@8.49.0:
- resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==}
+ /@eslint/js@8.50.0:
+ resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
/@fastify/accept-negotiator@1.1.0:
resolution: {integrity: sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ==}
engines: {node: '>=14'}
- requiresBuild: true
dev: false
optional: true
@@ -1691,21 +1524,23 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- /@nuxt/content@2.8.2(vue@3.3.4):
- resolution: {integrity: sha512-fi5/axuYNGccJ/dXyaf5C/WqgEd5wSijpGHZ9O+pH7754S2NeKyx8fUFGfXsLN9VyJP+Mx8EUihfWKJm09SCRA==}
+ /@nuxt/content-edge@2.8.2-28257873.469c259(vue@3.3.4):
+ resolution: {integrity: sha512-SRzsAYYKxQ5D8P1dsUaiaRqKuS+zgGMacCWBz3aAUlxYQ3XEQ4UN9aFtZy/X4nqL0CEteDri/8GQQVCoRwtZFA==}
dependencies:
'@nuxt/kit': 3.7.3
- '@nuxtjs/mdc': 0.1.6
- '@vueuse/head': 1.3.1(vue@3.3.4)
+ '@nuxtjs/mdc': 0.2.0
+ '@vueuse/head': 2.0.0(vue@3.3.4)
consola: 3.2.3
defu: 6.1.2
destr: 2.0.1
json5: 2.2.3
knitwork: 1.0.0
listhen: 1.5.5
+ mdast-util-to-string: 4.0.0
mdurl: 1.0.1
micromark: 4.0.0
micromark-util-sanitize-uri: 2.0.0
+ micromark-util-types: 2.0.0
ohash: 1.1.3
pathe: 1.1.1
scule: 1.0.0
@@ -1713,6 +1548,7 @@ packages:
slugify: 1.6.6
socket.io-client: 4.7.2
ufo: 1.3.0
+ unist-util-stringify-position: 4.0.0
unstorage: 1.9.0
ws: 8.14.2
transitivePeerDependencies:
@@ -1737,37 +1573,20 @@ packages:
/@nuxt/devalue@2.0.2:
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- /@nuxt/devtools-kit@0.8.4(nuxt@3.5.3)(vite@4.4.9):
- resolution: {integrity: sha512-kBgXJ1NUcE37ea08hlLkA5ZYvEy8sY08Z/lfzpvEwra4aQ22hm/c9FlqIGLfTfDJ4vfvSBlPF6oRyC3zE28VWg==}
+ /@nuxt/devtools-kit@0.7.6(nuxt@3.7.3)(vite@4.4.9):
+ resolution: {integrity: sha512-2jSQ1rgStZifRHtfsdqmmvq/O5NskLCwg34JPchBRAx9Kv5IadABlBIWz1jLuaGarI/jsEEAmA5EpfxI5z/PJQ==}
peerDependencies:
- nuxt: ^3.7.3
+ nuxt: ^3.6.5
vite: '*'
dependencies:
'@nuxt/kit': 3.7.3
'@nuxt/schema': 3.7.3
execa: 7.2.0
- nuxt: 3.5.3(@types/node@20.6.3)(typescript@5.2.2)
- vite: 4.4.9(@types/node@20.6.3)
+ nuxt: 3.7.3(@types/node@20.4.6)(typescript@5.1.6)
+ vite: 4.4.9(@types/node@20.4.6)
transitivePeerDependencies:
- rollup
- supports-color
- dev: false
-
- /@nuxt/devtools-kit@0.8.4(nuxt@3.7.3)(vite@4.4.9):
- resolution: {integrity: sha512-kBgXJ1NUcE37ea08hlLkA5ZYvEy8sY08Z/lfzpvEwra4aQ22hm/c9FlqIGLfTfDJ4vfvSBlPF6oRyC3zE28VWg==}
- peerDependencies:
- nuxt: ^3.7.3
- vite: '*'
- dependencies:
- '@nuxt/kit': 3.7.3
- '@nuxt/schema': 3.7.3
- execa: 7.2.0
- nuxt: 3.7.3(@types/node@20.6.3)(typescript@5.2.2)
- vite: 4.4.9(@types/node@20.6.3)
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
/@nuxt/image-edge@1.0.0-rc.1-28180077.d51e794:
resolution: {integrity: sha512-GbdBqEon+V8D7YmCmTLNuP2kKGfOIeEt4oWeznJ5eOwzADwNJfl96hmirkz4Vbm6qD901k3Xtg0eZK18ZY5K2A==}
@@ -1838,31 +1657,6 @@ packages:
- supports-color
dev: true
- /@nuxt/kit@3.5.3:
- resolution: {integrity: sha512-QzoOGqa1zjKQfg7Y50TrrFAL9DhtIpYYs10gihcM1ISPrn9ROht+VEjqsaMvT+L8JuQbNf8wDYl8qzsdWGU29Q==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- '@nuxt/schema': 3.5.3
- c12: 1.4.2
- consola: 3.2.3
- defu: 6.1.2
- globby: 13.2.2
- hash-sum: 2.0.0
- ignore: 5.2.4
- jiti: 1.20.0
- knitwork: 1.0.0
- mlly: 1.4.2
- pathe: 1.1.1
- pkg-types: 1.0.3
- scule: 1.0.0
- semver: 7.5.4
- unctx: 2.3.1
- unimport: 3.3.0(rollup@3.29.2)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
/@nuxt/kit@3.7.3:
resolution: {integrity: sha512-bhP02i6CNti15Z4ix3LpR3fd1ANtTcpfS3CDSaCja24hDt3UxIasyp52mqD9LRC+OxrUVHJziB18EwUtS6RLDQ==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -1911,23 +1705,6 @@ packages:
- supports-color
dev: true
- /@nuxt/schema@3.5.3:
- resolution: {integrity: sha512-Tnon4mYfJZmsCtx4NZ9A+qjwo4DcZ6tERpEhYBY81PX7AiJ+hFPBFR1qR32Tff66/qJjZg5UXj6H9AdzwEYr2w==}
- engines: {node: ^14.18.0 || >=16.10.0}
- dependencies:
- defu: 6.1.2
- hookable: 5.5.3
- pathe: 1.1.1
- pkg-types: 1.0.3
- postcss-import-resolver: 2.0.0
- std-env: 3.4.3
- ufo: 1.3.0
- unimport: 3.3.0(rollup@3.29.2)
- untyped: 1.4.0
- transitivePeerDependencies:
- - rollup
- - supports-color
-
/@nuxt/schema@3.7.3:
resolution: {integrity: sha512-Uqe3Z9RnAROzv5owQo//PztD9d4csKK6ulwQO1hIAinCh34X7z2zrv9lhm14hlRYU1n7ISEi4S7UeHgL/r8d8A==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -1977,67 +1754,7 @@ packages:
/@nuxt/ui-templates@1.3.1:
resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
- /@nuxt/vite-builder@3.5.3(@types/node@20.6.3)(typescript@5.2.2)(vue@3.3.4):
- resolution: {integrity: sha512-7zEKpGh3iWGRDwbWUa8eRxdLMxZtPzetelmdmXPjtYKGwUebZOcBhpeJ+VgJKOIf4OEj9E7BZS+it/Ji9UG9qw==}
- engines: {node: ^14.18.0 || >=16.10.0}
- peerDependencies:
- vue: ^3.3.4
- dependencies:
- '@nuxt/kit': 3.5.3
- '@rollup/plugin-replace': 5.0.2(rollup@3.29.2)
- '@vitejs/plugin-vue': 4.3.4(vite@4.3.9)(vue@3.3.4)
- '@vitejs/plugin-vue-jsx': 3.0.2(vite@4.3.9)(vue@3.3.4)
- autoprefixer: 10.4.16(postcss@8.4.30)
- clear: 0.1.0
- consola: 3.2.3
- cssnano: 6.0.1(postcss@8.4.30)
- defu: 6.1.2
- esbuild: 0.17.19
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- fs-extra: 11.1.1
- get-port-please: 3.1.1
- h3: 1.8.1
- knitwork: 1.0.0
- magic-string: 0.30.3
- mlly: 1.4.2
- ohash: 1.1.3
- pathe: 1.1.1
- perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- postcss: 8.4.30
- postcss-import: 15.1.0(postcss@8.4.30)
- postcss-url: 10.1.3(postcss@8.4.30)
- rollup-plugin-visualizer: 5.9.2(rollup@3.29.2)
- std-env: 3.4.3
- strip-literal: 1.3.0
- ufo: 1.3.0
- unplugin: 1.5.0
- vite: 4.3.9(@types/node@20.6.3)
- vite-node: 0.31.4(@types/node@20.6.3)
- vite-plugin-checker: 0.6.2(typescript@5.2.2)(vite@4.3.9)
- vue: 3.3.4
- vue-bundle-renderer: 1.0.3
- transitivePeerDependencies:
- - '@types/node'
- - eslint
- - less
- - meow
- - optionator
- - rollup
- - sass
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
-
- /@nuxt/vite-builder@3.7.3(@types/node@20.6.3)(typescript@5.2.2)(vue@3.3.4):
+ /@nuxt/vite-builder@3.7.3(@types/node@20.4.6)(typescript@5.1.6)(vue@3.3.4):
resolution: {integrity: sha512-WbPYku1YKtdqLo5t3Vcs/2xOP8Es9K0OR0uGirdVMp74l4ZOMWBGSW9s4psiihjnNdHURdodD0cuE3tse9t7PA==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
@@ -2074,9 +1791,9 @@ packages:
strip-literal: 1.3.0
ufo: 1.3.0
unplugin: 1.5.0
- vite: 4.4.9(@types/node@20.6.3)
- vite-node: 0.33.0(@types/node@20.6.3)
- vite-plugin-checker: 0.6.2(typescript@5.2.2)(vite@4.4.9)
+ vite: 4.4.9(@types/node@20.4.6)
+ vite-node: 0.33.0(@types/node@20.4.6)
+ vite-plugin-checker: 0.6.2(typescript@5.1.6)(vite@4.4.9)
vue: 3.3.4
vue-bundle-renderer: 2.0.0
transitivePeerDependencies:
@@ -2112,8 +1829,8 @@ packages:
- supports-color
dev: true
- /@nuxtjs/mdc@0.1.6:
- resolution: {integrity: sha512-zJuq5KwU3d1Dlh1sudnpVtIFoap09ZrvO9IAM1iP4tipzSRkgHFbCOTMEmK17Rx7KSdmvBbFP+/4MBaJdj1NqQ==}
+ /@nuxtjs/mdc@0.2.0:
+ resolution: {integrity: sha512-7bF7yyMw15YLUh+bUTgqUpW6lSqc8dXsF4rmTDe51hn93w++d9JThTz4epkNZcaXUkAU+FJB26OHq+G280AgTw==}
dependencies:
'@nuxt/kit': 3.7.3
'@types/hast': 3.0.1
@@ -2129,9 +1846,9 @@ packages:
micromark-util-sanitize-uri: 2.0.0
ohash: 1.1.3
property-information: 6.3.0
- rehype-external-links: 2.1.0
+ rehype-external-links: 3.0.0
rehype-raw: 6.1.1
- rehype-slug: 5.1.0
+ rehype-slug: 6.0.0
rehype-sort-attribute-values: 5.0.0
rehype-sort-attributes: 5.0.0
remark-emoji: 4.0.0
@@ -2140,7 +1857,7 @@ packages:
remark-parse: 10.0.2
remark-rehype: 10.1.0
scule: 1.0.0
- shiki-es: 0.14.0
+ shikiji: 0.6.8
ufo: 1.3.0
unified: 11.0.3
unist-builder: 4.0.0
@@ -2190,8 +1907,8 @@ packages:
- encoding
dev: false
- /@octokit/openapi-types@18.0.0:
- resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==}
+ /@octokit/openapi-types@18.1.1:
+ resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==}
dev: false
/@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4):
@@ -2265,13 +1982,13 @@ packages:
/@octokit/types@10.0.0:
resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==}
dependencies:
- '@octokit/openapi-types': 18.0.0
+ '@octokit/openapi-types': 18.1.1
dev: false
/@octokit/types@9.3.2:
resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==}
dependencies:
- '@octokit/openapi-types': 18.0.0
+ '@octokit/openapi-types': 18.1.1
dev: false
/@one-ini/wasm@0.1.1:
@@ -2405,11 +2122,11 @@ packages:
'@parcel/watcher-win32-ia32': 2.3.0
'@parcel/watcher-win32-x64': 2.3.0
- /@pinia/nuxt@0.4.11(typescript@5.2.2)(vue@3.3.4):
+ /@pinia/nuxt@0.4.11(typescript@5.1.6)(vue@3.3.4):
resolution: {integrity: sha512-bhuNFngJpmBCdAqWguezNJ/oJFR7wvKieqiZrmmdmPR07XjsidAw8RLXHMZE9kUm32M9E6T057OBbG/22jERTg==}
dependencies:
'@nuxt/kit': 3.7.3
- pinia: 2.1.6(typescript@5.2.2)(vue@3.3.4)
+ pinia: 2.1.6(typescript@5.1.6)(vue@3.3.4)
transitivePeerDependencies:
- '@vue/composition-api'
- rollup
@@ -2726,8 +2443,8 @@ packages:
picomatch: 2.3.1
rollup: 3.29.2
- /@rushstack/eslint-patch@1.4.0:
- resolution: {integrity: sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg==}
+ /@rushstack/eslint-patch@1.3.2:
+ resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==}
dev: false
/@selderee/plugin-htmlparser2@0.10.0:
@@ -2756,8 +2473,12 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@types/debug@4.1.8:
- resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==}
+ /@types/cookie@0.3.3:
+ resolution: {integrity: sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow==}
+ dev: false
+
+ /@types/debug@4.1.9:
+ resolution: {integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==}
dependencies:
'@types/ms': 0.7.31
dev: true
@@ -2787,7 +2508,7 @@ packages:
/@types/http-proxy@1.17.12:
resolution: {integrity: sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==}
dependencies:
- '@types/node': 20.6.3
+ '@types/node': 20.4.6
/@types/json-schema@7.0.13:
resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==}
@@ -2813,8 +2534,8 @@ packages:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: false
- /@types/node@20.6.3:
- resolution: {integrity: sha512-HksnYH4Ljr4VQgEy2lTStbCKv/P590tmPe5HqOnv9Gprffgv5WXAY+Y5Gqniu0GGqeTCUdBnzC3QSrzPkBkAMA==}
+ /@types/node@20.4.6:
+ resolution: {integrity: sha512-q0RkvNgMweWWIvSMDiXhflGUKMdIxBo2M2tYM/0kEGDueQByFzK4KZAgu5YHGFNxziTlppNpTIBcqHQAxlfHdA==}
/@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -2843,7 +2564,7 @@ packages:
resolution: {integrity: sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==}
dev: false
- /@typescript-eslint/parser@5.62.0(eslint@8.49.0)(typescript@5.2.2):
+ /@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6):
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2855,10 +2576,10 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
debug: 4.3.4
- eslint: 8.49.0
- typescript: 5.2.2
+ eslint: 8.46.0
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: false
@@ -2876,7 +2597,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2891,8 +2612,8 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
+ tsutils: 3.21.0(typescript@5.1.6)
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: false
@@ -2972,21 +2693,6 @@ packages:
- encoding
- supports-color
- /@vitejs/plugin-vue-jsx@3.0.2(vite@4.3.9)(vue@3.3.4):
- resolution: {integrity: sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^4.0.0
- vue: ^3.0.0
- dependencies:
- '@babel/core': 7.22.20
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.20)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.20)
- vite: 4.3.9(@types/node@20.6.3)
- vue: 3.3.4
- transitivePeerDependencies:
- - supports-color
-
/@vitejs/plugin-vue-jsx@3.0.2(vite@4.4.9)(vue@3.3.4):
resolution: {integrity: sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -2997,21 +2703,11 @@ packages:
'@babel/core': 7.22.20
'@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.20)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.20)
- vite: 4.4.9(@types/node@20.6.3)
+ vite: 4.4.9(@types/node@20.4.6)
vue: 3.3.4
transitivePeerDependencies:
- supports-color
- /@vitejs/plugin-vue@4.3.4(vite@4.3.9)(vue@3.3.4):
- resolution: {integrity: sha512-ciXNIHKPriERBisHFBvnTbfKa6r9SAesOYXeGDzgegcvy9Q4xdScSHAmKbNT0M3O0S9LKhIf5/G+UYG4NnnzYw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^4.0.0
- vue: ^3.2.25
- dependencies:
- vite: 4.3.9(@types/node@20.6.3)
- vue: 3.3.4
-
/@vitejs/plugin-vue@4.3.4(vite@4.4.9)(vue@3.3.4):
resolution: {integrity: sha512-ciXNIHKPriERBisHFBvnTbfKa6r9SAesOYXeGDzgegcvy9Q4xdScSHAmKbNT0M3O0S9LKhIf5/G+UYG4NnnzYw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -3019,7 +2715,7 @@ packages:
vite: ^4.0.0
vue: ^3.2.25
dependencies:
- vite: 4.4.9(@types/node@20.6.3)
+ vite: 4.4.9(@types/node@20.4.6)
vue: 3.3.4
/@vue-macros/common@1.8.0(vue@3.3.4):
@@ -3099,15 +2795,15 @@ packages:
/@vue/devtools-api@6.5.0:
resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==}
- /@vue/eslint-config-prettier@7.1.0(eslint@8.49.0)(prettier@2.8.8):
+ /@vue/eslint-config-prettier@7.1.0(eslint@8.46.0)(prettier@2.8.8):
resolution: {integrity: sha512-Pv/lVr0bAzSIHLd9iz0KnvAr4GKyCEl+h52bc4e5yWuDVtLgFwycF7nrbWTAQAS+FU6q1geVd07lc6EWfJiWKQ==}
peerDependencies:
eslint: '>= 7.28.0'
prettier: '>= 2.0.0'
dependencies:
- eslint: 8.49.0
- eslint-config-prettier: 8.10.0(eslint@8.49.0)
- eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.49.0)(prettier@2.8.8)
+ eslint: 8.46.0
+ eslint-config-prettier: 8.10.0(eslint@8.46.0)
+ eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.10.0)(eslint@8.46.0)(prettier@2.8.8)
prettier: 2.8.8
dev: false
@@ -3150,20 +2846,20 @@ packages:
/@vue/shared@3.3.4:
resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
- /@vueuse/core@10.4.1(vue@3.3.4):
- resolution: {integrity: sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==}
+ /@vueuse/core@10.3.0(vue@3.3.4):
+ resolution: {integrity: sha512-BEM5yxcFKb5btFjTSAFjTu5jmwoW66fyV9uJIP4wUXXU8aR5Hl44gndaaXp7dC5HSObmgbnR2RN+Un1p68Mf5Q==}
dependencies:
'@types/web-bluetooth': 0.0.17
- '@vueuse/metadata': 10.4.1
- '@vueuse/shared': 10.4.1(vue@3.3.4)
+ '@vueuse/metadata': 10.3.0
+ '@vueuse/shared': 10.3.0(vue@3.3.4)
vue-demi: 0.14.6(vue@3.3.4)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/head@1.3.1(vue@3.3.4):
- resolution: {integrity: sha512-XCcHGfDzkGlHS7KIPJVYN//L7jpfASLsN7MUE19ndHVQLnPIDxqFLDl7IROsY81PKzawVAUe4OYVWcGixseWxA==}
+ /@vueuse/head@2.0.0(vue@3.3.4):
+ resolution: {integrity: sha512-ykdOxTGs95xjD4WXE4na/umxZea2Itl0GWBILas+O4oqS7eXIods38INvk3XkJKjqMdWPcpCyLX/DioLQxU1KA==}
peerDependencies:
vue: '>=2.7 || >=3'
dependencies:
@@ -3174,38 +2870,70 @@ packages:
vue: 3.3.4
dev: true
- /@vueuse/metadata@10.4.1:
- resolution: {integrity: sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg==}
- dev: false
-
- /@vueuse/nuxt@10.4.1(nuxt@3.5.3)(vue@3.3.4):
- resolution: {integrity: sha512-tJ25KCkozZaQEy0qli4Ta8WXlbMIjSD7gPnVfLScZ2DpSSgImMB5R66PQEkrbSg4GfFj0OuoYc4+vCHQ/FqTsw==}
+ /@vueuse/integrations@10.3.0(universal-cookie@4.0.4)(vue@3.3.4):
+ resolution: {integrity: sha512-Jgiv7oFyIgC6BxmDtiyG/fxyGysIds00YaY7sefwbhCZ2/tjEx1W/1WcsISSJPNI30in28+HC2J4uuU8184ekg==}
peerDependencies:
- nuxt: ^3.0.0
+ async-validator: '*'
+ axios: '*'
+ change-case: '*'
+ drauu: '*'
+ focus-trap: '*'
+ fuse.js: '*'
+ idb-keyval: '*'
+ jwt-decode: '*'
+ nprogress: '*'
+ qrcode: '*'
+ sortablejs: '*'
+ universal-cookie: '*'
+ peerDependenciesMeta:
+ async-validator:
+ optional: true
+ axios:
+ optional: true
+ change-case:
+ optional: true
+ drauu:
+ optional: true
+ focus-trap:
+ optional: true
+ fuse.js:
+ optional: true
+ idb-keyval:
+ optional: true
+ jwt-decode:
+ optional: true
+ nprogress:
+ optional: true
+ qrcode:
+ optional: true
+ sortablejs:
+ optional: true
+ universal-cookie:
+ optional: true
dependencies:
- '@nuxt/kit': 3.7.3
- '@vueuse/core': 10.4.1(vue@3.3.4)
- '@vueuse/metadata': 10.4.1
- local-pkg: 0.4.3
- nuxt: 3.5.3(@types/node@20.6.3)(typescript@5.2.2)
+ '@vueuse/core': 10.3.0(vue@3.3.4)
+ '@vueuse/shared': 10.3.0(vue@3.3.4)
+ universal-cookie: 4.0.4
vue-demi: 0.14.6(vue@3.3.4)
transitivePeerDependencies:
- '@vue/composition-api'
- - rollup
- - supports-color
- vue
dev: false
- /@vueuse/nuxt@10.4.1(nuxt@3.7.3)(vue@3.3.4):
- resolution: {integrity: sha512-tJ25KCkozZaQEy0qli4Ta8WXlbMIjSD7gPnVfLScZ2DpSSgImMB5R66PQEkrbSg4GfFj0OuoYc4+vCHQ/FqTsw==}
+ /@vueuse/metadata@10.3.0:
+ resolution: {integrity: sha512-Ema3YhNOa4swDsV0V7CEY5JXvK19JI/o1szFO1iWxdFg3vhdFtCtSTP26PCvbUpnUtNHBY2wx5y3WDXND5Pvnw==}
+ dev: false
+
+ /@vueuse/nuxt@10.3.0(nuxt@3.7.3)(vue@3.3.4):
+ resolution: {integrity: sha512-Dmkm9H5Ubq279+FHhlJtlFP99wKrn2apuo4hk/0GbEi/6+zif7MJRtAjDBBV4VjmY6XV3kO8dQR8940FStbxsA==}
peerDependencies:
nuxt: ^3.0.0
dependencies:
'@nuxt/kit': 3.7.3
- '@vueuse/core': 10.4.1(vue@3.3.4)
- '@vueuse/metadata': 10.4.1
+ '@vueuse/core': 10.3.0(vue@3.3.4)
+ '@vueuse/metadata': 10.3.0
local-pkg: 0.4.3
- nuxt: 3.7.3(@types/node@20.6.3)(typescript@5.2.2)
+ nuxt: 3.7.3(@types/node@20.4.6)(typescript@5.1.6)
vue-demi: 0.14.6(vue@3.3.4)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -3214,8 +2942,8 @@ packages:
- vue
dev: false
- /@vueuse/shared@10.4.1(vue@3.3.4):
- resolution: {integrity: sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg==}
+ /@vueuse/shared@10.3.0(vue@3.3.4):
+ resolution: {integrity: sha512-kGqCTEuFPMK4+fNWy6dUOiYmxGcUbtznMwBZLC1PubidF4VZY05B+Oht7Jh7/6x4VOWGpvu3R37WHi81cKpiqg==}
dependencies:
vue-demi: 0.14.6(vue@3.3.4)
transitivePeerDependencies:
@@ -3403,6 +3131,22 @@ packages:
/async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ /autoprefixer@10.4.14(postcss@8.4.27):
+ resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.21.11
+ caniuse-lite: 1.0.30001538
+ fraction.js: 4.3.6
+ normalize-range: 0.1.2
+ picocolors: 1.0.0
+ postcss: 8.4.27
+ postcss-value-parser: 4.2.0
+ dev: false
+
/autoprefixer@10.4.16(postcss@8.4.30):
resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -3525,7 +3269,7 @@ packages:
hasBin: true
dependencies:
caniuse-lite: 1.0.30001538
- electron-to-chromium: 1.4.527
+ electron-to-chromium: 1.4.528
node-releases: 2.0.13
update-browserslist-db: 1.0.13(browserslist@4.21.11)
@@ -3680,7 +3424,6 @@ packages:
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
- requiresBuild: true
dev: false
optional: true
@@ -3761,7 +3504,6 @@ packages:
/color-string@1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
- requiresBuild: true
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
@@ -3775,7 +3517,6 @@ packages:
/color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
- requiresBuild: true
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
@@ -3867,6 +3608,11 @@ packages:
/cookie-es@1.0.0:
resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
+ /cookie@0.4.2:
+ resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
+ engines: {node: '>= 0.6'}
+ dev: false
+
/copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
dependencies:
@@ -3965,7 +3711,6 @@ packages:
/cssfilter@0.0.10:
resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==}
- requiresBuild: true
dev: false
optional: true
@@ -4074,7 +3819,6 @@ packages:
/decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
- requiresBuild: true
dependencies:
mimic-response: 3.1.0
dev: false
@@ -4106,7 +3850,6 @@ packages:
/deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
- requiresBuild: true
dev: false
optional: true
@@ -4172,9 +3915,6 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- /destr@1.2.2:
- resolution: {integrity: sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA==}
-
/destr@2.0.1:
resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==}
@@ -4280,8 +4020,8 @@ packages:
dependencies:
type-fest: 3.13.1
- /dotenv-cli@7.3.0:
- resolution: {integrity: sha512-314CA4TyK34YEJ6ntBf80eUY+t1XaFLyem1k9P0sX1gn30qThZ5qZr/ZwE318gEnzyYP9yj9HJk6SqwE0upkfw==}
+ /dotenv-cli@7.2.1:
+ resolution: {integrity: sha512-ODHbGTskqRtXAzZapDPvgNuDVQApu4oKX8lZW7Y0+9hKA6le1ZJlyRS687oU9FXjOVEDU/VFV6zI125HzhM1UQ==}
hasBin: true
dependencies:
cross-spawn: 7.0.3
@@ -4322,8 +4062,8 @@ packages:
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /electron-to-chromium@1.4.527:
- resolution: {integrity: sha512-EafxEiEDzk2aLrdbtVczylHflHdHkNrpGNHIgDyA63sUQLQVS2ayj2hPw3RsVB42qkwURH+T2OxV7kGPUuYszA==}
+ /electron-to-chromium@1.4.528:
+ resolution: {integrity: sha512-UdREXMXzLkREF4jA8t89FQjA8WHI6ssP38PMY4/4KhXFQbtImnghh4GkCgrtiZwLKUKVD2iTVXvDVQjfomEQuA==}
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -4342,7 +4082,6 @@ packages:
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- requiresBuild: true
dependencies:
once: 1.4.0
dev: false
@@ -4442,35 +4181,6 @@ packages:
'@esbuild/win32-x64': 0.16.4
dev: false
- /esbuild@0.17.19:
- resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.17.19
- '@esbuild/android-arm64': 0.17.19
- '@esbuild/android-x64': 0.17.19
- '@esbuild/darwin-arm64': 0.17.19
- '@esbuild/darwin-x64': 0.17.19
- '@esbuild/freebsd-arm64': 0.17.19
- '@esbuild/freebsd-x64': 0.17.19
- '@esbuild/linux-arm': 0.17.19
- '@esbuild/linux-arm64': 0.17.19
- '@esbuild/linux-ia32': 0.17.19
- '@esbuild/linux-loong64': 0.17.19
- '@esbuild/linux-mips64el': 0.17.19
- '@esbuild/linux-ppc64': 0.17.19
- '@esbuild/linux-riscv64': 0.17.19
- '@esbuild/linux-s390x': 0.17.19
- '@esbuild/linux-x64': 0.17.19
- '@esbuild/netbsd-x64': 0.17.19
- '@esbuild/openbsd-x64': 0.17.19
- '@esbuild/sunos-x64': 0.17.19
- '@esbuild/win32-arm64': 0.17.19
- '@esbuild/win32-ia32': 0.17.19
- '@esbuild/win32-x64': 0.17.19
-
/esbuild@0.18.20:
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
engines: {node: '>=12'}
@@ -4549,13 +4259,13 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- /eslint-config-prettier@8.10.0(eslint@8.49.0):
+ /eslint-config-prettier@8.10.0(eslint@8.46.0):
resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.49.0
+ eslint: 8.46.0
dev: false
/eslint-plugin-json@3.1.0:
@@ -4566,7 +4276,7 @@ packages:
vscode-json-languageservice: 4.2.1
dev: false
- /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.49.0)(prettier@2.8.8):
+ /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.46.0)(prettier@2.8.8):
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -4577,8 +4287,8 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.49.0
- eslint-config-prettier: 8.10.0(eslint@8.49.0)
+ eslint: 8.46.0
+ eslint-config-prettier: 8.10.0(eslint@8.46.0)
prettier: 2.8.8
prettier-linter-helpers: 1.0.0
dev: false
@@ -4594,19 +4304,19 @@ packages:
tailwindcss: 3.3.3
dev: false
- /eslint-plugin-vue@9.17.0(eslint@8.49.0):
- resolution: {integrity: sha512-r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ==}
+ /eslint-plugin-vue@9.16.1(eslint@8.46.0):
+ resolution: {integrity: sha512-2FtnTqazA6aYONfDuOZTk0QzwhAwi7Z4+uJ7+GHeGxcKapjqWlDsRWDenvyG/utyOfAS5bVRmAG3cEWiYEz2bA==}
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.49.0)
- eslint: 8.49.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0)
+ eslint: 8.46.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.1(eslint@8.49.0)
+ vue-eslint-parser: 9.3.1(eslint@8.46.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -4625,15 +4335,15 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /eslint@8.49.0:
- resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==}
+ /eslint@8.46.0:
+ resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0)
'@eslint-community/regexpp': 4.8.1
'@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.49.0
+ '@eslint/js': 8.50.0
'@humanwhocodes/config-array': 0.11.11
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
@@ -4767,7 +4477,6 @@ packages:
/expand-template@2.0.3:
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
engines: {node: '>=6'}
- requiresBuild: true
dev: false
optional: true
@@ -4955,7 +4664,6 @@ packages:
/fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- requiresBuild: true
dev: false
optional: true
@@ -5090,7 +4798,6 @@ packages:
/github-from-package@0.0.0:
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
- requiresBuild: true
dev: false
optional: true
@@ -5278,21 +4985,23 @@ packages:
web-namespaces: 2.0.1
dev: true
- /hast-util-has-property@2.0.1:
- resolution: {integrity: sha512-X2+RwZIMTMKpXUzlotatPzWj8bspCymtXH3cfG3iQKV+wPF53Vgaqxi/eLqGck0wKq1kS9nvoB1wchbCPEL8sg==}
- dev: true
-
- /hast-util-heading-rank@2.1.1:
- resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==}
+ /hast-util-from-parse5@8.0.1:
+ resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
dependencies:
- '@types/hast': 2.3.6
+ '@types/hast': 3.0.1
+ '@types/unist': 3.0.0
+ devlop: 1.1.0
+ hastscript: 8.0.0
+ property-information: 6.3.0
+ vfile: 6.0.1
+ vfile-location: 5.0.2
+ web-namespaces: 2.0.1
dev: true
- /hast-util-is-element@2.1.3:
- resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==}
+ /hast-util-heading-rank@3.0.0:
+ resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==}
dependencies:
- '@types/hast': 2.3.6
- '@types/unist': 2.0.8
+ '@types/hast': 3.0.1
dev: true
/hast-util-is-element@3.0.0:
@@ -5307,6 +5016,12 @@ packages:
'@types/hast': 2.3.6
dev: true
+ /hast-util-parse-selector@4.0.0:
+ resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
+ dependencies:
+ '@types/hast': 3.0.1
+ dev: true
+
/hast-util-raw@7.2.3:
resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
dependencies:
@@ -5323,6 +5038,41 @@ packages:
zwitch: 2.0.4
dev: true
+ /hast-util-raw@9.0.1:
+ resolution: {integrity: sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==}
+ dependencies:
+ '@types/hast': 3.0.1
+ '@types/unist': 3.0.0
+ '@ungap/structured-clone': 1.2.0
+ hast-util-from-parse5: 8.0.1
+ hast-util-to-parse5: 8.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.0.2
+ parse5: 7.1.2
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.1
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
+ dev: true
+
+ /hast-util-to-html@9.0.0:
+ resolution: {integrity: sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==}
+ dependencies:
+ '@types/hast': 3.0.1
+ '@types/unist': 3.0.0
+ ccount: 2.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-raw: 9.0.1
+ hast-util-whitespace: 3.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.0.2
+ property-information: 6.3.0
+ space-separated-tokens: 2.0.2
+ stringify-entities: 4.0.3
+ zwitch: 2.0.4
+ dev: true
+
/hast-util-to-parse5@7.1.0:
resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
dependencies:
@@ -5334,10 +5084,16 @@ packages:
zwitch: 2.0.4
dev: true
- /hast-util-to-string@2.0.0:
- resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==}
+ /hast-util-to-parse5@8.0.0:
+ resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
dependencies:
- '@types/hast': 2.3.6
+ '@types/hast': 3.0.1
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ property-information: 6.3.0
+ space-separated-tokens: 2.0.2
+ web-namespaces: 2.0.1
+ zwitch: 2.0.4
dev: true
/hast-util-to-string@3.0.0:
@@ -5346,6 +5102,12 @@ packages:
'@types/hast': 3.0.1
dev: true
+ /hast-util-whitespace@3.0.0:
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+ dependencies:
+ '@types/hast': 3.0.1
+ dev: true
+
/hastscript@7.2.0:
resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
dependencies:
@@ -5356,6 +5118,16 @@ packages:
space-separated-tokens: 2.0.2
dev: true
+ /hastscript@8.0.0:
+ resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
+ dependencies:
+ '@types/hast': 3.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-parse-selector: 4.0.0
+ property-information: 6.3.0
+ space-separated-tokens: 2.0.2
+ dev: true
+
/hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
@@ -5407,6 +5179,10 @@ packages:
resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
dev: true
+ /html-void-elements@3.0.0:
+ resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
+ dev: true
+
/htmlparser2@8.0.1:
resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
dependencies:
@@ -5600,7 +5376,6 @@ packages:
/is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
- requiresBuild: true
dev: false
optional: true
@@ -6729,7 +6504,7 @@ packages:
/micromark@3.2.0:
resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
dependencies:
- '@types/debug': 4.1.8
+ '@types/debug': 4.1.9
debug: 4.3.4
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
@@ -6753,7 +6528,7 @@ packages:
/micromark@4.0.0:
resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
dependencies:
- '@types/debug': 4.1.8
+ '@types/debug': 4.1.9
debug: 4.3.4
decode-named-character-reference: 1.0.2
devlop: 1.1.0
@@ -6807,7 +6582,6 @@ packages:
/mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
- requiresBuild: true
dev: false
optional: true
@@ -6856,7 +6630,6 @@ packages:
/mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
- requiresBuild: true
dev: false
optional: true
@@ -6913,7 +6686,6 @@ packages:
/napi-build-utils@1.0.2:
resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
- requiresBuild: true
dev: false
optional: true
@@ -6975,7 +6747,7 @@ packages:
node-fetch-native: 1.4.0
ofetch: 1.3.3
ohash: 1.1.3
- openapi-typescript: 6.6.1
+ openapi-typescript: 6.6.2
pathe: 1.1.1
perfect-debounce: 1.0.0
pkg-types: 1.0.3
@@ -7012,7 +6784,6 @@ packages:
/node-abi@3.47.0:
resolution: {integrity: sha512-2s6B2CWZM//kPgwnuI0KrYwNjfdByE25zvAaEpq9IH4zcNsarH8Ihu/UuX6XMPEogDAxkuUFeZn60pXNHAqn3A==}
engines: {node: '>=10'}
- requiresBuild: true
dependencies:
semver: 7.5.4
dev: false
@@ -7020,7 +6791,6 @@ packages:
/node-addon-api@6.1.0:
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
- requiresBuild: true
dev: false
optional: true
@@ -7130,13 +6900,6 @@ packages:
dependencies:
boolbase: 1.0.0
- /nuxi@3.5.3:
- resolution: {integrity: sha512-H0/Nj0ulUN8PrSvr6H433Awt4hNT5uaN57041QfknYVXlUce7yEbl/NcpNtnneAHYn2hMUZL9/nJCVkZ1xTvHA==}
- engines: {node: ^14.18.0 || >=16.10.0}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.3
-
/nuxi@3.9.0:
resolution: {integrity: sha512-roCfCnQsp/oaHm6PL3HFvvGrwm1d2y1n7G9KzIx+i91eiO4P7fBuaVKibB2e8uqEJBgTwN52KxFha6MJnDykJQ==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -7156,48 +6919,24 @@ packages:
- supports-color
dev: true
- /nuxt-simple-robots@3.1.5:
- resolution: {integrity: sha512-xvs4puAVWI26YBiHAJ3LLUA/k6qRIshSCiWck+6gBm9sNTlu1877UO4Lsknca+Ehk6/V7wXROJmX+2NZN0Fvgg==}
+ /nuxt-simple-robots@3.1.0:
+ resolution: {integrity: sha512-K+frvIOxRXwpZs77wCD/28NdDaK6eeecMmwX7MlVU5qJyfxp3olrgDQyEOQc3qcS6nLZ2s1nY5y6Dp0AiQoJrg==}
dependencies:
- '@nuxt/kit': 3.7.3
- defu: 6.1.2
- nuxt-site-config: 1.3.0
- nuxt-site-config-kit: 1.3.0
- pathe: 1.1.1
- ufo: 1.3.0
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
-
- /nuxt-simple-sitemap@3.3.4(nuxt@3.5.3)(vite@4.4.9):
- resolution: {integrity: sha512-iU6DeL3B08zGk07FTZtjHx3rRgn5RKYNAQ149hD/G108wTQ9ok1112iZM3pccnrlKrVTfCpeWjUaaCu+ntMnUg==}
- dependencies:
- '@nuxt/devtools-kit': 0.8.4(nuxt@3.5.3)(vite@4.4.9)
- '@nuxt/kit': 3.7.3
- chalk: 5.3.0
- defu: 6.1.2
- escape-string-regexp: 5.0.0
- fast-glob: 3.3.1
- knitwork: 1.0.0
+ '@nuxt/kit': 3.7.3
+ defu: 6.1.2
nuxt-site-config: 1.3.0
nuxt-site-config-kit: 1.3.0
pathe: 1.1.1
- radix3: 1.1.0
- semver: 7.5.4
- site-config-stack: 1.3.0
ufo: 1.3.0
transitivePeerDependencies:
- - nuxt
- rollup
- supports-color
- - vite
- dev: false
+ dev: true
- /nuxt-simple-sitemap@3.3.4(nuxt@3.7.3)(vite@4.4.9):
- resolution: {integrity: sha512-iU6DeL3B08zGk07FTZtjHx3rRgn5RKYNAQ149hD/G108wTQ9ok1112iZM3pccnrlKrVTfCpeWjUaaCu+ntMnUg==}
+ /nuxt-simple-sitemap@3.1.4(nuxt@3.7.3)(vite@4.4.9):
+ resolution: {integrity: sha512-rP2ZxiaEyrz1S16zOb6mmtVyxTgmUAErsy0QRaxIIEMJvnZ/0oFEgH6IbpnZchjw0dxlKCAhYgNof3QDF5VQ9Q==}
dependencies:
- '@nuxt/devtools-kit': 0.8.4(nuxt@3.7.3)(vite@4.4.9)
+ '@nuxt/devtools-kit': 0.7.6(nuxt@3.7.3)(vite@4.4.9)
'@nuxt/kit': 3.7.3
chalk: 5.3.0
defu: 6.1.2
@@ -7216,7 +6955,6 @@ packages:
- rollup
- supports-color
- vite
- dev: true
/nuxt-site-config-kit@1.3.0:
resolution: {integrity: sha512-y5o41zdeTJ/2ngKrF2PjeG4H1CMyXNNZmpNyhOGiXp7niTD17x5Uw5t+1+zIFfIMJeJ4yZje5gNaJtR+wHNgrg==}
@@ -7244,108 +6982,16 @@ packages:
- rollup
- supports-color
- /nuxt-umami@2.5.4(vue@3.3.4):
- resolution: {integrity: sha512-tFfo1RalHBsqm4QI3+Wghl82CobNJR/KEXopvJDxu22cn7xTMSe61h28TkYQUK+RMdPBla8xOs7bapAGqLwUbA==}
+ /nuxt-umami@2.5.2(vue@3.3.4):
+ resolution: {integrity: sha512-HY+eiiOEIAjwY/1+e4n5p+WOeeVfPNuSxkv84GevkJeAcQInsVNEZBeygCcN2hLPYlbLn/wTlEcc+qrJB0nWqQ==}
dependencies:
- '@vueuse/core': 10.4.1(vue@3.3.4)
+ '@vueuse/core': 10.3.0(vue@3.3.4)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /nuxt@3.5.3(@types/node@20.6.3)(typescript@5.2.2):
- resolution: {integrity: sha512-fG39BZ5N5ATtmx2vuxN8APQPSlSsCDpfkJ0k581gMc7eFztqrBzPncZX5w3RQLW7AiGBE2yYEfqiwC6AVODBBg==}
- engines: {node: ^14.18.0 || >=16.10.0}
- hasBin: true
- peerDependencies:
- '@parcel/watcher': ^2.1.0
- '@types/node': ^14.18.0 || >=16.10.0
- peerDependenciesMeta:
- '@parcel/watcher':
- optional: true
- dependencies:
- '@nuxt/devalue': 2.0.2
- '@nuxt/kit': 3.5.3
- '@nuxt/schema': 3.5.3
- '@nuxt/telemetry': 2.5.0
- '@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.5.3(@types/node@20.6.3)(typescript@5.2.2)(vue@3.3.4)
- '@types/node': 20.6.3
- '@unhead/ssr': 1.7.4
- '@unhead/vue': 1.7.4(vue@3.3.4)
- '@vue/shared': 3.3.4
- c12: 1.4.2
- chokidar: 3.5.3
- cookie-es: 1.0.0
- defu: 6.1.2
- destr: 1.2.2
- devalue: 4.3.2
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fs-extra: 11.1.1
- globby: 13.2.2
- h3: 1.8.1
- hookable: 5.5.3
- jiti: 1.20.0
- klona: 2.0.6
- knitwork: 1.0.0
- local-pkg: 0.4.3
- magic-string: 0.30.3
- mlly: 1.4.2
- nitropack: 2.6.3
- nuxi: 3.5.3
- nypm: 0.2.2
- ofetch: 1.3.3
- ohash: 1.1.3
- pathe: 1.1.1
- perfect-debounce: 1.0.0
- prompts: 2.4.2
- scule: 1.0.0
- strip-literal: 1.3.0
- ufo: 1.3.0
- ultrahtml: 1.5.2
- uncrypto: 0.1.3
- unctx: 2.3.1
- unenv: 1.7.4
- unimport: 3.3.0(rollup@3.29.2)
- unplugin: 1.5.0
- unplugin-vue-router: 0.6.4(vue-router@4.2.5)(vue@3.3.4)
- untyped: 1.4.0
- vue: 3.3.4
- vue-bundle-renderer: 1.0.3
- vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.3.4)
- transitivePeerDependencies:
- - '@azure/app-configuration'
- - '@azure/cosmos'
- - '@azure/data-tables'
- - '@azure/identity'
- - '@azure/keyvault-secrets'
- - '@azure/storage-blob'
- - '@capacitor/preferences'
- - '@planetscale/database'
- - '@upstash/redis'
- - '@vercel/kv'
- - encoding
- - eslint
- - idb-keyval
- - less
- - meow
- - optionator
- - rollup
- - sass
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - vls
- - vti
- - vue-tsc
- - xml2js
-
- /nuxt@3.7.3(@types/node@20.6.3)(typescript@5.2.2):
+ /nuxt@3.7.3(@types/node@20.4.6)(typescript@5.1.6):
resolution: {integrity: sha512-fh3l3PhL79pHJckHVGebTFYlqXDq1jHAXUcNmS3RTfmJRb1s4qi5kSRgmYUWEI5I4Iu+S0u8wWh2ChvnZMQRog==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -7363,8 +7009,8 @@ packages:
'@nuxt/schema': 3.7.3
'@nuxt/telemetry': 2.5.0
'@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.7.3(@types/node@20.6.3)(typescript@5.2.2)(vue@3.3.4)
- '@types/node': 20.6.3
+ '@nuxt/vite-builder': 3.7.3(@types/node@20.4.6)(typescript@5.1.6)(vue@3.3.4)
+ '@types/node': 20.4.6
'@unhead/dom': 1.7.4
'@unhead/ssr': 1.7.4
'@unhead/vue': 1.7.4(vue@3.3.4)
@@ -7444,12 +7090,6 @@ packages:
- vue-tsc
- xml2js
- /nypm@0.2.2:
- resolution: {integrity: sha512-O7bumfWgUXlJefT1Y41SF4vsCvzeUYmnKABuOKStheCObzrkWPDmqJc+RJVU+57oFu9bITcrUq8sKFIHgjCnTg==}
- engines: {node: ^14.16.0 || >=16.10.0}
- dependencies:
- execa: 7.2.0
-
/nypm@0.3.3:
resolution: {integrity: sha512-FHoxtTscAE723e80d2M9cJRb4YVjL82Ra+ZV+YqC6rfNZUWahi+ZhPF+krnR+bdMvibsfHCtgKXnZf5R6kmEPA==}
engines: {node: ^14.16.0 || >=16.10.0}
@@ -7536,15 +7176,15 @@ packages:
is-docker: 2.2.1
is-wsl: 2.2.0
- /openapi-typescript@6.6.1:
- resolution: {integrity: sha512-jx7bzR6FfkG21icjikrF0k6K8moNg93PuZlfc+zo4Enxwmyw6vAUh4Rl064JN35um/RV8ZX7ANnMrQW8gRsGsQ==}
+ /openapi-typescript@6.6.2:
+ resolution: {integrity: sha512-UWeaFmRpiEFAx+LMHhEGs51pXjjToqauUTJOU0ad1RrivCO+mlerUwe2MAxOWDBnqU05UtkGndyij97sbImXuA==}
hasBin: true
dependencies:
ansi-colors: 4.1.3
fast-glob: 3.3.1
js-yaml: 4.1.0
supports-color: 9.4.0
- undici: 5.25.1
+ undici: 5.25.2
yargs-parser: 21.1.1
/optionator@0.9.3:
@@ -7662,6 +7302,12 @@ packages:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: true
+ /parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ dependencies:
+ entities: 4.5.0
+ dev: true
+
/parseley@0.11.0:
resolution: {integrity: sha512-VfcwXlBWgTF+unPcr7yu3HSSA6QUdDaDnrHcytVfj5Z8azAyKBDrYnSIfeSxlrEayndNcLmrXzg+Vxbo6DWRXQ==}
dependencies:
@@ -7727,7 +7373,7 @@ packages:
engines: {node: '>=6'}
dev: false
- /pinia@2.1.6(typescript@5.2.2)(vue@3.3.4):
+ /pinia@2.1.6(typescript@5.1.6)(vue@3.3.4):
resolution: {integrity: sha512-bIU6QuE5qZviMmct5XwCesXelb5VavdOWKWaB17ggk++NUwQWWbP5YnsONTk3b752QkW9sACiR81rorpeOMSvQ==}
peerDependencies:
'@vue/composition-api': ^1.4.0
@@ -7740,7 +7386,7 @@ packages:
optional: true
dependencies:
'@vue/devtools-api': 6.5.0
- typescript: 5.2.2
+ typescript: 5.1.6
vue: 3.3.4
vue-demi: 0.14.6(vue@3.3.4)
dev: false
@@ -7849,6 +7495,18 @@ packages:
resolve: 1.22.6
dev: false
+ /postcss-import@15.1.0(postcss@8.4.27):
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.27
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.6
+ dev: false
+
/postcss-import@15.1.0(postcss@8.4.30):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -7870,14 +7528,14 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-js@4.0.1(postcss@8.4.30):
+ /postcss-js@4.0.1(postcss@8.4.27):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.30
+ postcss: 8.4.27
dev: false
/postcss-load-config@3.1.4(postcss@8.4.21):
@@ -7897,7 +7555,7 @@ packages:
yaml: 1.10.2
dev: false
- /postcss-load-config@4.0.1(postcss@8.4.30):
+ /postcss-load-config@4.0.1(postcss@8.4.27):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -7910,7 +7568,7 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.30
+ postcss: 8.4.27
yaml: 2.3.2
dev: false
@@ -7986,13 +7644,13 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-nested@6.0.1(postcss@8.4.30):
+ /postcss-nested@6.0.1(postcss@8.4.27):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.27
postcss-selector-parser: 6.0.13
dev: false
@@ -8156,6 +7814,15 @@ packages:
source-map-js: 1.0.2
dev: false
+ /postcss@8.4.27:
+ resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: false
+
/postcss@8.4.30:
resolution: {integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==}
engines: {node: ^10 || ^12 || >=14}
@@ -8168,7 +7835,6 @@ packages:
resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==}
engines: {node: '>=10'}
hasBin: true
- requiresBuild: true
dependencies:
detect-libc: 2.0.2
expand-template: 2.0.3
@@ -8301,7 +7967,6 @@ packages:
/pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
- requiresBuild: true
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
@@ -8361,7 +8026,6 @@ packages:
/rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- requiresBuild: true
dependencies:
deep-extend: 0.6.0
ini: 1.3.8
@@ -8509,16 +8173,15 @@ packages:
set-function-name: 2.0.1
dev: true
- /rehype-external-links@2.1.0:
- resolution: {integrity: sha512-2YMJZVM1hxZnwl9IPkbN5Pjn78kXkAX7lq9VEtlaGA29qIls25vZN+ucNIJdbQUe+9NNFck17BiOhGmsD6oLIg==}
+ /rehype-external-links@3.0.0:
+ resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
dependencies:
- '@types/hast': 2.3.6
- extend: 3.0.2
- hast-util-is-element: 2.1.3
+ '@types/hast': 3.0.1
+ '@ungap/structured-clone': 1.2.0
+ hast-util-is-element: 3.0.0
is-absolute-url: 4.0.1
space-separated-tokens: 2.0.2
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ unist-util-visit: 5.0.0
dev: true
/rehype-raw@6.1.1:
@@ -8529,16 +8192,14 @@ packages:
unified: 10.1.2
dev: true
- /rehype-slug@5.1.0:
- resolution: {integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==}
+ /rehype-slug@6.0.0:
+ resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
dependencies:
- '@types/hast': 2.3.6
+ '@types/hast': 3.0.1
github-slugger: 2.0.0
- hast-util-has-property: 2.0.1
- hast-util-heading-rank: 2.1.1
- hast-util-to-string: 2.0.0
- unified: 10.1.2
- unist-util-visit: 4.1.2
+ hast-util-heading-rank: 3.0.0
+ hast-util-to-string: 3.0.0
+ unist-util-visit: 5.0.0
dev: true
/rehype-sort-attribute-values@5.0.0:
@@ -8854,6 +8515,12 @@ packages:
resolution: {integrity: sha512-e+/aueHx0YeIEut6RXC6K8gSf0PykwZiHD7q7AHtpTW8Kd8TpFUIWqTwhAnrGjOyOMyrwv+syr5WPagMpDpVYQ==}
dev: true
+ /shikiji@0.6.8:
+ resolution: {integrity: sha512-K0axxNAdB9KvLUflU7QoLC7p6i2p1R2MFG0eP+iclbjtuEZqng99jHcg3VJL0GWRO67yozTICnykjo1HjOzdkg==}
+ dependencies:
+ hast-util-to-html: 9.0.0
+ dev: true
+
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
@@ -8870,13 +8537,11 @@ packages:
/simple-concat@1.0.1:
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
- requiresBuild: true
dev: false
optional: true
/simple-get@4.0.1:
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
- requiresBuild: true
dependencies:
decompress-response: 6.0.0
once: 1.4.0
@@ -8886,7 +8551,6 @@ packages:
/simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
- requiresBuild: true
dependencies:
is-arrayish: 0.3.2
dev: false
@@ -9084,7 +8748,6 @@ packages:
/strip-json-comments@2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
- requiresBuild: true
dev: false
optional: true
@@ -9234,11 +8897,11 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.30
- postcss-import: 15.1.0(postcss@8.4.30)
- postcss-js: 4.0.1(postcss@8.4.30)
- postcss-load-config: 4.0.1(postcss@8.4.30)
- postcss-nested: 6.0.1(postcss@8.4.30)
+ postcss: 8.4.27
+ postcss-import: 15.1.0(postcss@8.4.27)
+ postcss-js: 4.0.1(postcss@8.4.27)
+ postcss-load-config: 4.0.1(postcss@8.4.27)
+ postcss-nested: 6.0.1(postcss@8.4.27)
postcss-selector-parser: 6.0.13
resolve: 1.22.6
sucrase: 3.34.0
@@ -9256,7 +8919,6 @@ packages:
/tar-fs@2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
- requiresBuild: true
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
@@ -9267,7 +8929,6 @@ packages:
/tar-fs@3.0.4:
resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==}
- requiresBuild: true
dependencies:
mkdirp-classic: 0.5.3
pump: 3.0.0
@@ -9278,7 +8939,6 @@ packages:
/tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- requiresBuild: true
dependencies:
bl: 4.1.0
end-of-stream: 1.4.4
@@ -9393,82 +9053,82 @@ packages:
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- /tsutils@3.21.0(typescript@5.2.2):
+ /tsutils@3.21.0(typescript@5.1.6):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.2.2
+ typescript: 5.1.6
dev: false
/tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
- requiresBuild: true
dependencies:
safe-buffer: 5.2.1
dev: false
optional: true
- /turbo-darwin-64@1.10.14:
- resolution: {integrity: sha512-I8RtFk1b9UILAExPdG/XRgGQz95nmXPE7OiGb6ytjtNIR5/UZBS/xVX/7HYpCdmfriKdVwBKhalCoV4oDvAGEg==}
+ /turbo-darwin-64@1.10.12:
+ resolution: {integrity: sha512-vmDfGVPl5/aFenAbOj3eOx3ePNcWVUyZwYr7taRl0ZBbmv2TzjRiFotO4vrKCiTVnbqjQqAFQWY2ugbqCI1kOQ==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-darwin-arm64@1.10.14:
- resolution: {integrity: sha512-KAdUWryJi/XX7OD0alOuOa0aJ5TLyd4DNIYkHPHYcM6/d7YAovYvxRNwmx9iv6Vx6IkzTnLeTiUB8zy69QkG9Q==}
+ /turbo-darwin-arm64@1.10.12:
+ resolution: {integrity: sha512-3JliEESLNX2s7g54SOBqqkqJ7UhcOGkS0ywMr5SNuvF6kWVTbuUq7uBU/sVbGq8RwvK1ONlhPvJne5MUqBCTCQ==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-64@1.10.14:
- resolution: {integrity: sha512-BOBzoREC2u4Vgpap/WDxM6wETVqVMRcM8OZw4hWzqCj2bqbQ6L0wxs1LCLWVrghQf93JBQtIGAdFFLyCSBXjWQ==}
+ /turbo-linux-64@1.10.12:
+ resolution: {integrity: sha512-siYhgeX0DidIfHSgCR95b8xPee9enKSOjCzx7EjTLmPqPaCiVebRYvbOIYdQWRqiaKh9yfhUtFmtMOMScUf1gg==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-arm64@1.10.14:
- resolution: {integrity: sha512-D8T6XxoTdN5D4V5qE2VZG+/lbZX/89BkAEHzXcsSUTRjrwfMepT3d2z8aT6hxv4yu8EDdooZq/2Bn/vjMI32xw==}
+ /turbo-linux-arm64@1.10.12:
+ resolution: {integrity: sha512-K/ZhvD9l4SslclaMkTiIrnfcACgos79YcAo4kwc8bnMQaKuUeRpM15sxLpZp3xDjDg8EY93vsKyjaOhdFG2UbA==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-64@1.10.14:
- resolution: {integrity: sha512-zKNS3c1w4i6432N0cexZ20r/aIhV62g69opUn82FLVs/zk3Ie0GVkSB6h0rqIvMalCp7enIR87LkPSDGz9K4UA==}
+ /turbo-windows-64@1.10.12:
+ resolution: {integrity: sha512-7FSgSwvktWDNOqV65l9AbZwcoueAILeE4L7JvjauNASAjjbuzXGCEq5uN8AQU3U5BOFj4TdXrVmO2dX+lLu8Zg==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-arm64@1.10.14:
- resolution: {integrity: sha512-rkBwrTPTxNSOUF7of8eVvvM+BkfkhA2OvpHM94if8tVsU+khrjglilp8MTVPHlyS9byfemPAmFN90oRIPB05BA==}
+ /turbo-windows-arm64@1.10.12:
+ resolution: {integrity: sha512-gCNXF52dwom1HLY9ry/cneBPOKTBHhzpqhMylcyvJP0vp9zeMQQkt6yjYv+6QdnmELC92CtKNp2FsNZo+z0pyw==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo@1.10.14:
- resolution: {integrity: sha512-hr9wDNYcsee+vLkCDIm8qTtwhJ6+UAMJc3nIY6+PNgUTtXcQgHxCq8BGoL7gbABvNWv76CNbK5qL4Lp9G3ZYRA==}
+ /turbo@1.10.12:
+ resolution: {integrity: sha512-WM3+jTfQWnB9W208pmP4oeehZcC6JQNlydb/ZHMRrhmQa+htGhWLCzd6Q9rLe0MwZLPpSPFV2/bN5egCLyoKjQ==}
hasBin: true
+ requiresBuild: true
optionalDependencies:
- turbo-darwin-64: 1.10.14
- turbo-darwin-arm64: 1.10.14
- turbo-linux-64: 1.10.14
- turbo-linux-arm64: 1.10.14
- turbo-windows-64: 1.10.14
- turbo-windows-arm64: 1.10.14
+ turbo-darwin-64: 1.10.12
+ turbo-darwin-arm64: 1.10.12
+ turbo-linux-64: 1.10.12
+ turbo-linux-arm64: 1.10.12
+ turbo-windows-64: 1.10.12
+ turbo-windows-arm64: 1.10.12
dev: true
/tw-to-css@0.0.11:
@@ -9507,8 +9167,8 @@ packages:
resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
engines: {node: '>=14.16'}
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ /typescript@5.1.6:
+ resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
engines: {node: '>=14.17'}
hasBin: true
@@ -9533,8 +9193,8 @@ packages:
magic-string: 0.30.3
unplugin: 1.5.0
- /undici@5.25.1:
- resolution: {integrity: sha512-nTw6b2G2OqP6btYPyghCgV4hSwjJlL/78FMJatVLCa3otj6PCOQSt6dVtYt82OtNqFz8XsnJ+vsXLADPXjPhqw==}
+ /undici@5.25.2:
+ resolution: {integrity: sha512-tch8RbCfn1UUH1PeVCXva4V8gDpGAud/w0WubD6sHC46vYQ3KDxL+xv1A2UxK0N6jrVedutuPHxe1XIoqerwMw==}
engines: {node: '>=14.0'}
dependencies:
busboy: 1.6.0
@@ -9692,6 +9352,13 @@ packages:
unist-util-visit-parents: 6.0.1
dev: true
+ /universal-cookie@4.0.4:
+ resolution: {integrity: sha512-lbRVHoOMtItjWbM7TwDLdl8wug7izB0tq3/YVKhT/ahB4VDvWMyvnADfnJI8y6fSvsjh51Ix7lTGC6Tn4rMPhw==}
+ dependencies:
+ '@types/cookie': 0.3.3
+ cookie: 0.4.2
+ dev: false
+
/universal-user-agent@6.0.0:
resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==}
dev: false
@@ -9887,6 +9554,13 @@ packages:
vfile: 5.3.7
dev: true
+ /vfile-location@5.0.2:
+ resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
+ dependencies:
+ '@types/unist': 3.0.0
+ vfile: 6.0.1
+ dev: true
+
/vfile-message@3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
@@ -9918,27 +9592,7 @@ packages:
vfile-message: 4.0.2
dev: true
- /vite-node@0.31.4(@types/node@20.6.3):
- resolution: {integrity: sha512-uzL377GjJtTbuc5KQxVbDu2xfU/x0wVjUtXQR2ihS21q/NK6ROr4oG0rsSkBBddZUVCwzfx22in76/0ZZHXgkQ==}
- 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.3.9(@types/node@20.6.3)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
-
- /vite-node@0.33.0(@types/node@20.6.3):
+ /vite-node@0.33.0(@types/node@20.4.6):
resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -9948,7 +9602,7 @@ packages:
mlly: 1.4.2
pathe: 1.1.1
picocolors: 1.0.0
- vite: 4.4.9(@types/node@20.6.3)
+ vite: 4.4.9(@types/node@20.4.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -9959,58 +9613,7 @@ packages:
- supports-color
- terser
- /vite-plugin-checker@0.6.2(typescript@5.2.2)(vite@4.3.9):
- resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
- engines: {node: '>=14.16'}
- peerDependencies:
- eslint: '>=7'
- meow: ^9.0.0
- optionator: ^0.9.1
- stylelint: '>=13'
- typescript: '*'
- vite: '>=2.0.0'
- vls: '*'
- vti: '*'
- vue-tsc: '>=1.3.9'
- peerDependenciesMeta:
- eslint:
- optional: true
- meow:
- optional: true
- optionator:
- optional: true
- stylelint:
- optional: true
- typescript:
- optional: true
- vls:
- optional: true
- vti:
- optional: true
- vue-tsc:
- optional: true
- dependencies:
- '@babel/code-frame': 7.22.13
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- chokidar: 3.5.3
- commander: 8.3.0
- fast-glob: 3.3.1
- fs-extra: 11.1.1
- lodash.debounce: 4.0.8
- lodash.pick: 4.4.0
- npm-run-path: 4.0.1
- semver: 7.5.4
- strip-ansi: 6.0.1
- tiny-invariant: 1.3.1
- typescript: 5.2.2
- vite: 4.3.9(@types/node@20.6.3)
- vscode-languageclient: 7.0.0
- vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.8
- vscode-uri: 3.0.7
-
- /vite-plugin-checker@0.6.2(typescript@5.2.2)(vite@4.4.9):
+ /vite-plugin-checker@0.6.2(typescript@5.1.6)(vite@4.4.9):
resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
engines: {node: '>=14.16'}
peerDependencies:
@@ -10054,14 +9657,14 @@ packages:
semver: 7.5.4
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
- typescript: 5.2.2
- vite: 4.4.9(@types/node@20.6.3)
+ typescript: 5.1.6
+ vite: 4.4.9(@types/node@20.4.6)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.8
vscode-uri: 3.0.7
- /vite-plugin-eslint@1.8.1(eslint@8.49.0)(vite@4.4.9):
+ /vite-plugin-eslint@1.8.1(eslint@8.46.0)(vite@4.4.9):
resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==}
peerDependencies:
eslint: '>=7'
@@ -10069,44 +9672,12 @@ packages:
dependencies:
'@rollup/pluginutils': 4.2.1
'@types/eslint': 8.44.2
- eslint: 8.49.0
+ eslint: 8.46.0
rollup: 2.79.1
- vite: 4.4.9(@types/node@20.6.3)
+ vite: 4.4.9(@types/node@20.4.6)
dev: false
- /vite@4.3.9(@types/node@20.6.3):
- resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 20.6.3
- esbuild: 0.17.19
- postcss: 8.4.30
- rollup: 3.29.2
- optionalDependencies:
- fsevents: 2.3.3
-
- /vite@4.4.9(@types/node@20.6.3):
+ /vite@4.4.9(@types/node@20.4.6):
resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -10134,7 +9705,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.6.3
+ '@types/node': 20.4.6
esbuild: 0.18.20
postcss: 8.4.30
rollup: 3.29.2
@@ -10192,11 +9763,6 @@ packages:
/vscode-uri@3.0.7:
resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==}
- /vue-bundle-renderer@1.0.3:
- resolution: {integrity: sha512-EfjX+5TTUl70bki9hPuVp+54JiZOvFIfoWBcfXsSwLzKEiDYyHNi5iX8srnqLIv3YRnvxgbntdcG1WPq0MvffQ==}
- dependencies:
- ufo: 1.3.0
-
/vue-bundle-renderer@2.0.0:
resolution: {integrity: sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==}
dependencies:
@@ -10220,14 +9786,14 @@ packages:
/vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
- /vue-eslint-parser@9.3.1(eslint@8.49.0):
+ /vue-eslint-parser@9.3.1(eslint@8.46.0):
resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.49.0
+ eslint: 8.46.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -10390,7 +9956,6 @@ packages:
resolution: {integrity: sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==}
engines: {node: '>= 0.10.0'}
hasBin: true
- requiresBuild: true
dependencies:
commander: 2.20.3
cssfilter: 0.0.10