- {{ t(pageTitle) }}
+
+
+
+ {{ t(pageTitle) }}
+
+
-
+
-
diff --git a/collectivo/collectivo/plugins/directus.client.ts b/collectivo/collectivo/plugins/directus.client.ts
index 8b31e064..aaf4e85c 100644
--- a/collectivo/collectivo/plugins/directus.client.ts
+++ b/collectivo/collectivo/plugins/directus.client.ts
@@ -1,10 +1,4 @@
-import {
- createDirectus,
- authentication,
- rest,
- refresh,
- withOptions,
-} from "@directus/sdk";
+import { createDirectus, authentication, rest } from "@directus/sdk";
// Set up directus client or redirect to keycloak if not authenticated
export default defineNuxtPlugin({
diff --git a/collectivo/collectivo/plugins/setup.ts b/collectivo/collectivo/plugins/setup.ts
index 7190c6d2..48170c7c 100644
--- a/collectivo/collectivo/plugins/setup.ts
+++ b/collectivo/collectivo/plugins/setup.ts
@@ -83,7 +83,12 @@ export default defineNuxtPlugin(() => {
key: "email",
type: "text",
order: 103,
- disabled: true,
+ },
+ {
+ label: "Password",
+ key: "password",
+ type: "password",
+ order: 104,
},
];
diff --git a/collectivo/collectivo/public/silent-check-sso.html b/collectivo/collectivo/public/silent-check-sso.html
new file mode 100644
index 00000000..53575875
--- /dev/null
+++ b/collectivo/collectivo/public/silent-check-sso.html
@@ -0,0 +1,8 @@
+
+
+
+
+
+
diff --git a/collectivo/collectivo/server/api/collectivo/auth.patch.ts b/collectivo/collectivo/server/api/collectivo/auth.patch.ts
new file mode 100644
index 00000000..294ecd90
--- /dev/null
+++ b/collectivo/collectivo/server/api/collectivo/auth.patch.ts
@@ -0,0 +1,209 @@
+import { readUser, updateUser } from "@directus/sdk";
+import KcAdminClient from "@keycloak/keycloak-admin-client";
+
+async function useKeycloak() {
+ const config = useRuntimeConfig();
+
+ const keycloak = new KcAdminClient({
+ baseUrl: config.public.keycloakUrl,
+ realmName: config.public.keycloakRealm,
+ });
+
+ await keycloak.auth({
+ grantType: "client_credentials",
+ clientId: config.keycloakAdminClient,
+ clientSecret: config.keycloakAdminSecret,
+ });
+
+ return keycloak;
+}
+
+// Update keycloak user
+export default defineEventHandler(async (event) => {
+ try {
+ return await syncKeycloakUser(event);
+ } catch (e) {
+ console.error(e);
+ throw e;
+ }
+});
+
+async function syncKeycloakUser(event: any) {
+ const config = useRuntimeConfig();
+ console.log("update auth called");
+
+ if (config.public.authService !== "keycloak") {
+ return;
+ }
+
+ try {
+ await refreshDirectus();
+ } catch (e) {
+ logger.error("Failed to connect to Directus", e);
+ }
+
+ verifyCollectivoApiToken(event);
+ const body = await readBody(event);
+ const keycloak = await useKeycloak();
+ const directus = await useDirectusAdmin();
+ const isCreate = body.event === "users.create";
+ const isDelete = body.event === "users.delete";
+
+ console.log("event is", body.event);
+ console.log("payload is", body);
+
+ let user: any = {};
+ body.keys = body.keys || [body.key];
+
+ if (isDelete) {
+ body.keys = body.payload;
+ }
+
+ for (const key of body.keys) {
+ // Get existing user
+ // Error if user does not exist or has no email (deletion is still allowed)
+ if (!isCreate) {
+ user = await directus.request(
+ readUser(key, {
+ fields: ["id", "email", "provider", "external_identifier"],
+ }),
+ );
+
+ console.log("user:", user);
+
+ if (!user || !user.email) {
+ if (isDelete) {
+ return;
+ }
+
+ throw new Error("User not found");
+ }
+ }
+
+ const email = body.payload.email || user.email;
+ let provider = body.payload.provider || user.provider;
+ let extid = body.payload.external_identifier || user.external_identifier;
+
+ // If new user is created, set provider to keycloak
+ if (isCreate) {
+ provider = "keycloak";
+ extid = email;
+ }
+
+ // If user is not connected to keycloak, do not sync
+ if (provider !== "keycloak") {
+ return;
+ }
+
+ // Set external identifier to match new email
+ if (user.id && body.payload.email && email != extid) {
+ console.log("updating external identifier", email);
+ await directus.request(
+ updateUser(user.id, { external_identifier: email }),
+ );
+ }
+
+ // Find keycloak user with old email
+ // Email is always set to unverified
+ let kc_user_id = null;
+
+ if (!isCreate) {
+ const kc_users = await keycloak.users.find({
+ first: 0,
+ max: 1,
+ email: user.email, // This is the old email
+ });
+
+ if (kc_users && kc_users.length > 0) {
+ kc_user_id = kc_users[0].id;
+ }
+
+ if (kc_user_id && isDelete) {
+ await keycloak.users.del({ id: kc_user_id });
+ }
+ }
+
+ // If no keycloak user found, try to find by new email
+ if (!kc_user_id) {
+ const kc_users = await keycloak.users.find({
+ first: 0,
+ max: 1,
+ email: email, // This is the potentially new email
+ });
+
+ if (kc_users && kc_users.length > 0) {
+ kc_user_id = kc_users[0].id;
+ }
+
+ if (kc_user_id && isDelete) {
+ await keycloak.users.del({ id: kc_user_id });
+ }
+ }
+
+ // If still no keycloak user found, create new
+ if (!kc_user_id) {
+ console.log("creating new keycloak user");
+
+ const kc_user = await keycloak.users.create({
+ email: email,
+ emailVerified: false,
+ username: email,
+ enabled: true,
+ });
+
+ kc_user_id = kc_user.id;
+ }
+
+ // Update keycloak user
+ if ("email" in body.payload && body.payload.email !== user.email) {
+ console.log("updating email");
+ console.log("kc_user_id", kc_user_id);
+ console.log("email", body.payload.email);
+ await keycloak.users.update(
+ { id: kc_user_id },
+ {
+ username: body.payload.email,
+ email: body.payload.email,
+ emailVerified: true, // to prevent loops
+ },
+ );
+
+ console.log("email updated");
+ }
+
+ if ("first_name" in body.payload) {
+ await keycloak.users.update(
+ { id: kc_user_id },
+ {
+ firstName: body.payload.first_name,
+ },
+ );
+ }
+
+ if ("last_name" in body.payload) {
+ await keycloak.users.update(
+ { id: kc_user_id },
+ {
+ lastName: body.payload.last_name,
+ },
+ );
+ }
+
+ // Update keycloak user password
+ // Only if password is not masked (only stars)
+ if (
+ "password" in body.payload &&
+ body.payload.password &&
+ !/^[*]+$/.test(body.payload.password)
+ ) {
+ await keycloak.users.resetPassword({
+ id: kc_user_id,
+ credential: {
+ temporary: false,
+ type: "password",
+ value: body.payload.password,
+ },
+ });
+ }
+ }
+}
diff --git a/collectivo/collectivo/server/api/collectivo/roles.post.ts b/collectivo/collectivo/server/api/collectivo/roles.post.ts
new file mode 100644
index 00000000..f6f37b3e
--- /dev/null
+++ b/collectivo/collectivo/server/api/collectivo/roles.post.ts
@@ -0,0 +1,135 @@
+import { readItem, readUser } from "@directus/sdk";
+import KcAdminClient from "@keycloak/keycloak-admin-client";
+
+async function useKeycloak() {
+ const config = useRuntimeConfig();
+
+ const keycloak = new KcAdminClient({
+ baseUrl: config.public.keycloakUrl,
+ realmName: config.public.keycloakRealm,
+ });
+
+ await keycloak.auth({
+ grantType: "client_credentials",
+ clientId: config.keycloakAdminClient,
+ clientSecret: config.keycloakAdminSecret,
+ });
+
+ return keycloak;
+}
+
+export default defineEventHandler(async (event) => {
+ const config = useRuntimeConfig();
+ console.log("Syncing tags");
+
+ if (config.public.authService !== "keycloak") {
+ return;
+ }
+
+ try {
+ await refreshDirectus();
+ } catch (e) {
+ logger.error("Failed to connect to Directus", e);
+ }
+
+ verifyCollectivoApiToken(event);
+ const body = await readBody(event);
+ const isCreate = body.event === "collectivo_tags_directus_users.items.create";
+ const isDelete = body.event === "collectivo_tags_directus_users.items.delete";
+
+ body.keys = body.keys || [body.key];
+
+ if (isCreate) {
+ assignRole(body);
+ } else if (isDelete) {
+ for (const key of body.payload) {
+ await assignRole(body, key);
+ }
+ } else {
+ throw new Error("Tag relation event can only be create or delete");
+ }
+});
+
+async function assignRole(body: any, deleteKey?: any) {
+ const keycloak = await useKeycloak();
+ const directus = await useDirectusAdmin();
+ let tagID = "";
+ let userID = "";
+ if (deleteKey) {
+ const tagRelation = await directus.request(
+ readItem("collectivo_tags_directus_users", deleteKey),
+ );
+ tagID = tagRelation.collectivo_tags_id;
+ userID = tagRelation.directus_users_id;
+ } else {
+ userID =
+ body.payload.directus_users_id.id ?? body.payload.directus_users_id;
+ tagID =
+ body.payload.collectivo_tags_id.id ?? body.payload.collectivo_tags_id;
+ }
+
+ if (!tagID || !userID) {
+ return;
+ }
+
+ const tag = await directus.request(
+ readItem("collectivo_tags", tagID, {
+ fields: ["tags_name", "tags_sync"],
+ }),
+ );
+ console.log("Tag", tag);
+
+ if (!tag.tags_sync) {
+ return;
+ }
+
+ const user = await directus.request(
+ readUser(userID, {
+ fields: ["external_identifier"],
+ }),
+ );
+
+ const email = user.external_identifier;
+
+ if (!email) {
+ return;
+ }
+
+ const roleName = tag.tags_name.toLowerCase().replace(/ /g, "-");
+
+ let role: any = await keycloak.roles.findOneByName({ name: roleName });
+
+ if (!role) {
+ console.log("Creating role", roleName);
+ await keycloak.roles.create({ name: roleName });
+ role = await keycloak.roles.findOneByName({ name: roleName });
+ }
+
+ let kc_user_id = null;
+
+ const kc_users = await keycloak.users.find({
+ first: 0,
+ max: 1,
+ email: email,
+ });
+
+ if (kc_users && kc_users.length > 0) {
+ kc_user_id = kc_users[0].id;
+ }
+
+ if (!kc_user_id) {
+ return;
+ }
+
+ if (deleteKey) {
+ keycloak.users.delRealmRoleMappings({
+ id: kc_user_id,
+ roles: [{ id: role.id, name: role.name }],
+ });
+ } else {
+ await keycloak.users.addRealmRoleMappings({
+ id: kc_user_id,
+ roles: [{ id: role.id, name: role.name }],
+ });
+ }
+}
diff --git a/collectivo/collectivo/server/api/collectivo/user.post.ts b/collectivo/collectivo/server/api/collectivo/user.post.ts
new file mode 100644
index 00000000..634d8f66
--- /dev/null
+++ b/collectivo/collectivo/server/api/collectivo/user.post.ts
@@ -0,0 +1,60 @@
+import { readRoles, updateUser } from "@directus/sdk";
+
+// If a new user is created, make it a keycloak user
+export default defineEventHandler(async (event) => {
+ const config = useRuntimeConfig();
+ console.log("new user created called");
+
+ if (config.public.authService !== "keycloak") {
+ return;
+ }
+
+ try {
+ await refreshDirectus();
+ } catch (e) {
+ logger.error("Failed to connect to Directus", e);
+ }
+
+ verifyCollectivoApiToken(event);
+ const body = await readBody(event);
+ const directus = await useDirectusAdmin();
+ const isCreate = body.event === "users.create";
+
+ body.keys = body.keys || [body.key];
+
+ if (!isCreate) {
+ console.log("Only users.create events are supported");
+ return;
+ }
+
+ const roleID = await getRole("collectivo_user");
+
+ for (const key of body.keys) {
+ // Set external identifier to match email
+ await directus.request(
+ updateUser(key, {
+ role: roleID,
+ provider: "keycloak",
+ external_identifier: body.payload.email,
+ }),
+ );
+ }
+});
+
+async function getRole(name: string) {
+ const directus = await useDirectusAdmin();
+
+ const membersRoles = await directus.request(
+ readRoles({
+ filter: {
+ name: { _eq: name },
+ },
+ }),
+ );
+
+ if (membersRoles.length < 1) {
+ throw new Error(name + " role not found");
+ }
+
+ return membersRoles[0].id;
+}
diff --git a/collectivo/collectivo/server/api/dev/auth.ts b/collectivo/collectivo/server/api/dev/auth.ts
deleted file mode 100644
index 310341c3..00000000
--- a/collectivo/collectivo/server/api/dev/auth.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-import { createDirectus, authentication, rest, readMe } from "@directus/sdk";
-
-// Test authentication from server side
-export default defineEventHandler(async (event) => {
- console.log("Registering new membership");
-
- let token = getRequestHeader(event, "Authorization");
-
- if (token?.startsWith("Bearer ")) {
- token = token.slice(7, token.length);
- }
-
- const client = createDirectus("http://localhost:8055")
- .with(authentication())
- .with(rest());
-
- if (!token) {
- throw new Error("No token found");
- }
-
- client.setToken(token);
-
- const user = await client.request(
- readMe({
- fields: ["id", "first_name", "last_name", "email"],
- }),
- );
-
- return {
- message: "Authentication successful",
- user: user,
- };
-});
diff --git a/collectivo/collectivo/server/plugins/registerExtension.ts b/collectivo/collectivo/server/plugins/registerExtension.ts
index 9ed56d59..50a6d1e7 100644
--- a/collectivo/collectivo/server/plugins/registerExtension.ts
+++ b/collectivo/collectivo/server/plugins/registerExtension.ts
@@ -5,6 +5,7 @@ import extensions_01 from "../schemas/extensions_01";
import tags_01 from "../schemas/tags_01";
import tiles_01 from "../schemas/tiles_01";
import messages_01 from "../schemas/messages_01";
+import auth_01 from "../schemas/auth_01";
import examples from "../examples/examples";
@@ -14,6 +15,7 @@ const schema_0_0_1 = combineSchemas("collectivo", "0.0.1", [
tags_01,
tiles_01,
messages_01,
+ auth_01,
]);
// Register extension on startup
diff --git a/collectivo/collectivo/server/schemas/auth_01.ts b/collectivo/collectivo/server/schemas/auth_01.ts
new file mode 100644
index 00000000..6c9c42be
--- /dev/null
+++ b/collectivo/collectivo/server/schemas/auth_01.ts
@@ -0,0 +1,87 @@
+const schema = initSchema("collectivo", "0.0.1");
+
+export default schema;
+
+schema.createNuxtHook(
+ {
+ name: "collectivo_user_create",
+ icon: "bolt",
+ color: null,
+ description: null,
+ status: "active",
+ accountability: null,
+ trigger: "event",
+ options: {
+ type: "action",
+ scope: ["items.create"],
+ collections: ["directus_users"],
+ },
+ },
+ "api/collectivo/user",
+);
+
+schema.flows.push({
+ flow: {
+ name: "collectivo_auth_update",
+ icon: "bolt",
+ color: null,
+ description: null,
+ status: "active",
+ accountability: null,
+ trigger: "event",
+ options: {
+ type: "filter",
+ scope: ["items.create", "items.update", "items.delete"],
+ collections: ["directus_users"],
+ },
+ },
+ firstOperation: "filter",
+ operations: [
+ {
+ operation: {
+ position_x: 19,
+ position_y: 1,
+ name: "Run Script",
+ key: "filter",
+ type: "exec",
+ options: {
+ code: 'module.exports = async function(data) { \n const attrs = ["email", "password", "first_name", "last_name"];\n if (data["$trigger"]["event"]=="users.delete"){ \n return {\n "true": true \n };\n }\n else if (!attrs.some(attr => attr in data["$trigger"].payload)){ \n throw new Error("No important change"); \n };\n return { \t\n "true": true \n };\n}',
+ },
+ },
+ reject: "continue",
+ resolve: "postToNuxtAPI",
+ },
+ {
+ operation: {
+ position_x: 30,
+ position_y: 1,
+ name: "postToNuxtAPI",
+ key: "postToNuxtAPI",
+ type: "request",
+ options: {
+ method: "PATCH",
+ url: "{{$env.COLLECTIVO_API_URL}}/" + "api/collectivo/auth",
+ headers: [
+ {
+ header: "Authorization",
+ value: "Bearer {{$env.COLLECTIVO_API_TOKEN}}",
+ },
+ ],
+ body: "{{$trigger}}",
+ },
+ },
+ },
+ {
+ operation: {
+ name: "Run Script",
+ key: "continue",
+ position_x: 30,
+ position_y: 19,
+ type: "exec",
+ options: {
+ code: 'module.exports = async function(data) {\n\t// Do something...\n\treturn {\n \t"true": true\n };\n}',
+ },
+ },
+ },
+ ],
+});
diff --git a/collectivo/collectivo/server/schemas/settings_01.ts b/collectivo/collectivo/server/schemas/settings_01.ts
index 143086cd..5d475811 100644
--- a/collectivo/collectivo/server/schemas/settings_01.ts
+++ b/collectivo/collectivo/server/schemas/settings_01.ts
@@ -104,12 +104,13 @@ for (const action of ["read"]) {
}
}
-const user_fields = ["first_name", "last_name", "email", "title"];
+const user_fields = ["first_name", "last_name", "email", "password", "title"];
const editor_fields = [
"first_name",
"last_name",
"email",
+ "password",
"title",
"description",
];
diff --git a/collectivo/collectivo/server/schemas/tags_01.ts b/collectivo/collectivo/server/schemas/tags_01.ts
index 51117c38..6dec2015 100644
--- a/collectivo/collectivo/server/schemas/tags_01.ts
+++ b/collectivo/collectivo/server/schemas/tags_01.ts
@@ -56,6 +56,18 @@ schema.fields = [
schema: {},
meta: { interface: "input-multiline", sort: 20 },
},
+ {
+ collection: collection,
+ field: "tags_sync",
+ type: "boolean",
+ schema: {},
+ meta: {
+ interface: "boolean",
+ special: ["cast-boolean"],
+ sort: 30,
+ note: "Synchronize this tag with Keycloak.",
+ },
+ },
{
collection: "directus_users",
field: "collectivo_tags_divider",
@@ -137,3 +149,21 @@ for (const action of ["read", "update", "create", "delete"]) {
});
}
}
+
+schema.createNuxtHook(
+ {
+ name: "collectivo_sync_tags",
+ icon: "bolt",
+ color: null,
+ description: null,
+ status: "active",
+ accountability: "all",
+ trigger: "event",
+ options: {
+ type: "filter",
+ scope: ["items.create", "items.update", "items.delete"],
+ collections: ["collectivo_tags_directus_users"],
+ },
+ },
+ "api/collectivo/roles",
+);
diff --git a/collectivo/collectivo/server/schemas/tiles_01.ts b/collectivo/collectivo/server/schemas/tiles_01.ts
index bd9b9449..d51e0bae 100644
--- a/collectivo/collectivo/server/schemas/tiles_01.ts
+++ b/collectivo/collectivo/server/schemas/tiles_01.ts
@@ -189,6 +189,32 @@ schema.fields = [
},
];
+schema.createForeignKey("collectivo_tiles", "collectivo_tags", {
+ fieldKey: {
+ field: "tiles_tag_required",
+ meta: {
+ translations: [
+ { language: "en-US", translation: "Tag required" },
+ { language: "de-DE", translation: "Notwendiger tag" },
+ ],
+ note: "The tile will only be shown if this tag is present.",
+ },
+ },
+});
+
+schema.createForeignKey("collectivo_tiles", "collectivo_tags", {
+ fieldKey: {
+ field: "tiles_tag_blocked",
+ meta: {
+ translations: [
+ { language: "en-US", translation: "Tag blocked" },
+ { language: "de-DE", translation: "Blockierter tag" },
+ ],
+ note: "The tile will not be shown if this tag is present.",
+ },
+ },
+});
+
schema.createForeignKey("collectivo_tiles_buttons", "collectivo_tiles", {
fieldKey: {
field: "tiles_tile",
diff --git a/collectivo/collectivo/server/utils/directusClient.ts b/collectivo/collectivo/server/utils/directusClient.ts
index df636b6c..9c64cfe7 100644
--- a/collectivo/collectivo/server/utils/directusClient.ts
+++ b/collectivo/collectivo/server/utils/directusClient.ts
@@ -1,11 +1,9 @@
-import {
- createDirectus,
- authentication,
- rest,
+import type {
DirectusClient,
AuthenticationClient,
RestClient,
} from "@directus/sdk";
+import { createDirectus, authentication, rest } from "@directus/sdk";
// Shared server variable
let directus: DirectusClient
& AuthenticationClient & RestClient;
diff --git a/collectivo/collectivo/server/utils/directusFields.ts b/collectivo/collectivo/server/utils/directusFields.ts
index 8fe5bdf7..a37abbf0 100644
--- a/collectivo/collectivo/server/utils/directusFields.ts
+++ b/collectivo/collectivo/server/utils/directusFields.ts
@@ -1,4 +1,4 @@
-import { DirectusField, NestedPartial } from "@directus/sdk";
+import type { DirectusField, NestedPartial } from "@directus/sdk";
type PartialField = NestedPartial>;
diff --git a/collectivo/collectivo/server/utils/directusQueries.ts b/collectivo/collectivo/server/utils/directusQueries.ts
index d5fc8ac1..4863ce74 100644
--- a/collectivo/collectivo/server/utils/directusQueries.ts
+++ b/collectivo/collectivo/server/utils/directusQueries.ts
@@ -1,22 +1,25 @@
-import {
- createCollection,
- createField,
+import type {
DirectusCollection,
DirectusField,
NestedPartial,
+ DirectusRelation,
+ DirectusPermission,
+ DirectusRole,
+ DirectusTranslation,
+ DirectusOperation,
+} from "@directus/sdk";
+import {
+ createCollection,
+ createField,
updateCollection,
updateField,
- DirectusRelation,
createRelation,
updateRelation,
readRoles,
- DirectusPermission,
createPermission,
updatePermission,
readPermissions,
createRole,
- DirectusRole,
- DirectusTranslation,
createTranslation,
updateTranslation,
readTranslations,
@@ -24,11 +27,10 @@ import {
createFlow,
updateFlow,
readOperations,
- DirectusOperation,
createOperation,
updateOperation,
} from "@directus/sdk";
-import { DirectusFlowWrapper } from "./schemas";
+import type { DirectusFlowWrapper } from "./schemas";
export async function createOrUpdateDirectusCollection(
collection: NestedPartial>,
@@ -194,7 +196,7 @@ export async function createOrUpdateDirectusRole(
}
const directus = await useDirectusAdmin();
- // @ts-ignore
+ // @ts-expect-error
let roleDb;
try {
diff --git a/collectivo/collectivo/server/utils/extensions.ts b/collectivo/collectivo/server/utils/extensions.ts
index c86e7d77..4d77fc82 100644
--- a/collectivo/collectivo/server/utils/extensions.ts
+++ b/collectivo/collectivo/server/utils/extensions.ts
@@ -1,5 +1,5 @@
// Register extensions into nuxt memory and get registered extensions
-import { ExtensionSchema } from "./schemas";
+import type { ExtensionSchema } from "./schemas";
import { validateStrict, compareVersions } from "compare-versions";
// This object defines an extension
diff --git a/collectivo/collectivo/server/utils/migrations.ts b/collectivo/collectivo/server/utils/migrations.ts
index 722c5938..26c95b0e 100644
--- a/collectivo/collectivo/server/utils/migrations.ts
+++ b/collectivo/collectivo/server/utils/migrations.ts
@@ -1,8 +1,8 @@
import { createItem, readItems, updateItem } from "@directus/sdk";
import SettingsBaseMigration from "../schemas/settings_01";
import ExtensionBaseMigration from "../schemas/extensions_01";
-import { ExtensionConfig } from "./extensions";
-import { ExtensionSchema } from "./schemas";
+import type { ExtensionConfig } from "./extensions";
+import type { ExtensionSchema } from "./schemas";
// Run pending migrations for a set of extensions, based on db state
export async function migrateAll(
diff --git a/collectivo/collectivo/server/utils/schemas.ts b/collectivo/collectivo/server/utils/schemas.ts
index 42e949ff..9e78e83b 100644
--- a/collectivo/collectivo/server/utils/schemas.ts
+++ b/collectivo/collectivo/server/utils/schemas.ts
@@ -1,4 +1,4 @@
-import {
+import type {
DirectusFlow,
DirectusOperation,
DirectusPermission,
@@ -101,8 +101,9 @@ export class ExtensionSchema {
createNuxtHook = async (
trigger: NestedPartial>,
path: string,
+ method?: string,
) => {
- createNuxtHook(this, trigger, path);
+ createNuxtHook(this, trigger, path, method);
};
apply = async () => {
@@ -399,7 +400,7 @@ export async function createM2ARelation(
one_field: null,
sort_field: null,
one_deselect_action: "nullify",
- // @ts-ignore
+ // @ts-expect-error
one_allowed_collections: ACollections,
one_collection_field: "collection",
junction_field: m2aCollectionIdFieldName,
@@ -424,6 +425,7 @@ async function createNuxtHook(
schema: ExtensionSchema,
trigger: NestedPartial>,
path: string,
+ method?: string,
) {
schema.flows.push({
flow: trigger,
@@ -437,7 +439,7 @@ async function createNuxtHook(
key: "postToNuxtAPI",
type: "request",
options: {
- method: "POST",
+ method: method ?? "POST",
url: "{{$env.COLLECTIVO_API_URL}}/" + path,
headers: [
{
diff --git a/collectivo/extensions/memberships/.eslintrc.cjs b/collectivo/extensions/memberships/.eslintrc.cjs
deleted file mode 100644
index fcd587f4..00000000
--- a/collectivo/extensions/memberships/.eslintrc.cjs
+++ /dev/null
@@ -1,152 +0,0 @@
-const basicRules = {
- // No console & debugger statements in production
- "no-console": process.env.NODE_ENV !== "development" ? "error" : "off",
- "no-debugger": process.env.NODE_ENV !== "development" ? "error" : "off",
- // Require empty line between certain statements
- "padding-line-between-statements": [
- "error",
- {
- blankLine: "always",
- prev: [
- "block",
- "block-like",
- "cjs-export",
- "class",
- "export",
- "import",
- "multiline-block-like",
- "multiline-const",
- "multiline-expression",
- "multiline-let",
- "multiline-var",
- ],
- next: "*",
- },
- {
- blankLine: "always",
- prev: ["const", "let"],
- next: ["block", "block-like", "cjs-export", "class", "export", "import"],
- },
- {
- blankLine: "always",
- prev: "*",
- next: [
- "multiline-block-like",
- "multiline-const",
- "multiline-expression",
- "multiline-let",
- "multiline-var",
- ],
- },
- {
- blankLine: "any",
- prev: ["export", "import"],
- next: ["export", "import"],
- },
- ],
- // Require empty line between class members
- "lines-between-class-members": [
- "error",
- "always",
- { exceptAfterSingleLine: true },
- ],
- // Disallow nested ternary expressions
- "no-nested-ternary": "error",
- // Require brace style for multi-line control statements
- curly: ["error", "multi-line"],
-};
-
-const tsRules = {
- // Allow unused arguments and variables when they begin with an underscore
- "@typescript-eslint/no-unused-vars": [
- "warn",
- { argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
- ],
- // Allow ts-directive comments (used to suppress TypeScript compiler errors)
- "@typescript-eslint/ban-ts-comment": "off",
- // Allow usage of the any type (consider enabling this rule later on)
- "@typescript-eslint/no-explicit-any": "warn",
-
- // Allow console log statements in development
- // "no-console": process.env.NODE_ENV !== "development" ? "error" : "off",
- "no-console": [
- "warn",
- {
- allow: ["info", "warn", "error"],
- },
- ],
-};
-
-const vueRules = {
- // Same ordering of component tags everywhere
- "vue/component-tags-order": [
- "error",
- {
- order: ["script", "template", "style"],
- },
- ],
- // Require empty line between component tags
- "vue/padding-line-between-blocks": "error",
- // Allow single word component names ("Example" instead of "MyExample")
- "vue/multi-word-component-names": "off",
- // Don't require default value for props that are not marked as required
- "vue/require-default-prop": "off",
- // Require shorthand form attribute when v-bind value is true
- "vue/prefer-true-attribute-shorthand": "error",
-};
-
-const getExtends = (configs = []) => [
- // Enables a subset of core rules that report common problems
- "eslint:recommended",
- ...configs,
- // Turns off rules from other configs that are
- // unnecessary or might conflict with Prettier
- // (should always be the last entry in 'extends')
- "prettier",
-];
-
-/** @type {import('eslint').Linter.Config} */
-module.exports = {
- // Stop looking for other ESLint configurations in parent folders
- root: true,
- // Global variables: Browser and Node.js
- env: {
- browser: true,
- node: true,
- },
- // Basic configuration
- extends: getExtends(),
- rules: basicRules,
- parserOptions: {
- ecmaVersion: 2022,
- sourceType: "module",
- },
- reportUnusedDisableDirectives: true,
- overrides: [
- // TypeScript & Vue files
- {
- files: ["*.ts", "*.vue"],
- parser: "vue-eslint-parser",
- parserOptions: {
- parser: "@typescript-eslint/parser",
- },
- plugins: ["@typescript-eslint"],
- extends: getExtends([
- // Recommended TypeScript rules for code correctness
- "plugin:@typescript-eslint/recommended",
- // Enables Vue plugin and recommended rules
- "plugin:vue/vue3-recommended",
- ]),
- rules: {
- // Disables core rules which are already handled by TypeScript and
- // enables rules that make sense due to TS's typechecking / transpilation
- // (fetched directly to enable it for Vue files too)
- ...require("@typescript-eslint/eslint-plugin").configs[
- "eslint-recommended"
- ].overrides[0].rules,
- ...tsRules,
- ...vueRules,
- },
- },
- ],
-};
diff --git a/collectivo/extensions/memberships/composables/registrationForm.ts b/collectivo/extensions/memberships/composables/registrationForm.ts
index e4a98c20..eb566ce6 100644
--- a/collectivo/extensions/memberships/composables/registrationForm.ts
+++ b/collectivo/extensions/memberships/composables/registrationForm.ts
@@ -1,14 +1,6 @@
-const is_legal = [
+const is_not_authenticated: CollectivoFormCondition[] = [
{
- key: "directus_users.memberships_person_type",
- value: "legal",
- },
-];
-
-const is_natural = [
- {
- key: "directus_users.memberships_person_type",
- value: "natural",
+ type: "notAuthenticated",
},
];
@@ -19,7 +11,6 @@ export const useMembershipsRegistrationForm = () =>
submitMode: "postNuxt",
submitPath: "/api/memberships/register",
successTitle: "Application submitted!",
- successText: "t:memberships_form_success_text",
fields: [
{
type: "section",
@@ -28,218 +19,29 @@ export const useMembershipsRegistrationForm = () =>
title: "Welcome!",
description: "t:memberships_form_intro",
},
- // TODO
- // section_person_type: {
- // type: "section",
- // order: 100,
- // title: "Type of person",
- // },
- // "directus_users.memberships_person_type": {
- // type: "select-radio",
- // label: "t:memberships_form_ptype",
- // default: "natural",
- // order: 110,
- // required: true,
- // choices: [
- // {
- // value: "natural",
- // label: "an individual",
- // },
- // {
- // value: "legal",
- // label: "an organization",
- // },
- // ],
- // },
- // section_account: {
- // type: "section",
- // order: 200,
- // title: "User account",
- // },
- // "directus_users.email": {
- // label: "Email",
- // type: "email",
- // order: 210,
- // required: true,
- // icon: "i-mi-mail",
- // },
- // "directus_users.password": {
- // label: "Password",
- // type: "password",
- // order: 220,
- // required: true,
- // icon: "i-mi-lock",
- // },
- // section_organization: {
- // type: "section",
- // title: "Organization",
- // order: 300,
- // conditions: is_legal,
- // },
- // "directus_users.memberships_organization_name": {
- // label: "Organization name",
- // type: "text",
- // order: 310,
- // required: true,
- // conditions: is_legal,
- // },
- // "directus_users.memberships_organization_type": {
- // label: "Organization type",
- // type: "text",
- // order: 320,
- // required: true,
- // conditions: is_legal,
- // },
- // "directus_users.memberships_organization_id": {
- // label: "Organization ID",
- // type: "text",
- // order: 330,
- // required: true,
- // conditions: is_legal,
- // },
- // section_personal_data: {
- // type: "section",
- // order: 400,
- // title: "Personal data",
- // conditions: is_natural,
- // },
- // section_personal_data_legal: {
- // type: "section",
- // order: 401,
- // title: "Organization Contact person",
- // conditions: is_legal,
- // },
- // "directus_users.first_name": {
- // type: "text",
- // order: 410,
- // required: true,
- // label: "First name",
- // },
- // "directus_users.last_name": {
- // type: "text",
- // order: 420,
- // required: true,
- // label: "Last name",
- // },
- // "directus_users.memberships_gender": {
- // type: "select",
- // order: 430,
- // label: "Gender",
- // required: true,
- // default: "diverse",
- // choices: [
- // {
- // value: "diverse",
- // label: "Diverse",
- // },
- // {
- // value: "female",
- // label: "Female",
- // },
- // {
- // value: "male",
- // label: "Male",
- // },
- // ],
- // },
- // "directus_users.memberships_phone": {
- // type: "text",
- // order: 440,
- // label: "Phone",
- // icon: "i-mi-call",
- // },
- // "directus_users.memberships_birthday": {
- // label: "Birthday",
- // type: "date",
- // order: 450,
- // default: "2000-01-01",
- // required: true,
- // conditions: is_natural,
- // },
- // "directus_users.memberships_occupation": {
- // label: "Occupation",
- // type: "text",
- // order: 460,
- // required: true,
- // conditions: is_natural,
- // },
- // section_address: {
- // type: "section",
- // order: 500,
- // title: "Address",
- // conditions: is_natural,
- // },
- // section_address_legal: {
- // type: "section",
- // order: 501,
- // title: "Organization Address",
- // conditions: is_legal,
- // },
- // "directus_users.memberships_street": {
- // label: "Street",
- // type: "text",
- // order: 510,
- // required: true,
- // },
- // "directus_users.memberships_streetnumber": {
- // label: "Number",
- // type: "text",
- // order: 511,
- // width: "xs",
- // required: true,
- // },
- // "directus_users.memberships_stair": {
- // label: "Stair",
- // type: "text",
- // order: 512,
- // width: "xs",
- // },
- // "directus_users.memberships_door": {
- // label: "Door",
- // type: "text",
- // order: 513,
- // width: "xs",
- // },
- // "directus_users.memberships_postcode": {
- // label: "Postcode",
- // type: "text",
- // order: 514,
- // width: "xs",
- // required: true,
- // },
- // "directus_users.memberships_city": {
- // label: "City",
- // type: "text",
- // order: 515,
- // required: true,
- // },
- // "directus_users.memberships_country": {
- // label: "Country",
- // type: "text",
- // order: 516,
- // required: true,
- // },
- // section_membership: {
- // type: "section",
- // order: 600,
- // title: "Type of membership",
- // },
- // "memberships.memberships_type": {
- // type: "select-radio",
- // label: "t:memberships_form_mtype",
- // required: true,
- // width: "full",
- // order: 610,
- // choices: [
- // {
- // value: "active",
- // label: "Active",
- // },
- // {
- // value: "investing",
- // label: "Investing",
- // },
- // ],
- // },
+ {
+ type: "section",
+ order: 200,
+ title: "User account",
+ conditions: is_not_authenticated,
+ },
+ {
+ key: "directus_users__email",
+ label: "Email",
+ type: "email",
+ order: 210,
+ required: true,
+ icon: "i-mi-mail",
+ conditions: is_not_authenticated,
+ },
+ {
+ label: "Password",
+ key: "directus_users__password",
+ type: "password",
+ order: 220,
+ required: true,
+ icon: "i-mi-lock",
+ conditions: is_not_authenticated,
+ },
],
}));
diff --git a/collectivo/extensions/memberships/eslint.config.mjs b/collectivo/extensions/memberships/eslint.config.mjs
new file mode 100644
index 00000000..3f0007d0
--- /dev/null
+++ b/collectivo/extensions/memberships/eslint.config.mjs
@@ -0,0 +1,10 @@
+import withNuxt from "./.nuxt/eslint.config.mjs";
+
+export default withNuxt({
+ rules: {
+ "@typescript-eslint/no-explicit-any": "warn",
+ "@typescript-eslint/ban-ts-comment": "warn",
+ "@typescript-eslint/no-unused-vars": "warn",
+ "vue/no-multiple-template-root": "warn",
+ },
+});
diff --git a/collectivo/extensions/memberships/package.json b/collectivo/extensions/memberships/package.json
index 56741f48..5125dfb0 100644
--- a/collectivo/extensions/memberships/package.json
+++ b/collectivo/extensions/memberships/package.json
@@ -1,6 +1,6 @@
{
"name": "@collectivo/memberships",
- "version": "0.2.5",
+ "version": "0.2.8",
"description": "An extension of collectivo to manage memberships.",
"type": "module",
"license": "AGPL-3.0",
@@ -23,14 +23,10 @@
"@collectivo/memberships": "workspace:*"
},
"devDependencies": {
- "@nuxt/devtools": "^1.0.8",
- "@nuxt/test-utils": "^3.11.0",
- "@typescript-eslint/eslint-plugin": "6.21.0",
- "@typescript-eslint/parser": "6.21.0",
- "eslint": "8.56.0",
- "eslint-config-prettier": "9.1.0",
- "eslint-plugin-vue": "9.21.1",
- "nuxt": "^3.10.1",
+ "@nuxt/devtools": "^1.3.1",
+ "@nuxt/test-utils": "^3.12.1",
+ "eslint": "9.2.0",
+ "nuxt": "^3.11.2",
"prettier": "3.2.5"
}
}
diff --git a/collectivo/extensions/memberships/server/api/memberships/register.post.ts b/collectivo/extensions/memberships/server/api/memberships/register.post.ts
index 4c05ac0d..d24b562d 100644
--- a/collectivo/extensions/memberships/server/api/memberships/register.post.ts
+++ b/collectivo/extensions/memberships/server/api/memberships/register.post.ts
@@ -6,8 +6,11 @@ import {
readUsers,
deleteUser,
deleteItem,
+ createDirectus,
+ readMe,
+ withToken,
+ rest,
} from "@directus/sdk";
-import { createDirectus, readMe, withToken, rest } from "@directus/sdk";
import KcAdminClient from "@keycloak/keycloak-admin-client";
async function getUserID(event: any) {
@@ -16,10 +19,12 @@ async function getUserID(event: any) {
const directusUser = createDirectus(config.public.directusUrl).with(rest());
if (token) {
+ const tokenValue = token.split("directus_session_token=")[1].split(";")[0];
+
try {
const user = await directusUser.request(
withToken(
- token.replace("directus_session_token=", ""),
+ tokenValue,
readMe({
fields: ["id", "email"],
}),
@@ -29,6 +34,7 @@ async function getUserID(event: any) {
console.log("Existing user: " + user.email);
return user.id;
} catch (e) {
+ console.log("Unauthenticated");
return undefined;
}
}
@@ -166,10 +172,6 @@ async function registerMembership(body: any, userID: string | undefined) {
statusMessage: "User already exists (Keycloak)",
});
}
-
- delete userData.password;
- userData.provider = "keycloak";
- userData.external_identifier = userData.email;
}
}
@@ -209,42 +211,6 @@ async function registerMembership(body: any, userID: string | undefined) {
console.log("Membership created: " + membership.id);
- // Create keycloak user & set password
- if (!isAuthenticated && config.public.authService == "keycloak") {
- let kcUser = undefined;
-
- try {
- kcUser = await keycloak.users.create({
- enabled: true,
- username: userData.email,
- email: userData.email,
- firstName: userData.first_name,
- lastName: userData.last_name,
- emailVerified: false,
- });
- } catch (e) {
- await directus.request(deleteItem("memberships", membership.id));
- await directus.request(deleteUser(userID!));
- throw e;
- }
-
- try {
- await keycloak.users.resetPassword({
- id: kcUser.id,
- credential: {
- temporary: false,
- type: "password",
- value: user_password,
- },
- });
- } catch (e) {
- await directus.request(deleteItem("memberships", membership.id));
- await directus.request(deleteUser(userID!));
- await keycloak.users.del({ id: kcUser.id });
- throw e;
- }
- }
-
return {
status: 201,
body: {
diff --git a/collectivo/extensions/memberships/server/schemas/profile_01.ts b/collectivo/extensions/memberships/server/schemas/profile_01.ts
index d746ad9b..bcdd1956 100644
--- a/collectivo/extensions/memberships/server/schemas/profile_01.ts
+++ b/collectivo/extensions/memberships/server/schemas/profile_01.ts
@@ -35,7 +35,7 @@ schema.fields = [
{ language: "en-US", translation: "Organization" },
],
conditions: [
- // @ts-ignore
+ // @ts-expect-error
{
name: "Hide if not organization",
rule: { _and: [{ memberships_is_organization: { _eq: false } }] },
diff --git a/collectivo/extensions/payments/.eslintrc.cjs b/collectivo/extensions/payments/.eslintrc.cjs
deleted file mode 100644
index fcd587f4..00000000
--- a/collectivo/extensions/payments/.eslintrc.cjs
+++ /dev/null
@@ -1,152 +0,0 @@
-const basicRules = {
- // No console & debugger statements in production
- "no-console": process.env.NODE_ENV !== "development" ? "error" : "off",
- "no-debugger": process.env.NODE_ENV !== "development" ? "error" : "off",
- // Require empty line between certain statements
- "padding-line-between-statements": [
- "error",
- {
- blankLine: "always",
- prev: [
- "block",
- "block-like",
- "cjs-export",
- "class",
- "export",
- "import",
- "multiline-block-like",
- "multiline-const",
- "multiline-expression",
- "multiline-let",
- "multiline-var",
- ],
- next: "*",
- },
- {
- blankLine: "always",
- prev: ["const", "let"],
- next: ["block", "block-like", "cjs-export", "class", "export", "import"],
- },
- {
- blankLine: "always",
- prev: "*",
- next: [
- "multiline-block-like",
- "multiline-const",
- "multiline-expression",
- "multiline-let",
- "multiline-var",
- ],
- },
- {
- blankLine: "any",
- prev: ["export", "import"],
- next: ["export", "import"],
- },
- ],
- // Require empty line between class members
- "lines-between-class-members": [
- "error",
- "always",
- { exceptAfterSingleLine: true },
- ],
- // Disallow nested ternary expressions
- "no-nested-ternary": "error",
- // Require brace style for multi-line control statements
- curly: ["error", "multi-line"],
-};
-
-const tsRules = {
- // Allow unused arguments and variables when they begin with an underscore
- "@typescript-eslint/no-unused-vars": [
- "warn",
- { argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
- ],
- // Allow ts-directive comments (used to suppress TypeScript compiler errors)
- "@typescript-eslint/ban-ts-comment": "off",
- // Allow usage of the any type (consider enabling this rule later on)
- "@typescript-eslint/no-explicit-any": "warn",
-
- // Allow console log statements in development
- // "no-console": process.env.NODE_ENV !== "development" ? "error" : "off",
- "no-console": [
- "warn",
- {
- allow: ["info", "warn", "error"],
- },
- ],
-};
-
-const vueRules = {
- // Same ordering of component tags everywhere
- "vue/component-tags-order": [
- "error",
- {
- order: ["script", "template", "style"],
- },
- ],
- // Require empty line between component tags
- "vue/padding-line-between-blocks": "error",
- // Allow single word component names ("Example" instead of "MyExample")
- "vue/multi-word-component-names": "off",
- // Don't require default value for props that are not marked as required
- "vue/require-default-prop": "off",
- // Require shorthand form attribute when v-bind value is true
- "vue/prefer-true-attribute-shorthand": "error",
-};
-
-const getExtends = (configs = []) => [
- // Enables a subset of core rules that report common problems
- "eslint:recommended",
- ...configs,
- // Turns off rules from other configs that are
- // unnecessary or might conflict with Prettier
- // (should always be the last entry in 'extends')
- "prettier",
-];
-
-/** @type {import('eslint').Linter.Config} */
-module.exports = {
- // Stop looking for other ESLint configurations in parent folders
- root: true,
- // Global variables: Browser and Node.js
- env: {
- browser: true,
- node: true,
- },
- // Basic configuration
- extends: getExtends(),
- rules: basicRules,
- parserOptions: {
- ecmaVersion: 2022,
- sourceType: "module",
- },
- reportUnusedDisableDirectives: true,
- overrides: [
- // TypeScript & Vue files
- {
- files: ["*.ts", "*.vue"],
- parser: "vue-eslint-parser",
- parserOptions: {
- parser: "@typescript-eslint/parser",
- },
- plugins: ["@typescript-eslint"],
- extends: getExtends([
- // Recommended TypeScript rules for code correctness
- "plugin:@typescript-eslint/recommended",
- // Enables Vue plugin and recommended rules
- "plugin:vue/vue3-recommended",
- ]),
- rules: {
- // Disables core rules which are already handled by TypeScript and
- // enables rules that make sense due to TS's typechecking / transpilation
- // (fetched directly to enable it for Vue files too)
- ...require("@typescript-eslint/eslint-plugin").configs[
- "eslint-recommended"
- ].overrides[0].rules,
- ...tsRules,
- ...vueRules,
- },
- },
- ],
-};
diff --git a/collectivo/extensions/payments/eslint.config.mjs b/collectivo/extensions/payments/eslint.config.mjs
new file mode 100644
index 00000000..3f0007d0
--- /dev/null
+++ b/collectivo/extensions/payments/eslint.config.mjs
@@ -0,0 +1,10 @@
+import withNuxt from "./.nuxt/eslint.config.mjs";
+
+export default withNuxt({
+ rules: {
+ "@typescript-eslint/no-explicit-any": "warn",
+ "@typescript-eslint/ban-ts-comment": "warn",
+ "@typescript-eslint/no-unused-vars": "warn",
+ "vue/no-multiple-template-root": "warn",
+ },
+});
diff --git a/collectivo/extensions/payments/package.json b/collectivo/extensions/payments/package.json
index 4c048162..6860c49c 100644
--- a/collectivo/extensions/payments/package.json
+++ b/collectivo/extensions/payments/package.json
@@ -1,6 +1,6 @@
{
"name": "@collectivo/payments",
- "version": "0.2.1",
+ "version": "0.2.3",
"description": "An extension of collectivo to manage payments.",
"type": "module",
"license": "AGPL-3.0",
@@ -20,17 +20,13 @@
},
"dependencies": {
"@collectivo/collectivo": "workspace:*",
- "ibantools": "^4.3.9"
+ "ibantools": "^4.5.1"
},
"devDependencies": {
- "@nuxt/devtools": "^1.0.8",
- "@nuxt/test-utils": "^3.11.0",
- "@typescript-eslint/eslint-plugin": "6.21.0",
- "@typescript-eslint/parser": "6.21.0",
- "eslint": "8.56.0",
- "eslint-config-prettier": "9.1.0",
- "eslint-plugin-vue": "9.21.1",
- "nuxt": "^3.10.1",
+ "@nuxt/devtools": "^1.3.1",
+ "@nuxt/test-utils": "^3.12.1",
+ "eslint": "9.2.0",
+ "nuxt": "^3.11.2",
"prettier": "3.2.5"
}
}
diff --git a/collectivo/extensions/payments/plugins/setup.ts b/collectivo/extensions/payments/plugins/setup.ts
index aacca3be..7573e320 100644
--- a/collectivo/extensions/payments/plugins/setup.ts
+++ b/collectivo/extensions/payments/plugins/setup.ts
@@ -39,14 +39,10 @@ const europeanIBAN = [
];
export default defineNuxtPlugin({
- name: "memberships-setup",
+ name: "payments-setup",
async setup() {
- const menu = useCollectivoMenus();
const user = useCollectivoUser();
const validators = useCollectivoValidators();
- const publicItems: CollectivoMenuItem[] = [];
-
- menu.value.main_public.push(...publicItems);
validators.value.tests.payments_iban_sepa = {
message: "IBAN not valid for SEPA",
diff --git a/docker-compose.yml b/docker-compose.yml
index 0c5eaa83..ff8cd8a2 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,7 +2,7 @@ version: "3"
services:
directus:
- image: directus/directus:10.10.4
+ image: directus/directus:10.10.7
ports:
- 8055:8055
volumes:
@@ -40,6 +40,7 @@ services:
REDIS: "redis://directus-cache:6379"
AUTH_PROVIDERS: "keycloak"
+ AUTH_KEYCLOAK_MODE: "session"
AUTH_KEYCLOAK_DRIVER: "openid"
AUTH_KEYCLOAK_CLIENT_ID: ${KEYCLOAK_DIRECTUS_CLIENT}
AUTH_KEYCLOAK_CLIENT_SECRET: ${KEYCLOAK_DIRECTUS_SECRET}
@@ -47,6 +48,7 @@ services:
AUTH_KEYCLOAK_IDENTIFIER_KEY: "email"
AUTH_KEYCLOAK_ALLOW_PUBLIC_REGISTRATION: "true"
+ SESSION_COOKIE_DOMAIN: "${SHARED_DOMAIN}"
SESSION_COOKIE_SECURE: "false"
SESSION_COOKIE_SAME_SITE: "lax"
diff --git a/keycloak/import/collectivo-realm.json b/keycloak/import/collectivo-realm.json
index c6290f7d..ed59ace4 100644
--- a/keycloak/import/collectivo-realm.json
+++ b/keycloak/import/collectivo-realm.json
@@ -833,7 +833,7 @@
"frontchannelLogout": true,
"protocol": "openid-connect",
"attributes": {
- "post.logout.redirect.uris": "http://localhost:3000/",
+ "post.logout.redirect.uris": "http://localhost:3000/*",
"oauth2.device.authorization.grant.enabled": "false",
"backchannel.logout.revoke.offline.tokens": "false",
"use.refresh.tokens": "true",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 43ef3715..60b0f55b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -25,26 +25,26 @@ importers:
version: link:../extensions/payments
devDependencies:
'@nuxt/devtools':
- specifier: ^1.0.8
- version: 1.0.8(nuxt@3.10.1)(vite@5.1.1)
+ specifier: ^1.3.1
+ version: 1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
'@typescript-eslint/eslint-plugin':
- specifier: 6.21.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.56.0)(typescript@5.3.3)
+ specifier: 7.8.0
+ version: 7.8.0(@typescript-eslint/parser@7.8.0)(eslint@9.2.0)(typescript@5.4.5)
'@typescript-eslint/parser':
- specifier: 6.21.0
- version: 6.21.0(eslint@8.56.0)(typescript@5.3.3)
+ specifier: 7.8.0
+ version: 7.8.0(eslint@9.2.0)(typescript@5.4.5)
eslint:
- specifier: 8.56.0
- version: 8.56.0
+ specifier: 9.2.0
+ version: 9.2.0
eslint-config-prettier:
specifier: 9.1.0
- version: 9.1.0(eslint@8.56.0)
+ version: 9.1.0(eslint@9.2.0)
eslint-plugin-vue:
- specifier: 9.21.1
- version: 9.21.1(eslint@8.56.0)
+ specifier: 9.26.0
+ version: 9.26.0(eslint@9.2.0)
nuxt:
- specifier: ^3.10.1
- version: 3.10.1(eslint@8.56.0)(typescript@5.3.3)(vite@5.1.1)
+ specifier: ^3.11.2
+ version: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
prettier:
specifier: 3.2.5
version: 3.2.5
@@ -52,11 +52,11 @@ importers:
collectivo/collectivo:
dependencies:
'@directus/sdk':
- specifier: ^15.0.3
- version: 15.0.3
+ specifier: ^16.0.0
+ version: 16.0.0
'@keycloak/keycloak-admin-client':
- specifier: ^23.0.6
- version: 23.0.6
+ specifier: ^24.0.4
+ version: 24.0.4
'@nuxt/ui':
specifier: ^2.13.0
version: 2.13.0(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)(vue@3.4.18)
@@ -66,6 +66,9 @@ importers:
compare-versions:
specifier: ^6.1.0
version: 6.1.0
+ keycloak-js:
+ specifier: ^24.0.4
+ version: 24.0.4
marked:
specifier: ^12.0.0
version: 12.0.0
@@ -74,59 +77,50 @@ importers:
version: 6.9.13
v-calendar:
specifier: ^3.1.2
- version: 3.1.2(@popperjs/core@2.11.8)(vue@3.4.18)
+ version: 3.1.2(@popperjs/core@2.11.8)(vue@3.4.27)
winston:
- specifier: ^3.11.0
- version: 3.11.0
+ specifier: ^3.13.0
+ version: 3.13.0
yup:
- specifier: ^1.3.3
- version: 1.3.3
+ specifier: ^1.4.0
+ version: 1.4.0
devDependencies:
'@iconify/json':
- specifier: ^2.2.181
- version: 2.2.181
+ specifier: ^2.2.208
+ version: 2.2.208
'@nuxt/devtools':
- specifier: ^1.0.8
- version: 1.0.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)
+ specifier: ^1.3.1
+ version: 1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(rollup@4.17.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
+ '@nuxt/eslint':
+ specifier: ^0.3.12
+ version: 0.3.12(eslint@9.2.0)(nuxt@3.11.2)(rollup@4.17.2)(typescript@5.4.5)(vite@5.2.11)
'@nuxt/test-utils':
- specifier: ^3.11.0
- version: 3.11.0(@vitest/ui@1.2.2)(h3@1.10.1)(rollup@4.9.6)(vite@5.1.1)(vitest@1.2.2)(vue-router@4.2.5)(vue@3.4.18)
+ specifier: ^3.12.1
+ version: 3.12.1(@vitest/ui@1.6.0)(h3@1.11.1)(rollup@4.17.2)(vite@5.2.11)(vitest@1.6.0)(vue-router@4.3.2)(vue@3.4.27)
'@nuxtjs/google-fonts':
- specifier: ^3.1.3
- version: 3.1.3(rollup@4.9.6)
+ specifier: ^3.2.0
+ version: 3.2.0(rollup@4.17.2)
'@nuxtjs/i18n':
- specifier: 8.1.0
- version: 8.1.0(rollup@4.9.6)(vue@3.4.18)
- '@typescript-eslint/eslint-plugin':
- specifier: 6.21.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/parser':
- specifier: 6.21.0
- version: 6.21.0(eslint@8.56.0)(typescript@5.3.3)
+ specifier: 8.3.1
+ version: 8.3.1(rollup@4.17.2)(vue@3.4.27)
'@vitest/ui':
- specifier: ^1.2.2
- version: 1.2.2(vitest@1.2.2)
+ specifier: ^1.6.0
+ version: 1.6.0(vitest@1.6.0)
eslint:
- specifier: 8.56.0
- version: 8.56.0
- eslint-config-prettier:
- specifier: 9.1.0
- version: 9.1.0(eslint@8.56.0)
- eslint-plugin-vue:
- specifier: 9.21.1
- version: 9.21.1(eslint@8.56.0)
+ specifier: 9.2.0
+ version: 9.2.0
nuxt:
- specifier: ^3.10.1
- version: 3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vite@5.1.1)
+ specifier: ^3.11.2
+ version: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.0)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
prettier:
specifier: 3.2.5
version: 3.2.5
sass:
- specifier: ^1.70.0
- version: 1.70.0
+ specifier: ^1.77.0
+ version: 1.77.0
vitest:
- specifier: ^1.2.2
- version: 1.2.2(@vitest/ui@1.2.2)(sass@1.70.0)
+ specifier: ^1.6.0
+ version: 1.6.0(@vitest/ui@1.6.0)(sass@1.77.0)
collectivo/extensions/memberships:
dependencies:
@@ -138,29 +132,17 @@ importers:
version: 'link:'
devDependencies:
'@nuxt/devtools':
- specifier: ^1.0.8
- version: 1.0.8(nuxt@3.10.1)(vite@5.1.1)
+ specifier: ^1.3.1
+ version: 1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
'@nuxt/test-utils':
- specifier: ^3.11.0
- version: 3.11.0(h3@1.10.1)(vite@5.1.1)(vue-router@4.2.5)(vue@3.4.18)
- '@typescript-eslint/eslint-plugin':
- specifier: 6.21.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/parser':
- specifier: 6.21.0
- version: 6.21.0(eslint@8.56.0)(typescript@5.3.3)
+ specifier: ^3.12.1
+ version: 3.12.1(h3@1.11.1)(vite@5.2.11)(vue-router@4.3.2)(vue@3.4.27)
eslint:
- specifier: 8.56.0
- version: 8.56.0
- eslint-config-prettier:
- specifier: 9.1.0
- version: 9.1.0(eslint@8.56.0)
- eslint-plugin-vue:
- specifier: 9.21.1
- version: 9.21.1(eslint@8.56.0)
+ specifier: 9.2.0
+ version: 9.2.0
nuxt:
- specifier: ^3.10.1
- version: 3.10.1(eslint@8.56.0)(typescript@5.3.3)(vite@5.1.1)
+ specifier: ^3.11.2
+ version: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
prettier:
specifier: 3.2.5
version: 3.2.5
@@ -171,90 +153,82 @@ importers:
specifier: workspace:*
version: link:../../collectivo
ibantools:
- specifier: ^4.3.9
- version: 4.3.9
+ specifier: ^4.5.1
+ version: 4.5.1
devDependencies:
'@nuxt/devtools':
- specifier: ^1.0.8
- version: 1.0.8(nuxt@3.10.1)(vite@5.1.1)
+ specifier: ^1.3.1
+ version: 1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
'@nuxt/test-utils':
- specifier: ^3.11.0
- version: 3.11.0(h3@1.10.1)(vite@5.1.1)(vue-router@4.2.5)(vue@3.4.18)
- '@typescript-eslint/eslint-plugin':
- specifier: 6.21.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/parser':
- specifier: 6.21.0
- version: 6.21.0(eslint@8.56.0)(typescript@5.3.3)
+ specifier: ^3.12.1
+ version: 3.12.1(h3@1.11.1)(vite@5.2.11)(vue-router@4.3.2)(vue@3.4.27)
eslint:
- specifier: 8.56.0
- version: 8.56.0
- eslint-config-prettier:
- specifier: 9.1.0
- version: 9.1.0(eslint@8.56.0)
- eslint-plugin-vue:
- specifier: 9.21.1
- version: 9.21.1(eslint@8.56.0)
+ specifier: 9.2.0
+ version: 9.2.0
nuxt:
- specifier: ^3.10.1
- version: 3.10.1(eslint@8.56.0)(typescript@5.3.3)(vite@5.1.1)
+ specifier: ^3.11.2
+ version: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
prettier:
specifier: 3.2.5
version: 3.2.5
packages:
- /@aashutoshrathi/word-wrap@1.2.6:
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
dev: false
- /@ampproject/remapping@2.2.1:
- resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
+ /@ampproject/remapping@2.3.0:
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.22
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
/@antfu/install-pkg@0.1.1:
resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
dependencies:
execa: 5.1.1
find-up: 5.0.0
- dev: false
- /@antfu/utils@0.7.7:
- resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
+ /@antfu/utils@0.7.8:
+ resolution: {integrity: sha512-rWQkqXRESdjXtc+7NRfK9lASQjpXJu1ayp7qi1d23zZorY+wBHVLHHoVcMsEnkqEBWTFqbztO7/QdJFzyEcLTg==}
+
+ /@apidevtools/json-schema-ref-parser@11.6.1:
+ resolution: {integrity: sha512-DxjgKBCoyReu4p5HMvpmgSOfRhhBcuf5V5soDDRgOTZMwsA4KSFzol1abFZgiCTE11L2kKGca5Md9GwDdXVBwQ==}
+ engines: {node: '>= 16'}
+ dependencies:
+ '@jsdevtools/ono': 7.1.3
+ '@types/json-schema': 7.0.15
+ js-yaml: 4.1.0
+ dev: true
- /@babel/code-frame@7.23.5:
- resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
+ /@babel/code-frame@7.24.2:
+ resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.23.4
- chalk: 2.4.2
+ '@babel/highlight': 7.24.5
+ picocolors: 1.0.0
- /@babel/compat-data@7.23.5:
- resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
+ /@babel/compat-data@7.24.4:
+ resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
- /@babel/core@7.23.9:
- resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
+ /@babel/core@7.24.5:
+ resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
- '@babel/helpers': 7.23.9
- '@babel/parser': 7.23.9
- '@babel/template': 7.23.9
- '@babel/traverse': 7.23.9
- '@babel/types': 7.23.9
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helpers': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -263,46 +237,46 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.23.6:
- resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
+ /@babel/generator@7.24.5:
+ resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.22
+ '@babel/types': 7.24.5
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
/@babel/helper-compilation-targets@7.23.6:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.23.5
+ '@babel/compat-data': 7.24.4
'@babel/helper-validator-option': 7.23.5
- browserslist: 4.22.3
+ browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.23.10(@babel/core@7.23.9):
- resolution: {integrity: sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==}
+ /@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.9
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-split-export-declaration': 7.24.5
semver: 6.3.1
/@babel/helper-environment-visitor@7.22.20:
@@ -313,228 +287,260 @@ packages:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.23.9
- '@babel/types': 7.23.9
+ '@babel/template': 7.24.0
+ '@babel/types': 7.24.5
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
- /@babel/helper-member-expression-to-functions@7.23.0:
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ /@babel/helper-member-expression-to-functions@7.24.5:
+ resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
+
+ /@babel/helper-module-imports@7.24.3:
+ resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.5
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9):
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ /@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.9
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-simple-access': 7.24.5
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.5
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
- /@babel/helper-plugin-utils@7.22.5:
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ /@babel/helper-plugin-utils@7.24.5:
+ resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9):
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.9
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- /@babel/helper-simple-access@7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ /@babel/helper-simple-access@7.24.5:
+ resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
- /@babel/helper-split-export-declaration@7.22.6:
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ /@babel/helper-split-export-declaration@7.24.5:
+ resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
- /@babel/helper-string-parser@7.23.4:
- resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ /@babel/helper-string-parser@7.24.1:
+ resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.22.20:
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ /@babel/helper-validator-identifier@7.24.5:
+ resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.23.5:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
- /@babel/helpers@7.23.9:
- resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
+ /@babel/helpers@7.24.5:
+ resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.23.9
- '@babel/traverse': 7.23.9
- '@babel/types': 7.23.9
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
transitivePeerDependencies:
- supports-color
- /@babel/highlight@7.23.4:
- resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ /@babel/highlight@7.24.5:
+ resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
chalk: 2.4.2
js-tokens: 4.0.0
+ picocolors: 1.0.0
- /@babel/parser@7.23.9:
- resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
+ /@babel/parser@7.24.5:
+ resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.9
+ '@babel/types': 7.24.5
- /@babel/plugin-proposal-decorators@7.23.9(@babel/core@7.23.9):
- resolution: {integrity: sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==}
+ /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.23.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.9)
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5)
- /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.9):
- resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==}
+ /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.9):
- resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
+ /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9):
- resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.9):
- resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.5
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-simple-access': 7.24.5
- /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.9):
- resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
+ /@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.9
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.10(@babel/core@7.23.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
+
+ /@babel/preset-typescript@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
- /@babel/runtime@7.23.9:
- resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
+ /@babel/runtime@7.24.5:
+ resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
- /@babel/standalone@7.23.10:
- resolution: {integrity: sha512-xqWviI/pt1Zb/d+6ilWa5IDL2mkDzsBnlHbreqnfyP3/QB/ofQ1bNVcHj8YQX154Rf/xZKR6y0s1ydVF3nAS8g==}
+ /@babel/standalone@7.24.5:
+ resolution: {integrity: sha512-Sl8oN9bGfRlNUA2jzfzoHEZxFBDliBlwi5mPVCAWKSlBNkXXJOHpu7SDOqjF6mRoTa6GNX/1kAWG3Tr+YQ3N7A==}
engines: {node: '>=6.9.0'}
- /@babel/template@7.23.9:
- resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
+ /@babel/template@7.24.0:
+ resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.9
- '@babel/types': 7.23.9
+ '@babel/code-frame': 7.24.2
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
- /@babel/traverse@7.23.9:
- resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
+ /@babel/traverse@7.24.5:
+ resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.9
- '@babel/types': 7.23.9
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.23.9:
- resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
+ /@babel/types@7.24.5:
+ resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.23.4
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-string-parser': 7.24.1
+ '@babel/helper-validator-identifier': 7.24.5
to-fast-properties: 2.0.0
- /@cloudflare/kv-asset-handler@0.3.1:
- resolution: {integrity: sha512-lKN2XCfKCmpKb86a1tl4GIwsJYDy9TGuwjhDELLmpKygQhw8X2xR4dusgpC5Tg7q1pB96Eb0rBo81kxSILQMwA==}
+ /@cloudflare/kv-asset-handler@0.3.2:
+ resolution: {integrity: sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==}
+ engines: {node: '>=16.13'}
dependencies:
mime: 3.0.0
@@ -543,38 +549,22 @@ packages:
engines: {node: '>=0.1.90'}
dev: false
- /@csstools/cascade-layer-name-parser@1.0.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3):
- resolution: {integrity: sha512-9J4aMRJ7A2WRjaRLvsMeWrL69FmEuijtiW1XlK/sG+V0UJiHVYUyvj9mY4WAXfU/hGIiGOgL8e0jJcRyaZTjDQ==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- '@csstools/css-parser-algorithms': ^2.5.0
- '@csstools/css-tokenizer': ^2.2.3
- dependencies:
- '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3)
- '@csstools/css-tokenizer': 2.2.3
- dev: false
-
- /@csstools/css-parser-algorithms@2.5.0(@csstools/css-tokenizer@2.2.3):
- resolution: {integrity: sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==}
+ /@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.0.16):
+ resolution: {integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-tokenizer': ^2.2.3
+ postcss-selector-parser: ^6.0.13
dependencies:
- '@csstools/css-tokenizer': 2.2.3
+ postcss-selector-parser: 6.0.16
dev: false
- /@csstools/css-tokenizer@2.2.3:
- resolution: {integrity: sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==}
- engines: {node: ^14 || ^16 || >=18}
- dev: false
-
- /@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.0.15):
- resolution: {integrity: sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==}
+ /@csstools/selector-specificity@3.0.3(postcss-selector-parser@6.0.16):
+ resolution: {integrity: sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss-selector-parser: ^6.0.13
dependencies:
- postcss-selector-parser: 6.0.15
+ postcss-selector-parser: 6.0.16
dev: false
/@dabh/diagnostics@2.0.3:
@@ -585,409 +575,263 @@ packages:
kuler: 2.0.0
dev: false
- /@directus/sdk@15.0.3:
- resolution: {integrity: sha512-Z6n1YaXSMSQuYH6ENG1W4lcpyPgfwRzBpEJOXeknAnJlneLeV/+iNtCB8WxjnH8D73Sv72peRLKMQtr/SZDz7Q==}
+ /@directus/sdk@16.0.0:
+ resolution: {integrity: sha512-DuY32oukjGj24tto27E/2P3z3kwrVtxhM5dqPaVF6GNT50IQVR5g4v+u5nq/6hlrUc8KNispTRFRN/JXRsxV5w==}
engines: {node: '>=18.0.0'}
dependencies:
- '@directus/system-data': 1.0.1
+ '@directus/system-data': 1.0.3
dev: false
- /@directus/system-data@1.0.1:
- resolution: {integrity: sha512-sm2gO9SUcRle5rCsmS4qby2K8OfvewnU9/Iao7brGyexLjXDrvfxBB2danNWVLw1qE+UrLX/R+caVrxQ4ZaMkw==}
+ /@directus/system-data@1.0.3:
+ resolution: {integrity: sha512-Dr7w2RZiX3/+kBOLqz8KkMHXmDhzVVraaK+CLQNgsB1FOxotuegyWfQxTi+YvDhH9gEs8/yZZBKeyQetcTQfSg==}
dev: false
- /@egoist/tailwindcss-icons@1.7.4(tailwindcss@3.4.1):
- resolution: {integrity: sha512-883qx0sqeNb8km7os0w8K6UYue88dbgTWwyEUwW74Bgz0H7t+m7PMIIEvSQ4JqHwA823Qd5ciz+NoTBWKaMYfg==}
+ /@egoist/tailwindcss-icons@1.8.0(tailwindcss@3.4.3):
+ resolution: {integrity: sha512-75LfllKL2lq0sGH+wcpsn/sLtJ0kMkDWmcZTLAB76QLDTmfsFu4QHwZVbtCD2woGyKl9c8KvtOUW9JSjRqOVtA==}
peerDependencies:
tailwindcss: '*'
dependencies:
- '@iconify/utils': 2.1.22
- tailwindcss: 3.4.1
+ '@iconify/utils': 2.1.23
+ tailwindcss: 3.4.3
transitivePeerDependencies:
- supports-color
dev: false
- /@esbuild/aix-ppc64@0.19.12:
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
- requiresBuild: true
- optional: true
+ /@es-joy/jsdoccomment@0.43.0:
+ resolution: {integrity: sha512-Q1CnsQrytI3TlCB1IVWXWeqUIPGVEKGaE7IbVdt13Nq/3i0JESAkQQERrfiQkmlpijl+++qyqPgaS31Bvc1jRQ==}
+ engines: {node: '>=16'}
+ dependencies:
+ '@types/eslint': 8.56.10
+ '@types/estree': 1.0.5
+ '@typescript-eslint/types': 7.8.0
+ comment-parser: 1.4.1
+ esquery: 1.5.0
+ jsdoc-type-pratt-parser: 4.0.0
+ dev: true
- /@esbuild/aix-ppc64@0.20.0:
- resolution: {integrity: sha512-fGFDEctNh0CcSwsiRPxiaqX0P5rq+AqE0SRhYGZ4PX46Lg1FNR6oCxJghf8YgY0WQEgQuh3lErUFE4KxLeRmmw==}
+ /@esbuild/aix-ppc64@0.20.2:
+ resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
requiresBuild: true
optional: true
- /@esbuild/android-arm64@0.19.12:
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/android-arm64@0.20.0:
- resolution: {integrity: sha512-aVpnM4lURNkp0D3qPoAzSG92VXStYmoVPOgXveAUoQBWRSuQzt51yvSju29J6AHPmwY1BjH49uR29oyfH1ra8Q==}
+ /@esbuild/android-arm64@0.20.2:
+ resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.19.12:
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/android-arm@0.20.0:
- resolution: {integrity: sha512-3bMAfInvByLHfJwYPJRlpTeaQA75n8C/QKpEaiS4HrFWFiJlNI0vzq/zCjBrhAYcPyVPG7Eo9dMrcQXuqmNk5g==}
+ /@esbuild/android-arm@0.20.2:
+ resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.19.12:
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/android-x64@0.20.0:
- resolution: {integrity: sha512-uK7wAnlRvjkCPzh8jJ+QejFyrP8ObKuR5cBIsQZ+qbMunwR8sbd8krmMbxTLSrDhiPZaJYKQAU5Y3iMDcZPhyQ==}
+ /@esbuild/android-x64@0.20.2:
+ resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.19.12:
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /@esbuild/darwin-arm64@0.20.0:
- resolution: {integrity: sha512-AjEcivGAlPs3UAcJedMa9qYg9eSfU6FnGHJjT8s346HSKkrcWlYezGE8VaO2xKfvvlZkgAhyvl06OJOxiMgOYQ==}
+ /@esbuild/darwin-arm64@0.20.2:
+ resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.19.12:
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /@esbuild/darwin-x64@0.20.0:
- resolution: {integrity: sha512-bsgTPoyYDnPv8ER0HqnJggXK6RyFy4PH4rtsId0V7Efa90u2+EifxytE9pZnsDgExgkARy24WUQGv9irVbTvIw==}
+ /@esbuild/darwin-x64@0.20.2:
+ resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.19.12:
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/freebsd-arm64@0.20.0:
- resolution: {integrity: sha512-kQ7jYdlKS335mpGbMW5tEe3IrQFIok9r84EM3PXB8qBFJPSc6dpWfrtsC/y1pyrz82xfUIn5ZrnSHQQsd6jebQ==}
+ /@esbuild/freebsd-arm64@0.20.2:
+ resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.19.12:
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/freebsd-x64@0.20.0:
- resolution: {integrity: sha512-uG8B0WSepMRsBNVXAQcHf9+Ko/Tr+XqmK7Ptel9HVmnykupXdS4J7ovSQUIi0tQGIndhbqWLaIL/qO/cWhXKyQ==}
+ /@esbuild/freebsd-x64@0.20.2:
+ resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.19.12:
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-arm64@0.20.0:
- resolution: {integrity: sha512-uTtyYAP5veqi2z9b6Gr0NUoNv9F/rOzI8tOD5jKcCvRUn7T60Bb+42NDBCWNhMjkQzI0qqwXkQGo1SY41G52nw==}
+ /@esbuild/linux-arm64@0.20.2:
+ resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.19.12:
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-arm@0.20.0:
- resolution: {integrity: sha512-2ezuhdiZw8vuHf1HKSf4TIk80naTbP9At7sOqZmdVwvvMyuoDiZB49YZKLsLOfKIr77+I40dWpHVeY5JHpIEIg==}
+ /@esbuild/linux-arm@0.20.2:
+ resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.19.12:
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-ia32@0.20.0:
- resolution: {integrity: sha512-c88wwtfs8tTffPaoJ+SQn3y+lKtgTzyjkD8NgsyCtCmtoIC8RDL7PrJU05an/e9VuAke6eJqGkoMhJK1RY6z4w==}
+ /@esbuild/linux-ia32@0.20.2:
+ resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.19.12:
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-loong64@0.20.0:
- resolution: {integrity: sha512-lR2rr/128/6svngnVta6JN4gxSXle/yZEZL3o4XZ6esOqhyR4wsKyfu6qXAL04S4S5CgGfG+GYZnjFd4YiG3Aw==}
+ /@esbuild/linux-loong64@0.20.2:
+ resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.19.12:
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-mips64el@0.20.0:
- resolution: {integrity: sha512-9Sycc+1uUsDnJCelDf6ZNqgZQoK1mJvFtqf2MUz4ujTxGhvCWw+4chYfDLPepMEvVL9PDwn6HrXad5yOrNzIsQ==}
+ /@esbuild/linux-mips64el@0.20.2:
+ resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.19.12:
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-ppc64@0.20.0:
- resolution: {integrity: sha512-CoWSaaAXOZd+CjbUTdXIJE/t7Oz+4g90A3VBCHLbfuc5yUQU/nFDLOzQsN0cdxgXd97lYW/psIIBdjzQIwTBGw==}
+ /@esbuild/linux-ppc64@0.20.2:
+ resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.19.12:
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-riscv64@0.20.0:
- resolution: {integrity: sha512-mlb1hg/eYRJUpv8h/x+4ShgoNLL8wgZ64SUr26KwglTYnwAWjkhR2GpoKftDbPOCnodA9t4Y/b68H4J9XmmPzA==}
+ /@esbuild/linux-riscv64@0.20.2:
+ resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.19.12:
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-s390x@0.20.0:
- resolution: {integrity: sha512-fgf9ubb53xSnOBqyvWEY6ukBNRl1mVX1srPNu06B6mNsNK20JfH6xV6jECzrQ69/VMiTLvHMicQR/PgTOgqJUQ==}
+ /@esbuild/linux-s390x@0.20.2:
+ resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.19.12:
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-x64@0.20.0:
- resolution: {integrity: sha512-H9Eu6MGse++204XZcYsse1yFHmRXEWgadk2N58O/xd50P9EvFMLJTQLg+lB4E1cF2xhLZU5luSWtGTb0l9UeSg==}
+ /@esbuild/linux-x64@0.20.2:
+ resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.19.12:
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/netbsd-x64@0.20.0:
- resolution: {integrity: sha512-lCT675rTN1v8Fo+RGrE5KjSnfY0x9Og4RN7t7lVrN3vMSjy34/+3na0q7RIfWDAj0e0rCh0OL+P88lu3Rt21MQ==}
+ /@esbuild/netbsd-x64@0.20.2:
+ resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.19.12:
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/openbsd-x64@0.20.0:
- resolution: {integrity: sha512-HKoUGXz/TOVXKQ+67NhxyHv+aDSZf44QpWLa3I1lLvAwGq8x1k0T+e2HHSRvxWhfJrFxaaqre1+YyzQ99KixoA==}
+ /@esbuild/openbsd-x64@0.20.2:
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.19.12:
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
-
- /@esbuild/sunos-x64@0.20.0:
- resolution: {integrity: sha512-GDwAqgHQm1mVoPppGsoq4WJwT3vhnz/2N62CzhvApFD1eJyTroob30FPpOZabN+FgCjhG+AgcZyOPIkR8dfD7g==}
+ /@esbuild/sunos-x64@0.20.2:
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.19.12:
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /@esbuild/win32-arm64@0.20.0:
- resolution: {integrity: sha512-0vYsP8aC4TvMlOQYozoksiaxjlvUcQrac+muDqj1Fxy6jh9l9CZJzj7zmh8JGfiV49cYLTorFLxg7593pGldwQ==}
+ /@esbuild/win32-arm64@0.20.2:
+ resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.19.12:
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /@esbuild/win32-ia32@0.20.0:
- resolution: {integrity: sha512-p98u4rIgfh4gdpV00IqknBD5pC84LCub+4a3MO+zjqvU5MVXOc3hqR2UgT2jI2nh3h8s9EQxmOsVI3tyzv1iFg==}
+ /@esbuild/win32-ia32@0.20.2:
+ resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.19.12:
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /@esbuild/win32-x64@0.20.0:
- resolution: {integrity: sha512-NgJnesu1RtWihtTtXGFMU5YSE6JyyHPMxCwBZK7a6/8d31GuSo9l0Ss7w1Jw5QnKUawG6UEehs883kcXf5fYwg==}
+ /@esbuild/win32-x64@0.20.2:
+ resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@9.2.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.56.0
+ eslint: 9.2.0
eslint-visitor-keys: 3.4.3
/@eslint-community/regexpp@4.10.0:
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ /@eslint/config-inspector@0.4.8(eslint@9.2.0):
+ resolution: {integrity: sha512-gzsz5b4HII4l7JcbUlu4HPBojLOfsJG31hJqUdxD4Eg9tHZLOQ24+/qruzzGNjgaLWA7I9wINPkceNHfFsvgAQ==}
+ hasBin: true
+ peerDependencies:
+ eslint: ^8.50.0 || ^9.0.0
+ dependencies:
+ bundle-require: 4.1.0(esbuild@0.20.2)
+ cac: 6.7.14
+ chokidar: 3.6.0
+ esbuild: 0.20.2
+ eslint: 9.2.0
+ fast-glob: 3.3.2
+ find-up: 7.0.0
+ get-port-please: 3.1.2
+ h3: 1.11.1
+ minimatch: 9.0.4
+ mrmime: 2.0.0
+ open: 10.1.0
+ picocolors: 1.0.0
+ ws: 8.17.0
+ transitivePeerDependencies:
+ - bufferutil
+ - uWebSockets.js
+ - utf-8-validate
+ dev: true
+
/@eslint/eslintrc@2.1.4:
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1003,38 +847,69 @@ packages:
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@eslint/eslintrc@3.0.2:
+ resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4
+ espree: 10.0.1
+ globals: 14.0.0
+ ignore: 5.3.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
- /@eslint/js@8.56.0:
- resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@eslint/js@9.2.0:
+ resolution: {integrity: sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- /@fastify/busboy@2.1.0:
- resolution: {integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==}
+ /@fastify/busboy@2.1.1:
+ resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
- /@headlessui/tailwindcss@0.2.0(tailwindcss@3.4.1):
+ /@floating-ui/core@1.6.1:
+ resolution: {integrity: sha512-42UH54oPZHPdRHdw6BgoBD6cg/eVTmVrFcgeRDM3jbO7uxSoipVcmcIGFcA5jmOHO5apcyvBhkSKES3fQJnu7A==}
+ dependencies:
+ '@floating-ui/utils': 0.2.2
+
+ /@floating-ui/dom@1.1.1:
+ resolution: {integrity: sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==}
+ dependencies:
+ '@floating-ui/core': 1.6.1
+
+ /@floating-ui/utils@0.2.2:
+ resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
+
+ /@headlessui/tailwindcss@0.2.0(tailwindcss@3.4.3):
resolution: {integrity: sha512-fpL830Fln1SykOCboExsWr3JIVeQKieLJ3XytLe/tt1A0XzqUthOftDmjcCYLW62w7mQI7wXcoPXr3tZ9QfGxw==}
engines: {node: '>=10'}
peerDependencies:
tailwindcss: ^3.0
dependencies:
- tailwindcss: 3.4.1
+ tailwindcss: 3.4.3
dev: false
- /@headlessui/vue@1.7.16(vue@3.4.18):
- resolution: {integrity: sha512-nKT+nf/q6x198SsyK54mSszaQl/z+QxtASmgMEJtpxSX2Q0OPJX0upS/9daDyiECpeAsvjkoOrm2O/6PyBQ+Qg==}
+ /@headlessui/vue@1.7.22(vue@3.4.27):
+ resolution: {integrity: sha512-Hoffjoolq1rY+LOfJ+B/OvkhuBXXBFgd8oBlN+l1TApma2dB0En0ucFZrwQtb33SmcCqd32EQd0y07oziXWNYg==}
engines: {node: '>=10'}
peerDependencies:
vue: ^3.2.0
dependencies:
- vue: 3.4.18(typescript@5.3.3)
+ '@tanstack/vue-virtual': 3.5.0(vue@3.4.27)
+ vue: 3.4.27(typescript@5.4.5)
dev: false
- /@humanwhocodes/config-array@0.11.14:
- resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
+ /@humanwhocodes/config-array@0.13.0:
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
dependencies:
- '@humanwhocodes/object-schema': 2.0.2
+ '@humanwhocodes/object-schema': 2.0.3
debug: 4.3.4
minimatch: 3.1.2
transitivePeerDependencies:
@@ -1044,23 +919,27 @@ packages:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- /@humanwhocodes/object-schema@2.0.2:
- resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
+ /@humanwhocodes/object-schema@2.0.3:
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+
+ /@humanwhocodes/retry@0.2.4:
+ resolution: {integrity: sha512-Ttl/jHpxfS3st5sxwICYfk4pOH0WrLI1SpW283GgQL7sCWU7EHIOhX4b4fkIxr3tkfzwg8+FNojtzsIEE7Ecgg==}
+ engines: {node: '>=18.18'}
- /@iconify-json/heroicons@1.1.19:
- resolution: {integrity: sha512-uW2F9vdGll59W21ocBl+wR4Ve+/1CsmzBqPTuOaR3CbKzqnJKwzGASvC4Op0uTieFVWfBaevnzcRxwNo73J29g==}
+ /@iconify-json/heroicons@1.1.21:
+ resolution: {integrity: sha512-A+3L4KN+TjH3V8fQ2N2dkOOnLLxMgMBzO8RDT0P9YL+YzvLMIbe/lkDLSB8NB8x0DKWmkvTimoo1l4DKMwi7Zg==}
dependencies:
'@iconify/types': 2.0.0
dev: false
- /@iconify/collections@1.0.393:
- resolution: {integrity: sha512-MWdNlBLjYz4kTN8mSOn4fl0U2jBFm3kxekAgIUh8cdT/UVR9LzfWXl3hsDPFehzyRE8TASg7abZa99My4l9MSg==}
+ /@iconify/collections@1.0.420:
+ resolution: {integrity: sha512-CU2pV2VXtCxWoXo+2dDyLziWhX3ryqVr2yKn0I8lTIRcQXOUlhXNEotZf6w70bnQ7eqwdTO3C9QLQrU6OzaF/g==}
dependencies:
'@iconify/types': 2.0.0
dev: false
- /@iconify/json@2.2.181:
- resolution: {integrity: sha512-G7fQeyYVgnSDzPAftOkBH/mFjVXEGVRLMV21L8ilNuc/9HCVmqH+Nh0QMa5hV2Jl8UjTLBJ/B1rKCH8V1LdADg==}
+ /@iconify/json@2.2.208:
+ resolution: {integrity: sha512-xGJnQ/bYWWFrnPs/qNCSq9CYHXOBINpV3ctuy0zUucKejdNKnpAwVIzuyDJPt0McvQ6XfdU0rxkzH3rHVF43Vg==}
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -1069,31 +948,30 @@ packages:
/@iconify/types@2.0.0:
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- /@iconify/utils@2.1.22:
- resolution: {integrity: sha512-6UHVzTVXmvO8uS6xFF+L/QTSpTzA/JZxtgU+KYGFyDYMEObZ1bu/b5l+zNJjHy+0leWjHI+C0pXlzGvv3oXZMA==}
+ /@iconify/utils@2.1.23:
+ resolution: {integrity: sha512-YGNbHKM5tyDvdWZ92y2mIkrfvm5Fvhe6WJSkWu7vvOFhMtYDP0casZpoRz0XEHZCrYsR4stdGT3cZ52yp5qZdQ==}
dependencies:
'@antfu/install-pkg': 0.1.1
- '@antfu/utils': 0.7.7
+ '@antfu/utils': 0.7.8
'@iconify/types': 2.0.0
debug: 4.3.4
kolorist: 1.8.0
local-pkg: 0.5.0
- mlly: 1.5.0
+ mlly: 1.7.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@iconify/vue@4.1.1(vue@3.4.18):
- resolution: {integrity: sha512-RL85Bm/DAe8y6rT6pux7D2FJSiUEM/TPfyK7GrbAOfTSwrhvwJW+S5yijdGcmtXouA8MtuH9C7l4hiSE4mLMjg==}
+ /@iconify/vue@4.1.2(vue@3.4.27):
+ resolution: {integrity: sha512-CQnYqLiQD5LOAaXhBrmj1mdL2/NCJvwcC4jtW2Z8ukhThiFkLDkutarTOV2trfc9EXqUqRs0KqXOL9pZ/IyysA==}
peerDependencies:
vue: '>=3'
dependencies:
'@iconify/types': 2.0.0
- vue: 3.4.18(typescript@5.3.3)
+ vue: 3.4.27(typescript@5.4.5)
dev: false
- /@intlify/bundle-utils@7.5.0(vue-i18n@9.9.1):
- resolution: {integrity: sha512-6DymqusddBQ8kVtVBsVFFF7arNfIhuLacOmmsqayT2vl427j9m0VX12mMC+cgoVIodSpRfzYPaPTdPuJq7mK0Q==}
+ /@intlify/bundle-utils@7.5.1(vue-i18n@9.13.1):
+ resolution: {integrity: sha512-UovJl10oBIlmYEcWw+VIHdKY5Uv5sdPG0b/b6bOYxGLln3UwB75+2dlc0F3Fsa0RhoznQ5Rp589/BZpABpE4Xw==}
engines: {node: '>= 14.16'}
peerDependencies:
petite-vue-i18n: '*'
@@ -1104,58 +982,58 @@ packages:
vue-i18n:
optional: true
dependencies:
- '@intlify/message-compiler': 9.9.1
- '@intlify/shared': 9.9.1
+ '@intlify/message-compiler': 9.13.1
+ '@intlify/shared': 9.13.1
acorn: 8.11.3
escodegen: 2.1.0
estree-walker: 2.0.2
jsonc-eslint-parser: 2.4.0
- magic-string: 0.30.7
- mlly: 1.5.0
- source-map-js: 1.0.2
- vue-i18n: 9.9.1(vue@3.4.18)
+ magic-string: 0.30.10
+ mlly: 1.7.0
+ source-map-js: 1.2.0
+ vue-i18n: 9.13.1(vue@3.4.27)
yaml-eslint-parser: 1.2.2
dev: true
- /@intlify/core-base@9.9.1:
- resolution: {integrity: sha512-qsV15dg7jNX2faBRyKMgZS8UcFJViWEUPLdzZ9UR0kQZpFVeIpc0AG7ZOfeP7pX2T9SQ5jSiorq/tii9nkkafA==}
+ /@intlify/core-base@9.13.1:
+ resolution: {integrity: sha512-+bcQRkJO9pcX8d0gel9ZNfrzU22sZFSA0WVhfXrf5jdJOS24a+Bp8pozuS9sBI9Hk/tGz83pgKfmqcn/Ci7/8w==}
engines: {node: '>= 16'}
dependencies:
- '@intlify/message-compiler': 9.9.1
- '@intlify/shared': 9.9.1
+ '@intlify/message-compiler': 9.13.1
+ '@intlify/shared': 9.13.1
dev: true
- /@intlify/core@9.9.1:
- resolution: {integrity: sha512-KPD++4tB2M3TeeRqUtsSRFREVtrZHBdUzxF05zF0tbd/hZQJugJYN0t/AY1fp75OKWYZHJOKz7kKX36q8Qx7FA==}
+ /@intlify/core@9.13.1:
+ resolution: {integrity: sha512-R+l9DRqzfK0yT9UgaCq3sl24NJAP4f/djAu4z9zLknAUBEal2q/tXFV+oGzcGpvi3uXWNvF9Gctj+IsuPwJjoA==}
engines: {node: '>= 16'}
dependencies:
- '@intlify/core-base': 9.9.1
- '@intlify/shared': 9.9.1
+ '@intlify/core-base': 9.13.1
+ '@intlify/shared': 9.13.1
dev: true
/@intlify/h3@0.5.0:
resolution: {integrity: sha512-cgfrtD3qu3BPJ47gfZ35J2LJpI64Riic0K8NGgid5ilyPXRQTNY7mXlT/B+HZYQg1hmBxKa5G5HJXyAZ4R2H5A==}
engines: {node: '>= 18'}
dependencies:
- '@intlify/core': 9.9.1
+ '@intlify/core': 9.13.1
'@intlify/utils': 0.12.0
dev: true
- /@intlify/message-compiler@9.9.1:
- resolution: {integrity: sha512-zTvP6X6HeumHOXuAE1CMMsV6tTX+opKMOxO1OHTCg5N5Sm/F7d8o2jdT6W6L5oHUsJ/vvkGefHIs7Q3hfowmsA==}
+ /@intlify/message-compiler@9.13.1:
+ resolution: {integrity: sha512-SKsVa4ajYGBVm7sHMXd5qX70O2XXjm55zdZB3VeMFCvQyvLew/dLvq3MqnaIsTMF1VkkOb9Ttr6tHcMlyPDL9w==}
engines: {node: '>= 16'}
dependencies:
- '@intlify/shared': 9.9.1
- source-map-js: 1.0.2
+ '@intlify/shared': 9.13.1
+ source-map-js: 1.2.0
dev: true
- /@intlify/shared@9.9.1:
- resolution: {integrity: sha512-b3Pta1nwkz5rGq434v0psHwEwHGy1pYCttfcM22IE//K9owbpkEvFptx9VcuRAxjQdrO2If249cmDDjBu5wMDA==}
+ /@intlify/shared@9.13.1:
+ resolution: {integrity: sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==}
engines: {node: '>= 16'}
dev: true
- /@intlify/unplugin-vue-i18n@2.0.0(rollup@4.9.6)(vue-i18n@9.9.1):
- resolution: {integrity: sha512-1oKvm92L9l2od2H9wKx2ZvR4tzn7gUtd7bPLI7AWUmm7U9H1iEypndt5d985ypxGsEs0gToDaKTrytbBIJwwSg==}
+ /@intlify/unplugin-vue-i18n@3.0.1(rollup@4.17.2)(vue-i18n@9.13.1):
+ resolution: {integrity: sha512-q1zJhA/WpoLBzAAuKA5/AEp0e+bMOM10ll/HxT4g1VAw/9JhC4TTobP9KobKH90JMZ4U2daLFlYQfKNd29lpqw==}
engines: {node: '>= 14.16'}
peerDependencies:
petite-vue-i18n: '*'
@@ -1169,19 +1047,19 @@ packages:
vue-i18n-bridge:
optional: true
dependencies:
- '@intlify/bundle-utils': 7.5.0(vue-i18n@9.9.1)
- '@intlify/shared': 9.9.1
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
- '@vue/compiler-sfc': 3.4.18
+ '@intlify/bundle-utils': 7.5.1(vue-i18n@9.13.1)
+ '@intlify/shared': 9.13.1
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@vue/compiler-sfc': 3.4.27
debug: 4.3.4
fast-glob: 3.3.2
js-yaml: 4.1.0
json5: 2.2.3
pathe: 1.1.2
picocolors: 1.0.0
- source-map-js: 1.0.2
- unplugin: 1.7.1
- vue-i18n: 9.9.1(vue@3.4.18)
+ source-map-js: 1.2.0
+ unplugin: 1.10.1
+ vue-i18n: 9.13.1(vue@3.4.27)
transitivePeerDependencies:
- rollup
- supports-color
@@ -1213,43 +1091,46 @@ packages:
'@sinclair/typebox': 0.27.8
dev: true
- /@jridgewell/gen-mapping@0.3.3:
- resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
+ /@jridgewell/gen-mapping@0.3.5:
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/set-array': 1.1.2
+ '@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.22
+ '@jridgewell/trace-mapping': 0.3.25
- /@jridgewell/resolve-uri@3.1.1:
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ /@jridgewell/resolve-uri@3.1.2:
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array@1.1.2:
- resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ /@jridgewell/set-array@1.2.1:
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map@0.3.5:
- resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
+ /@jridgewell/source-map@0.3.6:
+ resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.22
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
- /@jridgewell/trace-mapping@0.3.22:
- resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==}
+ /@jridgewell/trace-mapping@0.3.25:
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- /@keycloak/keycloak-admin-client@23.0.6:
- resolution: {integrity: sha512-N86jwi5emG32Fb++P0HuzojykNNVhVVBsZWmw9ORT7LMYpfRXXWUqS4+CCDb7t498Sog+wEZQBT2cec0Samekw==}
+ /@jsdevtools/ono@7.1.3:
+ resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
+ dev: true
+
+ /@keycloak/keycloak-admin-client@24.0.4:
+ resolution: {integrity: sha512-2edCUgTcTZg4YBJOH/oQoAyfA2MInMrrEJTid5YQpbk1R5awUhgcswQYSFsiWQEiOOYelaApO/eUt8MZqxpRGA==}
engines: {node: '>=18'}
dependencies:
camelize-ts: 3.0.0
- lodash-es: 4.17.21
url-join: 5.0.0
url-template: 3.1.1
dev: false
@@ -1262,7 +1143,7 @@ packages:
http-errors: 2.0.0
koa-compose: 4.1.0
methods: 1.1.2
- path-to-regexp: 6.2.1
+ path-to-regexp: 6.2.2
transitivePeerDependencies:
- supports-color
dev: false
@@ -1281,46 +1162,66 @@ packages:
resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
dependencies:
- detect-libc: 2.0.2
+ detect-libc: 2.0.3
https-proxy-agent: 5.0.1
make-dir: 3.1.0
node-fetch: 2.7.0
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.0
- tar: 6.2.0
+ semver: 7.6.2
+ tar: 6.2.1
transitivePeerDependencies:
- encoding
- supports-color
- /@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.9.6):
+ /@miyaneee/rollup-plugin-json5@1.2.0(rollup@4.17.2):
resolution: {integrity: sha512-JjTIaXZp9WzhUHpElrqPnl1AzBi/rvRs065F71+aTmlqvTMVkdbjZ8vfFl4nRlgJy+TPBw69ZK4pwFdmOAt4aA==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
json5: 2.2.3
- rollup: 4.9.6
+ rollup: 4.17.2
dev: true
- /@netlify/functions@2.5.1:
- resolution: {integrity: sha512-7//hmiFHXGusAzuzEuXvRT9ItaeRjRs5lRs6lYUkaAXO1jnTWYDB2XdqFq5X4yMRX+/A96nrQ2HwCE+Pd0YMwg==}
+ /@mswjs/interceptors@0.27.2:
+ resolution: {integrity: sha512-mE6PhwcoW70EX8+h+Y/4dLfHk33GFt/y5PzDJz56ktMyaVGFXMJ5BYLbUjdmGEABfE0x5GgAGyKbrbkYww2s3A==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@open-draft/deferred-promise': 2.2.0
+ '@open-draft/logger': 0.3.0
+ '@open-draft/until': 2.1.0
+ is-node-process: 1.2.0
+ outvariant: 1.4.2
+ strict-event-emitter: 0.5.1
+
+ /@netlify/functions@2.6.3(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-7Z9gWyAuPI2NnBOvpYPD66KIWOgNznLz9BkyZ0c7qeRE6p23UCMVZ2VsrJpjPDgoJtKplGSBzASl6fQD7iEeWw==}
engines: {node: '>=14.0.0'}
dependencies:
- '@netlify/serverless-functions-api': 1.13.0
- is-promise: 4.0.0
+ '@netlify/serverless-functions-api': 1.18.0(@opentelemetry/api@1.8.0)
+ transitivePeerDependencies:
+ - '@opentelemetry/api'
/@netlify/node-cookies@0.1.0:
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- /@netlify/serverless-functions-api@1.13.0:
- resolution: {integrity: sha512-H3SMpHw24jWjnEMqbXgILWdo3/Iv/2DRzOZZevqqEswRTOWcQJGlU35Dth72VAOxhPyWXjulogG1zJNRw8m2sQ==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /@netlify/serverless-functions-api@1.18.0(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-VCU5btoGZ8M6iI7HSwpfZXCpBLKWFmRtq5xYt0K7dY96BZWVBmaZY6Tn+w4L2DrGXwAsIeOFNp8CHjVXfuCAkg==}
+ engines: {node: '>=18.0.0'}
dependencies:
+ '@mswjs/interceptors': 0.27.2
'@netlify/node-cookies': 0.1.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/otlp-transformer': 0.50.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/sdk-trace-base': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/semantic-conventions': 1.24.1
urlpattern-polyfill: 8.0.2
+ transitivePeerDependencies:
+ - '@opentelemetry/api'
/@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -1340,79 +1241,84 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- /@npmcli/agent@2.2.1:
- resolution: {integrity: sha512-H4FrOVtNyWC8MUwL3UfjOsAihHvT1Pe8POj3JvjXhSTJipsZMtgUALCT4mGyYZNxymkUfOw3PUj6dE4QPp6osQ==}
+ /@npmcli/agent@2.2.2:
+ resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- agent-base: 7.1.0
- http-proxy-agent: 7.0.0
- https-proxy-agent: 7.0.2
- lru-cache: 10.2.0
- socks-proxy-agent: 8.0.2
+ agent-base: 7.1.1
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ lru-cache: 10.2.2
+ socks-proxy-agent: 8.0.3
transitivePeerDependencies:
- supports-color
- /@npmcli/fs@3.1.0:
- resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
+ /@npmcli/fs@3.1.1:
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- semver: 7.6.0
+ semver: 7.6.2
- /@npmcli/git@5.0.4:
- resolution: {integrity: sha512-nr6/WezNzuYUppzXRaYu/W4aT5rLxdXqEFupbh6e/ovlYFQ8hpu1UUPV3Ir/YTl+74iXl2ZOMlGzudh9ZPUchQ==}
+ /@npmcli/git@5.0.7:
+ resolution: {integrity: sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@npmcli/promise-spawn': 7.0.1
- lru-cache: 10.2.0
- npm-pick-manifest: 9.0.0
- proc-log: 3.0.0
+ '@npmcli/promise-spawn': 7.0.2
+ lru-cache: 10.2.2
+ npm-pick-manifest: 9.0.1
+ proc-log: 4.2.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.6.0
+ semver: 7.6.2
which: 4.0.0
transitivePeerDependencies:
- bluebird
- /@npmcli/installed-package-contents@2.0.2:
- resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==}
+ /@npmcli/installed-package-contents@2.1.0:
+ resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
dependencies:
- npm-bundled: 3.0.0
+ npm-bundled: 3.0.1
npm-normalize-package-bin: 3.0.1
/@npmcli/node-gyp@3.0.0:
resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /@npmcli/package-json@5.0.0:
- resolution: {integrity: sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g==}
+ /@npmcli/package-json@5.1.0:
+ resolution: {integrity: sha512-1aL4TuVrLS9sf8quCLerU3H9J4vtCtgu8VauYozrmEyU57i/EdKleCnsQ7vpnABIH6c9mnTxcH5sFkO3BlV8wQ==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@npmcli/git': 5.0.4
- glob: 10.3.10
- hosted-git-info: 7.0.1
- json-parse-even-better-errors: 3.0.1
- normalize-package-data: 6.0.0
- proc-log: 3.0.0
- semver: 7.6.0
+ '@npmcli/git': 5.0.7
+ glob: 10.3.14
+ hosted-git-info: 7.0.2
+ json-parse-even-better-errors: 3.0.2
+ normalize-package-data: 6.0.1
+ proc-log: 4.2.0
+ semver: 7.6.2
transitivePeerDependencies:
- bluebird
- /@npmcli/promise-spawn@7.0.1:
- resolution: {integrity: sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg==}
+ /@npmcli/promise-spawn@7.0.2:
+ resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
which: 4.0.0
- /@npmcli/run-script@7.0.4:
- resolution: {integrity: sha512-9ApYM/3+rBt9V80aYg6tZfzj3UWdiYyCt7gJUD1VJKvWF5nwKDSICXbYIQbspFTq6TOpbsEtIC0LArB8d9PFmg==}
+ /@npmcli/redact@2.0.0:
+ resolution: {integrity: sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ /@npmcli/run-script@8.1.0:
+ resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@npmcli/node-gyp': 3.0.0
- '@npmcli/package-json': 5.0.0
- '@npmcli/promise-spawn': 7.0.1
- node-gyp: 10.0.1
+ '@npmcli/package-json': 5.1.0
+ '@npmcli/promise-spawn': 7.0.2
+ node-gyp: 10.1.0
+ proc-log: 4.2.0
which: 4.0.0
transitivePeerDependencies:
- bluebird
@@ -1421,234 +1327,352 @@ packages:
/@nuxt/devalue@2.0.2:
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- /@nuxt/devtools-kit@1.0.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1):
- resolution: {integrity: sha512-j7bNZmoAXQ1a8qv6j6zk4c/aekrxYqYVQM21o/Hy4XHCUq4fajSgpoc8mjyWJSTfpkOmuLyEzMexpDWiIVSr6A==}
+ /@nuxt/devtools-kit@1.3.1(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11):
+ resolution: {integrity: sha512-YckEiiTef3dMckwLLUb+feKV0O8pS9s8ujw/FQ600oQbOCbq6hpWY5HQYxVYc3E41wu87lFiIZ1rnHjO3nM9sw==}
peerDependencies:
nuxt: ^3.9.0
vite: '*'
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
execa: 7.2.0
- nuxt: 3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vite@5.1.1)
- vite: 5.1.1(sass@1.70.0)
+ nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.0)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
+ vite: 5.2.11(sass@1.77.0)
transitivePeerDependencies:
- rollup
- supports-color
- /@nuxt/devtools-kit@1.0.8(nuxt@3.10.1)(vite@5.1.1):
- resolution: {integrity: sha512-j7bNZmoAXQ1a8qv6j6zk4c/aekrxYqYVQM21o/Hy4XHCUq4fajSgpoc8mjyWJSTfpkOmuLyEzMexpDWiIVSr6A==}
+ /@nuxt/devtools-kit@1.3.1(nuxt@3.11.2)(vite@5.2.11):
+ resolution: {integrity: sha512-YckEiiTef3dMckwLLUb+feKV0O8pS9s8ujw/FQ600oQbOCbq6hpWY5HQYxVYc3E41wu87lFiIZ1rnHjO3nM9sw==}
peerDependencies:
nuxt: ^3.9.0
vite: '*'
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
execa: 7.2.0
- nuxt: 3.10.1(eslint@8.56.0)(typescript@5.3.3)(vite@5.1.1)
- vite: 5.1.1(sass@1.70.0)
+ nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
+ vite: 5.2.11(sass@1.77.0)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/devtools-wizard@1.0.8:
- resolution: {integrity: sha512-RxyOlM7Isk5npwXwDJ/rjm9ekX5sTNG0LS0VOBMdSx+D5nlRPMRr/r9yO+9WQDyzPLClLzHaXRHBWLPlRX3IMw==}
+ /@nuxt/devtools-wizard@1.3.1:
+ resolution: {integrity: sha512-t6qTp573s1NWoS1nqOqKRld6wFWDiMzoFojBG8GeqTwPi2NYbjyPbQobmvMGiihkWPudMpChhAhYwTTyCPFE7Q==}
hasBin: true
dependencies:
consola: 3.2.3
- diff: 5.1.0
+ diff: 5.2.0
execa: 7.2.0
global-directory: 4.0.1
- magicast: 0.3.3
+ magicast: 0.3.4
pathe: 1.1.2
- pkg-types: 1.0.3
+ pkg-types: 1.1.1
prompts: 2.4.2
- rc9: 2.1.1
- semver: 7.6.0
+ rc9: 2.1.2
+ semver: 7.6.2
- /@nuxt/devtools@1.0.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1):
- resolution: {integrity: sha512-o6aBFEBxc8OgVHV4OPe2g0q9tFIe9HiTxRiJnlTJ+jHvOQsBLS651ArdVtwLChf9UdMouFlpLLJ1HteZqTbtsQ==}
+ /@nuxt/devtools@1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(rollup@4.17.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-SuiuqtlN6OMPn7hYqbydcJmRF/L86yxi8ApcjNVnMURYBPaAAN9egkEFpQ6AjzjX+UnaG1hU8FE0w6pWKSRp3A==}
hasBin: true
peerDependencies:
nuxt: ^3.9.0
vite: '*'
dependencies:
- '@antfu/utils': 0.7.7
- '@nuxt/devtools-kit': 1.0.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)
- '@nuxt/devtools-wizard': 1.0.8
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- birpc: 0.2.15
+ '@antfu/utils': 0.7.8
+ '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)
+ '@nuxt/devtools-wizard': 1.3.1
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@vue/devtools-applet': 7.1.3(@unocss/reset@0.60.0)(floating-vue@5.2.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
+ '@vue/devtools-core': 7.1.3(vite@5.2.11)(vue@3.4.27)
+ '@vue/devtools-kit': 7.1.3(vue@3.4.27)
+ birpc: 0.2.17
consola: 3.2.3
- destr: 2.0.2
+ cronstrue: 2.50.0
+ destr: 2.0.3
error-stack-parser-es: 0.1.1
execa: 7.2.0
fast-glob: 3.3.2
- flatted: 3.2.9
+ flatted: 3.3.1
get-port-please: 3.1.2
hookable: 5.5.3
image-meta: 0.2.0
is-installed-globally: 1.0.0
launch-editor: 2.6.1
local-pkg: 0.5.0
- magicast: 0.3.3
- nuxt: 3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vite@5.1.1)
- nypm: 0.3.6
+ magicast: 0.3.4
+ nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.0)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
+ nypm: 0.3.8
ohash: 1.1.3
- pacote: 17.0.6
+ pacote: 18.0.6
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- rc9: 2.1.1
+ pkg-types: 1.1.1
+ rc9: 2.1.2
scule: 1.3.0
- semver: 7.6.0
- simple-git: 3.22.0
+ semver: 7.6.2
+ simple-git: 3.24.0
sirv: 2.0.4
- unimport: 3.7.1(rollup@4.9.6)
- vite: 5.1.1(sass@1.70.0)
- vite-plugin-inspect: 0.8.3(@nuxt/kit@3.10.1)(rollup@4.9.6)(vite@5.1.1)
- vite-plugin-vue-inspector: 4.0.2(vite@5.1.1)
+ unimport: 3.7.1(rollup@4.17.2)
+ vite: 5.2.11(sass@1.77.0)
+ vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2)(rollup@4.17.2)(vite@5.2.11)
+ vite-plugin-vue-inspector: 5.1.0(vite@5.2.11)
which: 3.0.1
- ws: 8.16.0
+ ws: 8.17.0
transitivePeerDependencies:
+ - '@unocss/reset'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
- bluebird
- bufferutil
+ - change-case
+ - drauu
+ - floating-vue
+ - fuse.js
+ - idb-keyval
+ - jwt-decode
+ - nprogress
+ - qrcode
- rollup
+ - sortablejs
- supports-color
+ - universal-cookie
+ - unocss
- utf-8-validate
+ - vue
- /@nuxt/devtools@1.0.8(nuxt@3.10.1)(vite@5.1.1):
- resolution: {integrity: sha512-o6aBFEBxc8OgVHV4OPe2g0q9tFIe9HiTxRiJnlTJ+jHvOQsBLS651ArdVtwLChf9UdMouFlpLLJ1HteZqTbtsQ==}
+ /@nuxt/devtools@1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-SuiuqtlN6OMPn7hYqbydcJmRF/L86yxi8ApcjNVnMURYBPaAAN9egkEFpQ6AjzjX+UnaG1hU8FE0w6pWKSRp3A==}
hasBin: true
peerDependencies:
nuxt: ^3.9.0
vite: '*'
dependencies:
- '@antfu/utils': 0.7.7
- '@nuxt/devtools-kit': 1.0.8(nuxt@3.10.1)(vite@5.1.1)
- '@nuxt/devtools-wizard': 1.0.8
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- birpc: 0.2.15
+ '@antfu/utils': 0.7.8
+ '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2)(vite@5.2.11)
+ '@nuxt/devtools-wizard': 1.3.1
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@vue/devtools-applet': 7.1.3(@unocss/reset@0.60.0)(floating-vue@5.2.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
+ '@vue/devtools-core': 7.1.3(vite@5.2.11)(vue@3.4.27)
+ '@vue/devtools-kit': 7.1.3(vue@3.4.27)
+ birpc: 0.2.17
consola: 3.2.3
- destr: 2.0.2
+ cronstrue: 2.50.0
+ destr: 2.0.3
error-stack-parser-es: 0.1.1
execa: 7.2.0
fast-glob: 3.3.2
- flatted: 3.2.9
+ flatted: 3.3.1
get-port-please: 3.1.2
hookable: 5.5.3
image-meta: 0.2.0
is-installed-globally: 1.0.0
launch-editor: 2.6.1
local-pkg: 0.5.0
- magicast: 0.3.3
- nuxt: 3.10.1(eslint@8.56.0)(typescript@5.3.3)(vite@5.1.1)
- nypm: 0.3.6
+ magicast: 0.3.4
+ nuxt: 3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11)
+ nypm: 0.3.8
ohash: 1.1.3
- pacote: 17.0.6
+ pacote: 18.0.6
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- rc9: 2.1.1
+ pkg-types: 1.1.1
+ rc9: 2.1.2
scule: 1.3.0
- semver: 7.6.0
- simple-git: 3.22.0
+ semver: 7.6.2
+ simple-git: 3.24.0
sirv: 2.0.4
- unimport: 3.7.1(rollup@4.9.6)
- vite: 5.1.1(sass@1.70.0)
- vite-plugin-inspect: 0.8.3(@nuxt/kit@3.10.1)(rollup@4.9.6)(vite@5.1.1)
- vite-plugin-vue-inspector: 4.0.2(vite@5.1.1)
+ unimport: 3.7.1(rollup@4.17.2)
+ vite: 5.2.11(sass@1.77.0)
+ vite-plugin-inspect: 0.8.4(@nuxt/kit@3.11.2)(rollup@4.17.2)(vite@5.2.11)
+ vite-plugin-vue-inspector: 5.1.0(vite@5.2.11)
which: 3.0.1
- ws: 8.16.0
+ ws: 8.17.0
transitivePeerDependencies:
+ - '@unocss/reset'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
- bluebird
- bufferutil
+ - change-case
+ - drauu
+ - floating-vue
+ - fuse.js
+ - idb-keyval
+ - jwt-decode
+ - nprogress
+ - qrcode
+ - rollup
+ - sortablejs
+ - supports-color
+ - universal-cookie
+ - unocss
+ - utf-8-validate
+ - vue
+ dev: true
+
+ /@nuxt/eslint-config@0.3.12(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-ywGxClwkGPDV59iONa/d2fk3rgVPYxArm8aAmcTPOCbWCypAc/vlNDvgafo9VAljsZCbWj7JjlWmT5UzknwK7w==}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ dependencies:
+ '@eslint/js': 9.2.0
+ '@nuxt/eslint-plugin': 0.3.12(eslint@9.2.0)(typescript@5.4.5)
+ '@rushstack/eslint-patch': 1.10.2
+ '@stylistic/eslint-plugin': 2.1.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0)(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint: 9.2.0
+ eslint-config-flat-gitignore: 0.1.5
+ eslint-flat-config-utils: 0.2.4
+ eslint-plugin-import-x: 0.5.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint-plugin-jsdoc: 48.2.5(eslint@9.2.0)
+ eslint-plugin-unicorn: 52.0.0(eslint@9.2.0)
+ eslint-plugin-vue: 9.26.0(eslint@9.2.0)
+ globals: 15.2.0
+ pathe: 1.1.2
+ tslib: 2.6.2
+ vue-eslint-parser: 9.4.2(eslint@9.2.0)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@nuxt/eslint-plugin@0.3.12(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-RkD+GuQf4aIsq2KioGodrZyouJfyRSbEnsxfJe9IT4hAI/hNznmiBxAklwIxD3DVPOVm1W87+8/vSIqeqFUITA==}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ dependencies:
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint: 9.2.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@nuxt/eslint@0.3.12(eslint@9.2.0)(nuxt@3.11.2)(rollup@4.17.2)(typescript@5.4.5)(vite@5.2.11):
+ resolution: {integrity: sha512-SZjbdwRgE27O7b11BosFsnI3UG03Qr57XR3WrXnQY/rjwmv04wJyyiFCYM5iR9COC1edAm/I+Jty+/shdJeLfw==}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ eslint-webpack-plugin: ^4.1.0
+ vite-plugin-eslint2: ^4.4.0
+ peerDependenciesMeta:
+ eslint-webpack-plugin:
+ optional: true
+ vite-plugin-eslint2:
+ optional: true
+ dependencies:
+ '@eslint/config-inspector': 0.4.8(eslint@9.2.0)
+ '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)
+ '@nuxt/eslint-config': 0.3.12(eslint@9.2.0)(typescript@5.4.5)
+ '@nuxt/eslint-plugin': 0.3.12(eslint@9.2.0)(typescript@5.4.5)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ chokidar: 3.6.0
+ eslint: 9.2.0
+ eslint-flat-config-utils: 0.2.4
+ eslint-typegen: 0.2.4(eslint@9.2.0)
+ find-up: 7.0.0
+ get-port-please: 3.1.2
+ mlly: 1.7.0
+ pathe: 1.1.2
+ unimport: 3.7.1(rollup@4.17.2)
+ transitivePeerDependencies:
+ - bufferutil
+ - nuxt
- rollup
- supports-color
+ - typescript
+ - uWebSockets.js
- utf-8-validate
+ - vite
dev: true
- /@nuxt/kit@3.10.1(rollup@4.9.6):
- resolution: {integrity: sha512-M9VRY0QGbG6lWOVqt69ZF96RLBUZVXyFpbBUwHnoHgjF9BXSX/MT/hrZcJicN4aPM2QRephGgsBd4U5wFmmn6g==}
+ /@nuxt/kit@3.11.2(rollup@4.17.2):
+ resolution: {integrity: sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
- c12: 1.7.0
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
+ c12: 1.10.0
consola: 3.2.3
defu: 6.1.4
- globby: 14.0.0
+ globby: 14.0.1
hash-sum: 2.0.0
ignore: 5.3.1
jiti: 1.21.0
- knitwork: 1.0.0
- mlly: 1.5.0
+ knitwork: 1.1.0
+ mlly: 1.7.0
pathe: 1.1.2
- pkg-types: 1.0.3
+ pkg-types: 1.1.1
scule: 1.3.0
- semver: 7.6.0
- ufo: 1.4.0
+ semver: 7.6.2
+ ufo: 1.5.3
unctx: 2.3.1
- unimport: 3.7.1(rollup@4.9.6)
+ unimport: 3.7.1(rollup@4.17.2)
untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
- /@nuxt/schema@3.10.1(rollup@4.9.6):
- resolution: {integrity: sha512-DyZLhbaaoGBCXO2jboCHTp77jbCIUem/va5iSu2+GO6M8vAHbNRphksw38gpSk/F74LbJDTbW0t3hrMBzU4B3g==}
+ /@nuxt/schema@3.11.2(rollup@4.17.2):
+ resolution: {integrity: sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
- '@nuxt/ui-templates': 1.3.1
+ '@nuxt/ui-templates': 1.3.3
consola: 3.2.3
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
- pkg-types: 1.0.3
+ pkg-types: 1.1.1
scule: 1.3.0
std-env: 3.7.0
- ufo: 1.4.0
- unimport: 3.7.1(rollup@4.9.6)
+ ufo: 1.5.3
+ unimport: 3.7.1(rollup@4.17.2)
untyped: 1.4.2
transitivePeerDependencies:
- rollup
- supports-color
- /@nuxt/telemetry@2.5.3(rollup@4.9.6):
- resolution: {integrity: sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==}
+ /@nuxt/telemetry@2.5.4(rollup@4.17.2):
+ resolution: {integrity: sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==}
hasBin: true
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
defu: 6.1.4
- destr: 2.0.2
- dotenv: 16.4.1
- git-url-parse: 13.1.1
+ destr: 2.0.3
+ dotenv: 16.4.5
+ git-url-parse: 14.0.0
is-docker: 3.0.0
jiti: 1.21.0
mri: 1.2.0
- nanoid: 4.0.2
- ofetch: 1.3.3
+ nanoid: 5.0.7
+ ofetch: 1.3.4
parse-git-config: 3.0.0
pathe: 1.1.2
- rc9: 2.1.1
+ rc9: 2.1.2
std-env: 3.7.0
transitivePeerDependencies:
- rollup
- supports-color
- /@nuxt/test-utils@3.11.0(@vitest/ui@1.2.2)(h3@1.10.1)(rollup@4.9.6)(vite@5.1.1)(vitest@1.2.2)(vue-router@4.2.5)(vue@3.4.18):
- resolution: {integrity: sha512-9ovgpQZkZpVg/MhYVVn2169WjH/IL0XUqwGryTa/lkx0/BCi1LMVEp3HTPkmt4qbRcxitO+kL4vFqqrFGVaSVg==}
+ /@nuxt/test-utils@3.12.1(@vitest/ui@1.6.0)(h3@1.11.1)(rollup@4.17.2)(vite@5.2.11)(vitest@1.6.0)(vue-router@4.3.2)(vue@3.4.27):
+ resolution: {integrity: sha512-VRLNcDz9Ad/4pjHdNRVLPs5DVIO5IJ0ij81PLmsE/lt+5oeeIQld+AgHgcqM4BM1YKsXTBuavbk1mEBqj7h/+A==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
'@cucumber/cucumber': ^10.3.1
'@jest/globals': ^29.5.0
+ '@playwright/test': ^1.42.1
'@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
+ happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0
jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0
playwright-core: ^1.34.3
vite: '*'
@@ -1660,6 +1684,8 @@ packages:
optional: true
'@jest/globals':
optional: true
+ '@playwright/test':
+ optional: true
'@testing-library/vue':
optional: true
'@vitest/ui':
@@ -1675,51 +1701,52 @@ packages:
vitest:
optional: true
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
- '@vitest/ui': 1.2.2(vitest@1.2.2)
- c12: 1.7.0
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
+ '@vitest/ui': 1.6.0(vitest@1.6.0)
+ c12: 1.10.0
consola: 3.2.3
defu: 6.1.4
- destr: 2.0.2
+ destr: 2.0.3
estree-walker: 3.0.3
execa: 8.0.1
fake-indexeddb: 5.0.2
get-port-please: 3.1.2
- h3: 1.10.1
+ h3: 1.11.1
local-pkg: 0.5.0
- magic-string: 0.30.7
- node-fetch-native: 1.6.2
- ofetch: 1.3.3
+ magic-string: 0.30.10
+ node-fetch-native: 1.6.4
+ ofetch: 1.3.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- radix3: 1.1.0
+ radix3: 1.1.2
scule: 1.3.0
std-env: 3.7.0
- ufo: 1.4.0
+ ufo: 1.5.3
unenv: 1.9.0
- unplugin: 1.7.1
- vite: 5.1.1(sass@1.70.0)
- vitest: 1.2.2(@vitest/ui@1.2.2)(sass@1.70.0)
- vitest-environment-nuxt: 1.0.0(@vitest/ui@1.2.2)(h3@1.10.1)(rollup@4.9.6)(vite@5.1.1)(vitest@1.2.2)(vue-router@4.2.5)(vue@3.4.18)
- vue: 3.4.18(typescript@5.3.3)
- vue-router: 4.2.5(vue@3.4.18)
+ unplugin: 1.10.1
+ vite: 5.2.11(sass@1.77.0)
+ vitest: 1.6.0(@vitest/ui@1.6.0)(sass@1.77.0)
+ vitest-environment-nuxt: 1.0.0(@vitest/ui@1.6.0)(h3@1.11.1)(rollup@4.17.2)(vite@5.2.11)(vitest@1.6.0)(vue-router@4.3.2)(vue@3.4.27)
+ vue: 3.4.27(typescript@5.4.5)
+ vue-router: 4.3.2(vue@3.4.27)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/test-utils@3.11.0(h3@1.10.1)(vite@5.1.1)(vue-router@4.2.5)(vue@3.4.18):
- resolution: {integrity: sha512-9ovgpQZkZpVg/MhYVVn2169WjH/IL0XUqwGryTa/lkx0/BCi1LMVEp3HTPkmt4qbRcxitO+kL4vFqqrFGVaSVg==}
+ /@nuxt/test-utils@3.12.1(h3@1.11.1)(vite@5.2.11)(vue-router@4.3.2)(vue@3.4.27):
+ resolution: {integrity: sha512-VRLNcDz9Ad/4pjHdNRVLPs5DVIO5IJ0ij81PLmsE/lt+5oeeIQld+AgHgcqM4BM1YKsXTBuavbk1mEBqj7h/+A==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
'@cucumber/cucumber': ^10.3.1
'@jest/globals': ^29.5.0
+ '@playwright/test': ^1.42.1
'@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
+ happy-dom: ^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0
jsdom: ^22.0.0 || ^23.0.0 || ^24.0.0
playwright-core: ^1.34.3
vite: '*'
@@ -1731,6 +1758,8 @@ packages:
optional: true
'@jest/globals':
optional: true
+ '@playwright/test':
+ optional: true
'@testing-library/vue':
optional: true
'@vitest/ui':
@@ -1746,68 +1775,68 @@ packages:
vitest:
optional: true
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
- c12: 1.7.0
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
+ c12: 1.10.0
consola: 3.2.3
defu: 6.1.4
- destr: 2.0.2
+ destr: 2.0.3
estree-walker: 3.0.3
execa: 8.0.1
fake-indexeddb: 5.0.2
get-port-please: 3.1.2
- h3: 1.10.1
+ h3: 1.11.1
local-pkg: 0.5.0
- magic-string: 0.30.7
- node-fetch-native: 1.6.2
- ofetch: 1.3.3
+ magic-string: 0.30.10
+ node-fetch-native: 1.6.4
+ ofetch: 1.3.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- radix3: 1.1.0
+ radix3: 1.1.2
scule: 1.3.0
std-env: 3.7.0
- ufo: 1.4.0
+ ufo: 1.5.3
unenv: 1.9.0
- unplugin: 1.7.1
- vite: 5.1.1(sass@1.70.0)
- vitest-environment-nuxt: 1.0.0(h3@1.10.1)(vite@5.1.1)(vue-router@4.2.5)(vue@3.4.18)
- vue: 3.4.18(typescript@5.3.3)
- vue-router: 4.2.5(vue@3.4.18)
+ unplugin: 1.10.1
+ vite: 5.2.11(sass@1.77.0)
+ vitest-environment-nuxt: 1.0.0(h3@1.11.1)(vite@5.2.11)(vue-router@4.3.2)(vue@3.4.27)
+ vue: 3.4.27(typescript@5.4.5)
+ vue-router: 4.3.2(vue@3.4.27)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/ui-templates@1.3.1:
- resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
+ /@nuxt/ui-templates@1.3.3:
+ resolution: {integrity: sha512-3BG5doAREcD50dbKyXgmjD4b1GzY8CUy3T41jMhHZXNDdaNwOd31IBq+D6dV00OSrDVhzrTVj0IxsUsnMyHvIQ==}
- /@nuxt/ui@2.13.0(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)(vue@3.4.18):
- resolution: {integrity: sha512-u7TXMeNGV/lkPO/k2VlhCXUxJ+iw+OKUOaFLWRjHDfVQpBJMhzIvNvQhRPOD2FMpVuUUbpVjdOqbdEg9VQX3Wg==}
+ /@nuxt/ui@2.16.0(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-yHBZjFaN8/Zst+jTv+DfZS2Ep6UhgKlXL3/b6OX1ICwij3Yw7E4qVNCE9f1SO8DUaLigLURUYYoHG6kLb1qyBg==}
engines: {node: '>=v16.20.2'}
dependencies:
- '@egoist/tailwindcss-icons': 1.7.4(tailwindcss@3.4.1)
- '@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.1)
- '@headlessui/vue': 1.7.16(vue@3.4.18)
- '@iconify-json/heroicons': 1.1.19
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxtjs/color-mode': 3.3.2(rollup@4.9.6)
- '@nuxtjs/tailwindcss': 6.11.3(rollup@4.9.6)
+ '@egoist/tailwindcss-icons': 1.8.0(tailwindcss@3.4.3)
+ '@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.3)
+ '@headlessui/vue': 1.7.22(vue@3.4.27)
+ '@iconify-json/heroicons': 1.1.21
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxtjs/color-mode': 3.4.1(rollup@4.17.2)
+ '@nuxtjs/tailwindcss': 6.12.0(rollup@4.17.2)
'@popperjs/core': 2.11.8
- '@tailwindcss/aspect-ratio': 0.4.2(tailwindcss@3.4.1)
- '@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.4.18)
- '@vueuse/integrations': 10.7.2(fuse.js@6.6.2)(vue@3.4.18)
- '@vueuse/math': 10.7.2(vue@3.4.18)
+ '@tailwindcss/aspect-ratio': 0.4.2(tailwindcss@3.4.3)
+ '@tailwindcss/container-queries': 0.1.1(tailwindcss@3.4.3)
+ '@tailwindcss/forms': 0.5.7(tailwindcss@3.4.3)
+ '@tailwindcss/typography': 0.5.13(tailwindcss@3.4.3)
+ '@vueuse/core': 10.9.0(vue@3.4.27)
+ '@vueuse/integrations': 10.9.0(fuse.js@6.6.2)(vue@3.4.27)
+ '@vueuse/math': 10.9.0(vue@3.4.27)
defu: 6.1.4
fuse.js: 6.6.2
- nuxt-icon: 0.6.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)(vue@3.4.18)
+ nuxt-icon: 0.6.10(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)(vue@3.4.27)
ohash: 1.1.3
pathe: 1.1.2
scule: 1.3.0
- tailwind-merge: 2.2.1
- tailwindcss: 3.4.1
+ tailwind-merge: 2.3.0
+ tailwindcss: 3.4.3
transitivePeerDependencies:
- '@vue/composition-api'
- async-validator
@@ -1824,52 +1853,53 @@ packages:
- sortablejs
- supports-color
- ts-node
+ - uWebSockets.js
- universal-cookie
- vite
- vue
dev: false
- /@nuxt/vite-builder@3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vue@3.4.18):
- resolution: {integrity: sha512-Rl3sNWd43LNuKc4Y7vwWPLKH+4brbFCfcCQP1W86eSzfijen9AGuqyYIrRaaMieNE7aHMpYSIGCo4kYohhMsuA==}
+ /@nuxt/vite-builder@3.11.2(eslint@9.2.0)(rollup@4.17.2)(sass@1.77.0)(typescript@5.4.5)(vue@3.4.27):
+ resolution: {integrity: sha512-eXTZsAAN4dPz4eA2UD5YU2kD/DqgfyQp1UYsIdCe6+PAVe1ifkUboBjbc0piR5+3qI/S/eqk3nzxRGbiYF7Ccg==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@rollup/plugin-replace': 5.0.5(rollup@4.9.6)
- '@vitejs/plugin-vue': 5.0.3(vite@5.0.12)(vue@3.4.18)
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.0.12)(vue@3.4.18)
- autoprefixer: 10.4.17(postcss@8.4.35)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@rollup/plugin-replace': 5.0.5(rollup@4.17.2)
+ '@vitejs/plugin-vue': 5.0.4(vite@5.2.11)(vue@3.4.27)
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11)(vue@3.4.27)
+ autoprefixer: 10.4.19(postcss@8.4.38)
clear: 0.1.0
consola: 3.2.3
- cssnano: 6.0.3(postcss@8.4.35)
+ cssnano: 6.1.2(postcss@8.4.38)
defu: 6.1.4
- esbuild: 0.20.0
+ esbuild: 0.20.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
fs-extra: 11.2.0
get-port-please: 3.1.2
- h3: 1.10.1
- knitwork: 1.0.0
- magic-string: 0.30.7
- mlly: 1.5.0
+ h3: 1.11.1
+ knitwork: 1.1.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- postcss: 8.4.35
- rollup-plugin-visualizer: 5.12.0(rollup@4.9.6)
+ pkg-types: 1.1.1
+ postcss: 8.4.38
+ rollup-plugin-visualizer: 5.12.0(rollup@4.17.2)
std-env: 3.7.0
- strip-literal: 2.0.0
- ufo: 1.4.0
+ strip-literal: 2.1.0
+ ufo: 1.5.3
unenv: 1.9.0
- unplugin: 1.7.1
- vite: 5.0.12(sass@1.70.0)
- vite-node: 1.2.2(sass@1.70.0)
- vite-plugin-checker: 0.6.4(eslint@8.56.0)(typescript@5.3.3)(vite@5.0.12)
- vue: 3.4.18(typescript@5.3.3)
- vue-bundle-renderer: 2.0.0
+ unplugin: 1.10.1
+ vite: 5.2.11(sass@1.77.0)
+ vite-node: 1.6.0(sass@1.77.0)
+ vite-plugin-checker: 0.6.4(eslint@9.2.0)(typescript@5.4.5)(vite@5.2.11)
+ vue: 3.4.27(typescript@5.4.5)
+ vue-bundle-renderer: 2.1.0
transitivePeerDependencies:
- '@types/node'
- eslint
@@ -1885,57 +1915,122 @@ packages:
- supports-color
- terser
- typescript
+ - uWebSockets.js
- vls
- vti
- vue-tsc
- /@nuxtjs/color-mode@3.3.2(rollup@4.9.6):
- resolution: {integrity: sha512-BLpBfrYZngV2QWFQ4HNEFwAXa3Pno43Ge+2XHcZJTTa1Z4KzRLvOwku8yiyV3ovIaaXKGwduBdv3Z5Ocdp0/+g==}
+ /@nuxt/vite-builder@3.11.2(eslint@9.2.0)(typescript@5.4.5)(vue@3.4.27):
+ resolution: {integrity: sha512-eXTZsAAN4dPz4eA2UD5YU2kD/DqgfyQp1UYsIdCe6+PAVe1ifkUboBjbc0piR5+3qI/S/eqk3nzxRGbiYF7Ccg==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+ peerDependencies:
+ vue: ^3.3.4
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- lodash.template: 4.5.0
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@rollup/plugin-replace': 5.0.5(rollup@4.17.2)
+ '@vitejs/plugin-vue': 5.0.4(vite@5.2.11)(vue@3.4.27)
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.2.11)(vue@3.4.27)
+ autoprefixer: 10.4.19(postcss@8.4.38)
+ clear: 0.1.0
+ consola: 3.2.3
+ cssnano: 6.1.2(postcss@8.4.38)
+ defu: 6.1.4
+ esbuild: 0.20.2
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ externality: 1.0.2
+ fs-extra: 11.2.0
+ get-port-please: 3.1.2
+ h3: 1.11.1
+ knitwork: 1.1.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
+ ohash: 1.1.3
pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ pkg-types: 1.1.1
+ postcss: 8.4.38
+ rollup-plugin-visualizer: 5.12.0(rollup@4.17.2)
+ std-env: 3.7.0
+ strip-literal: 2.1.0
+ ufo: 1.5.3
+ unenv: 1.9.0
+ unplugin: 1.10.1
+ vite: 5.2.11(sass@1.77.0)
+ vite-node: 1.6.0(sass@1.77.0)
+ vite-plugin-checker: 0.6.4(eslint@9.2.0)(typescript@5.4.5)(vite@5.2.11)
+ vue: 3.4.27(typescript@5.4.5)
+ vue-bundle-renderer: 2.1.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - eslint
+ - less
+ - lightningcss
+ - meow
+ - optionator
+ - rollup
+ - sass
+ - stylelint
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+ - uWebSockets.js
+ - vls
+ - vti
+ - vue-tsc
+ dev: true
+
+ /@nuxtjs/color-mode@3.4.1(rollup@4.17.2):
+ resolution: {integrity: sha512-vZgJqDstxInGw3RGSWbLoCLXtU1mvh1LLeuEA/X3a++DYA4ifwSbNoiSiOyb9qZHFEwz1Xr99H71sXV4IhOaEg==}
+ dependencies:
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ pathe: 1.1.2
+ pkg-types: 1.1.1
+ semver: 7.6.2
transitivePeerDependencies:
- rollup
- supports-color
dev: false
- /@nuxtjs/google-fonts@3.1.3(rollup@4.9.6):
- resolution: {integrity: sha512-gHwstHXQKd/r9O2WnQR4UJbi7Rfb9No1/gF4gqP+y18h1DAAZUOYPBF5EAPGjZKgDOW2XbZHP8Rw3oSDTpIT1A==}
+ /@nuxtjs/google-fonts@3.2.0(rollup@4.17.2):
+ resolution: {integrity: sha512-cGAjDJoeQ2jm6VJCo4AtSmKO6KjsbO9RSLj8q261fD0lMVNMZCxkCxBkg8L0/2Vfgp+5QBHWVXL71p1tiybJFw==}
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- google-fonts-helper: 3.4.1
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ google-fonts-helper: 3.6.0
pathe: 1.1.2
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxtjs/i18n@8.1.0(rollup@4.9.6)(vue@3.4.18):
- resolution: {integrity: sha512-4J3rvqb8TAAwMWgQxU4qzu+61bJBm/4531ISN1dDG498zT4ozpwHC72noAd9h2iV6BpRA4wFASiqFMSMnFBBZQ==}
+ /@nuxtjs/i18n@8.3.1(rollup@4.17.2)(vue@3.4.27):
+ resolution: {integrity: sha512-VHnnjFTTep2oC5++61WY06y4c/h943NyHQh1CRUJQvjsdbGSMX3WQjMGk+X05a3pyPFN70aq0YbgtsEoEoTEjQ==}
engines: {node: ^14.16.0 || >=16.11.0}
dependencies:
'@intlify/h3': 0.5.0
- '@intlify/shared': 9.9.1
- '@intlify/unplugin-vue-i18n': 2.0.0(rollup@4.9.6)(vue-i18n@9.9.1)
+ '@intlify/shared': 9.13.1
+ '@intlify/unplugin-vue-i18n': 3.0.1(rollup@4.17.2)(vue-i18n@9.13.1)
'@intlify/utils': 0.12.0
- '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.9.6)
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@rollup/plugin-yaml': 4.1.2(rollup@4.9.6)
- '@vue/compiler-sfc': 3.4.18
+ '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.17.2)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@rollup/plugin-yaml': 4.1.2(rollup@4.17.2)
+ '@vue/compiler-sfc': 3.4.27
debug: 4.3.4
defu: 6.1.4
estree-walker: 3.0.3
is-https: 4.0.0
- knitwork: 1.0.0
- magic-string: 0.30.7
- mlly: 1.5.0
+ knitwork: 1.1.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
pathe: 1.1.2
+ scule: 1.3.0
sucrase: 3.35.0
- ufo: 1.4.0
- unplugin: 1.7.1
- vue-i18n: 9.9.1(vue@3.4.18)
- vue-router: 4.2.5(vue@3.4.18)
+ ufo: 1.5.3
+ unplugin: 1.10.1
+ vue-i18n: 9.13.1(vue@3.4.27)
+ vue-router: 4.3.2(vue@3.4.27)
transitivePeerDependencies:
- petite-vue-i18n
- rollup
@@ -1944,105 +2039,229 @@ packages:
- vue-i18n-bridge
dev: true
- /@nuxtjs/tailwindcss@6.11.3(rollup@4.9.6):
- resolution: {integrity: sha512-l2iww/zOiHMuNERo6XB9MTJ8MEcq3NHFW/TPWmwPLGdOobV9zYUZ75otqi+mTK+/vgzQTtNXpIe2V0DLuTeb4A==}
+ /@nuxtjs/tailwindcss@6.12.0(rollup@4.17.2):
+ resolution: {integrity: sha512-vXvEq8z177TQcx0tc10mw3O6T9WeN0iTL8hIKGDfidmr+HKReexJU01aPgHefFrCu4LJB70egYFYnywzB9lMyQ==}
dependencies:
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- autoprefixer: 10.4.17(postcss@8.4.35)
- chokidar: 3.6.0
- clear-module: 4.1.2
- colorette: 2.0.20
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ autoprefixer: 10.4.19(postcss@8.4.38)
consola: 3.2.3
defu: 6.1.4
- h3: 1.10.1
- micromatch: 4.0.5
+ h3: 1.11.1
pathe: 1.1.2
- postcss: 8.4.35
- postcss-custom-properties: 13.3.4(postcss@8.4.35)
- postcss-nesting: 12.0.2(postcss@8.4.35)
- tailwind-config-viewer: 1.7.3(tailwindcss@3.4.1)
- tailwindcss: 3.4.1
- ufo: 1.4.0
+ postcss: 8.4.38
+ postcss-nesting: 12.1.2(postcss@8.4.38)
+ tailwind-config-viewer: 2.0.2(tailwindcss@3.4.3)
+ tailwindcss: 3.4.3
+ ufo: 1.5.3
+ unctx: 2.3.1
transitivePeerDependencies:
- rollup
- supports-color
- ts-node
+ - uWebSockets.js
dev: false
- /@parcel/watcher-android-arm64@2.4.0:
- resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==}
+ /@open-draft/deferred-promise@2.2.0:
+ resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==}
+
+ /@open-draft/logger@0.3.0:
+ resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==}
+ dependencies:
+ is-node-process: 1.2.0
+ outvariant: 1.4.2
+
+ /@open-draft/until@2.1.0:
+ resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==}
+
+ /@opentelemetry/api-logs@0.50.0:
+ resolution: {integrity: sha512-JdZuKrhOYggqOpUljAq4WWNi5nB10PmgoF0y2CvedLGXd0kSawb/UBnWT8gg1ND3bHCNHStAIVT0ELlxJJRqrA==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+
+ /@opentelemetry/api@1.8.0:
+ resolution: {integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==}
+ engines: {node: '>=8.0.0'}
+
+ /@opentelemetry/core@1.23.0(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-hdQ/a9TMzMQF/BO8Cz1juA43/L5YGtCSiKoOHmrTEf7VMDAZgy8ucpWx3eQTnQ3gBloRcWtzvcrMZABC3PTSKQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/semantic-conventions': 1.23.0
+
+ /@opentelemetry/core@1.24.1(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/semantic-conventions': 1.24.1
+
+ /@opentelemetry/otlp-transformer@0.50.0(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-s0sl1Yfqd5q1Kjrf6DqXPWzErL+XHhrXOfejh4Vc/SMTNqC902xDsC8JQxbjuramWt/+hibfguIvi7Ns8VLolA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api-logs': 0.50.0
+ '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/sdk-logs': 0.50.0(@opentelemetry/api-logs@0.50.0)(@opentelemetry/api@1.8.0)
+ '@opentelemetry/sdk-metrics': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/sdk-trace-base': 1.23.0(@opentelemetry/api@1.8.0)
+
+ /@opentelemetry/resources@1.23.0(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-iPRLfVfcEQynYGo7e4Di+ti+YQTAY0h5mQEUJcHlU9JOqpb4x965O6PZ+wMcwYVY63G96KtdS86YCM1BF1vQZg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/semantic-conventions': 1.23.0
+
+ /@opentelemetry/resources@1.24.1(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/semantic-conventions': 1.24.1
+
+ /@opentelemetry/sdk-logs@0.50.0(@opentelemetry/api-logs@0.50.0)(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-PeUEupBB29p9nlPNqXoa1PUWNLsZnxG0DCDj3sHqzae+8y76B/A5hvZjg03ulWdnvBLYpnJslqzylG9E0IL87g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.4.0 <1.9.0'
+ '@opentelemetry/api-logs': '>=0.39.1'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/api-logs': 0.50.0
+ '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0)
+
+ /@opentelemetry/sdk-metrics@1.23.0(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-4OkvW6+wST4h6LFG23rXSTf6nmTf201h9dzq7bE0z5R9ESEVLERZz6WXwE7PSgg1gdjlaznm1jLJf8GttypFDg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0)
+ lodash.merge: 4.6.2
+
+ /@opentelemetry/sdk-trace-base@1.23.0(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-PzBmZM8hBomUqvCddF/5Olyyviayka44O5nDWq673np3ctnvwMOvNrsUORZjKja1zJbwEuD9niAGbnVrz3jwRQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0)
+ '@opentelemetry/semantic-conventions': 1.23.0
+
+ /@opentelemetry/sdk-trace-base@1.24.1(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.9.0'
+ dependencies:
+ '@opentelemetry/api': 1.8.0
+ '@opentelemetry/core': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/resources': 1.24.1(@opentelemetry/api@1.8.0)
+ '@opentelemetry/semantic-conventions': 1.24.1
+
+ /@opentelemetry/semantic-conventions@1.23.0:
+ resolution: {integrity: sha512-MiqFvfOzfR31t8cc74CTP1OZfz7MbqpAnLCra8NqQoaHJX6ncIRTdYOQYBDQ2uFISDq0WY8Y9dDTWvsgzzBYRg==}
+ engines: {node: '>=14'}
+
+ /@opentelemetry/semantic-conventions@1.24.1:
+ resolution: {integrity: sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==}
+ engines: {node: '>=14'}
+
+ /@parcel/watcher-android-arm64@2.4.1:
+ resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@parcel/watcher-darwin-arm64@2.4.0:
- resolution: {integrity: sha512-T/At5pansFuQ8VJLRx0C6C87cgfqIYhW2N/kBfLCUvDhCah0EnLLwaD/6MW3ux+rpgkpQAnMELOCTKlbwncwiA==}
+ /@parcel/watcher-darwin-arm64@2.4.1:
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@parcel/watcher-darwin-x64@2.4.0:
- resolution: {integrity: sha512-vZMv9jl+szz5YLsSqEGCMSllBl1gU1snfbRL5ysJU03MEa6gkVy9OMcvXV1j4g0++jHEcvzhs3Z3LpeEbVmY6Q==}
+ /@parcel/watcher-darwin-x64@2.4.1:
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@parcel/watcher-freebsd-x64@2.4.0:
- resolution: {integrity: sha512-dHTRMIplPDT1M0+BkXjtMN+qLtqq24sLDUhmU+UxxLP2TEY2k8GIoqIJiVrGWGomdWsy5IO27aDV1vWyQ6gfHA==}
+ /@parcel/watcher-freebsd-x64@2.4.1:
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm-glibc@2.4.0:
- resolution: {integrity: sha512-9NQXD+qk46RwATNC3/UB7HWurscY18CnAPMTFcI9Y8CTbtm63/eex1SNt+BHFinEQuLBjaZwR2Lp+n7pmEJPpQ==}
+ /@parcel/watcher-linux-arm-glibc@2.4.1:
+ resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm64-glibc@2.4.0:
- resolution: {integrity: sha512-QuJTAQdsd7PFW9jNGaV9Pw+ZMWV9wKThEzzlY3Lhnnwy7iW23qtQFPql8iEaSFMCVI5StNNmONUopk+MFKpiKg==}
+ /@parcel/watcher-linux-arm64-glibc@2.4.1:
+ resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-arm64-musl@2.4.0:
- resolution: {integrity: sha512-oyN+uA9xcTDo/45bwsd6TFHa7Lc7hKujyMlvwrCLvSckvWogndCEoVYFNfZ6JJ2KNL/6fFiGPcbjp8jJmEh5Ng==}
+ /@parcel/watcher-linux-arm64-musl@2.4.1:
+ resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-x64-glibc@2.4.0:
- resolution: {integrity: sha512-KphV8awJmxU3q52JQvJot0QMu07CIyEjV+2Tb2ZtbucEgqyRcxOBDMsqp1JNq5nuDXtcCC0uHQICeiEz38dPBQ==}
+ /@parcel/watcher-linux-x64-glibc@2.4.1:
+ resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-linux-x64-musl@2.4.0:
- resolution: {integrity: sha512-7jzcOonpXNWcSijPpKD5IbC6xC7yTibjJw9jviVzZostYLGxbz8LDJLUnLzLzhASPlPGgpeKLtFUMjAAzM+gSA==}
+ /@parcel/watcher-linux-x64-musl@2.4.1:
+ resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@parcel/watcher-wasm@2.4.0:
- resolution: {integrity: sha512-MNgQ4WCbBybqQ97KwR/hqJGYTg3+s8qHpgIyFWB2qJOBvoJWbXuJGmm4ZkPLq2bMaANqCZqrXwmKYagZTkMKZA==}
+ /@parcel/watcher-wasm@2.4.1:
+ resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==}
engines: {node: '>= 10.0.0'}
dependencies:
is-glob: 4.0.3
@@ -2051,32 +2270,32 @@ packages:
bundledDependencies:
- napi-wasm
- /@parcel/watcher-win32-arm64@2.4.0:
- resolution: {integrity: sha512-NOej2lqlq8bQNYhUMnOD0nwvNql8ToQF+1Zhi9ULZoG+XTtJ9hNnCFfyICxoZLXor4bBPTOnzs/aVVoefYnjIg==}
+ /@parcel/watcher-win32-arm64@2.4.1:
+ resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@parcel/watcher-win32-ia32@2.4.0:
- resolution: {integrity: sha512-IO/nM+K2YD/iwjWAfHFMBPz4Zqn6qBDqZxY4j2n9s+4+OuTSRM/y/irksnuqcspom5DjkSeF9d0YbO+qpys+JA==}
+ /@parcel/watcher-win32-ia32@2.4.1:
+ resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@parcel/watcher-win32-x64@2.4.0:
- resolution: {integrity: sha512-pAUyUVjfFjWaf/pShmJpJmNxZhbMvJASUpdes9jL6bTEJ+gDxPRSpXTIemNyNsb9AtbiGXs9XduP1reThmd+dA==}
+ /@parcel/watcher-win32-x64@2.4.1:
+ resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@parcel/watcher@2.4.0:
- resolution: {integrity: sha512-XJLGVL0DEclX5pcWa2N9SX1jCGTDd8l972biNooLFtjneuGqodupPQh6XseXIBBeVIMaaJ7bTcs3qGvXwsp4vg==}
+ /@parcel/watcher@2.4.1:
+ resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
engines: {node: '>= 10.0.0'}
dependencies:
detect-libc: 1.0.3
@@ -2084,18 +2303,18 @@ packages:
micromatch: 4.0.5
node-addon-api: 7.1.0
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.0
- '@parcel/watcher-darwin-arm64': 2.4.0
- '@parcel/watcher-darwin-x64': 2.4.0
- '@parcel/watcher-freebsd-x64': 2.4.0
- '@parcel/watcher-linux-arm-glibc': 2.4.0
- '@parcel/watcher-linux-arm64-glibc': 2.4.0
- '@parcel/watcher-linux-arm64-musl': 2.4.0
- '@parcel/watcher-linux-x64-glibc': 2.4.0
- '@parcel/watcher-linux-x64-musl': 2.4.0
- '@parcel/watcher-win32-arm64': 2.4.0
- '@parcel/watcher-win32-ia32': 2.4.0
- '@parcel/watcher-win32-x64': 2.4.0
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
/@pkgjs/parseargs@0.11.0:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
@@ -2103,14 +2322,14 @@ packages:
requiresBuild: true
optional: true
- /@polka/url@1.0.0-next.24:
- resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
+ /@polka/url@1.0.0-next.25:
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
/@popperjs/core@2.11.8:
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
dev: false
- /@rollup/plugin-alias@5.1.0(rollup@4.9.6):
+ /@rollup/plugin-alias@5.1.0(rollup@4.17.2):
resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2119,10 +2338,10 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 4.9.6
+ rollup: 4.17.2
slash: 4.0.0
- /@rollup/plugin-commonjs@25.0.7(rollup@4.9.6):
+ /@rollup/plugin-commonjs@25.0.7(rollup@4.17.2):
resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2131,15 +2350,15 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.7
- rollup: 4.9.6
+ magic-string: 0.30.10
+ rollup: 4.17.2
- /@rollup/plugin-inject@5.0.5(rollup@4.9.6):
+ /@rollup/plugin-inject@5.0.5(rollup@4.17.2):
resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2148,12 +2367,12 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
estree-walker: 2.0.2
- magic-string: 0.30.7
- rollup: 4.9.6
+ magic-string: 0.30.10
+ rollup: 4.17.2
- /@rollup/plugin-json@6.1.0(rollup@4.9.6):
+ /@rollup/plugin-json@6.1.0(rollup@4.17.2):
resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2162,10 +2381,10 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
- rollup: 4.9.6
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ rollup: 4.17.2
- /@rollup/plugin-node-resolve@15.2.3(rollup@4.9.6):
+ /@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2):
resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2174,15 +2393,15 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
- rollup: 4.9.6
+ rollup: 4.17.2
- /@rollup/plugin-replace@5.0.5(rollup@4.9.6):
+ /@rollup/plugin-replace@5.0.5(rollup@4.17.2):
resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2191,11 +2410,11 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
- magic-string: 0.30.7
- rollup: 4.9.6
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ magic-string: 0.30.10
+ rollup: 4.17.2
- /@rollup/plugin-terser@0.4.4(rollup@4.9.6):
+ /@rollup/plugin-terser@0.4.4(rollup@4.17.2):
resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2204,24 +2423,12 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 4.9.6
+ rollup: 4.17.2
serialize-javascript: 6.0.2
- smob: 1.4.1
- terser: 5.27.0
+ smob: 1.5.0
+ terser: 5.31.0
- /@rollup/plugin-wasm@6.2.2(rollup@4.9.6):
- resolution: {integrity: sha512-gpC4R1G9Ni92ZIRTexqbhX7U+9estZrbhP+9SRb0DW9xpB9g7j34r+J2hqrcW/lRI7dJaU84MxZM0Rt82tqYPQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
- rollup: 4.9.6
-
- /@rollup/plugin-yaml@4.1.2(rollup@4.9.6):
+ /@rollup/plugin-yaml@4.1.2(rollup@4.17.2):
resolution: {integrity: sha512-RpupciIeZMUqhgFE97ba0s98mOFS7CWzN3EJNhJkqSv9XLlWYtwVdtE6cDw6ASOF/sZVFS7kRJXftaqM2Vakdw==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2230,9 +2437,9 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
js-yaml: 4.1.0
- rollup: 4.9.6
+ rollup: 4.17.2
tosource: 2.0.0-alpha.3
dev: true
@@ -2243,7 +2450,7 @@ packages:
estree-walker: 2.0.2
picomatch: 2.3.1
- /@rollup/pluginutils@5.1.0(rollup@4.9.6):
+ /@rollup/pluginutils@5.1.0(rollup@4.17.2):
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2255,176 +2462,277 @@ packages:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 4.9.6
+ rollup: 4.17.2
- /@rollup/rollup-android-arm-eabi@4.9.6:
- resolution: {integrity: sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==}
+ /@rollup/rollup-android-arm-eabi@4.17.2:
+ resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-android-arm64@4.9.6:
- resolution: {integrity: sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==}
+ /@rollup/rollup-android-arm64@4.17.2:
+ resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-arm64@4.9.6:
- resolution: {integrity: sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==}
+ /@rollup/rollup-darwin-arm64@4.17.2:
+ resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-x64@4.9.6:
- resolution: {integrity: sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==}
+ /@rollup/rollup-darwin-x64@4.17.2:
+ resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.9.6:
- resolution: {integrity: sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.17.2:
+ resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm-musleabihf@4.17.2:
+ resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.9.6:
- resolution: {integrity: sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==}
+ /@rollup/rollup-linux-arm64-gnu@4.17.2:
+ resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.9.6:
- resolution: {integrity: sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==}
+ /@rollup/rollup-linux-arm64-musl@4.17.2:
+ resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-riscv64-gnu@4.9.6:
- resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==}
+ /@rollup/rollup-linux-powerpc64le-gnu@4.17.2:
+ resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-riscv64-gnu@4.17.2:
+ resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-gnu@4.9.6:
- resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==}
+ /@rollup/rollup-linux-s390x-gnu@4.17.2:
+ resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.17.2:
+ resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.9.6:
- resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==}
+ /@rollup/rollup-linux-x64-musl@4.17.2:
+ resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.9.6:
- resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==}
+ /@rollup/rollup-win32-arm64-msvc@4.17.2:
+ resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.9.6:
- resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==}
+ /@rollup/rollup-win32-ia32-msvc@4.17.2:
+ resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.9.6:
- resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==}
+ /@rollup/rollup-win32-x64-msvc@4.17.2:
+ resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@sigstore/bundle@2.1.1:
- resolution: {integrity: sha512-v3/iS+1nufZdKQ5iAlQKcCsoh0jffQyABvYIxKsZQFWc4ubuGjwZklFHpDgV6O6T7vvV78SW5NHI91HFKEcxKg==}
+ /@rushstack/eslint-patch@1.10.2:
+ resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
+ dev: true
+
+ /@shikijs/core@1.3.0:
+ resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==}
+
+ /@sigstore/bundle@2.3.1:
+ resolution: {integrity: sha512-eqV17lO3EIFqCWK3969Rz+J8MYrRZKw9IBHpSo6DEcEX2c+uzDFOgHE9f2MnyDpfs48LFO4hXmk9KhQ74JzU1g==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/protobuf-specs': 0.3.1
- /@sigstore/core@1.0.0:
- resolution: {integrity: sha512-dW2qjbWLRKGu6MIDUTBuJwXCnR8zivcSpf5inUzk7y84zqy/dji0/uahppoIgMoKeR+6pUZucrwHfkQQtiG9Rw==}
+ /@sigstore/core@1.1.0:
+ resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==}
engines: {node: ^16.14.0 || >=18.0.0}
- /@sigstore/protobuf-specs@0.2.1:
- resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@sigstore/protobuf-specs@0.3.1:
+ resolution: {integrity: sha512-aIL8Z9NsMr3C64jyQzE0XlkEyBLpgEJJFDHLVVStkFV5Q3Il/r/YtY6NJWKQ4cy4AE7spP1IX5Jq7VCAxHHMfQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
- /@sigstore/sign@2.2.2:
- resolution: {integrity: sha512-mAifqvvGOCkb5BJ5d/SRrVP5+kKCGxtcHuti6lgqZalIfNxikxlJMMptOqFp9+xV5LAnJMSaMWtzvcgNZ3PlPA==}
+ /@sigstore/sign@2.3.1:
+ resolution: {integrity: sha512-YZ71wKIOweC8ViUeZXboz0iPLqMkskxuoeN/D1CEpAyZvEepbX9oRMIoO6a/DxUqO1VEaqmcmmqzSiqtOsvSmw==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 2.1.1
- '@sigstore/core': 1.0.0
- '@sigstore/protobuf-specs': 0.2.1
- make-fetch-happen: 13.0.0
+ '@sigstore/bundle': 2.3.1
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.1
+ make-fetch-happen: 13.0.1
+ proc-log: 4.2.0
+ promise-retry: 2.0.1
transitivePeerDependencies:
- supports-color
- /@sigstore/tuf@2.3.0:
- resolution: {integrity: sha512-S98jo9cpJwO1mtQ+2zY7bOdcYyfVYCUaofCG6wWRzk3pxKHVAkSfshkfecto2+LKsx7Ovtqbgb2LS8zTRhxJ9Q==}
+ /@sigstore/tuf@2.3.3:
+ resolution: {integrity: sha512-agQhHNkIddXFslkudjV88vTXiAMEyUtso3at6ZHUNJ1agZb7Ze6VW/PddHipdWBu1t+8OWLW5X5yZOPiOnaWJQ==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/protobuf-specs': 0.2.1
- tuf-js: 2.2.0
+ '@sigstore/protobuf-specs': 0.3.1
+ tuf-js: 2.2.1
transitivePeerDependencies:
- supports-color
- /@sigstore/verify@1.0.0:
- resolution: {integrity: sha512-sRU6nblDBQ4pVTWni019Kij+XQj4RP75WXN5z3qHk81dt/L8A7r3v8RgRInTup4/Jf90WNods9CcbnWj7zJ26w==}
+ /@sigstore/verify@1.2.0:
+ resolution: {integrity: sha512-hQF60nc9yab+Csi4AyoAmilGNfpXT+EXdBgFkP9OgPwIBPwyqVf7JAWPtmqrrrneTmAT6ojv7OlH1f6Ix5BG4Q==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 2.1.1
- '@sigstore/core': 1.0.0
- '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/bundle': 2.3.1
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.1
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
dev: true
- /@sindresorhus/merge-streams@1.0.0:
- resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==}
+ /@sindresorhus/merge-streams@2.3.0:
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- /@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.1):
+ /@stylistic/eslint-plugin-js@2.1.0(eslint@9.2.0):
+ resolution: {integrity: sha512-gdXUjGNSsnY6nPyqxu6lmDTtVrwCOjun4x8PUn0x04d5ucLI74N3MT1Q0UhdcOR9No3bo5PGDyBgXK+KmD787A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+ dependencies:
+ '@types/eslint': 8.56.10
+ acorn: 8.11.3
+ eslint: 9.2.0
+ eslint-visitor-keys: 4.0.0
+ espree: 10.0.1
+ dev: true
+
+ /@stylistic/eslint-plugin-jsx@2.1.0(eslint@9.2.0):
+ resolution: {integrity: sha512-mMD7S+IndZo2vxmwpHVTCwx2O1VdtE5tmpeNwgaEcXODzWV1WTWpnsc/PECQKIr/mkLPFWiSIqcuYNhQ/3l6AQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+ dependencies:
+ '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.2.0)
+ '@types/eslint': 8.56.10
+ eslint: 9.2.0
+ estraverse: 5.3.0
+ picomatch: 4.0.2
+ dev: true
+
+ /@stylistic/eslint-plugin-plus@2.1.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-S5QAlgYXESJaSBFhBSBLZy9o36gXrXQwWSt6QkO+F0SrT9vpV5JF/VKoh+ojO7tHzd8Ckmyouq02TT9Sv2B0zQ==}
+ peerDependencies:
+ eslint: '*'
+ dependencies:
+ '@types/eslint': 8.56.10
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint: 9.2.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@stylistic/eslint-plugin-ts@2.1.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-2ioFibufHYBALx2TBrU4KXovCkN8qCqcb9yIHc0fyOfTaO5jw4d56WW7YRcF3Zgde6qFyXwAN6z/+w4pnmos1g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+ dependencies:
+ '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.2.0)
+ '@types/eslint': 8.56.10
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint: 9.2.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@stylistic/eslint-plugin@2.1.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-cBBowKP2u/+uE5CzgH5w8pE9VKqcM7BXdIDPIbGt2rmLJGnA6MJPr9vYGaqgMoJFs7R/FzsMQerMvvEP40g2uw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+ dependencies:
+ '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.2.0)
+ '@stylistic/eslint-plugin-jsx': 2.1.0(eslint@9.2.0)
+ '@stylistic/eslint-plugin-plus': 2.1.0(eslint@9.2.0)(typescript@5.4.5)
+ '@stylistic/eslint-plugin-ts': 2.1.0(eslint@9.2.0)(typescript@5.4.5)
+ '@types/eslint': 8.56.10
+ eslint: 9.2.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@tailwindcss/aspect-ratio@0.4.2(tailwindcss@3.4.3):
resolution: {integrity: sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==}
peerDependencies:
tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1'
dependencies:
- tailwindcss: 3.4.1
+ tailwindcss: 3.4.3
dev: false
- /@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.1):
+ /@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.3):
resolution: {integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==}
peerDependencies:
tailwindcss: '>=3.2.0'
dependencies:
- tailwindcss: 3.4.1
+ tailwindcss: 3.4.3
dev: false
- /@tailwindcss/forms@0.5.7(tailwindcss@3.4.1):
+ /@tailwindcss/forms@0.5.7(tailwindcss@3.4.3):
resolution: {integrity: sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.4.1
+ tailwindcss: 3.4.3
dev: false
- /@tailwindcss/typography@0.5.10(tailwindcss@3.4.1):
- resolution: {integrity: sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==}
+ /@tailwindcss/typography@0.5.13(tailwindcss@3.4.3):
+ resolution: {integrity: sha512-ADGcJ8dX21dVVHIwTRgzrcunY6YY9uSlAHHGVKvkA+vLc5qLwEszvKts40lx7z0qc4clpjclwLeK5rVCV2P/uw==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
dependencies:
@@ -2432,7 +2740,20 @@ packages:
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.1
+ tailwindcss: 3.4.3
+ dev: false
+
+ /@tanstack/virtual-core@3.5.0:
+ resolution: {integrity: sha512-KnPRCkQTyqhanNC0K63GBG3wA8I+D1fQuVnAvcBF8f13akOKeQp1gSbu6f77zCxhEk727iV5oQnbHLYzHrECLg==}
+ dev: false
+
+ /@tanstack/vue-virtual@3.5.0(vue@3.4.27):
+ resolution: {integrity: sha512-wvRQ8sFxn/NDr3WvI5XabhFovZ5MBmpEck2GHpTxYunmV63Ovpl30lRu6W5BPQo35a1GqDZ+Pvzlz6WDWRNqqw==}
+ peerDependencies:
+ vue: ^2.7.0 || ^3.0.0
+ dependencies:
+ '@tanstack/virtual-core': 3.5.0
+ vue: 3.4.27(typescript@5.4.5)
dev: false
/@trysound/sax@0.2.0:
@@ -2443,12 +2764,19 @@ packages:
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
- /@tufjs/models@2.0.0:
- resolution: {integrity: sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==}
+ /@tufjs/models@2.0.1:
+ resolution: {integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.3
+ minimatch: 9.0.4
+
+ /@types/eslint@8.56.10:
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+ dependencies:
+ '@types/estree': 1.0.5
+ '@types/json-schema': 7.0.15
+ dev: true
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
@@ -2456,18 +2784,18 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 20.11.17
+ '@types/node': 20.12.11
/@types/json-schema@7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
dev: true
- /@types/lodash@4.14.202:
- resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
+ /@types/lodash@4.17.1:
+ resolution: {integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==}
dev: false
- /@types/node@20.11.17:
- resolution: {integrity: sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==}
+ /@types/node@20.12.11:
+ resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==}
dependencies:
undici-types: 5.26.5
@@ -2484,8 +2812,8 @@ packages:
/@types/resolve@1.20.2:
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- /@types/semver@7.5.6:
- resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
+ /@types/semver@7.5.8:
+ resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
dev: true
/@types/triple-beam@1.3.5:
@@ -2494,269 +2822,456 @@ packages:
/@types/web-bluetooth@0.0.20:
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- dev: false
- /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0)(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
- '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
- eslint: ^7.0.0 || ^8.0.0
+ '@typescript-eslint/parser': ^7.0.0
+ eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.21.0(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 6.21.0
+ '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/type-utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4
- eslint: 8.56.0
+ eslint: 9.2.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
- ts-api-utils: 1.2.1(typescript@5.3.3)
- typescript: 5.3.3
+ semver: 7.6.2
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 6.21.0
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4
- eslint: 8.56.0
- typescript: 5.3.3
+ eslint: 9.2.0
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@6.21.0:
- resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/scope-manager@7.8.0:
+ resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==}
+ engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/visitor-keys': 6.21.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
dev: true
- /@typescript-eslint/type-utils@6.21.0(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/type-utils@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==}
+ engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
- '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
debug: 4.3.4
- eslint: 8.56.0
- ts-api-utils: 1.2.1(typescript@5.3.3)
- typescript: 5.3.3
+ eslint: 9.2.0
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types@6.21.0:
- resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/types@7.8.0:
+ resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==}
+ engines: {node: ^18.18.0 || >=20.0.0}
dev: true
- /@typescript-eslint/typescript-estree@6.21.0(typescript@5.3.3):
- resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5):
+ resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/visitor-keys': 6.21.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.3
- semver: 7.6.0
- ts-api-utils: 1.2.1(typescript@5.3.3)
- typescript: 5.3.3
+ minimatch: 9.0.4
+ semver: 7.6.2
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@6.21.0(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/utils@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ eslint: ^8.56.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@types/json-schema': 7.0.15
- '@types/semver': 7.5.6
- '@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
- eslint: 8.56.0
- semver: 7.6.0
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ eslint: 9.2.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys@6.21.0:
- resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
- engines: {node: ^16.0.0 || >=18.0.0}
+ /@typescript-eslint/visitor-keys@7.8.0:
+ resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/types': 7.8.0
eslint-visitor-keys: 3.4.3
dev: true
- /@ungap/structured-clone@1.2.0:
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
-
- /@unhead/dom@1.8.10:
- resolution: {integrity: sha512-dBeDbHrBjeU+eVgMsD91TGEazb1dwLrY0x/ve01CldMCmm+WcRu++SUW7s1QX84mzGH2EgFz78o1OPn6jpV3zw==}
+ /@unhead/dom@1.9.10:
+ resolution: {integrity: sha512-F4sBrmd8kG8MEqcVTGL0Y6tXbJMdWK724pznUzefpZTs1GaVypFikLluaLt4EnICcVhOBSe4TkGrc8N21IJJzQ==}
dependencies:
- '@unhead/schema': 1.8.10
- '@unhead/shared': 1.8.10
+ '@unhead/schema': 1.9.10
+ '@unhead/shared': 1.9.10
- /@unhead/schema@1.8.10:
- resolution: {integrity: sha512-cy8RGOPkwOVY5EmRoCgGV8AqLjy/226xBVTY54kBct02Om3hBdpB9FZa9frM910pPUXMI8PNmFgABO23O7IdJA==}
+ /@unhead/schema@1.9.10:
+ resolution: {integrity: sha512-3ROh0doKfA7cIcU0zmjYVvNOiJuxSOcjInL+7iOFIxQovEWr1PcDnrnbEWGJsXrLA8eqjrjmhuDqAr3JbMGsLg==}
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- /@unhead/shared@1.8.10:
- resolution: {integrity: sha512-pEFryAs3EmV+ShDQx2ZBwUnt5l3RrMrXSMZ50oFf+MImKZNARVvD4+3I8fEI9wZh+Zq0JYG3UAfzo51MUP+Juw==}
+ /@unhead/shared@1.9.10:
+ resolution: {integrity: sha512-LBXxm/8ahY4FZ0FbWVaM1ANFO5QpPzvaYwjAQhgHANsrqFP2EqoGcOv1CfhdQbxg8vpGXkjI7m0r/8E9d3JoDA==}
dependencies:
- '@unhead/schema': 1.8.10
+ '@unhead/schema': 1.9.10
- /@unhead/ssr@1.8.10:
- resolution: {integrity: sha512-7wKRKDd8c2NFmMyPetj8Ah5u2hXunDBZT5Y2DH83O16PiMxx4/uobGamTV1EfcqjTvOKJvAqkrYZNYSWss99NQ==}
+ /@unhead/ssr@1.9.10:
+ resolution: {integrity: sha512-4hy3uFrYGJd5h0jmCIC0vFBf5DDhbz+j6tkATTNIaLz5lR4ZdFT+ipwzR20GvnaOiGWiOhZF3yv9FTJQyX4jog==}
dependencies:
- '@unhead/schema': 1.8.10
- '@unhead/shared': 1.8.10
+ '@unhead/schema': 1.9.10
+ '@unhead/shared': 1.9.10
- /@unhead/vue@1.8.10(vue@3.4.18):
- resolution: {integrity: sha512-KF8pftHnxnlBlgNpKXWLTg3ZUtkuDCxRPUFSDBy9CtqRSX/qvAhLZ26mbqRVmHj8KigiRHP/wnPWNyGnUx20Bg==}
+ /@unhead/vue@1.9.10(vue@3.4.27):
+ resolution: {integrity: sha512-Zi65eTU5IIaqqXAVOVJ4fnwJRR751FZIFlzYOjIekf1eNkISy+A4xyz3NIEQWSlXCrOiDNgDhT0YgKUcx5FfHQ==}
peerDependencies:
vue: '>=2.7 || >=3'
dependencies:
- '@unhead/schema': 1.8.10
- '@unhead/shared': 1.8.10
+ '@unhead/schema': 1.9.10
+ '@unhead/shared': 1.9.10
hookable: 5.5.3
- unhead: 1.8.10
- vue: 3.4.18(typescript@5.3.3)
+ unhead: 1.9.10
+ vue: 3.4.27(typescript@5.4.5)
+
+ /@unocss/astro@0.60.0(rollup@4.17.2)(vite@5.2.11):
+ resolution: {integrity: sha512-clZuuNWFpNpr8OGm4vr/t3cD++S9rqK1jsZKkT0Wuu8/IKkZx/4x0BTn82KhaB4o5RJWwwtkfX65AePn6D+62g==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/reset': 0.60.0
+ '@unocss/vite': 0.60.0(rollup@4.17.2)(vite@5.2.11)
+ vite: 5.2.11(sass@1.77.0)
+ transitivePeerDependencies:
+ - rollup
+
+ /@unocss/cli@0.60.0(rollup@4.17.2):
+ resolution: {integrity: sha512-TzBhbOfd7Rl+NsqHjQSFLoc8aMJcfRRMZ3BXuIa3EhGuT0r4e1H7CENUQXl7ijNLVL9XL2SyrV68cDvEeQfMZA==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@unocss/config': 0.60.0
+ '@unocss/core': 0.60.0
+ '@unocss/preset-uno': 0.60.0
+ cac: 6.7.14
+ chokidar: 3.6.0
+ colorette: 2.0.20
+ consola: 3.2.3
+ fast-glob: 3.3.2
+ magic-string: 0.30.10
+ pathe: 1.1.2
+ perfect-debounce: 1.0.0
+ transitivePeerDependencies:
+ - rollup
+
+ /@unocss/config@0.60.0:
+ resolution: {integrity: sha512-y8zTM/qhZ5p2zhtgjsqL4BDjDXes1i72kNts/A85adNTx9ffZG+0dbrH2DLoBKp6aAb51AOo5OcG5cllSbNrDQ==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@unocss/core': 0.60.0
+ unconfig: 0.3.13
+
+ /@unocss/core@0.60.0:
+ resolution: {integrity: sha512-i1j5i/4xiCfogobaOdQCQUEy/Ch8mBtKgpfUIreJtElaF15uIjT2t/G0y7qUz87ZNl+wJoPcWkcSC92HVnjXwg==}
+
+ /@unocss/extractor-arbitrary-variants@0.60.0:
+ resolution: {integrity: sha512-f6o2KsCP+BYzYRjeBkjiquh5eM1oRv/wNu1a1triNk9pmmD3nUWRY0ImaXRkSbgHpAjVEDloOpqPdMTO408ePg==}
+ dependencies:
+ '@unocss/core': 0.60.0
+
+ /@unocss/inspector@0.60.0:
+ resolution: {integrity: sha512-aw9wkEslDnuQNEQkffCVvYJEljB9y/jkNM/i/YBjDYsTYOa/p63NVju9Bn0l3+uUiH6Nsws2JJ1q3xIulhZEIw==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/rule-utils': 0.60.0
+ gzip-size: 6.0.0
+ sirv: 2.0.4
+
+ /@unocss/postcss@0.60.0(postcss@8.4.38):
+ resolution: {integrity: sha512-FlEAUWSywKZ55IJbhM0vJ39mDHWveT06Bu4l7TYLgdQ6BJHDIncatMg3GQ9L8RTEbXGGjhnOs3EJyd1ZHEzBUw==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ postcss: ^8.4.21
+ dependencies:
+ '@unocss/config': 0.60.0
+ '@unocss/core': 0.60.0
+ '@unocss/rule-utils': 0.60.0
+ css-tree: 2.3.1
+ fast-glob: 3.3.2
+ magic-string: 0.30.10
+ postcss: 8.4.38
+
+ /@unocss/preset-attributify@0.60.0:
+ resolution: {integrity: sha512-FJZCKy6Wf6qc9EXFei4txy9nYkKotoPD/20NfA+beYS3XbVxAxQy6d454fe9DDK99QfJeEJd8xhaWJFCweiQWw==}
+ dependencies:
+ '@unocss/core': 0.60.0
+
+ /@unocss/preset-icons@0.60.0:
+ resolution: {integrity: sha512-8DD9PURCfAtN5nlpOAz5ocV8NG1bb1u83WIGYu+uuVbmFUiMVP4RIEtS1+/dXBEtl0EA7rgN9qI5EmzPDrLd1Q==}
+ dependencies:
+ '@iconify/utils': 2.1.23
+ '@unocss/core': 0.60.0
+ ofetch: 1.3.4
+ transitivePeerDependencies:
+ - supports-color
+
+ /@unocss/preset-mini@0.60.0:
+ resolution: {integrity: sha512-N0XqjuMRjtRUYeE5ELxOcraEwUWkhQum+qIhr0ZZCCoGQpa/u1MRCkwNcBSEy70HZMoyesYVtxiOz0CgAWRSQw==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/extractor-arbitrary-variants': 0.60.0
+ '@unocss/rule-utils': 0.60.0
+
+ /@unocss/preset-tagify@0.60.0:
+ resolution: {integrity: sha512-7uEnjqQN+zdfBpDwzfVB/rnriqa6jxImMv3g8nQ0A3boopaB+JBuqlSr3/sUmb8YJh9U+F5l8zShjLkPOz9gkg==}
+ dependencies:
+ '@unocss/core': 0.60.0
+
+ /@unocss/preset-typography@0.60.0:
+ resolution: {integrity: sha512-rHzAZa5MqJGpSxL3OhDQZ6Nk9jTDhiEKB3s7xR4bfwKtEuMiTZAzrOl6DDKnAgjH2H2cXfgFpQP+kLjoYgyNkA==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/preset-mini': 0.60.0
+
+ /@unocss/preset-uno@0.60.0:
+ resolution: {integrity: sha512-aMoja25jfz80N/TYysMe1RAy0yhONUgl3Eh3Z4EIJrdsHXxuBicO1Wa/EbI8Mc4dY+NPETTC/5JF1SH+yWihGA==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/preset-mini': 0.60.0
+ '@unocss/preset-wind': 0.60.0
+ '@unocss/rule-utils': 0.60.0
+
+ /@unocss/preset-web-fonts@0.60.0:
+ resolution: {integrity: sha512-muiQSNq9TmidlMPb9dvX+u5DGNPWfuOKhTTPA2Ia/ZmOUo3SfX2LQq2af7QfjoDuAGnLo3ZZf0qyP1Ao9YsbrA==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ ofetch: 1.3.4
+
+ /@unocss/preset-wind@0.60.0:
+ resolution: {integrity: sha512-utfAJ15tfnPg9r5rfCnBwGRMvhtFiqp8f/YQdrREsnAJRqcfzA6E2Tdh67GyOjPRBjNusw+WmV4K2tltzKbdOQ==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/preset-mini': 0.60.0
+ '@unocss/rule-utils': 0.60.0
+
+ /@unocss/reset@0.60.0:
+ resolution: {integrity: sha512-r4NUPb/je10ZUrdncSuHipeDqBn7gY5HEcdAx2Rse+O/yWJimVsBkb5sGU1na9fhUwxv0cYIiFiqoQaKzcnCpQ==}
- /@vercel/nft@0.24.4:
- resolution: {integrity: sha512-KjYAZty7boH5fi5udp6p+lNu6nawgs++pHW+3koErMgbRkkHuToGX/FwjN5clV1FcaM3udfd4zW/sUapkMgpZw==}
+ /@unocss/rule-utils@0.60.0:
+ resolution: {integrity: sha512-YDXSUQceqMSVG51F5yTTPSadrV7YrbRX3VnaSE5NopyyYKRWT6/0dl68riTOjtJfVcm55vl7ZhwNFobAdtOfYA==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@unocss/core': 0.60.0
+ magic-string: 0.30.10
+
+ /@unocss/scope@0.60.0:
+ resolution: {integrity: sha512-BegakMMkFGWGTRro+CSZVEGS81k00HlYiT81bbDtjFifiJVv6K13U3S2YqBaUS7zlECCYhMr4Bpv8Rr78j66Bw==}
+
+ /@unocss/transformer-attributify-jsx-babel@0.60.0:
+ resolution: {integrity: sha512-GpBqGZZ9+sja9JapQRBvlD1o3GFumsbAvd/HmnXyDH7WLYO/y/HPA8/4Ar2ieGqcE0IlVVoTj8B2ruf5umhaWQ==}
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5)
+ '@unocss/core': 0.60.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@unocss/transformer-attributify-jsx@0.60.0:
+ resolution: {integrity: sha512-0uBTvcYLtkCHJ2491orUGpZ3Pw43NPZu/nn06P4FMyyudmCgBd5z9bl5bGiCY6MbIRDyGEGGMEWF87s80FnLPw==}
+ dependencies:
+ '@unocss/core': 0.60.0
+
+ /@unocss/transformer-compile-class@0.60.0:
+ resolution: {integrity: sha512-PEfz9q11KBQR1UP5NB2K4qcjh+LLCXIL4wBKz7qhKkjjyGr7rCRrfLtbZv/1QmgKST+WHbK7uKkRYm/kBbFdyA==}
+ dependencies:
+ '@unocss/core': 0.60.0
+
+ /@unocss/transformer-directives@0.60.0:
+ resolution: {integrity: sha512-ZG+TvpvimH5LkFkqz27BQryhF8oeM+mUkD9oV+DhtQBadV5pcMvi40NB5VEeDj3dsogHTMrl13dsHXdrINI7jQ==}
+ dependencies:
+ '@unocss/core': 0.60.0
+ '@unocss/rule-utils': 0.60.0
+ css-tree: 2.3.1
+
+ /@unocss/transformer-variant-group@0.60.0:
+ resolution: {integrity: sha512-00PikfUfJN+LdTaoILA+iXbPB5J8/zX1RcJx1DwKF2iRfKNmSu9+jsyNN0zyQX2jOVXY4UuK3x8LJ1qtZl1edA==}
+ dependencies:
+ '@unocss/core': 0.60.0
+
+ /@unocss/vite@0.60.0(rollup@4.17.2)(vite@5.2.11):
+ resolution: {integrity: sha512-Xyqg+slwR+y5eggPZu74OwVZrIyYe+Ut3WzdmM3mgHBh+ty8Ci85ndm71K5wagyDNvbfLj5gA10h14n3OyB9RQ==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@unocss/config': 0.60.0
+ '@unocss/core': 0.60.0
+ '@unocss/inspector': 0.60.0
+ '@unocss/scope': 0.60.0
+ '@unocss/transformer-directives': 0.60.0
+ chokidar: 3.6.0
+ fast-glob: 3.3.2
+ magic-string: 0.30.10
+ vite: 5.2.11(sass@1.77.0)
+ transitivePeerDependencies:
+ - rollup
+
+ /@vercel/nft@0.26.5:
+ resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
engines: {node: '>=16'}
hasBin: true
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
'@rollup/pluginutils': 4.2.1
acorn: 8.11.3
+ acorn-import-attributes: 1.9.5(acorn@8.11.3)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
micromatch: 4.0.5
- node-gyp-build: 4.8.0
+ node-gyp-build: 4.8.1
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
- supports-color
- /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.12)(vue@3.4.18):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11)(vue@3.4.27):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0 || ^5.0.0
vue: ^3.0.0
dependencies:
- '@babel/core': 7.23.9
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.9)
- '@vue/babel-plugin-jsx': 1.2.1(@babel/core@7.23.9)
- vite: 5.0.12(sass@1.70.0)
- vue: 3.4.18(typescript@5.3.3)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
+ vite: 5.2.11(sass@1.77.0)
+ vue: 3.4.27(typescript@5.4.5)
transitivePeerDependencies:
- supports-color
- /@vitejs/plugin-vue@5.0.3(vite@5.0.12)(vue@3.4.18):
- resolution: {integrity: sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==}
+ /@vitejs/plugin-vue@5.0.4(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 5.0.12(sass@1.70.0)
- vue: 3.4.18(typescript@5.3.3)
+ vite: 5.2.11(sass@1.77.0)
+ vue: 3.4.27(typescript@5.4.5)
- /@vitest/expect@1.2.2:
- resolution: {integrity: sha512-3jpcdPAD7LwHUUiT2pZTj2U82I2Tcgg2oVPvKxhn6mDI2On6tfvPQTjAI4628GUGDZrCm4Zna9iQHm5cEexOAg==}
+ /@vitest/expect@1.6.0:
+ resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
dependencies:
- '@vitest/spy': 1.2.2
- '@vitest/utils': 1.2.2
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
chai: 4.4.1
dev: true
- /@vitest/runner@1.2.2:
- resolution: {integrity: sha512-JctG7QZ4LSDXr5CsUweFgcpEvrcxOV1Gft7uHrvkQ+fsAVylmWQvnaAr/HDp3LAH1fztGMQZugIheTWjaGzYIg==}
+ /@vitest/runner@1.6.0:
+ resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
dependencies:
- '@vitest/utils': 1.2.2
+ '@vitest/utils': 1.6.0
p-limit: 5.0.0
pathe: 1.1.2
dev: true
- /@vitest/snapshot@1.2.2:
- resolution: {integrity: sha512-SmGY4saEw1+bwE1th6S/cZmPxz/Q4JWsl7LvbQIky2tKE35US4gd0Mjzqfr84/4OD0tikGWaWdMja/nWL5NIPA==}
+ /@vitest/snapshot@1.6.0:
+ resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
dependencies:
- magic-string: 0.30.7
+ magic-string: 0.30.10
pathe: 1.1.2
pretty-format: 29.7.0
dev: true
- /@vitest/spy@1.2.2:
- resolution: {integrity: sha512-k9Gcahssw8d7X3pSLq3e3XEu/0L78mUkCjivUqCQeXJm9clfXR/Td8+AP+VC1O6fKPIDLcHDTAmBOINVuv6+7g==}
+ /@vitest/spy@1.6.0:
+ resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
dependencies:
tinyspy: 2.2.1
dev: true
- /@vitest/ui@1.2.2(vitest@1.2.2):
- resolution: {integrity: sha512-CG+5fa8lyoBr+9i+UZGS31Qw81v33QlD10uecHxN2CLJVN+jLnqx4pGzGvFFeJ7jSnUCT0AlbmVWY6fU6NJZmw==}
+ /@vitest/ui@1.6.0(vitest@1.6.0):
+ resolution: {integrity: sha512-k3Lyo+ONLOgylctiGovRKy7V4+dIN2yxstX3eY5cWFXH6WP+ooVX79YSyi0GagdTQzLmT43BF27T0s6dOIPBXA==}
peerDependencies:
- vitest: ^1.0.0
+ vitest: 1.6.0
dependencies:
- '@vitest/utils': 1.2.2
+ '@vitest/utils': 1.6.0
fast-glob: 3.3.2
fflate: 0.8.2
- flatted: 3.2.9
+ flatted: 3.3.1
pathe: 1.1.2
picocolors: 1.0.0
sirv: 2.0.4
- vitest: 1.2.2(@vitest/ui@1.2.2)(sass@1.70.0)
+ vitest: 1.6.0(@vitest/ui@1.6.0)(sass@1.77.0)
dev: true
- /@vitest/utils@1.2.2:
- resolution: {integrity: sha512-WKITBHLsBHlpjnDQahr+XK6RE7MiAsgrIkr0pGhQ9ygoxBfUeG0lUG5iLlzqjmKSlBv3+j5EGsriBzh+C3Tq9g==}
+ /@vitest/utils@1.6.0:
+ resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -2764,8 +3279,8 @@ packages:
pretty-format: 29.7.0
dev: true
- /@vue-macros/common@1.10.1(rollup@4.9.6)(vue@3.4.18):
- resolution: {integrity: sha512-uftSpfwdwitcQT2lM8aVxcfe5rKQBzC9jMrtJM5sG4hEuFyfIvnJihpPpnaWxY+X4p64k+YYXtBFv+1O5Bq3dg==}
+ /@vue-macros/common@1.10.3(rollup@4.17.2)(vue@3.4.27):
+ resolution: {integrity: sha512-YSgzcbXrRo8a/TF/YIguqEmTld1KA60VETKJG8iFuaAfj7j+Tbdin3cj7/cYbcCHORSq1v9IThgq7r8keH7LXQ==}
engines: {node: '>=16.14.0'}
peerDependencies:
vue: ^2.7.0 || ^3.2.25
@@ -2773,135 +3288,288 @@ packages:
vue:
optional: true
dependencies:
- '@babel/types': 7.23.9
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
- '@vue/compiler-sfc': 3.4.18
- ast-kit: 0.11.3(rollup@4.9.6)
+ '@babel/types': 7.24.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@vue/compiler-sfc': 3.4.27
+ ast-kit: 0.12.1
local-pkg: 0.5.0
- magic-string-ast: 0.3.0
- vue: 3.4.18(typescript@5.3.3)
+ magic-string-ast: 0.5.0
+ vue: 3.4.27(typescript@5.4.5)
transitivePeerDependencies:
- rollup
- /@vue/babel-helper-vue-transform-on@1.2.1:
- resolution: {integrity: sha512-jtEXim+pfyHWwvheYwUwSXm43KwQo8nhOBDyjrUITV6X2tB7lJm6n/+4sqR8137UVZZul5hBzWHdZ2uStYpyRQ==}
+ /@vue/babel-helper-vue-transform-on@1.2.2:
+ resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
- /@vue/babel-plugin-jsx@1.2.1(@babel/core@7.23.9):
- resolution: {integrity: sha512-Yy9qGktktXhB39QE99So/BO2Uwm/ZG+gpL9vMg51ijRRbINvgbuhyJEi4WYmGRMx/MSTfK0xjgZ3/MyY+iLCEg==}
+ /@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5):
+ resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.23.9
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
- '@babel/template': 7.23.9
- '@babel/traverse': 7.23.9
- '@babel/types': 7.23.9
- '@vue/babel-helper-vue-transform-on': 1.2.1
- '@vue/babel-plugin-resolve-type': 1.2.1(@babel/core@7.23.9)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/template': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
+ '@vue/babel-helper-vue-transform-on': 1.2.2
+ '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.5)
camelcase: 6.3.0
html-tags: 3.3.1
svg-tags: 1.0.0
transitivePeerDependencies:
- supports-color
- /@vue/babel-plugin-resolve-type@1.2.1(@babel/core@7.23.9):
- resolution: {integrity: sha512-IOtnI7pHunUzHS/y+EG/yPABIAp0VN8QhQ0UCS09jeMVxgAnI9qdOzO85RXdQGxq+aWCdv8/+k3W0aYO6j/8fQ==}
+ /@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.5):
+ resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/core': 7.23.9
+ '@babel/code-frame': 7.24.2
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/parser': 7.23.9
- '@vue/compiler-sfc': 3.4.18
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/parser': 7.24.5
+ '@vue/compiler-sfc': 3.4.27
- /@vue/compiler-core@3.4.18:
- resolution: {integrity: sha512-F7YK8lMK0iv6b9/Gdk15A67wM0KKZvxDxed0RR60C1z9tIJTKta+urs4j0RTN5XqHISzI3etN3mX0uHhjmoqjQ==}
+ /@vue/compiler-core@3.4.27:
+ resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
dependencies:
- '@babel/parser': 7.23.9
- '@vue/shared': 3.4.18
+ '@babel/parser': 7.24.5
+ '@vue/shared': 3.4.27
entities: 4.5.0
estree-walker: 2.0.2
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
- /@vue/compiler-dom@3.4.18:
- resolution: {integrity: sha512-24Eb8lcMfInefvQ6YlEVS18w5Q66f4+uXWVA+yb7praKbyjHRNuKVWGuinfSSjM0ZIiPi++QWukhkgznBaqpEA==}
+ /@vue/compiler-dom@3.4.27:
+ resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
dependencies:
- '@vue/compiler-core': 3.4.18
- '@vue/shared': 3.4.18
+ '@vue/compiler-core': 3.4.27
+ '@vue/shared': 3.4.27
- /@vue/compiler-sfc@3.4.18:
- resolution: {integrity: sha512-rG5tqtnzwrVpMqAQ7FHtvHaV70G6LLfJIWLYZB/jZ9m/hrnZmIQh+H3ewnC5onwe/ibljm9+ZupxeElzqCkTAw==}
+ /@vue/compiler-sfc@3.4.27:
+ resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
dependencies:
- '@babel/parser': 7.23.9
- '@vue/compiler-core': 3.4.18
- '@vue/compiler-dom': 3.4.18
- '@vue/compiler-ssr': 3.4.18
- '@vue/shared': 3.4.18
+ '@babel/parser': 7.24.5
+ '@vue/compiler-core': 3.4.27
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
estree-walker: 2.0.2
- magic-string: 0.30.7
- postcss: 8.4.35
- source-map-js: 1.0.2
+ magic-string: 0.30.10
+ postcss: 8.4.38
+ source-map-js: 1.2.0
+
+ /@vue/compiler-ssr@3.4.27:
+ resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
+ dependencies:
+ '@vue/compiler-dom': 3.4.27
+ '@vue/shared': 3.4.27
+
+ /@vue/devtools-api@6.6.1:
+ resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
+
+ /@vue/devtools-applet@7.1.3(@unocss/reset@0.60.0)(floating-vue@5.2.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-525h17FzUF7ssko/U+yeP5jv0HaGm3eI4dVqncWPRCLTDtOy1V+srjoxYqr5qnzx6AdIU2icPQF2KNomd9FGZw==}
+ peerDependencies:
+ vue: ^3.0.0
+ dependencies:
+ '@vue/devtools-core': 7.1.3(vite@5.2.11)(vue@3.4.27)
+ '@vue/devtools-kit': 7.1.3(vue@3.4.27)
+ '@vue/devtools-shared': 7.1.3
+ '@vue/devtools-ui': 7.1.3(@unocss/reset@0.60.0)(floating-vue@5.2.2)(unocss@0.60.0)(vue@3.4.27)
+ lodash-es: 4.17.21
+ perfect-debounce: 1.0.0
+ shiki: 1.3.0
+ splitpanes: 3.1.5
+ vue: 3.4.27(typescript@5.4.5)
+ vue-virtual-scroller: 2.0.0-beta.8(vue@3.4.27)
+ transitivePeerDependencies:
+ - '@unocss/reset'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
+ - change-case
+ - drauu
+ - floating-vue
+ - fuse.js
+ - idb-keyval
+ - jwt-decode
+ - nprogress
+ - qrcode
+ - sortablejs
+ - universal-cookie
+ - unocss
+ - vite
- /@vue/compiler-ssr@3.4.18:
- resolution: {integrity: sha512-hSlv20oUhPxo2UYUacHgGaxtqP0tvFo6ixxxD6JlXIkwzwoZ9eKK6PFQN4hNK/R13JlNyldwWt/fqGBKgWJ6nQ==}
+ /@vue/devtools-core@7.1.3(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A==}
dependencies:
- '@vue/compiler-dom': 3.4.18
- '@vue/shared': 3.4.18
+ '@vue/devtools-kit': 7.1.3(vue@3.4.27)
+ '@vue/devtools-shared': 7.1.3
+ mitt: 3.0.1
+ nanoid: 3.3.7
+ pathe: 1.1.2
+ vite-hot-client: 0.2.3(vite@5.2.11)
+ transitivePeerDependencies:
+ - vite
+ - vue
- /@vue/devtools-api@6.5.1:
- resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
+ /@vue/devtools-kit@7.1.3(vue@3.4.27):
+ resolution: {integrity: sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==}
+ peerDependencies:
+ vue: ^3.0.0
+ dependencies:
+ '@vue/devtools-shared': 7.1.3
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ vue: 3.4.27(typescript@5.4.5)
- /@vue/reactivity@3.4.18:
- resolution: {integrity: sha512-7uda2/I0jpLiRygprDo5Jxs2HJkOVXcOMlyVlY54yRLxoycBpwGJRwJT9EdGB4adnoqJDXVT2BilUAYwI7qvmg==}
+ /@vue/devtools-shared@7.1.3:
+ resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==}
dependencies:
- '@vue/shared': 3.4.18
+ rfdc: 1.3.1
- /@vue/runtime-core@3.4.18:
- resolution: {integrity: sha512-7mU9diCa+4e+8/wZ7Udw5pwTH10A11sZ1nldmHOUKJnzCwvZxfJqAtw31mIf4T5H2FsLCSBQT3xgioA9vIjyDQ==}
+ /@vue/devtools-ui@7.1.3(@unocss/reset@0.60.0)(floating-vue@5.2.2)(unocss@0.60.0)(vue@3.4.27):
+ resolution: {integrity: sha512-gO2EV3T0wO+HK884+m6UgTEirNOuf+k8U4PcR0vIYA97/A9nTzv9HheCRyFMiHMePYxnlBOsgD7K2fp1/M+EWA==}
+ peerDependencies:
+ '@unocss/reset': '>=0.50.0-0'
+ floating-vue: '>=2.0.0-0'
+ unocss: '>=0.50.0-0'
+ vue: '>=3.0.0-0'
+ dependencies:
+ '@unocss/reset': 0.60.0
+ '@vue/devtools-shared': 7.1.3
+ '@vueuse/components': 10.9.0(vue@3.4.27)
+ '@vueuse/core': 10.9.0(vue@3.4.27)
+ '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.27)
+ colord: 2.9.3
+ floating-vue: 5.2.2(vue@3.4.27)
+ focus-trap: 7.5.4
+ unocss: 0.60.0(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11)
+ vue: 3.4.27(typescript@5.4.5)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - async-validator
+ - axios
+ - change-case
+ - drauu
+ - fuse.js
+ - idb-keyval
+ - jwt-decode
+ - nprogress
+ - qrcode
+ - sortablejs
+ - universal-cookie
+
+ /@vue/reactivity@3.4.27:
+ resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
dependencies:
- '@vue/reactivity': 3.4.18
- '@vue/shared': 3.4.18
+ '@vue/shared': 3.4.27
- /@vue/runtime-dom@3.4.18:
- resolution: {integrity: sha512-2y1Mkzcw1niSfG7z3Qx+2ir9Gb4hdTkZe5p/I8x1aTIKQE0vY0tPAEUPhZm5tx6183gG3D/KwHG728UR0sIufA==}
+ /@vue/runtime-core@3.4.27:
+ resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
dependencies:
- '@vue/runtime-core': 3.4.18
- '@vue/shared': 3.4.18
+ '@vue/reactivity': 3.4.27
+ '@vue/shared': 3.4.27
+
+ /@vue/runtime-dom@3.4.27:
+ resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
+ dependencies:
+ '@vue/runtime-core': 3.4.27
+ '@vue/shared': 3.4.27
csstype: 3.1.3
- /@vue/server-renderer@3.4.18(vue@3.4.18):
- resolution: {integrity: sha512-YJd1wa7mzUN3NRqLEsrwEYWyO+PUBSROIGlCc3J/cvn7Zu6CxhNLgXa8Z4zZ5ja5/nviYO79J1InoPeXgwBTZA==}
+ /@vue/server-renderer@3.4.27(vue@3.4.27):
+ resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
peerDependencies:
- vue: 3.4.18
+ vue: 3.4.27
dependencies:
- '@vue/compiler-ssr': 3.4.18
- '@vue/shared': 3.4.18
- vue: 3.4.18(typescript@5.3.3)
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
+ vue: 3.4.27(typescript@5.4.5)
- /@vue/shared@3.4.18:
- resolution: {integrity: sha512-CxouGFxxaW5r1WbrSmWwck3No58rApXgRSBxrqgnY1K+jk20F6DrXJkHdH9n4HVT+/B6G2CAn213Uq3npWiy8Q==}
+ /@vue/shared@3.4.27:
+ resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
- /@vueuse/core@10.7.2(vue@3.4.18):
- resolution: {integrity: sha512-AOyAL2rK0By62Hm+iqQn6Rbu8bfmbgaIMXcE3TSr7BdQ42wnSFlwIdPjInO62onYsEMK/yDMU8C6oGfDAtZ2qQ==}
+ /@vueuse/components@10.9.0(vue@3.4.27):
+ resolution: {integrity: sha512-BHQpA0yIi3y7zKa1gYD0FUzLLkcRTqVhP8smnvsCK6GFpd94Nziq1XVPD7YpFeho0k5BzbBiNZF7V/DpkJ967A==}
+ dependencies:
+ '@vueuse/core': 10.9.0(vue@3.4.27)
+ '@vueuse/shared': 10.9.0(vue@3.4.27)
+ vue-demi: 0.14.7(vue@3.4.27)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
+ /@vueuse/core@10.9.0(vue@3.4.27):
+ resolution: {integrity: sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==}
+ dependencies:
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 10.9.0
+ '@vueuse/shared': 10.9.0(vue@3.4.27)
+ vue-demi: 0.14.7(vue@3.4.27)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
+ /@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.27):
+ resolution: {integrity: sha512-acK+A01AYdWSvL4BZmCoJAcyHJ6EqhmkQEXbQLwev1MY7NBnS+hcEMx/BzVoR9zKI+UqEPMD9u6PsyAuiTRT4Q==}
+ peerDependencies:
+ 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:
- '@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.7.2
- '@vueuse/shared': 10.7.2(vue@3.4.18)
- vue-demi: 0.14.7(vue@3.4.18)
+ '@vueuse/core': 10.9.0(vue@3.4.27)
+ '@vueuse/shared': 10.9.0(vue@3.4.27)
+ focus-trap: 7.5.4
+ vue-demi: 0.14.7(vue@3.4.27)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- dev: false
- /@vueuse/integrations@10.7.2(fuse.js@6.6.2)(vue@3.4.18):
- resolution: {integrity: sha512-+u3RLPFedjASs5EKPc69Ge49WNgqeMfSxFn+qrQTzblPXZg6+EFzhjarS5edj2qAf6xQ93f95TUxRwKStXj/sQ==}
+ /@vueuse/integrations@10.9.0(fuse.js@6.6.2)(vue@3.4.27):
+ resolution: {integrity: sha512-acK+A01AYdWSvL4BZmCoJAcyHJ6EqhmkQEXbQLwev1MY7NBnS+hcEMx/BzVoR9zKI+UqEPMD9u6PsyAuiTRT4Q==}
peerDependencies:
async-validator: '*'
axios: '*'
@@ -2941,37 +3609,35 @@ packages:
universal-cookie:
optional: true
dependencies:
- '@vueuse/core': 10.7.2(vue@3.4.18)
- '@vueuse/shared': 10.7.2(vue@3.4.18)
+ '@vueuse/core': 10.9.0(vue@3.4.27)
+ '@vueuse/shared': 10.9.0(vue@3.4.27)
fuse.js: 6.6.2
- vue-demi: 0.14.7(vue@3.4.18)
+ vue-demi: 0.14.7(vue@3.4.27)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/math@10.7.2(vue@3.4.18):
- resolution: {integrity: sha512-Z1h/kdW5f4c/v/QOpWFFaEx4UaIt7xQTxoDnxQAx1gHGHpGYTtBlQHm80zrRodCz0auyBZMkALkCgKinzGggXw==}
+ /@vueuse/math@10.9.0(vue@3.4.27):
+ resolution: {integrity: sha512-qb60AzFKzg8Gw85c4YiheEMC2AMkk+eO/nB9MmuQFU/HAHvfVckesiPlwaQqUlZQ4MJt0z8qP18/H7ozpj0sKQ==}
dependencies:
- '@vueuse/shared': 10.7.2(vue@3.4.18)
- vue-demi: 0.14.7(vue@3.4.18)
+ '@vueuse/shared': 10.9.0(vue@3.4.27)
+ vue-demi: 0.14.7(vue@3.4.27)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@vueuse/metadata@10.7.2:
- resolution: {integrity: sha512-kCWPb4J2KGrwLtn1eJwaJD742u1k5h6v/St5wFe8Quih90+k2a0JP8BS4Zp34XUuJqS2AxFYMb1wjUL8HfhWsQ==}
- dev: false
+ /@vueuse/metadata@10.9.0:
+ resolution: {integrity: sha512-iddNbg3yZM0X7qFY2sAotomgdHK7YJ6sKUvQqbvwnf7TmaVPxS4EJydcNsVejNdS8iWCtDk+fYXr7E32nyTnGA==}
- /@vueuse/shared@10.7.2(vue@3.4.18):
- resolution: {integrity: sha512-qFbXoxS44pi2FkgFjPvF4h7c9oMDutpyBdcJdMYIMg9XyXli2meFMuaKn+UMgsClo//Th6+beeCgqweT/79BVA==}
+ /@vueuse/shared@10.9.0(vue@3.4.27):
+ resolution: {integrity: sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw==}
dependencies:
- vue-demi: 0.14.7(vue@3.4.18)
+ vue-demi: 0.14.7(vue@3.4.27)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- dev: false
/abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
@@ -2980,6 +3646,12 @@ packages:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /abort-controller@3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
+ dependencies:
+ event-target-shim: 5.0.1
+
/accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
@@ -2988,6 +3660,13 @@ packages:
negotiator: 0.6.3
dev: false
+ /acorn-import-attributes@1.9.5(acorn@8.11.3):
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+ dependencies:
+ acorn: 8.11.3
+
/acorn-jsx@5.3.2(acorn@8.11.3):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -3013,8 +3692,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /agent-base@7.1.0:
- resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
+ /agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
dependencies:
debug: 4.3.4
@@ -3088,28 +3767,34 @@ packages:
/aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
- /archiver-utils@4.0.1:
- resolution: {integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==}
- engines: {node: '>= 12.0.0'}
+ /archiver-utils@5.0.2:
+ resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==}
+ engines: {node: '>= 14'}
dependencies:
- glob: 8.1.0
+ glob: 10.3.14
graceful-fs: 4.2.11
+ is-stream: 2.0.1
lazystream: 1.0.1
lodash: 4.17.21
normalize-path: 3.0.0
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
- /archiver@6.0.1:
- resolution: {integrity: sha512-CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ==}
- engines: {node: '>= 12.0.0'}
+ /archiver@7.0.1:
+ resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
+ engines: {node: '>= 14'}
dependencies:
- archiver-utils: 4.0.1
+ archiver-utils: 5.0.2
async: 3.2.5
- buffer-crc32: 0.2.13
- readable-stream: 3.6.2
+ buffer-crc32: 1.0.0
+ readable-stream: 4.5.2
readdir-glob: 1.1.3
tar-stream: 3.1.7
- zip-stream: 5.0.1
+ zip-stream: 6.0.1
+
+ /are-docs-informative@0.0.2:
+ resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
+ engines: {node: '>=14'}
+ dev: true
/are-we-there-yet@2.0.0:
resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
@@ -3134,32 +3819,29 @@ packages:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
dev: true
- /ast-kit@0.11.3(rollup@4.9.6):
- resolution: {integrity: sha512-qdwwKEhckRk0XE22/xDdmU3v/60E8Edu4qFhgTLIhGGDs/PAJwLw9pQn8Rj99PitlbBZbYpx0k/lbir4kg0SuA==}
+ /ast-kit@0.12.1:
+ resolution: {integrity: sha512-O+33g7x6irsESUcd47KdfWUrS2F6aGp9KeVJFGj0YjIznfXpBxVGjA0w+y/1OKqX4mFOfmZ9Xpf1ixPT4n9xxw==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.9
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@babel/parser': 7.24.5
pathe: 1.1.2
- transitivePeerDependencies:
- - rollup
- /ast-kit@0.9.5(rollup@4.9.6):
+ /ast-kit@0.9.5(rollup@4.17.2):
resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.9
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@babel/parser': 7.24.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
pathe: 1.1.2
transitivePeerDependencies:
- rollup
- /ast-walker-scope@0.5.0(rollup@4.9.6):
+ /ast-walker-scope@0.5.0(rollup@4.17.2):
resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/parser': 7.23.9
- ast-kit: 0.9.5(rollup@4.9.6)
+ '@babel/parser': 7.24.5
+ ast-kit: 0.9.5(rollup@4.17.2)
transitivePeerDependencies:
- rollup
@@ -3180,19 +3862,19 @@ packages:
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer@10.4.17(postcss@8.4.35):
- resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==}
+ /autoprefixer@10.4.19(postcss@8.4.38):
+ resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.3
- caniuse-lite: 1.0.30001585
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001617
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
/b4a@1.6.6:
@@ -3201,13 +3883,16 @@ packages:
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /bare-events@2.2.0:
- resolution: {integrity: sha512-Yyyqff4PIFfSuthCZqLlPISTWHmnQxoPuAvkmgzsJEmG3CesdIv6Xweayl0JkCZJSB2yYIdJyEz97tpxNhgjbg==}
+ /bare-events@2.2.2:
+ resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==}
requiresBuild: true
optional: true
- /binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ /base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+ /binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
/bindings@1.5.0:
@@ -3215,8 +3900,8 @@ packages:
dependencies:
file-uri-to-path: 1.0.0
- /birpc@0.2.15:
- resolution: {integrity: sha512-LuZgWLW6DB1zenkfJuF4/kfSZdazOR2xaMSzeqgvfbNIwECwV1AJso9wpNje79uaRU86Obbujv4qtDnwoOLQww==}
+ /birpc@0.2.17:
+ resolution: {integrity: sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==}
/boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -3238,73 +3923,84 @@ packages:
dependencies:
fill-range: 7.0.1
- /browserslist@4.22.3:
- resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==}
+ /browserslist@4.23.0:
+ resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001585
- electron-to-chromium: 1.4.664
+ caniuse-lite: 1.0.30001617
+ electron-to-chromium: 1.4.762
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.22.3)
+ update-browserslist-db: 1.0.15(browserslist@4.23.0)
- /buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+ /buffer-crc32@1.0.0:
+ resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
+ engines: {node: '>=8.0.0'}
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+ /buffer@6.0.3:
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
/builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
- /builtins@5.0.1:
- resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
- dependencies:
- semver: 7.6.0
-
/bundle-name@4.1.0:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
dependencies:
run-applescript: 7.0.0
- /c12@1.7.0:
- resolution: {integrity: sha512-luqIHUs5S5s4vcSa1TVIGxSC1dH8mBT8cxzRvrlHN/iZs+G/PkxsOb300ODuAdvRzUopyXYqg7cmdOGpcYaxwg==}
+ /bundle-require@4.1.0(esbuild@0.20.2):
+ resolution: {integrity: sha512-FeArRFM+ziGkRViKRnSTbHZc35dgmR9yNog05Kn0+ItI59pOAISGvnnIwW1WgFZQW59IxD9QpJnUPkdIPfZuXg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ peerDependencies:
+ esbuild: '>=0.17'
+ dependencies:
+ esbuild: 0.20.2
+ load-tsconfig: 0.2.5
+ dev: true
+
+ /c12@1.10.0:
+ resolution: {integrity: sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g==}
dependencies:
chokidar: 3.6.0
+ confbox: 0.1.7
defu: 6.1.4
- dotenv: 16.4.1
- giget: 1.2.1
+ dotenv: 16.4.5
+ giget: 1.2.3
jiti: 1.21.0
- json5: 2.2.3
- jsonc-parser: 3.2.1
- mlly: 1.5.0
+ mlly: 1.7.0
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- rc9: 2.1.1
+ pkg-types: 1.1.1
+ rc9: 2.1.2
/cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- /cacache@18.0.2:
- resolution: {integrity: sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==}
+ /cacache@18.0.3:
+ resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@npmcli/fs': 3.1.0
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
- glob: 10.3.10
- lru-cache: 10.2.0
- minipass: 7.0.4
+ glob: 10.3.14
+ lru-cache: 10.2.2
+ minipass: 7.1.1
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 4.0.0
- ssri: 10.0.5
- tar: 6.2.0
+ ssri: 10.0.6
+ tar: 6.2.1
unique-filename: 3.0.0
/cache-content-type@1.0.1:
@@ -3312,7 +4008,7 @@ packages:
engines: {node: '>= 6.0.0'}
dependencies:
mime-types: 2.1.35
- ylru: 1.3.2
+ ylru: 1.4.0
dev: false
/callsites@3.1.0:
@@ -3336,13 +4032,13 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.22.3
- caniuse-lite: 1.0.30001585
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001617
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite@1.0.30001585:
- resolution: {integrity: sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q==}
+ /caniuse-lite@1.0.30001617:
+ resolution: {integrity: sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==}
/chai@4.4.1:
resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
@@ -3404,23 +4100,22 @@ packages:
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
engines: {node: '>=8'}
- /citty@0.1.5:
- resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==}
+ /citty@0.1.6:
+ resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
dependencies:
consola: 3.2.3
+ /clean-regexp@1.0.0:
+ resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
+ engines: {node: '>=4'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- /clear-module@4.1.2:
- resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==}
- engines: {node: '>=8'}
- dependencies:
- parent-module: 2.0.0
- resolve-from: 5.0.0
- dev: false
-
/clear@0.1.0:
resolution: {integrity: sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==}
@@ -3489,7 +4184,6 @@ packages:
/colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- dev: false
/colorspace@1.1.4:
resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
@@ -3518,6 +4212,11 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
+ /comment-parser@1.4.1:
+ resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
+ engines: {node: '>= 12.0.0'}
+ dev: true
+
/commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
@@ -3525,14 +4224,15 @@ packages:
resolution: {integrity: sha512-LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg==}
dev: false
- /compress-commons@5.0.1:
- resolution: {integrity: sha512-MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag==}
- engines: {node: '>= 12.0.0'}
+ /compress-commons@6.0.2:
+ resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==}
+ engines: {node: '>= 14'}
dependencies:
crc-32: 1.2.2
- crc32-stream: 5.0.0
+ crc32-stream: 6.0.0
+ is-stream: 2.0.1
normalize-path: 3.0.0
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
@@ -3553,6 +4253,9 @@ packages:
yargs: 17.7.2
dev: true
+ /confbox@0.1.7:
+ resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+
/consola@3.2.3:
resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -3575,8 +4278,8 @@ packages:
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- /cookie-es@1.0.0:
- resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
+ /cookie-es@1.1.0:
+ resolution: {integrity: sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==}
/cookies@0.9.1:
resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
@@ -3586,6 +4289,12 @@ packages:
keygrip: 1.1.0
dev: false
+ /core-js-compat@3.37.1:
+ resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ dependencies:
+ browserslist: 4.23.0
+ dev: true
+
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -3594,16 +4303,24 @@ packages:
engines: {node: '>=0.8'}
hasBin: true
- /crc32-stream@5.0.0:
- resolution: {integrity: sha512-B0EPa1UK+qnpBZpG+7FgPCu0J2ETLpXq09o9BkLkEAhdB6Z61Qo4pJ3JYu0c+Qi+/SAL7QThqnzS06pmSSyZaw==}
- engines: {node: '>= 12.0.0'}
+ /crc32-stream@6.0.0:
+ resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
+ engines: {node: '>= 14'}
dependencies:
crc-32: 1.2.2
- readable-stream: 3.6.2
+ readable-stream: 4.5.2
/create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+ /croner@8.0.2:
+ resolution: {integrity: sha512-HgSdlSUX8mIgDTTiQpWUP4qY4IFRMsduPCYdca34Pelt8MVdxdaDOzreFtCscA6R+cRZd7UbD1CD3uyx6J3X1A==}
+ engines: {node: '>=18.0'}
+
+ /cronstrue@2.50.0:
+ resolution: {integrity: sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==}
+ hasBin: true
+
/cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -3612,16 +4329,21 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /crossws@0.1.1:
- resolution: {integrity: sha512-c9c/o7bS3OjsdpSkvexpka0JNlesBF2JU9B2V1yNsYGwRbAafxhJQ7VI9b48D5bpONz/oxbPGMzBojy9sXoQIQ==}
+ /crossws@0.2.4:
+ resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==}
+ peerDependencies:
+ uWebSockets.js: '*'
+ peerDependenciesMeta:
+ uWebSockets.js:
+ optional: true
- /css-declaration-sorter@7.1.1(postcss@8.4.35):
- resolution: {integrity: sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==}
+ /css-declaration-sorter@7.2.0(postcss@8.4.38):
+ resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
/css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
@@ -3637,14 +4359,14 @@ packages:
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
dependencies:
mdn-data: 2.0.28
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
/css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
dependencies:
mdn-data: 2.0.30
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
/css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
@@ -3655,60 +4377,61 @@ packages:
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default@6.0.3(postcss@8.4.35):
- resolution: {integrity: sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==}
+ /cssnano-preset-default@6.1.2(postcss@8.4.38):
+ resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- css-declaration-sorter: 7.1.1(postcss@8.4.35)
- cssnano-utils: 4.0.1(postcss@8.4.35)
- postcss: 8.4.35
- postcss-calc: 9.0.1(postcss@8.4.35)
- postcss-colormin: 6.0.2(postcss@8.4.35)
- postcss-convert-values: 6.0.2(postcss@8.4.35)
- postcss-discard-comments: 6.0.1(postcss@8.4.35)
- postcss-discard-duplicates: 6.0.1(postcss@8.4.35)
- postcss-discard-empty: 6.0.1(postcss@8.4.35)
- postcss-discard-overridden: 6.0.1(postcss@8.4.35)
- postcss-merge-longhand: 6.0.2(postcss@8.4.35)
- postcss-merge-rules: 6.0.3(postcss@8.4.35)
- postcss-minify-font-values: 6.0.1(postcss@8.4.35)
- postcss-minify-gradients: 6.0.1(postcss@8.4.35)
- postcss-minify-params: 6.0.2(postcss@8.4.35)
- postcss-minify-selectors: 6.0.2(postcss@8.4.35)
- postcss-normalize-charset: 6.0.1(postcss@8.4.35)
- postcss-normalize-display-values: 6.0.1(postcss@8.4.35)
- postcss-normalize-positions: 6.0.1(postcss@8.4.35)
- postcss-normalize-repeat-style: 6.0.1(postcss@8.4.35)
- postcss-normalize-string: 6.0.1(postcss@8.4.35)
- postcss-normalize-timing-functions: 6.0.1(postcss@8.4.35)
- postcss-normalize-unicode: 6.0.2(postcss@8.4.35)
- postcss-normalize-url: 6.0.1(postcss@8.4.35)
- postcss-normalize-whitespace: 6.0.1(postcss@8.4.35)
- postcss-ordered-values: 6.0.1(postcss@8.4.35)
- postcss-reduce-initial: 6.0.2(postcss@8.4.35)
- postcss-reduce-transforms: 6.0.1(postcss@8.4.35)
- postcss-svgo: 6.0.2(postcss@8.4.35)
- postcss-unique-selectors: 6.0.2(postcss@8.4.35)
-
- /cssnano-utils@4.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==}
+ browserslist: 4.23.0
+ css-declaration-sorter: 7.2.0(postcss@8.4.38)
+ cssnano-utils: 4.0.2(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-calc: 9.0.1(postcss@8.4.38)
+ postcss-colormin: 6.1.0(postcss@8.4.38)
+ postcss-convert-values: 6.1.0(postcss@8.4.38)
+ postcss-discard-comments: 6.0.2(postcss@8.4.38)
+ postcss-discard-duplicates: 6.0.3(postcss@8.4.38)
+ postcss-discard-empty: 6.0.3(postcss@8.4.38)
+ postcss-discard-overridden: 6.0.2(postcss@8.4.38)
+ postcss-merge-longhand: 6.0.5(postcss@8.4.38)
+ postcss-merge-rules: 6.1.1(postcss@8.4.38)
+ postcss-minify-font-values: 6.1.0(postcss@8.4.38)
+ postcss-minify-gradients: 6.0.3(postcss@8.4.38)
+ postcss-minify-params: 6.1.0(postcss@8.4.38)
+ postcss-minify-selectors: 6.0.4(postcss@8.4.38)
+ postcss-normalize-charset: 6.0.2(postcss@8.4.38)
+ postcss-normalize-display-values: 6.0.2(postcss@8.4.38)
+ postcss-normalize-positions: 6.0.2(postcss@8.4.38)
+ postcss-normalize-repeat-style: 6.0.2(postcss@8.4.38)
+ postcss-normalize-string: 6.0.2(postcss@8.4.38)
+ postcss-normalize-timing-functions: 6.0.2(postcss@8.4.38)
+ postcss-normalize-unicode: 6.1.0(postcss@8.4.38)
+ postcss-normalize-url: 6.0.2(postcss@8.4.38)
+ postcss-normalize-whitespace: 6.0.2(postcss@8.4.38)
+ postcss-ordered-values: 6.0.2(postcss@8.4.38)
+ postcss-reduce-initial: 6.1.0(postcss@8.4.38)
+ postcss-reduce-transforms: 6.0.2(postcss@8.4.38)
+ postcss-svgo: 6.0.3(postcss@8.4.38)
+ postcss-unique-selectors: 6.0.4(postcss@8.4.38)
+
+ /cssnano-utils@4.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
- /cssnano@6.0.3(postcss@8.4.35):
- resolution: {integrity: sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==}
+ /cssnano@6.1.2(postcss@8.4.38):
+ resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- cssnano-preset-default: 6.0.3(postcss@8.4.35)
- lilconfig: 3.0.0
- postcss: 8.4.35
+ cssnano-preset-default: 6.1.2(postcss@8.4.38)
+ lilconfig: 3.1.1
+ postcss: 8.4.38
/csso@5.0.5:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
@@ -3719,10 +4442,10 @@ packages:
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- /date-fns-tz@2.0.0(date-fns@2.30.0):
- resolution: {integrity: sha512-OAtcLdB9vxSXTWHdT8b398ARImVwQMyjfYGkKD2zaGpHseG2UPHbHjXELReErZFxWdSLph3c2zOaaTyHfOhERQ==}
+ /date-fns-tz@2.0.1(date-fns@2.30.0):
+ resolution: {integrity: sha512-fJCG3Pwx8HUoLhkepdsP7Z5RsucUi+ZBOxyM5d0ZZ6c4SdYustq0VMmOu6Wf7bli+yS/Jwp91TOCqn9jMcVrUA==}
peerDependencies:
- date-fns: '>=2.0.0'
+ date-fns: 2.x
dependencies:
date-fns: 2.30.0
dev: false
@@ -3731,7 +4454,21 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.23.9
+ '@babel/runtime': 7.24.5
+
+ /db0@0.1.4:
+ resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
+ peerDependencies:
+ '@libsql/client': ^0.5.2
+ better-sqlite3: ^9.4.3
+ drizzle-orm: ^0.29.4
+ peerDependenciesMeta:
+ '@libsql/client':
+ optional: true
+ better-sqlite3:
+ optional: true
+ drizzle-orm:
+ optional: true
/debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -3752,7 +4489,6 @@ packages:
optional: true
dependencies:
ms: 2.1.3
- dev: false
/debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
@@ -3821,8 +4557,8 @@ packages:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- /destr@2.0.2:
- resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
+ /destr@2.0.3:
+ resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
@@ -3833,12 +4569,12 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- /detect-libc@2.0.2:
- resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ /detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
- /devalue@4.3.2:
- resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==}
+ /devalue@4.3.3:
+ resolution: {integrity: sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg==}
/didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
@@ -3849,8 +4585,8 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /diff@5.1.0:
- resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
+ /diff@5.2.0:
+ resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
/dir-glob@3.0.1:
@@ -3869,6 +4605,7 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
+ dev: true
/dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
@@ -3899,8 +4636,8 @@ packages:
dependencies:
type-fest: 3.13.1
- /dotenv@16.4.1:
- resolution: {integrity: sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==}
+ /dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
/duplexer@0.1.2:
@@ -3912,8 +4649,8 @@ packages:
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /electron-to-chromium@1.4.664:
- resolution: {integrity: sha512-k9VKKSkOSNPvSckZgDDl/IQx45E1quMjX8QfLzUsAs/zve8AyFDK+ByRynSP/OfEfryiKHpQeMf00z0leLCc3A==}
+ /electron-to-chromium@1.4.762:
+ resolution: {integrity: sha512-rrFvGweLxPwwSwJOjIopy3Vr+J3cIPtZzuc74bmlvmBIgQO3VYJDvVrlj94iKZ3ukXUH64Ex31hSfRTLqvjYJQ==}
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -3936,8 +4673,8 @@ packages:
iconv-lite: 0.6.3
optional: true
- /enhanced-resolve@5.15.0:
- resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
+ /enhanced-resolve@5.16.1:
+ resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
@@ -3954,68 +4691,44 @@ packages:
/err-code@2.0.3:
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+ /error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: true
+
/error-stack-parser-es@0.1.1:
resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
- /esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
-
- /esbuild@0.20.0:
- resolution: {integrity: sha512-6iwE3Y2RVYCME1jLpBqq7LQWK3MW6vjV2bZy6gt/WrqkY+WE74Spyc0ThAOYpMtITvnjX09CrC6ym7A/m9mebA==}
+ /esbuild@0.20.2:
+ resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.0
- '@esbuild/android-arm': 0.20.0
- '@esbuild/android-arm64': 0.20.0
- '@esbuild/android-x64': 0.20.0
- '@esbuild/darwin-arm64': 0.20.0
- '@esbuild/darwin-x64': 0.20.0
- '@esbuild/freebsd-arm64': 0.20.0
- '@esbuild/freebsd-x64': 0.20.0
- '@esbuild/linux-arm': 0.20.0
- '@esbuild/linux-arm64': 0.20.0
- '@esbuild/linux-ia32': 0.20.0
- '@esbuild/linux-loong64': 0.20.0
- '@esbuild/linux-mips64el': 0.20.0
- '@esbuild/linux-ppc64': 0.20.0
- '@esbuild/linux-riscv64': 0.20.0
- '@esbuild/linux-s390x': 0.20.0
- '@esbuild/linux-x64': 0.20.0
- '@esbuild/netbsd-x64': 0.20.0
- '@esbuild/openbsd-x64': 0.20.0
- '@esbuild/sunos-x64': 0.20.0
- '@esbuild/win32-arm64': 0.20.0
- '@esbuild/win32-ia32': 0.20.0
- '@esbuild/win32-x64': 0.20.0
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
+ '@esbuild/linux-riscv64': 0.20.2
+ '@esbuild/linux-s390x': 0.20.2
+ '@esbuild/linux-x64': 0.20.2
+ '@esbuild/netbsd-x64': 0.20.2
+ '@esbuild/openbsd-x64': 0.20.2
+ '@esbuild/sunos-x64': 0.20.2
+ '@esbuild/win32-arm64': 0.20.2
+ '@esbuild/win32-ia32': 0.20.2
+ '@esbuild/win32-x64': 0.20.2
/escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
@@ -4048,28 +4761,120 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-prettier@9.1.0(eslint@8.56.0):
+ /eslint-config-flat-gitignore@0.1.5:
+ resolution: {integrity: sha512-hEZLwuZjDBGDERA49c2q7vxc8sCGv8EdBp6PQYzGOMcHIgrfG9YOM6s/4jx24zhD+wnK9AI8mgN5RxSss5nClQ==}
+ dependencies:
+ find-up: 7.0.0
+ parse-gitignore: 2.0.0
+ dev: true
+
+ /eslint-config-prettier@9.1.0(eslint@9.2.0):
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.56.0
+ eslint: 9.2.0
+ dev: true
+
+ /eslint-flat-config-utils@0.2.4:
+ resolution: {integrity: sha512-k7MJkSIfF0bs5eQu1KXyV0AhsvdsqSt1pQfZNLwf6qkozuHQV6aNHg5f8+3Ya+WTzpB+e7I3hMhs4qBwx7nEkw==}
+ dependencies:
+ '@types/eslint': 8.56.10
+ pathe: 1.1.2
+ dev: true
+
+ /eslint-import-resolver-node@0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.13.1
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-plugin-import-x@0.5.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-C7R8Z4IzxmsoOPMtSzwuOBW5FH6iRlxHR6iTks+MzVlrk3r3TUxokkWTx3ypdj9nGOEP+CG/5e6ebZzHbxgbbQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ eslint: ^8.56.0 || ^9.0.0-0
+ dependencies:
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ debug: 4.3.4
+ doctrine: 3.0.0
+ eslint: 9.2.0
+ eslint-import-resolver-node: 0.3.9
+ get-tsconfig: 4.7.5
+ is-glob: 4.0.3
+ minimatch: 9.0.4
+ semver: 7.6.2
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /eslint-plugin-jsdoc@48.2.5(eslint@9.2.0):
+ resolution: {integrity: sha512-ZeTfKV474W1N9niWfawpwsXGu+ZoMXu4417eBROX31d7ZuOk8zyG66SO77DpJ2+A9Wa2scw/jRqBPnnQo7VbcQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
+ dependencies:
+ '@es-joy/jsdoccomment': 0.43.0
+ are-docs-informative: 0.0.2
+ comment-parser: 1.4.1
+ debug: 4.3.4
+ escape-string-regexp: 4.0.0
+ eslint: 9.2.0
+ esquery: 1.5.0
+ is-builtin-module: 3.2.1
+ semver: 7.6.2
+ spdx-expression-parse: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-plugin-unicorn@52.0.0(eslint@9.2.0):
+ resolution: {integrity: sha512-1Yzm7/m+0R4djH0tjDjfVei/ju2w3AzUGjG6q8JnuNIL5xIwsflyCooW5sfBvQp2pMYQFSWWCFONsjCax1EHng==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ eslint: '>=8.56.0'
+ dependencies:
+ '@babel/helper-validator-identifier': 7.24.5
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
+ '@eslint/eslintrc': 2.1.4
+ ci-info: 4.0.0
+ clean-regexp: 1.0.0
+ core-js-compat: 3.37.1
+ eslint: 9.2.0
+ esquery: 1.5.0
+ indent-string: 4.0.0
+ is-builtin-module: 3.2.1
+ jsesc: 3.0.2
+ pluralize: 8.0.0
+ read-pkg-up: 7.0.1
+ regexp-tree: 0.1.27
+ regjsparser: 0.10.0
+ semver: 7.6.2
+ strip-indent: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /eslint-plugin-vue@9.21.1(eslint@8.56.0):
- resolution: {integrity: sha512-XVtI7z39yOVBFJyi8Ljbn7kY9yHzznKXL02qQYn+ta63Iy4A9JFBw6o4OSB9hyD2++tVT+su9kQqetUyCCwhjw==}
+ /eslint-plugin-vue@9.26.0(eslint@9.2.0):
+ resolution: {integrity: sha512-eTvlxXgd4ijE1cdur850G6KalZqk65k1JKoOI2d1kT3hr8sPD07j1q98FRFdNnpxBELGPWxZmInxeHGF/GxtqQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
- eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
- eslint: 8.56.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
+ eslint: 9.2.0
+ globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
- postcss-selector-parser: 6.0.15
- semver: 7.6.0
- vue-eslint-parser: 9.4.2(eslint@8.56.0)
+ postcss-selector-parser: 6.0.16
+ semver: 7.6.2
+ vue-eslint-parser: 9.4.2(eslint@9.2.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -4081,57 +4886,84 @@ packages:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
+ dev: true
+
+ /eslint-scope@8.0.1:
+ resolution: {integrity: sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
+ /eslint-typegen@0.2.4(eslint@9.2.0):
+ resolution: {integrity: sha512-NQAsPiq7U8VT4Xue5JWu3/gP7O5M4M7OhF49Vpx3iuxEq6oyLmdVBFyB1u0QLiby7luGDHLrMl1wfqZClZU6eg==}
+ peerDependencies:
+ eslint: ^8.45.0 || ^9.0.0
+ dependencies:
+ '@types/eslint': 8.56.10
+ eslint: 9.2.0
+ json-schema-to-typescript-lite: 14.0.1
+ ohash: 1.1.3
+ dev: true
/eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint@8.56.0:
- resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /eslint-visitor-keys@4.0.0:
+ resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ /eslint@9.2.0:
+ resolution: {integrity: sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.56.0
- '@humanwhocodes/config-array': 0.11.14
+ '@eslint/eslintrc': 3.0.2
+ '@eslint/js': 9.2.0
+ '@humanwhocodes/config-array': 0.13.0
'@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.2.4
'@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
debug: 4.3.4
- doctrine: 3.0.0
escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
+ eslint-scope: 8.0.1
+ eslint-visitor-keys: 4.0.0
+ espree: 10.0.1
esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
+ file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
+ /espree@10.0.1:
+ resolution: {integrity: sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ dependencies:
+ acorn: 8.11.3
+ acorn-jsx: 5.3.2(acorn@8.11.3)
+ eslint-visitor-keys: 4.0.0
+
/espree@9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4139,6 +4971,7 @@ packages:
acorn: 8.11.3
acorn-jsx: 5.3.2(acorn@8.11.3)
eslint-visitor-keys: 3.4.3
+ dev: true
/esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
@@ -4178,6 +5011,14 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
+ /event-target-shim@5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+
+ /events@3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+
/execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -4191,7 +5032,6 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- dev: false
/execa@7.2.0:
resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
@@ -4202,7 +5042,7 @@ packages:
human-signals: 4.3.1
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.2.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 3.0.7
strip-final-newline: 3.0.0
@@ -4216,7 +5056,7 @@ packages:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.2.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -4227,10 +5067,10 @@ packages:
/externality@1.0.2:
resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
dependencies:
- enhanced-resolve: 5.15.0
- mlly: 1.5.0
+ enhanced-resolve: 5.16.1
+ mlly: 1.7.0
pathe: 1.1.2
- ufo: 1.4.0
+ ufo: 1.5.3
/fake-indexeddb@5.0.2:
resolution: {integrity: sha512-cB507r5T3D55DfclY01GLkninZLfU7HXV/mhVRTnTRm5k2u+fY7Fof2dBkr80p5t7G7dlA/G5dI87QiMdPpMCQ==}
@@ -4272,11 +5112,11 @@ packages:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
dev: true
- /file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ /file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
dependencies:
- flat-cache: 3.2.0
+ flat-cache: 4.0.1
/file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
@@ -4287,6 +5127,14 @@ packages:
dependencies:
to-regex-range: 5.0.1
+ /find-up@4.1.0:
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
+
/find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
@@ -4294,25 +5142,47 @@ packages:
locate-path: 6.0.0
path-exists: 4.0.0
- /flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ /find-up@7.0.0:
+ resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
+ engines: {node: '>=18'}
+ dependencies:
+ locate-path: 7.2.0
+ path-exists: 5.0.0
+ unicorn-magic: 0.1.0
+ dev: true
+
+ /flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.1
keyv: 4.5.4
- rimraf: 3.0.2
- /flat@5.0.2:
- resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
- hasBin: true
+ /flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- /flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ /floating-vue@5.2.2(vue@3.4.27):
+ resolution: {integrity: sha512-afW+h2CFafo+7Y9Lvw/xsqjaQlKLdJV7h1fCHfcYQ1C4SVMlu7OAekqWgu5d4SgvkBVU0pVpLlVsrSTBURFRkg==}
+ peerDependencies:
+ '@nuxt/kit': ^3.2.0
+ vue: ^3.2.0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
+ dependencies:
+ '@floating-ui/dom': 1.1.1
+ vue: 3.4.27(typescript@5.4.5)
+ vue-resize: 2.0.0-alpha.1(vue@3.4.27)
/fn.name@1.1.0:
resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
dev: false
+ /focus-trap@7.5.4:
+ resolution: {integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==}
+ dependencies:
+ tabbable: 6.2.0
+
/foreground-child@3.1.1:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
engines: {node: '>=14'}
@@ -4355,7 +5225,7 @@ packages:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.1
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -4412,18 +5282,24 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- /giget@1.2.1:
- resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==}
+ /get-tsconfig@4.7.5:
+ resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
+ dependencies:
+ resolve-pkg-maps: 1.0.0
+ dev: true
+
+ /giget@1.2.3:
+ resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
dependencies:
- citty: 0.1.5
+ citty: 0.1.6
consola: 3.2.3
defu: 6.1.4
- node-fetch-native: 1.6.2
- nypm: 0.3.6
+ node-fetch-native: 1.6.4
+ nypm: 0.3.8
ohash: 1.1.3
pathe: 1.1.2
- tar: 6.2.0
+ tar: 6.2.1
/git-config-path@2.0.0:
resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
@@ -4435,8 +5311,8 @@ packages:
is-ssh: 1.4.0
parse-url: 8.1.0
- /git-url-parse@13.1.1:
- resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==}
+ /git-url-parse@14.0.0:
+ resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
dependencies:
git-up: 7.0.0
@@ -4452,16 +5328,16 @@ packages:
dependencies:
is-glob: 4.0.3
- /glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
+ /glob@10.3.14:
+ resolution: {integrity: sha512-4fkAqu93xe9Mk7le9v0y3VrPDqLKHarNi2s4Pv7f2yOvfhWfhc7hRPHC/JyqMqb8B/Dt/eGS4n7ykwf3fOsl8g==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
foreground-child: 3.1.1
jackspeak: 2.3.6
- minimatch: 9.0.3
- minipass: 7.0.4
- path-scurry: 1.10.1
+ minimatch: 9.0.4
+ minipass: 7.1.1
+ path-scurry: 1.11.0
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -4498,6 +5374,16 @@ packages:
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
+ dev: true
+
+ /globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
+ /globals@15.2.0:
+ resolution: {integrity: sha512-FQ5YwCHZM3nCmtb5FzEWwdUc9K5d3V/w9mzcz8iGD1gC/aOTHc6PouYu0kkKipNJqHAT7m51sqzQjEjIP+cK0A==}
+ engines: {node: '>=18'}
+ dev: true
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
@@ -4511,24 +5397,24 @@ packages:
slash: 3.0.0
dev: true
- /globby@14.0.0:
- resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==}
+ /globby@14.0.1:
+ resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
engines: {node: '>=18'}
dependencies:
- '@sindresorhus/merge-streams': 1.0.0
+ '@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
ignore: 5.3.1
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
- /google-fonts-helper@3.4.1:
- resolution: {integrity: sha512-unq9c1NF771916DrVR2MTpMJ5iHiMSjMBApErjhWT1FZIE+7x+Qik+w6cYi5jw/KtHELz+tyGAKgQetTU9wrlA==}
+ /google-fonts-helper@3.6.0:
+ resolution: {integrity: sha512-ReantWd/l8dedKqTYjvqaQ55rAl/rbRqWL5VXHNXtGwIhMX4N8VNA7V19drr7xiv5G3pzlYID0K4FauvGqnWEg==}
dependencies:
deepmerge: 4.3.1
hookable: 5.5.3
- ofetch: 1.3.3
- ufo: 1.4.0
+ ofetch: 1.3.4
+ ufo: 1.5.3
dev: true
/graceful-fs@4.2.11:
@@ -4536,6 +5422,13 @@ packages:
/graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ dev: true
+
+ /gzip-size@6.0.0:
+ resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
+ engines: {node: '>=10'}
+ dependencies:
+ duplexer: 0.1.2
/gzip-size@7.0.0:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
@@ -4543,18 +5436,21 @@ packages:
dependencies:
duplexer: 0.1.2
- /h3@1.10.1:
- resolution: {integrity: sha512-UBAUp47hmm4BB5/njB4LrEa9gpuvZj4/Qf/ynSMzO6Ku2RXaouxEfiG2E2IFnv6fxbhAkzjasDxmo6DFdEeXRg==}
+ /h3@1.11.1:
+ resolution: {integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==}
dependencies:
- cookie-es: 1.0.0
+ cookie-es: 1.1.0
+ crossws: 0.2.4
defu: 6.1.4
- destr: 2.0.2
- iron-webcrypto: 1.0.0
+ destr: 2.0.3
+ iron-webcrypto: 1.2.1
ohash: 1.1.3
- radix3: 1.1.0
- ufo: 1.4.0
+ radix3: 1.1.2
+ ufo: 1.5.3
uncrypto: 0.1.3
unenv: 1.9.0
+ transitivePeerDependencies:
+ - uWebSockets.js
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -4582,8 +5478,8 @@ packages:
/hash-sum@2.0.0:
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
- /hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ /hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
dependencies:
function-bind: 1.1.2
@@ -4591,11 +5487,15 @@ packages:
/hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- /hosted-git-info@7.0.1:
- resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
+ /hosted-git-info@2.8.9:
+ resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+ dev: true
+
+ /hosted-git-info@7.0.2:
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.2.2
/html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
@@ -4643,11 +5543,11 @@ packages:
statuses: 2.0.1
toidentifier: 1.0.1
- /http-proxy-agent@7.0.0:
- resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
+ /http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4
transitivePeerDependencies:
- supports-color
@@ -4665,11 +5565,11 @@ packages:
transitivePeerDependencies:
- supports-color
- /https-proxy-agent@7.0.2:
- resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
+ /https-proxy-agent@7.0.4:
+ resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4
transitivePeerDependencies:
- supports-color
@@ -4680,7 +5580,6 @@ packages:
/human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- dev: false
/human-signals@4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
@@ -4690,8 +5589,8 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- /ibantools@4.3.9:
- resolution: {integrity: sha512-PxQuxv1vq1CgOtfBZIMThZBZEi/hFMmPiAzq4QPx2rmbrUVF/p4dFqvk9e9Z+hVXZxUmdW1cgJh21lpt1UYZzg==}
+ /ibantools@4.5.1:
+ resolution: {integrity: sha512-DfKQpLlFq9yEUIEnFuCJzss3XavD7iHZTU5PyqXiAJ+rmaMp+NFP3hboumHKuK8nZjuOJg93WemTzcQ5b9jOZA==}
dev: false
/iconv-lite@0.6.3:
@@ -4702,11 +5601,14 @@ packages:
safer-buffer: 2.1.2
optional: true
- /ignore-walk@6.0.4:
- resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==}
+ /ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
+ /ignore-walk@6.0.5:
+ resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- minimatch: 9.0.3
+ minimatch: 9.0.4
/ignore@5.3.1:
resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
@@ -4753,8 +5655,8 @@ packages:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /ioredis@5.3.2:
- resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==}
+ /ioredis@5.4.1:
+ resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
engines: {node: '>=12.22.0'}
dependencies:
'@ioredis/commands': 1.2.0
@@ -4769,11 +5671,19 @@ packages:
transitivePeerDependencies:
- supports-color
- /ip@2.0.0:
- resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
+ /ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
+
+ /iron-webcrypto@1.2.1:
+ resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- /iron-webcrypto@1.0.0:
- resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==}
+ /is-arrayish@0.2.1:
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ dev: true
/is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
@@ -4783,7 +5693,7 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
/is-builtin-module@3.2.1:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
@@ -4794,7 +5704,7 @@ packages:
/is-core-module@2.13.1:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.2
/is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
@@ -4851,6 +5761,9 @@ packages:
/is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+ /is-node-process@1.2.0:
+ resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
+
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
@@ -4867,9 +5780,6 @@ packages:
resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==}
engines: {node: '>=0.10.0'}
- /is-promise@4.0.0:
- resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
-
/is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
dependencies:
@@ -4883,7 +5793,6 @@ packages:
/is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- dev: false
/is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
@@ -4929,11 +5838,15 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
+ /js-sha256@0.11.0:
+ resolution: {integrity: sha512-6xNlKayMZvds9h1Y1VWc0fQHQ82BxTXizWPEtEeGvmOUYpBRy4gbWroHLpzowe6xiQhHpelCQiE7HEdznyBL9Q==}
+ dev: false
+
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-tokens@8.0.3:
- resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
+ /js-tokens@9.0.0:
+ resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
/js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
@@ -4941,18 +5854,48 @@ packages:
dependencies:
argparse: 2.0.1
+ /jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+
+ /jsdoc-type-pratt-parser@4.0.0:
+ resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==}
+ engines: {node: '>=12.0.0'}
+ dev: true
+
+ /jsesc@0.5.0:
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+ hasBin: true
+ dev: true
+
/jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
+ /jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dev: true
+
/json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- /json-parse-even-better-errors@3.0.1:
- resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==}
+ /json-parse-even-better-errors@2.3.1:
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+ dev: true
+
+ /json-parse-even-better-errors@3.0.2:
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /json-schema-to-typescript-lite@14.0.1:
+ resolution: {integrity: sha512-MhjvNC3MfEyYmKiC1rEzwDTCc22+hWU/2HKVfnklar4tifbkT8oZvvamEG1n550JeCmJ0V+2ly+5fF5K+lIExg==}
+ dependencies:
+ '@apidevtools/json-schema-ref-parser': 11.6.1
+ '@types/json-schema': 7.0.15
+ dev: true
+
/json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
@@ -4971,12 +5914,9 @@ packages:
acorn: 8.11.3
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.6.0
+ semver: 7.6.2
dev: true
- /jsonc-parser@3.2.1:
- resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
-
/jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
@@ -4988,6 +5928,18 @@ packages:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
+ /jwt-decode@4.0.0:
+ resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==}
+ engines: {node: '>=18'}
+ dev: false
+
+ /keycloak-js@24.0.4:
+ resolution: {integrity: sha512-eLjG7CzGGgAXh78M76QUJy1R8+QDQvIJXJf6T3bq9VJZ6RXBGZXMsXvII66b83ueYDFa1gi2JojmA31Z23HO0g==}
+ dependencies:
+ js-sha256: 0.11.0
+ jwt-decode: 4.0.0
+ dev: false
+
/keygrip@1.1.0:
resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
engines: {node: '>= 0.6'}
@@ -5008,8 +5960,8 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /knitwork@1.0.0:
- resolution: {integrity: sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==}
+ /knitwork@1.1.0:
+ resolution: {integrity: sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==}
/koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
@@ -5044,8 +5996,8 @@ packages:
- supports-color
dev: false
- /koa@2.15.0:
- resolution: {integrity: sha512-KEL/vU1knsoUvfP4MC4/GthpQrY/p6dzwaaGI6Rt4NQuFqkw3qrvsdYF5pz3wOfi7IGTvMPHC9aZIcUKYFNxsw==}
+ /koa@2.15.3:
+ resolution: {integrity: sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==}
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
dependencies:
accepts: 1.3.8
@@ -5106,35 +6058,42 @@ packages:
engines: {node: '>=10'}
dev: false
- /lilconfig@3.0.0:
- resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
+ /lilconfig@3.1.1:
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
engines: {node: '>=14'}
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /listhen@1.6.0:
- resolution: {integrity: sha512-z0RcEXVX5oTpY1bO02SKoTU/kmZSrFSngNNzHRM6KICR17PTq7ANush6AE6ztGJwJD4RLpBrVHd9GnV51J7s3w==}
+ /listhen@1.7.2:
+ resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==}
hasBin: true
dependencies:
- '@parcel/watcher': 2.4.0
- '@parcel/watcher-wasm': 2.4.0
- citty: 0.1.5
+ '@parcel/watcher': 2.4.1
+ '@parcel/watcher-wasm': 2.4.1
+ citty: 0.1.6
clipboardy: 4.0.0
consola: 3.2.3
- crossws: 0.1.1
+ crossws: 0.2.4
defu: 6.1.4
get-port-please: 3.1.2
- h3: 1.10.1
+ h3: 1.11.1
http-shutdown: 1.2.2
jiti: 1.21.0
- mlly: 1.5.0
+ mlly: 1.7.0
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.7.0
- ufo: 1.4.0
+ ufo: 1.5.3
untun: 0.1.3
uqr: 0.1.2
+ transitivePeerDependencies:
+ - uWebSockets.js
+
+ /load-tsconfig@0.2.5:
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
/local-pkg@0.4.3:
resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
@@ -5144,8 +6103,15 @@ packages:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
dependencies:
- mlly: 1.5.0
- pkg-types: 1.0.3
+ mlly: 1.7.0
+ pkg-types: 1.1.1
+
+ /locate-path@5.0.0:
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
/locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
@@ -5153,13 +6119,15 @@ packages:
dependencies:
p-locate: 5.0.0
+ /locate-path@7.2.0:
+ resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ p-locate: 6.0.0
+ dev: true
+
/lodash-es@4.17.21:
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
- dev: false
-
- /lodash._reinterpolate@3.0.0:
- resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
- dev: false
/lodash.castarray@4.4.0:
resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
@@ -5181,19 +6149,6 @@ packages:
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- /lodash.template@4.5.0:
- resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
- dependencies:
- lodash._reinterpolate: 3.0.0
- lodash.templatesettings: 4.2.0
- dev: false
-
- /lodash.templatesettings@4.2.0:
- resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
- dependencies:
- lodash._reinterpolate: 3.0.0
- dev: false
-
/lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
@@ -5218,8 +6173,8 @@ packages:
get-func-name: 2.0.2
dev: true
- /lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
+ /lru-cache@10.2.2:
+ resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
engines: {node: 14 || >=16.14}
/lru-cache@5.1.1:
@@ -5227,30 +6182,23 @@ packages:
dependencies:
yallist: 3.1.1
- /lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
- dependencies:
- yallist: 4.0.0
-
- /magic-string-ast@0.3.0:
- resolution: {integrity: sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==}
+ /magic-string-ast@0.5.0:
+ resolution: {integrity: sha512-mxjxZ5zoR4+ybulZ7Z5qdZUTdAfiKJ1Il80kN/I4jWsHTTqNKZ9KsBa3Jepo+3U09I04qiyC2+7MZD8v4rJOoA==}
engines: {node: '>=16.14.0'}
dependencies:
- magic-string: 0.30.7
+ magic-string: 0.30.10
- /magic-string@0.30.7:
- resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==}
- engines: {node: '>=12'}
+ /magic-string@0.30.10:
+ resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
- /magicast@0.3.3:
- resolution: {integrity: sha512-ZbrP1Qxnpoes8sz47AM0z08U+jW6TyRgZzcWy3Ma3vDhJttwMwAFDMMQFobwdBxByBD46JYmxRzeF7w2+wJEuw==}
+ /magicast@0.3.4:
+ resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
dependencies:
- '@babel/parser': 7.23.9
- '@babel/types': 7.23.9
- source-map-js: 1.0.2
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
+ source-map-js: 1.2.0
/make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -5258,26 +6206,27 @@ packages:
dependencies:
semver: 6.3.1
- /make-fetch-happen@13.0.0:
- resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==}
+ /make-fetch-happen@13.0.1:
+ resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@npmcli/agent': 2.2.1
- cacache: 18.0.2
+ '@npmcli/agent': 2.2.2
+ cacache: 18.0.3
http-cache-semantics: 4.1.1
is-lambda: 1.0.1
- minipass: 7.0.4
- minipass-fetch: 3.0.4
+ minipass: 7.1.1
+ minipass-fetch: 3.0.5
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 0.6.3
+ proc-log: 4.2.0
promise-retry: 2.0.1
- ssri: 10.0.5
+ ssri: 10.0.6
transitivePeerDependencies:
- supports-color
- /marked@12.0.0:
- resolution: {integrity: sha512-Vkwtq9rLqXryZnWaQc86+FHLC6tr/fycMfYAhiOIXkrNmeGAyhSxjqu0Rs1i0bBqw5u0S7+lV9fdH2ZSVaoa0w==}
+ /marked@12.0.2:
+ resolution: {integrity: sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==}
engines: {node: '>= 18'}
hasBin: true
dev: false
@@ -5334,15 +6283,24 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
+ /mime@4.0.3:
+ resolution: {integrity: sha512-KgUb15Oorc0NEKPbvfa0wRU+PItIEZmiv+pyAO2i0oTIVTJhlzMclU7w4RXWQrSOVH5ax/p/CkIO7KI4OyFJTQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+
/mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- dev: false
/mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
+ /min-indent@1.0.1:
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
+ dev: true
+
/mini-svg-data-uri@1.4.4:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
@@ -5359,8 +6317,8 @@ packages:
dependencies:
brace-expansion: 2.0.1
- /minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ /minimatch@9.0.4:
+ resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
brace-expansion: 2.0.1
@@ -5373,13 +6331,13 @@ packages:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.1
- /minipass-fetch@3.0.4:
- resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==}
+ /minipass-fetch@3.0.5:
+ resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.1
minipass-sized: 1.0.3
minizlib: 2.1.2
optionalDependencies:
@@ -5419,8 +6377,8 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- /minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ /minipass@7.1.1:
+ resolution: {integrity: sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==}
engines: {node: '>=16 || 14 >=14.17'}
/minizlib@2.1.2:
@@ -5430,6 +6388,12 @@ packages:
minipass: 3.3.6
yallist: 4.0.0
+ /mitt@2.1.0:
+ resolution: {integrity: sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg==}
+
+ /mitt@3.0.1:
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
+
/mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -5442,13 +6406,13 @@ packages:
engines: {node: '>=10'}
hasBin: true
- /mlly@1.5.0:
- resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==}
+ /mlly@1.7.0:
+ resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
dependencies:
acorn: 8.11.3
pathe: 1.1.2
- pkg-types: 1.0.3
- ufo: 1.4.0
+ pkg-types: 1.1.1
+ ufo: 1.5.3
/mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
@@ -5479,9 +6443,9 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /nanoid@4.0.2:
- resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
- engines: {node: ^14 || ^16 || >=18}
+ /nanoid@5.0.7:
+ resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
+ engines: {node: ^18 || >=20}
hasBin: true
/napi-wasm@1.1.0:
@@ -5494,8 +6458,8 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- /nitropack@2.8.1:
- resolution: {integrity: sha512-pODv2kEEzZSDQR+1UMXbGyNgMedUDq/qUomtiAnQKQvLy52VGlecXO1xDfH3i0kP1yKEcKTnWsx1TAF5gHM7xQ==}
+ /nitropack@2.9.6(@opentelemetry/api@1.8.0):
+ resolution: {integrity: sha512-HP2PE0dREcDIBVkL8Zm6eVyrDd10/GI9hTL00PHvjUM8I9Y/2cv73wRDmxNyInfrx/CJKHATb2U/pQrqpzJyXA==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -5504,70 +6468,73 @@ packages:
xml2js:
optional: true
dependencies:
- '@cloudflare/kv-asset-handler': 0.3.1
- '@netlify/functions': 2.5.1
- '@rollup/plugin-alias': 5.1.0(rollup@4.9.6)
- '@rollup/plugin-commonjs': 25.0.7(rollup@4.9.6)
- '@rollup/plugin-inject': 5.0.5(rollup@4.9.6)
- '@rollup/plugin-json': 6.1.0(rollup@4.9.6)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.9.6)
- '@rollup/plugin-replace': 5.0.5(rollup@4.9.6)
- '@rollup/plugin-terser': 0.4.4(rollup@4.9.6)
- '@rollup/plugin-wasm': 6.2.2(rollup@4.9.6)
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@cloudflare/kv-asset-handler': 0.3.2
+ '@netlify/functions': 2.6.3(@opentelemetry/api@1.8.0)
+ '@rollup/plugin-alias': 5.1.0(rollup@4.17.2)
+ '@rollup/plugin-commonjs': 25.0.7(rollup@4.17.2)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.17.2)
+ '@rollup/plugin-json': 6.1.0(rollup@4.17.2)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@4.17.2)
+ '@rollup/plugin-replace': 5.0.5(rollup@4.17.2)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.17.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
'@types/http-proxy': 1.17.14
- '@vercel/nft': 0.24.4
- archiver: 6.0.1
- c12: 1.7.0
+ '@vercel/nft': 0.26.5
+ archiver: 7.0.1
+ c12: 1.10.0
chalk: 5.3.0
chokidar: 3.6.0
- citty: 0.1.5
+ citty: 0.1.6
consola: 3.2.3
- cookie-es: 1.0.0
+ cookie-es: 1.1.0
+ croner: 8.0.2
+ crossws: 0.2.4
+ db0: 0.1.4
defu: 6.1.4
- destr: 2.0.2
+ destr: 2.0.3
dot-prop: 8.0.2
- esbuild: 0.19.12
+ esbuild: 0.20.2
escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
etag: 1.8.1
fs-extra: 11.2.0
- globby: 14.0.0
+ globby: 14.0.1
gzip-size: 7.0.0
- h3: 1.10.1
+ h3: 1.11.1
hookable: 5.5.3
httpxy: 0.1.5
+ ioredis: 5.4.1
is-primitive: 3.0.1
jiti: 1.21.0
klona: 2.0.6
- knitwork: 1.0.0
- listhen: 1.6.0
- magic-string: 0.30.7
- mime: 3.0.0
- mlly: 1.5.0
+ knitwork: 1.1.0
+ listhen: 1.7.2
+ magic-string: 0.30.10
+ mime: 4.0.3
+ mlly: 1.7.0
mri: 1.2.0
- node-fetch-native: 1.6.2
- ofetch: 1.3.3
+ node-fetch-native: 1.6.4
+ ofetch: 1.3.4
ohash: 1.1.3
- openapi-typescript: 6.7.4
+ openapi-typescript: 6.7.5
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
+ pkg-types: 1.1.1
pretty-bytes: 6.1.1
- radix3: 1.1.0
- rollup: 4.9.6
- rollup-plugin-visualizer: 5.12.0(rollup@4.9.6)
+ radix3: 1.1.2
+ rollup: 4.17.2
+ rollup-plugin-visualizer: 5.12.0(rollup@4.17.2)
scule: 1.3.0
- semver: 7.6.0
+ semver: 7.6.2
serve-placeholder: 2.0.1
serve-static: 1.15.0
std-env: 3.7.0
- ufo: 1.4.0
+ ufo: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.9.0
- unimport: 3.7.1(rollup@4.9.6)
- unstorage: 1.10.1
+ unimport: 3.7.1(rollup@4.17.2)
+ unstorage: 1.10.2(ioredis@5.4.1)
+ unwasm: 0.3.9
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -5576,20 +6543,25 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@libsql/client'
- '@netlify/blobs'
+ - '@opentelemetry/api'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/kv'
+ - better-sqlite3
+ - drizzle-orm
- encoding
- idb-keyval
- supports-color
+ - uWebSockets.js
/node-addon-api@7.1.0:
resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
engines: {node: ^16 || ^18 || >= 20}
- /node-fetch-native@1.6.2:
- resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==}
+ /node-fetch-native@1.6.4:
+ resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
/node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
@@ -5606,24 +6578,24 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- /node-gyp-build@4.8.0:
- resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==}
+ /node-gyp-build@4.8.1:
+ resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==}
hasBin: true
- /node-gyp@10.0.1:
- resolution: {integrity: sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==}
+ /node-gyp@10.1.0:
+ resolution: {integrity: sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==}
engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
dependencies:
env-paths: 2.2.1
exponential-backoff: 3.1.1
- glob: 10.3.10
+ glob: 10.3.14
graceful-fs: 4.2.11
- make-fetch-happen: 13.0.0
- nopt: 7.2.0
+ make-fetch-happen: 13.0.1
+ nopt: 7.2.1
proc-log: 3.0.0
- semver: 7.6.0
- tar: 6.2.0
+ semver: 7.6.2
+ tar: 6.2.1
which: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -5643,20 +6615,29 @@ packages:
dependencies:
abbrev: 1.1.1
- /nopt@7.2.0:
- resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==}
+ /nopt@7.2.1:
+ resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
dependencies:
abbrev: 2.0.0
- /normalize-package-data@6.0.0:
- resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
+ /normalize-package-data@2.5.0:
+ resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+ dependencies:
+ hosted-git-info: 2.8.9
+ resolve: 1.22.8
+ semver: 5.7.2
+ validate-npm-package-license: 3.0.4
+ dev: true
+
+ /normalize-package-data@6.0.1:
+ resolution: {integrity: sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- hosted-git-info: 7.0.1
+ hosted-git-info: 7.0.2
is-core-module: 2.13.1
- semver: 7.6.0
+ semver: 7.6.2
validate-npm-package-license: 3.0.4
/normalize-path@3.0.0:
@@ -5667,8 +6648,8 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- /npm-bundled@3.0.0:
- resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
+ /npm-bundled@3.0.1:
+ resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
npm-normalize-package-bin: 3.0.1
@@ -5677,47 +6658,48 @@ packages:
resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- semver: 7.6.0
+ semver: 7.6.2
/npm-normalize-package-bin@3.0.1:
resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /npm-package-arg@11.0.1:
- resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==}
+ /npm-package-arg@11.0.2:
+ resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- hosted-git-info: 7.0.1
- proc-log: 3.0.0
- semver: 7.6.0
- validate-npm-package-name: 5.0.0
+ hosted-git-info: 7.0.2
+ proc-log: 4.2.0
+ semver: 7.6.2
+ validate-npm-package-name: 5.0.1
/npm-packlist@8.0.2:
resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- ignore-walk: 6.0.4
+ ignore-walk: 6.0.5
- /npm-pick-manifest@9.0.0:
- resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==}
+ /npm-pick-manifest@9.0.1:
+ resolution: {integrity: sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
npm-install-checks: 6.3.0
npm-normalize-package-bin: 3.0.1
- npm-package-arg: 11.0.1
- semver: 7.6.0
+ npm-package-arg: 11.0.2
+ semver: 7.6.2
- /npm-registry-fetch@16.1.0:
- resolution: {integrity: sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==}
+ /npm-registry-fetch@17.0.1:
+ resolution: {integrity: sha512-fLu9MTdZTlJAHUek/VLklE6EpIiP3VZpTiuN7OOMCt2Sd67NCpSEetMaxHHEZiZxllp8ZLsUpvbEszqTFEc+wA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- make-fetch-happen: 13.0.0
- minipass: 7.0.4
- minipass-fetch: 3.0.4
+ '@npmcli/redact': 2.0.0
+ make-fetch-happen: 13.0.1
+ minipass: 7.1.1
+ minipass-fetch: 3.0.5
minipass-json-stream: 1.0.1
minizlib: 2.1.2
- npm-package-arg: 11.0.1
- proc-log: 3.0.0
+ npm-package-arg: 11.0.2
+ proc-log: 4.2.0
transitivePeerDependencies:
- supports-color
@@ -5727,8 +6709,8 @@ packages:
dependencies:
path-key: 3.1.1
- /npm-run-path@5.2.0:
- resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
+ /npm-run-path@5.3.0:
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
@@ -5746,20 +6728,20 @@ packages:
dependencies:
boolbase: 1.0.0
- /nuxi@3.10.0:
- resolution: {integrity: sha512-veZXw2NuaQ1PrpvHrnQ1dPgkAjv0WqPlvFReg5Iubum0QVGWdJJvGuNsltDQyPcZ7X7mhMXq9SLIpokK4kpvKA==}
- engines: {node: ^14.18.0 || >=16.10.0}
+ /nuxi@3.11.1:
+ resolution: {integrity: sha512-AW71TpxRHNg8MplQVju9tEFvXPvX42e0wPYknutSStDuAjV99vWTWYed4jxr/grk2FtKAuv2KvdJxcn2W59qyg==}
+ engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
optionalDependencies:
fsevents: 2.3.3
- /nuxt-icon@0.6.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)(vue@3.4.18):
- resolution: {integrity: sha512-6eWlNOb6Uvp63uXFdhcmsB1JlubDv76Pot/VwmIu0yJxDYhwytbnv3WAjw2khl2l7W/65V4eMGIEeX9C5Ahxng==}
+ /nuxt-icon@0.6.10(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-S9zHVA66ox4ZSpMWvCjqKZC4ZogC0s2z3vZs+M4D95YXGPEXwxDZu+insMKvkbe8+k7gvEmtTk0eq3KusKlxiw==}
dependencies:
- '@iconify/collections': 1.0.393
- '@iconify/vue': 4.1.1(vue@3.4.18)
- '@nuxt/devtools-kit': 1.0.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
+ '@iconify/collections': 1.0.420
+ '@iconify/vue': 4.1.2(vue@3.4.27)
+ '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2)(rollup@4.17.2)(vite@5.2.11)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
transitivePeerDependencies:
- nuxt
- rollup
@@ -5768,8 +6750,8 @@ packages:
- vue
dev: false
- /nuxt@3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vite@5.1.1):
- resolution: {integrity: sha512-1X1DFTGPbVQFF1tjOWYl3qYc3zQww8htknu3qiP8xNzY1MFnDT3Xisxcf6KDe375tHHui0UpXflseL6evlEoMQ==}
+ /nuxt@3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(rollup@4.17.2)(sass@1.77.0)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11):
+ resolution: {integrity: sha512-Be1d4oyFo60pdF+diBolYDcfNemoMYM3R8PDjhnGrs/w3xJoDH1YMUVWHXXY8WhSmYZI7dyBehx/6kTfGFliVA==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -5782,60 +6764,61 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.8(nuxt@3.10.1)(rollup@4.9.6)(vite@5.1.1)
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
- '@nuxt/telemetry': 2.5.3(rollup@4.9.6)
- '@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vue@3.4.18)
- '@unhead/dom': 1.8.10
- '@unhead/ssr': 1.8.10
- '@unhead/vue': 1.8.10(vue@3.4.18)
- '@vue/shared': 3.4.18
+ '@nuxt/devtools': 1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(rollup@4.17.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
+ '@nuxt/telemetry': 2.5.4(rollup@4.17.2)
+ '@nuxt/ui-templates': 1.3.3
+ '@nuxt/vite-builder': 3.11.2(eslint@9.2.0)(rollup@4.17.2)(sass@1.77.0)(typescript@5.4.5)(vue@3.4.27)
+ '@unhead/dom': 1.9.10
+ '@unhead/ssr': 1.9.10
+ '@unhead/vue': 1.9.10(vue@3.4.27)
+ '@vue/shared': 3.4.27
acorn: 8.11.3
- c12: 1.7.0
+ c12: 1.10.0
chokidar: 3.6.0
- cookie-es: 1.0.0
+ cookie-es: 1.1.0
defu: 6.1.4
- destr: 2.0.2
- devalue: 4.3.2
- esbuild: 0.20.0
+ destr: 2.0.3
+ devalue: 4.3.3
+ esbuild: 0.20.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fs-extra: 11.2.0
- globby: 14.0.0
- h3: 1.10.1
+ globby: 14.0.1
+ h3: 1.11.1
hookable: 5.5.3
jiti: 1.21.0
klona: 2.0.6
- knitwork: 1.0.0
- magic-string: 0.30.7
- mlly: 1.5.0
- nitropack: 2.8.1
- nuxi: 3.10.0
- nypm: 0.3.6
- ofetch: 1.3.3
+ knitwork: 1.1.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
+ nitropack: 2.9.6(@opentelemetry/api@1.8.0)
+ nuxi: 3.11.1
+ nypm: 0.3.8
+ ofetch: 1.3.4
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- radix3: 1.1.0
+ pkg-types: 1.1.1
+ radix3: 1.1.2
scule: 1.3.0
std-env: 3.7.0
- strip-literal: 2.0.0
- ufo: 1.4.0
- ultrahtml: 1.5.2
+ strip-literal: 2.1.0
+ ufo: 1.5.3
+ ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.9.0
- unimport: 3.7.1(rollup@4.9.6)
- unplugin: 1.7.1
- unplugin-vue-router: 0.7.0(rollup@4.9.6)(vue-router@4.2.5)(vue@3.4.18)
+ unimport: 3.7.1(rollup@4.17.2)
+ unplugin: 1.10.1
+ unplugin-vue-router: 0.7.0(rollup@4.17.2)(vue-router@4.3.2)(vue@3.4.27)
+ unstorage: 1.10.2(ioredis@5.4.1)
untyped: 1.4.2
- vue: 3.4.18(typescript@5.3.3)
- vue-bundle-renderer: 2.0.0
+ vue: 3.4.27(typescript@5.4.5)
+ vue-bundle-renderer: 2.1.0
vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.18)
+ vue-router: 4.3.2(vue@3.4.27)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -5844,27 +6827,47 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@libsql/client'
- '@netlify/blobs'
+ - '@opentelemetry/api'
- '@planetscale/database'
+ - '@unocss/reset'
- '@upstash/redis'
- '@vercel/kv'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
+ - better-sqlite3
- bluebird
- bufferutil
+ - change-case
+ - drauu
+ - drizzle-orm
- encoding
- eslint
+ - floating-vue
+ - fuse.js
- idb-keyval
+ - ioredis
+ - jwt-decode
- less
- lightningcss
- meow
+ - nprogress
- optionator
+ - qrcode
- rollup
- sass
+ - sortablejs
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
+ - uWebSockets.js
+ - universal-cookie
+ - unocss
- utf-8-validate
- vite
- vls
@@ -5872,8 +6875,8 @@ packages:
- vue-tsc
- xml2js
- /nuxt@3.10.1(eslint@8.56.0)(typescript@5.3.3)(vite@5.1.1):
- resolution: {integrity: sha512-1X1DFTGPbVQFF1tjOWYl3qYc3zQww8htknu3qiP8xNzY1MFnDT3Xisxcf6KDe375tHHui0UpXflseL6evlEoMQ==}
+ /nuxt@3.11.2(@opentelemetry/api@1.8.0)(@unocss/reset@0.60.0)(eslint@9.2.0)(floating-vue@5.2.2)(typescript@5.4.5)(unocss@0.60.0)(vite@5.2.11):
+ resolution: {integrity: sha512-Be1d4oyFo60pdF+diBolYDcfNemoMYM3R8PDjhnGrs/w3xJoDH1YMUVWHXXY8WhSmYZI7dyBehx/6kTfGFliVA==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -5886,60 +6889,61 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.8(nuxt@3.10.1)(vite@5.1.1)
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@nuxt/schema': 3.10.1(rollup@4.9.6)
- '@nuxt/telemetry': 2.5.3(rollup@4.9.6)
- '@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.10.1(eslint@8.56.0)(rollup@4.9.6)(sass@1.70.0)(typescript@5.3.3)(vue@3.4.18)
- '@unhead/dom': 1.8.10
- '@unhead/ssr': 1.8.10
- '@unhead/vue': 1.8.10(vue@3.4.18)
- '@vue/shared': 3.4.18
+ '@nuxt/devtools': 1.3.1(@unocss/reset@0.60.0)(floating-vue@5.2.2)(nuxt@3.11.2)(unocss@0.60.0)(vite@5.2.11)(vue@3.4.27)
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@nuxt/schema': 3.11.2(rollup@4.17.2)
+ '@nuxt/telemetry': 2.5.4(rollup@4.17.2)
+ '@nuxt/ui-templates': 1.3.3
+ '@nuxt/vite-builder': 3.11.2(eslint@9.2.0)(typescript@5.4.5)(vue@3.4.27)
+ '@unhead/dom': 1.9.10
+ '@unhead/ssr': 1.9.10
+ '@unhead/vue': 1.9.10(vue@3.4.27)
+ '@vue/shared': 3.4.27
acorn: 8.11.3
- c12: 1.7.0
+ c12: 1.10.0
chokidar: 3.6.0
- cookie-es: 1.0.0
+ cookie-es: 1.1.0
defu: 6.1.4
- destr: 2.0.2
- devalue: 4.3.2
- esbuild: 0.20.0
+ destr: 2.0.3
+ devalue: 4.3.3
+ esbuild: 0.20.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fs-extra: 11.2.0
- globby: 14.0.0
- h3: 1.10.1
+ globby: 14.0.1
+ h3: 1.11.1
hookable: 5.5.3
jiti: 1.21.0
klona: 2.0.6
- knitwork: 1.0.0
- magic-string: 0.30.7
- mlly: 1.5.0
- nitropack: 2.8.1
- nuxi: 3.10.0
- nypm: 0.3.6
- ofetch: 1.3.3
+ knitwork: 1.1.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
+ nitropack: 2.9.6(@opentelemetry/api@1.8.0)
+ nuxi: 3.11.1
+ nypm: 0.3.8
+ ofetch: 1.3.4
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- radix3: 1.1.0
+ pkg-types: 1.1.1
+ radix3: 1.1.2
scule: 1.3.0
std-env: 3.7.0
- strip-literal: 2.0.0
- ufo: 1.4.0
- ultrahtml: 1.5.2
+ strip-literal: 2.1.0
+ ufo: 1.5.3
+ ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.9.0
- unimport: 3.7.1(rollup@4.9.6)
- unplugin: 1.7.1
- unplugin-vue-router: 0.7.0(rollup@4.9.6)(vue-router@4.2.5)(vue@3.4.18)
+ unimport: 3.7.1(rollup@4.17.2)
+ unplugin: 1.10.1
+ unplugin-vue-router: 0.7.0(rollup@4.17.2)(vue-router@4.3.2)(vue@3.4.27)
+ unstorage: 1.10.2(ioredis@5.4.1)
untyped: 1.4.2
- vue: 3.4.18(typescript@5.3.3)
- vue-bundle-renderer: 2.0.0
+ vue: 3.4.27(typescript@5.4.5)
+ vue-bundle-renderer: 2.1.0
vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.18)
+ vue-router: 4.3.2(vue@3.4.27)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -5948,27 +6952,47 @@ packages:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@libsql/client'
- '@netlify/blobs'
+ - '@opentelemetry/api'
- '@planetscale/database'
+ - '@unocss/reset'
- '@upstash/redis'
- '@vercel/kv'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
+ - better-sqlite3
- bluebird
- bufferutil
+ - change-case
+ - drauu
+ - drizzle-orm
- encoding
- eslint
+ - floating-vue
+ - fuse.js
- idb-keyval
+ - ioredis
+ - jwt-decode
- less
- lightningcss
- meow
+ - nprogress
- optionator
+ - qrcode
- rollup
- sass
+ - sortablejs
- stylelint
- stylus
- sugarss
- supports-color
- terser
- typescript
+ - uWebSockets.js
+ - universal-cookie
+ - unocss
- utf-8-validate
- vite
- vls
@@ -5977,15 +7001,16 @@ packages:
- xml2js
dev: true
- /nypm@0.3.6:
- resolution: {integrity: sha512-2CATJh3pd6CyNfU5VZM7qSwFu0ieyabkEdnogE30Obn1czrmOYiZ8DOZLe1yBdLKWoyD3Mcy2maUs+0MR3yVjQ==}
+ /nypm@0.3.8:
+ resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
dependencies:
- citty: 0.1.5
+ citty: 0.1.6
+ consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- ufo: 1.4.0
+ ufo: 1.5.3
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -5996,12 +7021,12 @@ packages:
engines: {node: '>= 6'}
dev: false
- /ofetch@1.3.3:
- resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
+ /ofetch@1.3.4:
+ resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==}
dependencies:
- destr: 2.0.2
- node-fetch-native: 1.6.2
- ufo: 1.4.0
+ destr: 2.0.3
+ node-fetch-native: 1.6.4
+ ufo: 1.5.3
/ohash@1.1.3:
resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
@@ -6028,7 +7053,6 @@ packages:
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- dev: false
/onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
@@ -6040,8 +7064,8 @@ packages:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
dev: false
- /open@10.0.3:
- resolution: {integrity: sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==}
+ /open@10.1.0:
+ resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
engines: {node: '>=18'}
dependencies:
default-browser: 5.2.1
@@ -6065,27 +7089,37 @@ packages:
is-docker: 2.2.1
is-wsl: 2.2.0
- /openapi-typescript@6.7.4:
- resolution: {integrity: sha512-EZyeW9Wy7UDCKv0iYmKrq2pVZtquXiD/YHiUClAKqiMi42nodx/EQH11K6fLqjt1IZlJmVokrAsExsBMM2RROQ==}
+ /openapi-typescript@6.7.5:
+ resolution: {integrity: sha512-ZD6dgSZi0u1QCP55g8/2yS5hNJfIpgqsSGHLxxdOjvY7eIrXzj271FJEQw33VwsZ6RCtO/NOuhxa7GBWmEudyA==}
hasBin: true
dependencies:
ansi-colors: 4.1.3
fast-glob: 3.3.2
js-yaml: 4.1.0
supports-color: 9.4.0
- undici: 5.28.3
+ undici: 5.28.4
yargs-parser: 21.1.1
- /optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ /optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
+
+ /outvariant@1.4.2:
+ resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==}
+
+ /p-limit@2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+ dependencies:
+ p-try: 2.2.0
+ dev: true
/p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
@@ -6093,6 +7127,13 @@ packages:
dependencies:
yocto-queue: 0.1.0
+ /p-limit@4.0.0:
+ resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ yocto-queue: 1.0.0
+ dev: true
+
/p-limit@5.0.0:
resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
engines: {node: '>=18'}
@@ -6100,41 +7141,59 @@ packages:
yocto-queue: 1.0.0
dev: true
+ /p-locate@4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+
/p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
+ /p-locate@6.0.0:
+ resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ p-limit: 4.0.0
+ dev: true
+
/p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
- /pacote@17.0.6:
- resolution: {integrity: sha512-cJKrW21VRE8vVTRskJo78c/RCvwJCn1f4qgfxL4w77SOWrTCRcmfkYHlHtS0gqpgjv3zhXflRtgsrUCX5xwNnQ==}
+ /p-try@2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pacote@18.0.6:
+ resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==}
engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
dependencies:
- '@npmcli/git': 5.0.4
- '@npmcli/installed-package-contents': 2.0.2
- '@npmcli/promise-spawn': 7.0.1
- '@npmcli/run-script': 7.0.4
- cacache: 18.0.2
+ '@npmcli/git': 5.0.7
+ '@npmcli/installed-package-contents': 2.1.0
+ '@npmcli/package-json': 5.1.0
+ '@npmcli/promise-spawn': 7.0.2
+ '@npmcli/run-script': 8.1.0
+ cacache: 18.0.3
fs-minipass: 3.0.3
- minipass: 7.0.4
- npm-package-arg: 11.0.1
+ minipass: 7.1.1
+ npm-package-arg: 11.0.2
npm-packlist: 8.0.2
- npm-pick-manifest: 9.0.0
- npm-registry-fetch: 16.1.0
- proc-log: 3.0.0
+ npm-pick-manifest: 9.0.1
+ npm-registry-fetch: 17.0.1
+ proc-log: 4.2.0
promise-retry: 2.0.1
- read-package-json: 7.0.0
- read-package-json-fast: 3.0.2
- sigstore: 2.2.1
- ssri: 10.0.5
- tar: 6.2.0
+ sigstore: 2.3.0
+ ssri: 10.0.6
+ tar: 6.2.1
transitivePeerDependencies:
- bluebird
- supports-color
@@ -6145,13 +7204,6 @@ packages:
dependencies:
callsites: 3.1.0
- /parent-module@2.0.0:
- resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
- engines: {node: '>=8'}
- dependencies:
- callsites: 3.1.0
- dev: false
-
/parse-git-config@3.0.0:
resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==}
engines: {node: '>=8'}
@@ -6159,6 +7211,21 @@ packages:
git-config-path: 2.0.0
ini: 1.3.8
+ /parse-gitignore@2.0.0:
+ resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
+ engines: {node: '>=14'}
+ dev: true
+
+ /parse-json@5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/code-frame': 7.24.2
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+ dev: true
+
/parse-path@7.0.0:
resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==}
dependencies:
@@ -6177,6 +7244,11 @@ packages:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
+ /path-exists@5.0.0:
+ resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
+
/path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -6192,15 +7264,15 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
+ /path-scurry@1.11.0:
+ resolution: {integrity: sha512-LNHTaVkzaYaLGlO+0u3rQTz7QrHTFOuKyba9JMTQutkmtNew8dw8wOD7mTU/5fCPZzCWpfW0XnQKzY61P0aTaw==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.4
+ lru-cache: 10.2.2
+ minipass: 7.1.1
- /path-to-regexp@6.2.1:
- resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
+ /path-to-regexp@6.2.2:
+ resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==}
dev: false
/path-type@4.0.0:
@@ -6229,6 +7301,11 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ /picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+ dev: true
+
/pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
@@ -6238,13 +7315,18 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- /pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
+ /pkg-types@1.1.1:
+ resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
dependencies:
- jsonc-parser: 3.2.1
- mlly: 1.5.0
+ confbox: 0.1.7
+ mlly: 1.7.0
pathe: 1.1.2
+ /pluralize@8.0.0:
+ resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
+ engines: {node: '>=4'}
+ dev: true
+
/portfinder@1.0.32:
resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
engines: {node: '>= 0.12.0'}
@@ -6256,106 +7338,93 @@ packages:
- supports-color
dev: false
- /postcss-calc@9.0.1(postcss@8.4.35):
+ /postcss-calc@9.0.1(postcss@8.4.38):
resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
postcss-value-parser: 4.2.0
- /postcss-colormin@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==}
+ /postcss-colormin@6.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
+ browserslist: 4.23.0
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-convert-values@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==}
+ /postcss-convert-values@6.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
- postcss: 8.4.35
- postcss-value-parser: 4.2.0
-
- /postcss-custom-properties@13.3.4(postcss@8.4.35):
- resolution: {integrity: sha512-9YN0gg9sG3OH+Z9xBrp2PWRb+O4msw+5Sbp3ZgqrblrwKspXVQe5zr5sVqi43gJGwW/Rv1A483PRQUzQOEewvA==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- postcss: ^8.4
- dependencies:
- '@csstools/cascade-layer-name-parser': 1.0.7(@csstools/css-parser-algorithms@2.5.0)(@csstools/css-tokenizer@2.2.3)
- '@csstools/css-parser-algorithms': 2.5.0(@csstools/css-tokenizer@2.2.3)
- '@csstools/css-tokenizer': 2.2.3
- postcss: 8.4.35
+ browserslist: 4.23.0
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- dev: false
- /postcss-discard-comments@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==}
+ /postcss-discard-comments@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
- /postcss-discard-duplicates@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==}
+ /postcss-discard-duplicates@6.0.3(postcss@8.4.38):
+ resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
- /postcss-discard-empty@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==}
+ /postcss-discard-empty@6.0.3(postcss@8.4.38):
+ resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
- /postcss-discard-overridden@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==}
+ /postcss-discard-overridden@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
- /postcss-import@15.1.0(postcss@8.4.35):
+ /postcss-import@15.1.0(postcss@8.4.38):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
dev: false
- /postcss-js@4.0.1(postcss@8.4.35):
+ /postcss-js@4.0.1(postcss@8.4.38):
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.35
+ postcss: 8.4.38
dev: false
- /postcss-load-config@4.0.2(postcss@8.4.35):
+ /postcss-load-config@4.0.2(postcss@8.4.38):
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -6367,202 +7436,203 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 3.0.0
- postcss: 8.4.35
- yaml: 2.3.4
+ lilconfig: 3.1.1
+ postcss: 8.4.38
+ yaml: 2.4.2
dev: false
- /postcss-merge-longhand@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==}
+ /postcss-merge-longhand@6.0.5(postcss@8.4.38):
+ resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- stylehacks: 6.0.2(postcss@8.4.35)
+ stylehacks: 6.1.1(postcss@8.4.38)
- /postcss-merge-rules@6.0.3(postcss@8.4.35):
- resolution: {integrity: sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==}
+ /postcss-merge-rules@6.1.1(postcss@8.4.38):
+ resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
+ browserslist: 4.23.0
caniuse-api: 3.0.0
- cssnano-utils: 4.0.1(postcss@8.4.35)
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ cssnano-utils: 4.0.2(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
- /postcss-minify-font-values@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==}
+ /postcss-minify-font-values@6.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-minify-gradients@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==}
+ /postcss-minify-gradients@6.0.3(postcss@8.4.38):
+ resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
colord: 2.9.3
- cssnano-utils: 4.0.1(postcss@8.4.35)
- postcss: 8.4.35
+ cssnano-utils: 4.0.2(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-minify-params@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==}
+ /postcss-minify-params@6.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
- cssnano-utils: 4.0.1(postcss@8.4.35)
- postcss: 8.4.35
+ browserslist: 4.23.0
+ cssnano-utils: 4.0.2(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-minify-selectors@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==}
+ /postcss-minify-selectors@6.0.4(postcss@8.4.38):
+ resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
- /postcss-nested@6.0.1(postcss@8.4.35):
+ /postcss-nested@6.0.1(postcss@8.4.38):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-nesting@12.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==}
+ /postcss-nesting@12.1.2(postcss@8.4.38):
+ resolution: {integrity: sha512-FUmTHGDNundodutB4PUBxt/EPuhgtpk8FJGRsBhOuy+6FnkR2A8RZWIsyyy6XmhvX2DZQQWIkvu+HB4IbJm+Ew==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15)
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-normalize-charset@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==}
+ /postcss-normalize-charset@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
- /postcss-normalize-display-values@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==}
+ /postcss-normalize-display-values@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-positions@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==}
+ /postcss-normalize-positions@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==}
+ /postcss-normalize-repeat-style@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-string@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==}
+ /postcss-normalize-string@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==}
+ /postcss-normalize-timing-functions@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-unicode@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==}
+ /postcss-normalize-unicode@6.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
- postcss: 8.4.35
+ browserslist: 4.23.0
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-url@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==}
+ /postcss-normalize-url@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==}
+ /postcss-normalize-whitespace@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-ordered-values@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==}
+ /postcss-ordered-values@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- cssnano-utils: 4.0.1(postcss@8.4.35)
- postcss: 8.4.35
+ cssnano-utils: 4.0.2(postcss@8.4.38)
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- /postcss-reduce-initial@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==}
+ /postcss-reduce-initial@6.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
+ browserslist: 4.23.0
caniuse-api: 3.0.0
- postcss: 8.4.35
+ postcss: 8.4.38
- /postcss-reduce-transforms@6.0.1(postcss@8.4.35):
- resolution: {integrity: sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==}
+ /postcss-reduce-transforms@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
/postcss-selector-parser@6.0.10:
@@ -6573,42 +7643,42 @@ packages:
util-deprecate: 1.0.2
dev: false
- /postcss-selector-parser@6.0.15:
- resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==}
+ /postcss-selector-parser@6.0.16:
+ resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-svgo@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==}
+ /postcss-svgo@6.0.3(postcss@8.4.38):
+ resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==}
engines: {node: ^14 || ^16 || >= 18}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
- svgo: 3.2.0
+ svgo: 3.3.2
- /postcss-unique-selectors@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==}
+ /postcss-unique-selectors@6.0.4(postcss@8.4.38):
+ resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss@8.4.35:
- resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
+ /postcss@8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
/prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -6630,16 +7700,24 @@ packages:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.1
dev: true
/proc-log@3.0.0:
resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /proc-log@4.2.0:
+ resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
/process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ /process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
/promise-inflight@1.0.1:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
@@ -6679,8 +7757,8 @@ packages:
/queue-tick@1.0.1:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
- /radix3@1.1.0:
- resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==}
+ /radix3@1.1.2:
+ resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
/randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
@@ -6691,15 +7769,14 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- /rc9@2.1.1:
- resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==}
+ /rc9@2.1.2:
+ resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
dependencies:
defu: 6.1.4
- destr: 2.0.2
- flat: 5.0.2
+ destr: 2.0.3
- /react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ /react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
dev: true
/read-cache@1.0.0:
@@ -6708,21 +7785,24 @@ packages:
pify: 2.3.0
dev: false
- /read-package-json-fast@3.0.2:
- resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /read-pkg-up@7.0.1:
+ resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
+ engines: {node: '>=8'}
dependencies:
- json-parse-even-better-errors: 3.0.1
- npm-normalize-package-bin: 3.0.1
+ find-up: 4.1.0
+ read-pkg: 5.2.0
+ type-fest: 0.8.1
+ dev: true
- /read-package-json@7.0.0:
- resolution: {integrity: sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ /read-pkg@5.2.0:
+ resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
+ engines: {node: '>=8'}
dependencies:
- glob: 10.3.10
- json-parse-even-better-errors: 3.0.1
- normalize-package-data: 6.0.0
- npm-normalize-package-bin: 3.0.1
+ '@types/normalize-package-data': 2.4.4
+ normalize-package-data: 2.5.0
+ parse-json: 5.2.0
+ type-fest: 0.6.0
+ dev: true
/readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -6743,6 +7823,16 @@ packages:
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ /readable-stream@4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ abort-controller: 3.0.0
+ buffer: 6.0.3
+ events: 3.3.0
+ process: 0.11.10
+ string_decoder: 1.3.0
+
/readdir-glob@1.1.3:
resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
dependencies:
@@ -6767,6 +7857,18 @@ packages:
/regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+ /regexp-tree@0.1.27:
+ resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
+ hasBin: true
+ dev: true
+
+ /regjsparser@0.10.0:
+ resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
+ hasBin: true
+ dependencies:
+ jsesc: 0.5.0
+ dev: true
+
/replace-in-file@6.3.5:
resolution: {integrity: sha512-arB9d3ENdKva2fxRnSjwBEXfK1npgyci7ZZuwysgAp7ORjHSyxz6oqIjTEv8R0Ydl4Ll7uOAZXL4vbkhGIizCg==}
engines: {node: '>=10'}
@@ -6797,6 +7899,10 @@ packages:
path-is-absolute: 1.0.1
dev: false
+ /resolve-pkg-maps@1.0.0:
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+ dev: true
+
/resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -6813,13 +7919,16 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ /rfdc@1.3.1:
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
- /rollup-plugin-visualizer@5.12.0(rollup@4.9.6):
+ /rollup-plugin-visualizer@5.12.0(rollup@4.17.2):
resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==}
engines: {node: '>=14'}
hasBin: true
@@ -6831,30 +7940,33 @@ packages:
dependencies:
open: 8.4.2
picomatch: 2.3.1
- rollup: 4.9.6
+ rollup: 4.17.2
source-map: 0.7.4
yargs: 17.7.2
- /rollup@4.9.6:
- resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==}
+ /rollup@4.17.2:
+ resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.9.6
- '@rollup/rollup-android-arm64': 4.9.6
- '@rollup/rollup-darwin-arm64': 4.9.6
- '@rollup/rollup-darwin-x64': 4.9.6
- '@rollup/rollup-linux-arm-gnueabihf': 4.9.6
- '@rollup/rollup-linux-arm64-gnu': 4.9.6
- '@rollup/rollup-linux-arm64-musl': 4.9.6
- '@rollup/rollup-linux-riscv64-gnu': 4.9.6
- '@rollup/rollup-linux-x64-gnu': 4.9.6
- '@rollup/rollup-linux-x64-musl': 4.9.6
- '@rollup/rollup-win32-arm64-msvc': 4.9.6
- '@rollup/rollup-win32-ia32-msvc': 4.9.6
- '@rollup/rollup-win32-x64-msvc': 4.9.6
+ '@rollup/rollup-android-arm-eabi': 4.17.2
+ '@rollup/rollup-android-arm64': 4.17.2
+ '@rollup/rollup-darwin-arm64': 4.17.2
+ '@rollup/rollup-darwin-x64': 4.17.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.17.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.17.2
+ '@rollup/rollup-linux-arm64-gnu': 4.17.2
+ '@rollup/rollup-linux-arm64-musl': 4.17.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.17.2
+ '@rollup/rollup-linux-s390x-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-musl': 4.17.2
+ '@rollup/rollup-win32-arm64-msvc': 4.17.2
+ '@rollup/rollup-win32-ia32-msvc': 4.17.2
+ '@rollup/rollup-win32-x64-msvc': 4.17.2
fsevents: 2.3.3
/run-applescript@7.0.0:
@@ -6888,28 +8000,31 @@ packages:
requiresBuild: true
optional: true
- /sass@1.70.0:
- resolution: {integrity: sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==}
+ /sass@1.77.0:
+ resolution: {integrity: sha512-eGj4HNfXqBWtSnvItNkn7B6icqH14i3CiCGbzMKs3BAPTq62pp9NBYsBgyN4cA+qssqo9r26lW4JSvlaUUWbgw==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
chokidar: 3.6.0
immutable: 4.3.5
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
/scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
+ /semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
+ dev: true
+
/semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- /semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ /semver@7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
engines: {node: '>=10'}
hasBin: true
- dependencies:
- lru-cache: 6.0.0
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
@@ -6975,6 +8090,11 @@ packages:
/shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ /shiki@1.3.0:
+ resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==}
+ dependencies:
+ '@shikijs/core': 1.3.0
+
/siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
dev: true
@@ -6986,21 +8106,21 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- /sigstore@2.2.1:
- resolution: {integrity: sha512-OBBSKvmjr4DCyUb+IC2p7wooOCsCNwaqvCilTJVNPo0y8lJl+LsCrfz4LtMwnw3Gn+8frt816wi1+DWZTUCpBQ==}
+ /sigstore@2.3.0:
+ resolution: {integrity: sha512-q+o8L2ebiWD1AxD17eglf1pFrl9jtW7FHa0ygqY6EKvibK8JHyq9Z26v9MZXeDiw+RbfOJ9j2v70M10Hd6E06A==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 2.1.1
- '@sigstore/core': 1.0.0
- '@sigstore/protobuf-specs': 0.2.1
- '@sigstore/sign': 2.2.2
- '@sigstore/tuf': 2.3.0
- '@sigstore/verify': 1.0.0
+ '@sigstore/bundle': 2.3.1
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.1
+ '@sigstore/sign': 2.3.1
+ '@sigstore/tuf': 2.3.3
+ '@sigstore/verify': 1.2.0
transitivePeerDependencies:
- supports-color
- /simple-git@3.22.0:
- resolution: {integrity: sha512-6JujwSs0ac82jkGjMHiCnTifvf1crOiY/+tfs/Pqih6iow7VrpNKRRNdWm6RtaXpvvv/JGNYhlUtLhGFqHF+Yw==}
+ /simple-git@3.24.0:
+ resolution: {integrity: sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==}
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
@@ -7018,7 +8138,7 @@ packages:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.24
+ '@polka/url': 1.0.0-next.25
mrmime: 2.0.0
totalist: 3.0.1
@@ -7042,28 +8162,28 @@ packages:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- /smob@1.4.1:
- resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==}
+ /smob@1.5.0:
+ resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
- /socks-proxy-agent@8.0.2:
- resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ /socks-proxy-agent@8.0.3:
+ resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==}
engines: {node: '>= 14'}
dependencies:
- agent-base: 7.1.0
+ agent-base: 7.1.1
debug: 4.3.4
- socks: 2.7.1
+ socks: 2.8.3
transitivePeerDependencies:
- supports-color
- /socks@2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
+ /socks@2.8.3:
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
dependencies:
- ip: 2.0.0
+ ip-address: 9.0.5
smart-buffer: 4.2.0
- /source-map-js@1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
+ /source-map-js@1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
/source-map-support@0.5.21:
@@ -7088,25 +8208,42 @@ packages:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.16
+ spdx-license-ids: 3.0.17
- /spdx-exceptions@2.4.0:
- resolution: {integrity: sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==}
+ /spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
/spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
- spdx-exceptions: 2.4.0
- spdx-license-ids: 3.0.16
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.17
- /spdx-license-ids@3.0.16:
- resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ /spdx-expression-parse@4.0.0:
+ resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
+ dependencies:
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.17
+ dev: true
+
+ /spdx-license-ids@3.0.17:
+ resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==}
+
+ /speakingurl@14.0.1:
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
+ engines: {node: '>=0.10.0'}
+
+ /splitpanes@3.1.5:
+ resolution: {integrity: sha512-r3Mq2ITFQ5a2VXLOy4/Sb2Ptp7OfEO8YIbhVJqJXoFc9hc5nTXXkCvtVDjIGbvC0vdE7tse+xTM9BMjsszP6bw==}
- /ssri@10.0.5:
- resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==}
+ /sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+
+ /ssri@10.0.6:
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.1
/stack-trace@0.0.10:
resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
@@ -7131,13 +8268,16 @@ packages:
/std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
- /streamx@2.15.8:
- resolution: {integrity: sha512-6pwMeMY/SuISiRsuS8TeIrAzyFbG5gGPHFQsYjUr/pbBadaL1PCWmzKw+CHZSwainfvcF6Si6cVLq4XTEwswFQ==}
+ /streamx@2.16.1:
+ resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
optionalDependencies:
- bare-events: 2.2.0
+ bare-events: 2.2.2
+
+ /strict-event-emitter@0.5.1:
+ resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==}
/string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
@@ -7180,12 +8320,18 @@ packages:
/strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- dev: false
/strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
+ /strip-indent@3.0.0:
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ min-indent: 1.0.1
+ dev: true
+
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -7195,29 +8341,29 @@ packages:
dependencies:
acorn: 8.11.3
- /strip-literal@2.0.0:
- resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
+ /strip-literal@2.1.0:
+ resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
dependencies:
- js-tokens: 8.0.3
+ js-tokens: 9.0.0
- /stylehacks@6.0.2(postcss@8.4.35):
- resolution: {integrity: sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==}
+ /stylehacks@6.1.1(postcss@8.4.38):
+ resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.3
- postcss: 8.4.35
- postcss-selector-parser: 6.0.15
+ browserslist: 4.23.0
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
/sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
- '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.10
+ glob: 10.3.14
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -7253,8 +8399,8 @@ packages:
/svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
- /svgo@3.2.0:
- resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==}
+ /svgo@3.3.2:
+ resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -7270,9 +8416,12 @@ packages:
resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
engines: {node: '>=18'}
- /tailwind-config-viewer@1.7.3(tailwindcss@3.4.1):
- resolution: {integrity: sha512-rgeFXe9vL4njtaSI1y2uUAD1aRx05RYHbReN72ARAVEVSlNmS0Zf46pj3/ORc3xQwLK/AzbaIs6UFcK7hJSIlA==}
- engines: {node: '>=8'}
+ /tabbable@6.2.0:
+ resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
+
+ /tailwind-config-viewer@2.0.2(tailwindcss@3.4.3):
+ resolution: {integrity: sha512-YkMEbWgvTyEp7J5S7qY9KGLHml6SLO8kQg4Q5xNM4tWJ+cFtSO/Rv2UKfYHYnE7UsY4Lb1LkHmNs3YSbU2mT2Q==}
+ engines: {node: '>=13'}
hasBin: true
peerDependencies:
tailwindcss: 1 || 2 || 2.0.1-compat || 3
@@ -7280,24 +8429,24 @@ packages:
'@koa/router': 12.0.1
commander: 6.2.1
fs-extra: 9.1.0
- koa: 2.15.0
+ koa: 2.15.3
koa-static: 5.0.0
open: 7.4.2
portfinder: 1.0.32
replace-in-file: 6.3.5
- tailwindcss: 3.4.1
+ tailwindcss: 3.4.3
transitivePeerDependencies:
- supports-color
dev: false
- /tailwind-merge@2.2.1:
- resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==}
+ /tailwind-merge@2.3.0:
+ resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==}
dependencies:
- '@babel/runtime': 7.23.9
+ '@babel/runtime': 7.24.5
dev: false
- /tailwindcss@3.4.1:
- resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==}
+ /tailwindcss@3.4.3:
+ resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -7315,12 +8464,12 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.35
- postcss-import: 15.1.0(postcss@8.4.35)
- postcss-js: 4.0.1(postcss@8.4.35)
- postcss-load-config: 4.0.2(postcss@8.4.35)
- postcss-nested: 6.0.1(postcss@8.4.35)
- postcss-selector-parser: 6.0.15
+ postcss: 8.4.38
+ postcss-import: 15.1.0(postcss@8.4.38)
+ postcss-js: 4.0.1(postcss@8.4.38)
+ postcss-load-config: 4.0.2(postcss@8.4.38)
+ postcss-nested: 6.0.1(postcss@8.4.38)
+ postcss-selector-parser: 6.0.16
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -7336,10 +8485,10 @@ packages:
dependencies:
b4a: 1.6.6
fast-fifo: 1.3.2
- streamx: 2.15.8
+ streamx: 2.16.1
- /tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ /tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
@@ -7349,12 +8498,12 @@ packages:
mkdirp: 1.0.4
yallist: 4.0.0
- /terser@5.27.0:
- resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==}
+ /terser@5.31.0:
+ resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- '@jridgewell/source-map': 0.3.5
+ '@jridgewell/source-map': 0.3.6
acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
@@ -7381,15 +8530,15 @@ packages:
resolution: {integrity: sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==}
dev: false
- /tiny-invariant@1.3.1:
- resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ /tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
- /tinybench@2.6.0:
- resolution: {integrity: sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA==}
+ /tinybench@2.8.0:
+ resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
dev: true
- /tinypool@0.8.2:
- resolution: {integrity: sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==}
+ /tinypool@0.8.4:
+ resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
engines: {node: '>=14.0.0'}
dev: true
@@ -7438,13 +8587,13 @@ packages:
engines: {node: '>= 14.0.0'}
dev: false
- /ts-api-utils@1.2.1(typescript@5.3.3):
- resolution: {integrity: sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==}
+ /ts-api-utils@1.3.0(typescript@5.4.5):
+ resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.3.3
+ typescript: 5.4.5
dev: true
/ts-interface-checker@0.1.13:
@@ -7459,13 +8608,13 @@ packages:
engines: {node: '>=0.6.x'}
dev: false
- /tuf-js@2.2.0:
- resolution: {integrity: sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==}
+ /tuf-js@2.2.1:
+ resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@tufjs/models': 2.0.0
+ '@tufjs/models': 2.0.1
debug: 4.3.4
- make-fetch-happen: 13.0.0
+ make-fetch-happen: 13.0.1
transitivePeerDependencies:
- supports-color
@@ -7483,11 +8632,22 @@ packages:
/type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
+ dev: true
/type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
+ /type-fest@0.6.0:
+ resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /type-fest@0.8.1:
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
+ dev: true
+
/type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
@@ -7505,16 +8665,23 @@ packages:
mime-types: 2.1.35
dev: false
- /typescript@5.3.3:
- resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
+ /typescript@5.4.5:
+ resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
engines: {node: '>=14.17'}
hasBin: true
- /ufo@1.4.0:
- resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==}
+ /ufo@1.5.3:
+ resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
- /ultrahtml@1.5.2:
- resolution: {integrity: sha512-qh4mBffhlkiXwDAOxvSGxhL0QEQsTbnP9BozOK3OYPEGvPvdWzvAUaXNtUSMdNsKDtuyjEbyVUPFZ52SSLhLqw==}
+ /ultrahtml@1.5.3:
+ resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
+
+ /unconfig@0.3.13:
+ resolution: {integrity: sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==}
+ dependencies:
+ '@antfu/utils': 0.7.8
+ defu: 6.1.4
+ jiti: 1.21.0
/uncrypto@0.1.3:
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
@@ -7524,17 +8691,17 @@ packages:
dependencies:
acorn: 8.11.3
estree-walker: 3.0.3
- magic-string: 0.30.7
- unplugin: 1.7.1
+ magic-string: 0.30.10
+ unplugin: 1.10.1
/undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- /undici@5.28.3:
- resolution: {integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==}
+ /undici@5.28.4:
+ resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
dependencies:
- '@fastify/busboy': 2.1.0
+ '@fastify/busboy': 2.1.1
/unenv@1.9.0:
resolution: {integrity: sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==}
@@ -7542,37 +8709,37 @@ packages:
consola: 3.2.3
defu: 6.1.4
mime: 3.0.0
- node-fetch-native: 1.6.2
+ node-fetch-native: 1.6.4
pathe: 1.1.2
- /unhead@1.8.10:
- resolution: {integrity: sha512-dth8FvZkLriO5ZWWOBIYBNSfGiwJtKcqpPWpSOk/Z0e2jdlgwoZEWZHFyte0EKvmbZxKcsWNMqIuv7dEmS5yZQ==}
+ /unhead@1.9.10:
+ resolution: {integrity: sha512-Y3w+j1x1YFig2YuE+W2sER+SciRR7MQktYRHNqvZJ0iUNCCJTS8Z/SdSMUEeuFV28daXeASlR3fy7Ry3O2indg==}
dependencies:
- '@unhead/dom': 1.8.10
- '@unhead/schema': 1.8.10
- '@unhead/shared': 1.8.10
+ '@unhead/dom': 1.9.10
+ '@unhead/schema': 1.9.10
+ '@unhead/shared': 1.9.10
hookable: 5.5.3
/unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- /unimport@3.7.1(rollup@4.9.6):
+ /unimport@3.7.1(rollup@4.17.2):
resolution: {integrity: sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==}
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
acorn: 8.11.3
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.7
- mlly: 1.5.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
pathe: 1.1.2
- pkg-types: 1.0.3
+ pkg-types: 1.1.1
scule: 1.3.0
strip-literal: 1.3.0
- unplugin: 1.7.1
+ unplugin: 1.10.1
transitivePeerDependencies:
- rollup
@@ -7592,7 +8759,45 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- /unplugin-vue-router@0.7.0(rollup@4.9.6)(vue-router@4.2.5)(vue@3.4.18):
+ /unocss@0.60.0(postcss@8.4.38)(rollup@4.17.2)(vite@5.2.11):
+ resolution: {integrity: sha512-jVNrjjR9j/PQylfF1z8sz2L2sTnnmGRUTXKQmCTURBBnk2Q9VqoYIvShppPUn4dWvnOy5Xj2gPIXBMin56nt0Q==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@unocss/webpack': 0.60.0
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@unocss/webpack':
+ optional: true
+ vite:
+ optional: true
+ dependencies:
+ '@unocss/astro': 0.60.0(rollup@4.17.2)(vite@5.2.11)
+ '@unocss/cli': 0.60.0(rollup@4.17.2)
+ '@unocss/core': 0.60.0
+ '@unocss/extractor-arbitrary-variants': 0.60.0
+ '@unocss/postcss': 0.60.0(postcss@8.4.38)
+ '@unocss/preset-attributify': 0.60.0
+ '@unocss/preset-icons': 0.60.0
+ '@unocss/preset-mini': 0.60.0
+ '@unocss/preset-tagify': 0.60.0
+ '@unocss/preset-typography': 0.60.0
+ '@unocss/preset-uno': 0.60.0
+ '@unocss/preset-web-fonts': 0.60.0
+ '@unocss/preset-wind': 0.60.0
+ '@unocss/reset': 0.60.0
+ '@unocss/transformer-attributify-jsx': 0.60.0
+ '@unocss/transformer-attributify-jsx-babel': 0.60.0
+ '@unocss/transformer-compile-class': 0.60.0
+ '@unocss/transformer-directives': 0.60.0
+ '@unocss/transformer-variant-group': 0.60.0
+ '@unocss/vite': 0.60.0(rollup@4.17.2)(vite@5.2.11)
+ vite: 5.2.11(sass@1.77.0)
+ transitivePeerDependencies:
+ - postcss
+ - rollup
+ - supports-color
+
+ /unplugin-vue-router@0.7.0(rollup@4.17.2)(vue-router@4.3.2)(vue@3.4.27):
resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
peerDependencies:
vue-router: ^4.1.0
@@ -7600,47 +8805,49 @@ packages:
vue-router:
optional: true
dependencies:
- '@babel/types': 7.23.9
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
- '@vue-macros/common': 1.10.1(rollup@4.9.6)(vue@3.4.18)
- ast-walker-scope: 0.5.0(rollup@4.9.6)
+ '@babel/types': 7.24.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
+ '@vue-macros/common': 1.10.3(rollup@4.17.2)(vue@3.4.27)
+ ast-walker-scope: 0.5.0(rollup@4.17.2)
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.4.3
- mlly: 1.5.0
+ mlly: 1.7.0
pathe: 1.1.2
scule: 1.3.0
- unplugin: 1.7.1
- vue-router: 4.2.5(vue@3.4.18)
- yaml: 2.3.4
+ unplugin: 1.10.1
+ vue-router: 4.3.2(vue@3.4.27)
+ yaml: 2.4.2
transitivePeerDependencies:
- rollup
- vue
- /unplugin@1.7.1:
- resolution: {integrity: sha512-JqzORDAPxxs8ErLV4x+LL7bk5pk3YlcWqpSNsIkAZj972KzFZLClc/ekppahKkOczGkwIG6ElFgdOgOlK4tXZw==}
+ /unplugin@1.10.1:
+ resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
+ engines: {node: '>=14.0.0'}
dependencies:
acorn: 8.11.3
chokidar: 3.6.0
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
- /unstorage@1.10.1:
- resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
+ /unstorage@1.10.2(ioredis@5.4.1):
+ resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==}
peerDependencies:
- '@azure/app-configuration': ^1.4.1
+ '@azure/app-configuration': ^1.5.0
'@azure/cosmos': ^4.0.0
'@azure/data-tables': ^13.2.2
- '@azure/identity': ^3.3.2
- '@azure/keyvault-secrets': ^4.7.0
- '@azure/storage-blob': ^12.16.0
- '@capacitor/preferences': ^5.0.6
- '@netlify/blobs': ^6.2.0
- '@planetscale/database': ^1.11.0
- '@upstash/redis': ^1.23.4
- '@vercel/kv': ^0.2.3
+ '@azure/identity': ^4.0.1
+ '@azure/keyvault-secrets': ^4.8.0
+ '@azure/storage-blob': ^12.17.0
+ '@capacitor/preferences': ^5.0.7
+ '@netlify/blobs': ^6.5.0 || ^7.0.0
+ '@planetscale/database': ^1.16.0
+ '@upstash/redis': ^1.28.4
+ '@vercel/kv': ^1.0.1
idb-keyval: ^6.2.1
+ ioredis: ^5.3.2
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -7666,26 +8873,28 @@ packages:
optional: true
idb-keyval:
optional: true
+ ioredis:
+ optional: true
dependencies:
anymatch: 3.1.3
chokidar: 3.6.0
- destr: 2.0.2
- h3: 1.10.1
- ioredis: 5.3.2
- listhen: 1.6.0
- lru-cache: 10.2.0
+ destr: 2.0.3
+ h3: 1.11.1
+ ioredis: 5.4.1
+ listhen: 1.7.2
+ lru-cache: 10.2.2
mri: 1.2.0
- node-fetch-native: 1.6.2
- ofetch: 1.3.3
- ufo: 1.4.0
+ node-fetch-native: 1.6.4
+ ofetch: 1.3.4
+ ufo: 1.5.3
transitivePeerDependencies:
- - supports-color
+ - uWebSockets.js
/untun@0.1.3:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
dependencies:
- citty: 0.1.5
+ citty: 0.1.6
consola: 3.2.3
pathe: 1.1.2
@@ -7693,9 +8902,9 @@ packages:
resolution: {integrity: sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==}
hasBin: true
dependencies:
- '@babel/core': 7.23.9
- '@babel/standalone': 7.23.10
- '@babel/types': 7.23.9
+ '@babel/core': 7.24.5
+ '@babel/standalone': 7.24.5
+ '@babel/types': 7.24.5
defu: 6.1.4
jiti: 1.21.0
mri: 1.2.0
@@ -7703,13 +8912,23 @@ packages:
transitivePeerDependencies:
- supports-color
- /update-browserslist-db@1.0.13(browserslist@4.22.3):
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ /unwasm@0.3.9:
+ resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
+ dependencies:
+ knitwork: 1.1.0
+ magic-string: 0.30.10
+ mlly: 1.7.0
+ pathe: 1.1.2
+ pkg-types: 1.1.1
+ unplugin: 1.10.1
+
+ /update-browserslist-db@1.0.15(browserslist@4.23.0):
+ resolution: {integrity: sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.3
+ browserslist: 4.23.0
escalade: 3.1.2
picocolors: 1.0.0
@@ -7737,20 +8956,20 @@ packages:
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /v-calendar@3.1.2(@popperjs/core@2.11.8)(vue@3.4.18):
+ /v-calendar@3.1.2(@popperjs/core@2.11.8)(vue@3.4.27):
resolution: {integrity: sha512-QDWrnp4PWCpzUblctgo4T558PrHgHzDtQnTeUNzKxfNf29FkCeFpwGd9bKjAqktaa2aJLcyRl45T5ln1ku34kg==}
peerDependencies:
'@popperjs/core': ^2.0.0
vue: ^3.2.0
dependencies:
'@popperjs/core': 2.11.8
- '@types/lodash': 4.14.202
+ '@types/lodash': 4.17.1
'@types/resize-observer-browser': 0.1.11
date-fns: 2.30.0
- date-fns-tz: 2.0.0(date-fns@2.30.0)
+ date-fns-tz: 2.0.1(date-fns@2.30.0)
lodash: 4.17.21
- vue: 3.4.18(typescript@5.3.3)
- vue-screen-utils: 1.0.0-beta.13(vue@3.4.18)
+ vue: 3.4.27(typescript@5.4.5)
+ vue-screen-utils: 1.0.0-beta.13(vue@3.4.27)
dev: false
/validate-npm-package-license@3.0.4:
@@ -7759,19 +8978,24 @@ packages:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- /validate-npm-package-name@5.0.0:
- resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
+ /validate-npm-package-name@5.0.1:
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- builtins: 5.0.1
/vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
dev: false
- /vite-node@1.2.2(sass@1.70.0):
- resolution: {integrity: sha512-1as4rDTgVWJO3n1uHmUYqq7nsFgINQ9u+mRcXpjeOMJUmviqNKjcZB7UfRZrlM7MjYXMKpuWp5oGkjaFLnjawg==}
+ /vite-hot-client@0.2.3(vite@5.2.11):
+ resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
+ dependencies:
+ vite: 5.2.11(sass@1.77.0)
+
+ /vite-node@1.6.0(sass@1.77.0):
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
@@ -7779,7 +9003,7 @@ packages:
debug: 4.3.4
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.0.12(sass@1.70.0)
+ vite: 5.2.11(sass@1.77.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -7790,7 +9014,7 @@ packages:
- supports-color
- terser
- /vite-plugin-checker@0.6.4(eslint@8.56.0)(typescript@5.3.3)(vite@5.0.12):
+ /vite-plugin-checker@0.6.4(eslint@9.2.0)(typescript@5.4.5)(vite@5.2.11):
resolution: {integrity: sha512-2zKHH5oxr+ye43nReRbC2fny1nyARwhxdm0uNYp/ERy4YvU9iZpNOsueoi/luXw5gnpqRSvjcEPxXbS153O2wA==}
engines: {node: '>=14.16'}
peerDependencies:
@@ -7821,27 +9045,27 @@ packages:
vue-tsc:
optional: true
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.6.0
commander: 8.3.0
- eslint: 8.56.0
+ eslint: 9.2.0
fast-glob: 3.3.2
fs-extra: 11.2.0
npm-run-path: 4.0.1
- semver: 7.6.0
+ semver: 7.6.2
strip-ansi: 6.0.1
- tiny-invariant: 1.3.1
- typescript: 5.3.3
- vite: 5.0.12(sass@1.70.0)
+ tiny-invariant: 1.3.3
+ typescript: 5.4.5
+ vite: 5.2.11(sass@1.77.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- /vite-plugin-inspect@0.8.3(@nuxt/kit@3.10.1)(rollup@4.9.6)(vite@5.1.1):
- resolution: {integrity: sha512-SBVzOIdP/kwe6hjkt7LSW4D0+REqqe58AumcnCfRNw4Kt3mbS9pEBkch+nupu2PBxv2tQi69EQHQ1ZA1vgB/Og==}
+ /vite-plugin-inspect@0.8.4(@nuxt/kit@3.11.2)(rollup@4.17.2)(vite@5.2.11):
+ resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
@@ -7850,76 +9074,41 @@ packages:
'@nuxt/kit':
optional: true
dependencies:
- '@antfu/utils': 0.7.7
- '@nuxt/kit': 3.10.1(rollup@4.9.6)
- '@rollup/pluginutils': 5.1.0(rollup@4.9.6)
+ '@antfu/utils': 0.7.8
+ '@nuxt/kit': 3.11.2(rollup@4.17.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
debug: 4.3.4
error-stack-parser-es: 0.1.1
fs-extra: 11.2.0
- open: 10.0.3
+ open: 10.1.0
perfect-debounce: 1.0.0
picocolors: 1.0.0
sirv: 2.0.4
- vite: 5.1.1(sass@1.70.0)
+ vite: 5.2.11(sass@1.77.0)
transitivePeerDependencies:
- rollup
- supports-color
- /vite-plugin-vue-inspector@4.0.2(vite@5.1.1):
- resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==}
+ /vite-plugin-vue-inspector@5.1.0(vite@5.2.11):
+ resolution: {integrity: sha512-yIw9dvBz9nQW7DPfbJtUVW6JTnt67hqTPRnTwT2CZWMqDvISyQHRjgKl32nlMh1DRH+92533Sv6t59pWMLUCWA==}
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
dependencies:
- '@babel/core': 7.23.9
- '@babel/plugin-proposal-decorators': 7.23.9(@babel/core@7.23.9)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.9)
- '@vue/babel-plugin-jsx': 1.2.1(@babel/core@7.23.9)
- '@vue/compiler-dom': 3.4.18
+ '@babel/core': 7.24.5
+ '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
+ '@vue/compiler-dom': 3.4.27
kolorist: 1.8.0
- magic-string: 0.30.7
- vite: 5.1.1(sass@1.70.0)
+ magic-string: 0.30.10
+ vite: 5.2.11(sass@1.77.0)
transitivePeerDependencies:
- supports-color
- /vite@5.0.12(sass@1.70.0):
- resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==}
- 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
- dependencies:
- esbuild: 0.19.12
- postcss: 8.4.35
- rollup: 4.9.6
- sass: 1.70.0
- optionalDependencies:
- fsevents: 2.3.3
-
- /vite@5.1.1(sass@1.70.0):
- resolution: {integrity: sha512-wclpAgY3F1tR7t9LL5CcHC41YPkQIpKUGeIuT8MdNwNZr6OqOTLs7JX5vIHAtzqLWXts0T+GDrh9pN2arneKqg==}
+ /vite@5.2.11(sass@1.77.0):
+ resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -7946,20 +9135,21 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.19.12
- postcss: 8.4.35
- rollup: 4.9.6
- sass: 1.70.0
+ esbuild: 0.20.2
+ postcss: 8.4.38
+ rollup: 4.17.2
+ sass: 1.77.0
optionalDependencies:
fsevents: 2.3.3
- /vitest-environment-nuxt@1.0.0(@vitest/ui@1.2.2)(h3@1.10.1)(rollup@4.9.6)(vite@5.1.1)(vitest@1.2.2)(vue-router@4.2.5)(vue@3.4.18):
+ /vitest-environment-nuxt@1.0.0(@vitest/ui@1.6.0)(h3@1.11.1)(rollup@4.17.2)(vite@5.2.11)(vitest@1.6.0)(vue-router@4.3.2)(vue@3.4.27):
resolution: {integrity: sha512-AWMO9h4HdbaFdPWZw34gALFI8gbBiOpvfbyeZwHIPfh4kWg/TwElYHvYMQ61WPUlCGaS5LebfHkaI0WPyb//Iw==}
dependencies:
- '@nuxt/test-utils': 3.11.0(@vitest/ui@1.2.2)(h3@1.10.1)(rollup@4.9.6)(vite@5.1.1)(vitest@1.2.2)(vue-router@4.2.5)(vue@3.4.18)
+ '@nuxt/test-utils': 3.12.1(@vitest/ui@1.6.0)(h3@1.11.1)(rollup@4.17.2)(vite@5.2.11)(vitest@1.6.0)(vue-router@4.3.2)(vue@3.4.27)
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
+ - '@playwright/test'
- '@testing-library/vue'
- '@vitest/ui'
- '@vue/test-utils'
@@ -7975,13 +9165,14 @@ packages:
- vue-router
dev: true
- /vitest-environment-nuxt@1.0.0(h3@1.10.1)(vite@5.1.1)(vue-router@4.2.5)(vue@3.4.18):
+ /vitest-environment-nuxt@1.0.0(h3@1.11.1)(vite@5.2.11)(vue-router@4.3.2)(vue@3.4.27):
resolution: {integrity: sha512-AWMO9h4HdbaFdPWZw34gALFI8gbBiOpvfbyeZwHIPfh4kWg/TwElYHvYMQ61WPUlCGaS5LebfHkaI0WPyb//Iw==}
dependencies:
- '@nuxt/test-utils': 3.11.0(h3@1.10.1)(vite@5.1.1)(vue-router@4.2.5)(vue@3.4.18)
+ '@nuxt/test-utils': 3.12.1(h3@1.11.1)(vite@5.2.11)(vue-router@4.3.2)(vue@3.4.27)
transitivePeerDependencies:
- '@cucumber/cucumber'
- '@jest/globals'
+ - '@playwright/test'
- '@testing-library/vue'
- '@vitest/ui'
- '@vue/test-utils'
@@ -7997,15 +9188,15 @@ packages:
- vue-router
dev: true
- /vitest@1.2.2(@vitest/ui@1.2.2)(sass@1.70.0):
- resolution: {integrity: sha512-d5Ouvrnms3GD9USIK36KG8OZ5bEvKEkITFtnGv56HFaSlbItJuYr7hv2Lkn903+AvRAgSixiamozUVfORUekjw==}
+ /vitest@1.6.0(@vitest/ui@1.6.0)(sass@1.77.0):
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': ^1.0.0
- '@vitest/ui': ^1.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -8022,27 +9213,26 @@ packages:
jsdom:
optional: true
dependencies:
- '@vitest/expect': 1.2.2
- '@vitest/runner': 1.2.2
- '@vitest/snapshot': 1.2.2
- '@vitest/spy': 1.2.2
- '@vitest/ui': 1.2.2(vitest@1.2.2)
- '@vitest/utils': 1.2.2
+ '@vitest/expect': 1.6.0
+ '@vitest/runner': 1.6.0
+ '@vitest/snapshot': 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/ui': 1.6.0(vitest@1.6.0)
+ '@vitest/utils': 1.6.0
acorn-walk: 8.3.2
- cac: 6.7.14
chai: 4.4.1
debug: 4.3.4
execa: 8.0.1
local-pkg: 0.5.0
- magic-string: 0.30.7
+ magic-string: 0.30.10
pathe: 1.1.2
picocolors: 1.0.0
std-env: 3.7.0
- strip-literal: 1.3.0
- tinybench: 2.6.0
- tinypool: 0.8.2
- vite: 5.1.1(sass@1.70.0)
- vite-node: 1.2.2(sass@1.70.0)
+ strip-literal: 2.1.0
+ tinybench: 2.8.0
+ tinypool: 0.8.4
+ vite: 5.2.11(sass@1.77.0)
+ vite-node: 1.6.0(sass@1.77.0)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -8063,7 +9253,7 @@ packages:
engines: {vscode: ^1.52.0}
dependencies:
minimatch: 3.1.2
- semver: 7.6.0
+ semver: 7.6.2
vscode-languageserver-protocol: 3.16.0
/vscode-languageserver-protocol@3.16.0:
@@ -8087,12 +9277,12 @@ packages:
/vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- /vue-bundle-renderer@2.0.0:
- resolution: {integrity: sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==}
+ /vue-bundle-renderer@2.1.0:
+ resolution: {integrity: sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==}
dependencies:
- ufo: 1.4.0
+ ufo: 1.5.3
- /vue-demi@0.14.7(vue@3.4.18):
+ /vue-demi@0.14.7(vue@3.4.27):
resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
engines: {node: '>=12'}
hasBin: true
@@ -8104,72 +9294,95 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.4.18(typescript@5.3.3)
- dev: false
+ vue: 3.4.27(typescript@5.4.5)
/vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
- /vue-eslint-parser@9.4.2(eslint@8.56.0):
+ /vue-eslint-parser@9.4.2(eslint@9.2.0):
resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.56.0
+ eslint: 9.2.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
esquery: 1.5.0
lodash: 4.17.21
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
dev: true
- /vue-i18n@9.9.1(vue@3.4.18):
- resolution: {integrity: sha512-xyQ4VspLdNSPTKBFBPWa1tvtj+9HuockZwgFeD2OhxxXuC2CWeNvV4seu2o9+vbQOyQbhAM5Ez56oxUrrnTWdw==}
+ /vue-i18n@9.13.1(vue@3.4.27):
+ resolution: {integrity: sha512-mh0GIxx0wPtPlcB1q4k277y0iKgo25xmDPWioVVYanjPufDBpvu5ySTjP5wOrSvlYQ2m1xI+CFhGdauv/61uQg==}
engines: {node: '>= 16'}
peerDependencies:
vue: ^3.0.0
dependencies:
- '@intlify/core-base': 9.9.1
- '@intlify/shared': 9.9.1
- '@vue/devtools-api': 6.5.1
- vue: 3.4.18(typescript@5.3.3)
+ '@intlify/core-base': 9.13.1
+ '@intlify/shared': 9.13.1
+ '@vue/devtools-api': 6.6.1
+ vue: 3.4.27(typescript@5.4.5)
dev: true
- /vue-router@4.2.5(vue@3.4.18):
- resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
+ /vue-observe-visibility@2.0.0-alpha.1(vue@3.4.27):
+ resolution: {integrity: sha512-flFbp/gs9pZniXR6fans8smv1kDScJ8RS7rEpMjhVabiKeq7Qz3D9+eGsypncjfIyyU84saU88XZ0zjbD6Gq/g==}
+ peerDependencies:
+ vue: ^3.0.0
+ dependencies:
+ vue: 3.4.27(typescript@5.4.5)
+
+ /vue-resize@2.0.0-alpha.1(vue@3.4.27):
+ resolution: {integrity: sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==}
+ peerDependencies:
+ vue: ^3.0.0
+ dependencies:
+ vue: 3.4.27(typescript@5.4.5)
+
+ /vue-router@4.3.2(vue@3.4.27):
+ resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}
peerDependencies:
vue: ^3.2.0
dependencies:
- '@vue/devtools-api': 6.5.1
- vue: 3.4.18(typescript@5.3.3)
+ '@vue/devtools-api': 6.6.1
+ vue: 3.4.27(typescript@5.4.5)
- /vue-screen-utils@1.0.0-beta.13(vue@3.4.18):
+ /vue-screen-utils@1.0.0-beta.13(vue@3.4.27):
resolution: {integrity: sha512-EJ/8TANKhFj+LefDuOvZykwMr3rrLFPLNb++lNBqPOpVigT2ActRg6icH9RFQVm4nHwlHIHSGm5OY/Clar9yIg==}
peerDependencies:
vue: ^3.2.0
dependencies:
- vue: 3.4.18(typescript@5.3.3)
+ vue: 3.4.27(typescript@5.4.5)
dev: false
- /vue@3.4.18(typescript@5.3.3):
- resolution: {integrity: sha512-0zLRYamFRe0wF4q2L3O24KQzLyLpL64ye1RUToOgOxuWZsb/FhaNRdGmeozdtVYLz6tl94OXLaK7/WQIrVCw1A==}
+ /vue-virtual-scroller@2.0.0-beta.8(vue@3.4.27):
+ resolution: {integrity: sha512-b8/f5NQ5nIEBRTNi6GcPItE4s7kxNHw2AIHLtDp+2QvqdTjVN0FgONwX9cr53jWRgnu+HRLPaWDOR2JPI5MTfQ==}
+ peerDependencies:
+ vue: ^3.2.0
+ dependencies:
+ mitt: 2.1.0
+ vue: 3.4.27(typescript@5.4.5)
+ vue-observe-visibility: 2.0.0-alpha.1(vue@3.4.27)
+ vue-resize: 2.0.0-alpha.1(vue@3.4.27)
+
+ /vue@3.4.27(typescript@5.4.5):
+ resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.18
- '@vue/compiler-sfc': 3.4.18
- '@vue/runtime-dom': 3.4.18
- '@vue/server-renderer': 3.4.18(vue@3.4.18)
- '@vue/shared': 3.4.18
- typescript: 5.3.3
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-sfc': 3.4.27
+ '@vue/runtime-dom': 3.4.27
+ '@vue/server-renderer': 3.4.27(vue@3.4.27)
+ '@vue/shared': 3.4.27
+ typescript: 5.4.5
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -8231,8 +9444,8 @@ packages:
triple-beam: 1.4.1
dev: false
- /winston@3.11.0:
- resolution: {integrity: sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==}
+ /winston@3.13.0:
+ resolution: {integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==}
engines: {node: '>= 12.0.0'}
dependencies:
'@colors/colors': 1.6.0
@@ -8248,6 +9461,10 @@ packages:
winston-transport: 4.7.0
dev: false
+ /word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -8267,8 +9484,8 @@ packages:
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /ws@8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ /ws@8.17.0:
+ resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8300,12 +9517,13 @@ packages:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.3.4
+ yaml: 2.4.2
dev: true
- /yaml@2.3.4:
- resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
+ /yaml@2.4.2:
+ resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
engines: {node: '>= 14'}
+ hasBin: true
/yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
@@ -8323,8 +9541,8 @@ packages:
y18n: 5.0.8
yargs-parser: 21.1.1
- /ylru@1.3.2:
- resolution: {integrity: sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==}
+ /ylru@1.4.0:
+ resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
engines: {node: '>= 4.0.0'}
dev: false
@@ -8337,8 +9555,8 @@ packages:
engines: {node: '>=12.20'}
dev: true
- /yup@1.3.3:
- resolution: {integrity: sha512-v8QwZSsHH2K3/G9WSkp6mZKO+hugKT1EmnMqLNUcfu51HU9MDyhlETT/JgtzprnrnQHPWsjc6MUDMBp/l9fNnw==}
+ /yup@1.4.0:
+ resolution: {integrity: sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==}
dependencies:
property-expr: 2.0.6
tiny-case: 1.0.3
@@ -8349,10 +9567,10 @@ packages:
/zhead@2.2.4:
resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
- /zip-stream@5.0.1:
- resolution: {integrity: sha512-UfZ0oa0C8LI58wJ+moL46BDIMgCQbnsb+2PoiJYtonhBsMh2bq1eRBVkvjfVsqbEHd9/EgKPUuL9saSSsec8OA==}
- engines: {node: '>= 12.0.0'}
+ /zip-stream@6.0.1:
+ resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
+ engines: {node: '>= 14'}
dependencies:
- archiver-utils: 4.0.1
- compress-commons: 5.0.1
- readable-stream: 3.6.2
+ archiver-utils: 5.0.2
+ compress-commons: 6.0.2
+ readable-stream: 4.5.2